input.apple-switch {
 position: relative;
 appearance: none; outline: none;
 width: 50px; height: 30px;
 background-color: #ffffff; border: 1px solid #D9DADC;
 border-radius: 50px; box-shadow: inset -20px 0 0 0 #ffffff;
 transition-duration: 200ms;
}
input.apple-switch:after {
 content: ""; 
 position: absolute;
 top: 1px; left: 1px;
 width: 26px; height: 26px;
 background-color: transparent;
 border-radius: 50%; box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
}
input.apple-switch:checked {
 border-color: #4ED164;
 box-shadow: inset 20px 0 0 0 #4ED164;
}
input.apple-switch:checked:after {
 left: 20px;
 box-shadow: -2px 4px 3px rgba(0,0,0,0.05);
}

input.switch {
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  height: 20px;
  width: 40px;
  border-radius: 10px;
  box-shadow: inset -20px 0px 0px 0px rgba(192, 192, 192, 1);
  background-color: white;
  border: 1px solid rgba(192, 192, 192, 1);
  outline: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

input.switch:checked {
  box-shadow: inset 20px 0px 0px 1px rgba(33, 150, 243, 0.5);
  border: 1px solid rgba(33, 150, 243, 1);
}
