.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px !important;
  height: 24px;
}

.toggle-switch input[type=checkbox] {
  display: none !important;
}

.toggle-switch input[type=checkbox]:checked + .toggle-switch-round {
  background-color: #265179;
}

.toggle-switch input[type=checkbox]:checked + .toggle-switch-round:before {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
}

.toggle-switch input[type=checkbox]:focus + .toggle-switch-round {
  -webkit-box-shadow: 0 0 1px #265179;
          box-shadow: 0 0 1px #265179;
}

.toggle-switch .toggle-switch-round {
  border-radius: 24px;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cccccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.toggle-switch .toggle-switch-round::before {
  border-radius: 50%;
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 2px;
  background-color: #ffffff;
  -webkit-transition: .4s;
  transition: .4s;
}
/*# sourceMappingURL=style.css.map */