
tr.heading {
  /* background-color: #666; */
  color: #000;
}
div.heading {
  background-color: #666;
  color: #fff;
  padding: 5px;
}
.new_table td,
.new_table th {
  /* border: 1px solid #000 !important; */
}
/* Absolute Center Spinner */
/* .loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
} */
/* Transparent Overlay */
/* .loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
} */
/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  /* font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; */
}
/* .loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear; */
  /* border-radius: 0.5em; */
  /* -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0; */
  /* box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0; */
  /* box-shadow: rgba(75, 141, 248, 0.75) 1.5em 0 0 0, 
            rgba(75, 141, 248, 0.75) 1.1em 1.1em 0 0, 
            rgba(75, 141, 248, 0.75) 0 1.5em 0 0, 
            rgba(75, 141, 248, 0.75) -1.1em 1.1em 0 0, 
            rgba(75, 141, 248, 0.75) -1.5em 0 0 0, 
            rgba(75, 141, 248, 0.75) -1.1em -1.1em 0 0, 
            rgba(75, 141, 248, 0.75) 0 -1.5em 0 0, 
            rgba(75, 141, 248, 0.75) 1.1em -1.1em 0 0; */
/* } */



/* Ring */

.loader--ring {
  display: inline-block;
  position: relative;
  height: 64px;
  width: 64px;
}
.loader--ring:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.loader--ring {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
}

.loader--ring div {
  display: block;
  position: absolute;
  animation: loader--ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border: 6px solid #fff;
  border-radius: 50% !important;
  box-sizing: border-box;
  margin: 6px;
  height: 51px;
  width: 51px;
}

.loader--ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.loader--ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.loader--ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes loader--ring {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}
@keyframes loader--facebook {
  0% {
      top: 6px;
      height: 51px;
  }

  50%,
  100% {
      top: 19px;
      height: 26px;
  }
}
.login .loader--ring div {
  border-color: #4d90fe transparent transparent transparent;
}









/* Animation */
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.white {
  color: white !important;
}
table.table tbody tr {
  /* border: 1px solid black !important; */
  border: 1px solid #e3dada !important;
}
.table-striped>tbody>tr:nth-child(odd)>td{
  background-color: rgba(0, 0, 0, 0.05) !important;
}
table.table tbody tr:nth-child(even) {
  /* background-color: #e7f3fe !important; */
  /* background-color: rgba(0, 0, 0, 0.05) !important; */
  background-color: #fff;
}
/* .table-bordered>thead>tr>th{
  border-bottom-width: 4px !important;
} */
/* table.table tbody tr:nth-child(odd) {
  background-color: #b6e8ab !important;
  background-color: rgba(0, 0, 0, 0.05) !important;

} */

div.alter:nth-child(odd) {
  background-color: #b6e8ab !important;
}
div.alter:nth-child(event) {
  background-color: #e7f3fe !important;
}
label.error {
  color: #c00 !important;
  font-size: 10px !important;
}
div#show_on_top {
  z-index: 9999999;
  position: fixed;
  top: 200px;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  background-color: #fff;
  color: #000;
  width: 300px;
  left: -310px;
  padding: 10px;
}
.intl-tel-input .selected-flag {
  height: 60% !important;
}
.intl-tel-input .country-list {
  z-index: 9999999999 !important;
}
.intl-tel-input {
  width: 100% !important;
}
.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
.href {
  cursor: pointer;
}
span.handle {
  cursor: move;
}
@keyframes fa-blink {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
  }
}
.fa-blink {
  -webkit-animation: fa-blink 0.75s linear infinite;
  -moz-animation: fa-blink 0.75s linear infinite;
  -ms-animation: fa-blink 0.75s linear infinite;
  -o-animation: fa-blink 0.75s linear infinite;
  animation: fa-blink 0.75s linear infinite;
}
td.success {
  background-color: #7aaa29 !important;
}
td.danger {
  background-color: #ffb8c4 !important;
}
tr.inactive td {
  color: #b0b0b0 !important;
}
tr.inactive td a {
  color: #606060 !important;
}
.progress {
  position: relative;
  width: 100%;
  border: 1px solid #ddd;
  padding: 2px;
  border-radius: 3px;
}
.bar {
  background-color: #B4F5B4;
  width: 0;
  height: 30px;
  border-radius: 3px;
}
.percent {
  position: absolute;
  display: inline-block;
  top: 3px;
  left: 48%;
}
.w3-container:after,
.w3-container:before,
.w3-panel:after,
.w3-panel:before,
.w3-row:after,
.w3-row:before,
.w3-row-padding:after,
.w3-row-padding:before,
.w3-cell-row:before,
.w3-cell-row:after,
.w3-clear:after,
.w3-clear:before,
.w3-bar:before,
.w3-bar:after {
  content: "";
  display: table;
  clear: both;
}
.w3-light-grey,
.w3-hover-light-grey:hover,
.w3-light-gray,
.w3-hover-light-gray:hover {
  color: #000 !important;
  background-color: #f1f1f1 !important;
}
.w3-green,
.w3-hover-green:hover {
  color: #fff !important;
  background-color: #4CAF50 !important;
}
.w3-center {
  text-align: center !important;
}
img.menu-icon {
  width: 20px;
  height: 20px;
  margin-right: 20px;
}
div#filters {
  position: fixed;
  top: 90px;
  left: -250px;
  width: 250px;
  z-index: 99;
  background-color: #313142;
  border: 1px solid #313142;
  padding: 10px;
  border-radius: 15px !important;
}
div#filters button.filters-btn {
  position: relative;
  top: -256px;
  right: -197px;
  transform: rotate(90deg);
  padding: 4px 10px;
  border-radius: 10px !important;
  background: #313142;
  color: aliceblue;
}
.filters.srch-btn{
  padding: 3px 10px !important;
  line-height: 1.5;
  border-width: 0;
  font-size: 14px;
  outline: none !important;
}


#filters #filter_form .btn-group{
  margin-bottom: 10px;
}
#filters #filter_form .control-label{
  font-size: 13px;
  color: #fff;
  width: 100%;
}
#filters #filter_form .control-label .form-control{
  margin-top: 5px;
  color: #fff;
  background-color: #696868;
  border: 1px solid #696868;
  border-radius: 7px !important;
}