label.label {
  font-family: open-sans-regular;
  font-size: 13px;
  line-height: 25px;
  cursor: pointer;
}
label.label:empty {
  display: none;
}
label.label.disabled {
  cursor: default;
}
.switch {
  display: inline-block;
  height: 20px;
  position: relative;
  width: 40px;
  margin-bottom: -6px;
}
.switch input {
  display: none;
}
.slider {
  border-radius: 16px;
  bottom: 0px;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0px;
  top: 0px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.slider.disabled {
  cursor: default;
  opacity: 0.5;
}
.slider:before {
  border-radius: 50%;
  bottom: 3px;
  content: "";
  height: 12px;
  left: 3px;
  right: 3px;
  position: absolute;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 12px;
}
input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
}
