.switch1Box .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 25px;
}

.switch1Box .switch input {display:none;}

.switch1Box .sliderSwitch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #df9417 ; 
  -webkit-transition: .4s;
  transition: .4s;
	
}

.switch1Box .sliderSwitch:before {
  position: absolute;
  content: "";
  height: 34px;
  width: 34px;
  left: 0px;
  bottom: -4px;
  background-color: white;
  -webkit-transition: .4s; background-image: url(../images/switchBg.png); background-repeat: no-repeat; background-position: center;
  transition: .4s;
}

.switch1Box input:checked + .sliderSwitch {
  background-color: #013067;
}




.switch2Box .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 20px;
}

.switch2Box .switch input {display:none;}

.switch2Box .sliderSwitch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff; 
  -webkit-transition: .4s;
  transition: .4s; border: 1px solid #babdbf
}


.switch2Box .sliderSwitch:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 0px;
  bottom: -3px;
  background-color: white;
  -webkit-transition: .4s;  
  transition: .4s; border: 1px solid #004ba5
}


.switch2Box input:checked + .sliderSwitch {
  background-color: #004ba5;
}








.switch3Box .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 20px;
}

.switch3Box .switch input {display:none;}

.switch3Box .sliderSwitch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff; 
  -webkit-transition: .4s;
  transition: .4s; border: 1px solid #babdbf
}


.switch3Box .sliderSwitch:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 0px;
  bottom: -3px;
  background-color: white;
  -webkit-transition: .4s;  
  transition: .4s; border: 1px solid #004ba5
}


.switch3Box input:checked + .sliderSwitch {
  background-color: #004ba5;
}















input:focus + .sliderSwitch {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .sliderSwitch:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.sliderSwitch.round {
  border-radius: 34px;
}

.sliderSwitch.round:before {
  border-radius: 50%;
}