.toggle {
  width: 104px;
  height: 28px;
  border: 2px solid #d7d7d7;
  border-radius: 0;
  background-color: #d7d7d7;
}
.toggle .toggle-handle {
  top: 0;
  left: 0;
  width: 50px;
  height: 24px;
  border: 1px solid #b5b5b5;
  border-radius: 2px;
  background-color: #bebebe;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.toggle:before {
  top: 1px;
  right: auto;
  left: 11px;
  z-index: 3;
  color: #fff;
}
.toggle.active {
  border: 2px solid #d7d7d7;
  background-color: #d7d7d7;
}
.toggle.active .toggle-handle {
  margin-right: 2px;
  background-color: #33b5e5;
  border-color: #33b5e5;
  -webkit-transform: translate3d(50px, 0, 0);
  -ms-transform: translate3d(50px, 0, 0);
  transform: translate3d(50px, 0, 0);
}
.toggle.active:before {
  left: auto;
  right: 14px;
  color: #fff;
}