
/* S W I T C H S */ 

.container-switch {
	line-height: 0px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 39px !important;
  height: 19px;
  border: 1px solid #E0E0E0;
  border-radius: 50px;
}
.switch input {display:none;}
.slider_switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1f1f1f;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
}
.slider_switch:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
}
.switch input:checked + .slider_switch{
  background-color: #2196F3;
}

.switch input:focus + .slider_switch {
  box-shadow: 0 0 1px #2196F3;
}

.switch input:checked + .slider_switch:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}


.slider_switch.round_switch {
  border-radius: 50px;
}

.slider_switch.round_switch:before {
  border-radius: 50px;
}

.slider_switch_checked{
	position: absolute;
	color: #E0E0E0;
  top: 10px;
	left: 50px;
  font-size: 12px;
  text-align: right;
} 
.slider_switch_checked_checked{
	display: none;
  color: #E0E0E0;
}
/* Red Switch */
.switch input:checked + .slider_switch_red{
  background-color: #1f1f1f;
  border-radius: 50px;
  
  
}
.switch input:focus + .slider_switch_red {
  box-shadow: 0 0 1px #BD2A2A}
/* Yellow Switch */
.switch input:checked + .slider_switch_yellow{
  background-color: #E8CD18}
.switch input:focus + .slider_switch_yellow {
  box-shadow: 0 0 1px #E8CD18}
/* Green Switch */
.switch input:checked + .slider_switch_green{
  background-color: #333333}
.switch input:focus + .slider_switch_green {
  box-shadow: 0 0 1px #58A970}
/* Blue Switch */
.switch input:checked + .slider_switch_blue{
  background-color: #029DCA}
.switch input:focus + .slider_switch_blue {
  box-shadow: 0 0 1px #029DCA}