/* ====================== checkbox =========================*/
.yvan-checkbox {
  display: inline-block;
  margin: 0;
  padding: 0;
  min-width: 110px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  list-style: none;
  line-height: unset;
  font-feature-settings: 'tnum';
  cursor: pointer;
  box-sizing: border-box;
}

.yvan-checkbox:hover .yvan-checkbox-switch .yvan-checkbox-status,
.yvan-checkbox .yvan-checkbox-switch:hover .yvan-checkbox-status {
  border-color: #1890ff;
}

.yvan-checkbox .yvan-checkbox-switch {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  top: -1px;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  outline: none;
  cursor: pointer;
}

.yvan-checkbox .yvan-checkbox-switch .yvan-checkbox-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.yvan-checkbox
  .yvan-checkbox-switch
  .yvan-checkbox-input:focus
  + .yvan-checkbox-status {
  border-color: #1890ff;
}

.yvan-checkbox .yvan-checkbox-switch .yvan-checkbox-status {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  border-collapse: separate;
  transition: all 0.3s;
}

.yvan-checkbox .yvan-checkbox-switch .yvan-checkbox-status::after {
  position: absolute;
  top: 50%;
  left: 20%;
  display: table;
  width: 5.71428571px;
  height: 9.14285714px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  content: ' ';
}

.yvan-checkbox .yvan-checkbox-switch.checked .yvan-checkbox-status {
  background-color: #1890ff;
  border-color: #1890ff;
}

.yvan-checkbox .yvan-checkbox-switch.checked .yvan-checkbox-status::after {
  content: ' ';
  position: absolute;
  display: table;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.yvan-checkbox .yvan-checkbox-switch.disabled .yvan-checkbox-status {
  background-color: #f5f5f5;
  border-color: #d9d9d9 !important;
  cursor: not-allowed;
}

.yvan-checkbox .yvan-checkbox-switch.disabled .yvan-checkbox-status::after {
  border-color: #f5f5f5;
  border-collapse: separate;
  animation-name: none;
}

.yvan-checkbox
  .yvan-checkbox-switch.disabled.checked
  .yvan-checkbox-status::after {
  border-color: rgba(0, 0, 0, 0.25);
}

.yvan-checkbox .yvan-checkbox-switch.disabled + .yvan-checkbox-text {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}

.yvan-checkbox .yvan-checkbox-text {
  padding-right: 8px;
  padding-left: 8px;
}

.webix_el_checkbox .webix_inp_label{
  display: block!important;
}
.yvan-validate-error .itemCheckbox{
  border:1px solid #ff8400
}