 .toggle {
  width: 58px;
  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 {
  position: absolute;
  top: 3px;
  right: 11px;
  color: #999;
  font-size: 13px;
  content: "O";
}
.toggle.active {
  border: 2px solid #60a683;
  background-color: #60a683;

  -webkit-box-shadow: inset 0 0 0 13px #60a683;
  box-shadow: inset 0 0 0 13px #60a683;
}
.toggle.active .toggle-handle {
  -webkit-transform: translate3d(28px, 0, 0);
  -ms-transform: translate3d(28px, 0, 0);
  transform: translate3d(28px, 0, 0);
}
.toggle.active .toggle-handle {
  border-color: #60a683;
}
.toggle.active:before {
  right: auto;
  left: 15px;
  color: #fff;
  content: "I";
}