@charset "UTF-8";
.zk-switch {
  display: inline-block;
  position: relative;
  font-size: 14px
}

.zk-switch .label-fade-enter,
.zk-switch .label-fade-leave-active {
  opacity: 0
}

.zk-switch.is-disabled .zk-switch__core {
  border-color: #E5E9F3;
  background: #E5E9F3
}

.zk-switch.is-disabled .zk-switch__core span {
  background-color: #F9FAFC
}

.zk-switch.is-disabled .zk-switch__core~.zk-switch__label * {
  color: #F9FAFC
}

.zk-switch.is-disabled .zk-switch__input:checked+.zk-switch__core {
  border-color: #E5E9F3;
  background-color: #E5E9F3
}

.zk-switch.is-disabled .zk-switch__core,
.zk-switch.is-disabled .zk-switch__label {
  cursor: not-allowed
}

.zk-switch__core,
.zk-switch__label {
  display: inline-block;
  width: 46px;
  height: 22px;
  cursor: pointer
}

.zk-switch__label {
  -webkit-transition: .2s;
  transition: .2s;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.zk-switch__label * {
  line-height: 1;
  top: 4px;
  position: absolute;
  font-size: 14px;
  display: inline-block;
  color: #fff
}

.zk-switch__label--left i {
  left: 6px
}

.zk-switch__label--right i {
  right: 6px
}

.zk-switch__input:checked+.zk-switch__core {
  border-color: $color-primary;
  background-color: $color-primary
}

.zk-switch__core {
  margin: 0;
  vertical-align: middle;
  position: relative;
  border: 1px solid #C0CCDA;
  outline: 0;
  border-radius: 12px;
  box-sizing: border-box;
  background: #C0CCDA;
  -webkit-transition: border-color .3s, background-color .3s;
  transition: border-color .3s, background-color .3s
}

.zk-switch__core .zk-switch__button {
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 100%;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  width: 16px;
  height: 16px;
  z-index: 20;
  background-color: #fff
}

.zk-switch--wide .zk-switch__label.zk-switch__label--left span {
  left: 10px
}

.zk-switch--wide .zk-switch__label.zk-switch__label--right span {
  right: 10px
}
