@charset "utf-8";
@import "../../base/fn";

$ysuiSwitchHeight: 32px;

.ysui-switch {
  appearance: none;
  font-size: 0;
  position: relative;
  width: 52px;
  height: $ysuiSwitchHeight;
  border: 1px solid #dfdfdf;
  outline: 0;
  border-radius: 16px;
  box-sizing: border-box;
  background-color: #dfdfdf;
  transition: background-color .1s, border .1s;
  margin: 0;
  &:before{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: $ysuiSwitchHeight - 2;
    border-radius: 15px;
    background-color: #fdfdfd;
    transition: transform .35s cubic-bezier(0.45, 1, 0.4, 1);
  }
  &:after{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: $ysuiSwitchHeight - 2;
    height: $ysuiSwitchHeight - 2;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    transition: transform .35s cubic-bezier(0.4, 0.4, 0.25, 1.35);
  }
  &:checked {
    border-color: #04be02;
    background-color: #04be02;
    &:before {
      transform: scale(0);
    }
    &:after {
      transform: translateX(20px);
    }
  }
  &:disabled {
    opacity: .5;
  }
}
