.toggle {
  width: 47px;
  border: 2px solid #e6e6e6;
  -webkit-box-shadow: inset 0 0 0 0 #e1e1e1;
  box-shadow: inset 0 0 0 0 #e1e1e1;
  -webkit-transition-property: box-shadow, border;
  -moz-transition-property: box-shadow, border;
  transition-property: box-shadow, border;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.toggle .toggle-handle {
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transition-property: -webkit-transform, border, width;
  -moz-transition-property: -moz-transform, border, width;
  transition-property: transform, border, width;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.08);
}
.toggle:before {
  display: none;
}
.toggle.active {
  border: 2px solid #4cd964;
  background-color: transparent;
  -webkit-box-shadow: inset 0 0 0 13px #4cd964;
  box-shadow: inset 0 0 0 13px #4cd964;
}
.toggle.active .toggle-handle {
  -webkit-transform: translate3d(17px, 0, 0);
  -ms-transform: translate3d(17px, 0, 0);
  transform: translate3d(17px, 0, 0);
}
.toggle.active .toggle-handle {
  border-color: #4cd964;
}
