
/*=============== toggle switch button ===========  */
.toogle-switch {
  position: relative!Important;
  display: inline-block!Important;
  width: 40px!Important;
  height: 20px!Important;
}

.toogle-switch input { 
  opacity: 0!Important;
  width: 0!Important;
  height: 0!Important;
}

.toogle-slider {
  position: absolute!Important;
  cursor: pointer!Important;
  top: 0!Important;
  left: 0!Important;
  right: 0!Important;
  bottom: 0!Important;
  background-color: #ccc!Important;
  -webkit-transition: .4s!Important;
  transition: .4s!Important;
}

.toogle-slider:before {
  position: absolute!Important;
  content: "";
  height: 16px!Important;
  width: 16px!Important;
  left: 2px!Important;
  bottom: 2px!Important;
  background-color: white!Important;
  -webkit-transition: .4s!Important;
  transition: .4s!Important;
}

input:checked + .toogle-slider {
  background-color: #2196F3!Important;
}

input:focus + .toogle-slider {
  box-shadow: 0 0 1px #2196F3!Important;
}

input:checked + .toogle-slider:before {
  -webkit-transform: translateX(20px)!Important;
  -ms-transform: translateX(20px)!Important;
  transform: translateX(20px)!Important;
}

/* Rounded sliders */
.toogle-slider.round {
  border-radius: 10px!Important;
}

.toogle-slider.round:before {
  border-radius: 50%!Important;
}

