.label_switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 22px;
  line-height: 22px;
  }
  
  .label_switch .inp_checkbox { 
  opacity: 0;
  width: 0;
  height: 0;
  }
  
  .span_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c00000;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 20px;
  }
  
  .span_slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 2.4px;
  bottom: 2.4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  }
  
  .inp_checkbox:checked + .span_slider:before {
  transform: translateX(28px);
  }
  
  .inp_checkbox:checked + .span_slider {
  background-color: #0fb56e;
  }
  
  .span_slider.span_round:before {
  border-radius: 50%;
  }