
.switch {
  position: relative;
  display: inline-block;
  width: 37px;
  height: 19px;
  margin: 0 1px;
}
/* Hide default HTML checkbox */
.switch input {display:none;}
/* The slider */
.slider {
  /* position: absolute; */
  cursor: pointer;
  top: 0;
  right: 0px;
  bottom: 0;
  width: 34px;
  /* background-color: #666; */
  -webkit-transition: .4s;
  /* transition: .4s; */
  border-radius: 2px;
}
.switch.both_on .slider {
    background-color: #2196F3;
}
.slider:before {
  /* position: absolute; */
  /* content: ""; */
  height: 12px;
  width: 13px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider {
  background-color: #2196F3;
}
input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
  -webkit-transform: translateX(36px);
  -ms-transform: translateX(36px);
  transform: translateX(13px);
}
/* Rounded sliders */
#app .settings_scroll .setting span.slider.round {
  border-radius: 2px;
  margin-right: 0;
}
.slider.round:before {
  border-radius: 2px;
}
.switch[for='chly'], .switch[for='cdfbtm'] {
  margin-left: auto;
  margin-right: 0
}