@import './theme/default';
@import './theme/timing-functions';

.zent-switch {
  @include theme-color(border-color, stroke, 3);
  @include theme-color(background-color, stroke, 3);
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 44px;
  height: 22px;
  line-height: 20px;
  border-radius: 100px;
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
  transition: all 0.16s $timing-fn-ease-in-out;

  &:after {
    @include theme-color(background-color, stroke, 9);
    position: absolute;
    width: 18px;
    height: 18px;
    left: 1px;
    top: 1px;
    border-radius: 100%;
    content: ' ';
    cursor: pointer;
    transition: left 0.16s $timing-fn-ease-in-out;
  }

  &:focus {
    outline: 0;
  }

  &:focus:hover {
    box-shadow: none;
  }

  // large switch not used
  &-large {
    height: 50px;
    line-height: 12px;
    width: 90px;
    border-radius: 50px;

    &:after {
      width: 44px;
      height: 44px;
      top: 2px;
      left: 2px;
    }

    &.zent-switch-checked {
      &:after {
        left: 42px;
      }
    }
  }

  &-small {
    width: 28px;
    height: 16px;

    &:after {
      width: 12px;
      height: 12px;
      left: 1px;
      top: 1px;
    }

    &.zent-switch-checked:after {
      left: 13px;
    }
  }

  &-checked {
    @include theme-color(border-color, primary, 4);
    @include theme-color(background-color, primary, 4);

    &::after {
      left: 23px;
    }
  }

  &-disabled {
    @include theme-color(background-color, stroke, 4);
    @include theme-color(border-color, stroke, 4);
    cursor: not-allowed;

    &.zent-switch-checked {
      background-color: rgb(148, 180, 235);
      border-color: rgb(148, 180, 235);
    }

    &::after {
      @include theme-color(background-color, stroke, 9);
      cursor: not-allowed;
    }
  }

  &-loading {
    position: relative;
    color: transparent;
    cursor: not-allowed;

    &::after {
      cursor: not-allowed;
    }

    &::before {
      @include theme-color(border-top-color, primary, 8);
      @include theme-color(border-right-color, primary, 8);
      @include theme-color(border-bottom-color, primary, 4);
      @include theme-color(border-left-color, primary, 4);

      content: ' ';
      position: absolute;
      top: 42%;
      left: 36%;
      z-index: 2;
      width: 14px;
      height: 14px;
      margin: -5px 0 0 -12px;
      border-width: 2px;
      border-style: solid;
      border-radius: 100%;
      box-sizing: border-box;
      animation: zent-ani-spin 1s $timing-fn-linear;
      animation-iteration-count: infinite;
    }

    &.zent-switch-checked {
      &::before {
        margin: -5px 0 0 10px;
      }
    }

    // small switch
    &.zent-switch-small {
      &::before {
        width: 8px;
        height: 8px;
        margin: -3px 0 0 -6px;
        border-width: 1px;
      }

      &.zent-switch-checked {
        &::before {
          margin: -3px 0 0 6px;
        }
      }
    }

    // large switch not used
    &.zent-switch-large {
      &::before {
        margin: -5px 0 0 -17px;
      }

      &.zent-switch-checked {
        &::before {
          margin: -5px 0 0 23px;
        }
      }
    }
  }
}
