body {
    background: #e9eaec;
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  30% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(5deg);
  }
  70% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes sonar {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
body {
  font-size: 0.9rem;
}

.badge-sonar {
  display: inline-block;
  background: #980303;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 0;
}

.badge-sonar:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #980303;
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: sonar 1.5s infinite;
}

/*------scroll bar---------------------*/

::-webkit-scrollbar {
  width: 5px;
  height: 7px;
}
::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-thumb {
  background: #525965;
  border: 0px none #ffffff;
  border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
  background: #525965;
}
::-webkit-scrollbar-thumb:active {
  background: #525965;
}
::-webkit-scrollbar-track {
  background: transparent;
  border: 0px none #ffffff;
  border-radius: 50px;
}
::-webkit-scrollbar-track:hover {
  background: transparent;
}
::-webkit-scrollbar-track:active {
  background: transparent;
}
::-webkit-scrollbar-corner {
  background: transparent;
}

li.active a {
    color: #bdbdbd !important;
}

li.active i {
    color: #16c7ff !important;
}

.layer {
  background-color: rgba(38, 39, 41, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.layout {
  background: #ffffff none repeat scroll 0 0;
    -webkit-box-shadow: 0 1px 6px rgba(57,73,76,0.35);
    box-shadow: 0 1px 6px rgba(57,73,76,0.35);
}

.layout-margin {
  margin-bottom: 1.5rem!important;
  margin-top: 1.5rem!important;
/*  margin-bottom: 30px;
  margin-top: 10px;*/
}

.layout-padding {
  padding: 50px 70px 70px 71px;
}

.table-borderless > tbody > tr > td,
.table-borderless > tbody > tr > th,
.table-borderless > tfoot > tr > td,
.table-borderless > tfoot > tr > th,
.table-borderless > thead > tr > td,
.table-borderless > thead > tr > th {
    border: none;
}

.table-top-borderless > thead > tr > th {
    border-top: none;
}

/* CUSTOM BUTTON STYLE */
.btn {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    z-index: 10;
    display: inline-block;
    height: 36px;
    line-height: 36px;
    vertical-align: middle;
    border: none;
    padding: 0 16px;
    white-space: nowrap;
    letter-spacing: 1px;
    /*text-transform: uppercase;*/
    text-decoration: none;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    background-image: none;
    
    -webkit-border-radius: 2px;
       -moz-border-radius: 2px;
            border-radius: 2px;

    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;

    -webkit-transition: all 0.2s ease;
       -moz-transition: all 0.2s ease;
         -o-transition: all 0.2s ease;
            transition: all 0.2s ease;

    -ms-touch-action: manipulation;
        touch-action: manipulation;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.btn-violet {
  background-color: #383b9c;
  border-color: #383b9c;
  color: white;
}

.btn-violet:hover {
  background-color: #222692;
  border-color: #222692;
  color: white;
}

/* Custom checkbox slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider-primary {
  background-color: #2196F3;
}

input:focus + .slider-primary {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider-success {
  background-color: #8bc34a;
}

input:focus + .slider-success {
  box-shadow: 0 0 1px #8bc34a;
}

input:checked + .slider-info {
  background-color: #3de0f5;
}

input:focus + .slider-info {
  box-shadow: 0 0 1px #3de0f5;
}

input:checked + .slider-warning {
  background-color: #FFC107;
}

input:focus + .slider-warning {
  box-shadow: 0 0 1px #FFC107;
}

input:checked + .slider-danger {
  background-color: #f44336;
}

input:focus + .slider-danger {
  box-shadow: 0 0 1px #f44336;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.modal-header {
    background-color: #3E4291;
    color: white;
}

.modal-header-close {
    color: white;
}

.group-checkbox label input {
  margin-right: 6px;
}