header{
  background-color: #51A8B1;
  position: fixed;
  width: 100%;
  z-index: 9999;
}
header .info{
  text-align: right;
  color: #fff;
}
header .info a{
  color: #fff;
  text-decoration: none;
}
header .popup{
  font-size: 14px;
}
header .menu{
  display: none !important;
}
header a.menu{
  width: 45px;
  padding-top: 5px;
  color: #FFF;
  border: 0px solid #fff;
  text-align: center;
}
header .dropdown-menu{
  font-size: 14px;
}
header .dropdown-menu .dropdown-item{
  padding-top: 15px;
  padding-bottom: 15px;
}

.header-print{
  display: none;
}
@media only screen and (max-width: 600px) {
  header{
    background-color: #51A8B1;
    position: absolute;
    width: 100%;
    z-index: 9999;
  }
  header .info{
    font-size: 12px;
  }
  header .menu{
    display: block !important;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}


.toggle {
  cursor: pointer;
  display: inline-block;
}

.toggle-switch {
  display: inline-block;
  background-color:  #dc3545;
  border-radius: 16px;
  width: 30px;
  height: 20px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.toggle-switch:before, .toggle-switch:after {
  content: "";
}
.toggle-switch:before {
  display: block;
  background-color: white;
  border: 0px solid black;
  border-radius: 50%;
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.25);
  width: 14px;
  height: 14px;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.5);
}
.toggle-checkbox:checked + .toggle-switch {
  background: #56c080;
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 13px;
}

.toggle-checkbox:disabled + .toggle-switch {
  background: grey;
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 13px;
}


.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

.toggle-label {
  margin-left: 5px;
  position: relative;
  top: 2px;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.toggle-label::before {
  content: 'Offline';
  font-family: inherit;
  font-size: inherit; 
  color: inherit; 
}

.toggle-checkbox:checked ~ .toggle-label::before {

  content: 'Online';
  font-family: inherit; 
  font-size: inherit; 
  color: inherit; 
}
.toggle-checkbox:disabled ~ .toggle-label::before {

  content: 'Bloqueado';
  font-family: inherit; 
  font-size: inherit; 
  color: inherit; 
}
.status-onoff{
  font-size:12px; 
  border: 1px solid #fff; 
  border-radius: 25px;
}