.switch {
  position: relative;
  width: 40px;
  height: 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
}
.switch:before {
  content: "";
  position: relative;
  top: 3px;
  left: 3px;
  width: 45px;
  height: 24px;
  display: block;
  background: #9A9999;
  border-radius: 11px;
  transition: background 0.2s ease;
}
.switch span {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  display: block;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(154, 153, 153, 0.5);
  transition: all 0.2s ease;
}
.switch span:before {
  content: "";
  position: absolute;
  display: block;
  margin: -18px;
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  transform: scale(0);
  opacity: 1;
  pointer-events: none;
}

.switch.on:before {
  background: #19af46;
}
.switch.on span {
  background: white;
  transform: translateX(20px);
  transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
}
.switch.on span:before {
  transform: scale(1);
  opacity: 0;
  transition: all 0.4s ease;
}

/*# sourceMappingURL=vue-switch.css.map */
