@import "colors";
.cm-switch {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: 22px;
  min-width: 44px;
  line-height: 20px;
  vertical-align: middle;
  border-radius: 20px;
  border: 1px solid #ccc;
  background-color: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  .cm-switch-inner {
    color: #fff;
    font-size: 12px;
    margin-left: 24px;
    margin-right: 6px;
    display: block;
    line-height: 20px;
  }

  &:after {
    position: absolute;
    width: 18px;
    height: 18px;
    left: 1px;
    top: 1px;
    border-radius: 18px;
    background-color: #fff;
    content: " ";
    cursor: pointer;
    -webkit-transition: all 0.3s, width 0.3s;
    transition: all 0.3s, width 0.3s;
  }

  &:focus {
    box-shadow: 0 0 0 2px rgba(16, 142, 233, 0.2);
    outline: 0;
  }
  &:active:after {
      width: 24px;
  }
  &.checked{
    border-color: @color-blue;
    background-color: @color-blue;
    &:after {
      left: 100%;
      margin-left: -19px;
    }
    &:active:after{
      margin-left: -25px;
    }
    .cm-switch-inner{
      margin-left: 6px;
      margin-right: 24px;
    }
  }

  &.disabled{
    cursor: not-allowed;
    background: #f4f4f4;
    border-color: #f4f4f4;
    .ant-switch-inner {
      color: rgba(0, 0, 0, 0.25);
    }
    &:focus{
      box-shadow: none;
      outline: none;
    }
    &:after{
      background: #ccc;
      cursor: not-allowed;
    }
  }
  &.small{
    height: 14px;
    min-width: 28px;
    line-height: 12px;
    .cm-switch-inner{
      margin-left: 18px;
      margin-right: 3px;
    }
    &:after{
      width: 12px;
      height: 12px;
      top: 0;
      left: 0.5px;
    }
    &:active{
      &:after {
        width: 16px;
      }
    }
    &.checked{
      .cm-switch-inner{
        margin-left: 3px;
        margin-right: 18px;
      }
      &:after{
        left: 100%;
        margin-left: -12.5px;
      }
      &:active{
        &:after {
          margin-left: -16.5px;
        }
      }
    }
  }


}