.input-checkbox {
  display: inline-block;
  vertical-align: middle;
}
.input-checkbox input[type="checkbox"] {
  display: none;
  vertical-align: middle;
}
.input-checkbox input[type="checkbox"] + .input-cover {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  border: solid 1px #969B9E;
  border-radius: 2px;
  background-color: #fff;
  margin-right: 5px;
  cursor: pointer;
}
.input-checkbox input[type="checkbox"] + .input-cover:hover {
  border: solid 1px #0066CC;
}
.input-checkbox input[type="checkbox"] + .input-cover + .input-cbtxt {
  cursor: pointer;
}
.input-checkbox input[type="checkbox"]:checked + .input-cover {
  border-color: #0066CC;
  background-color: #0066CC;
  position: relative;
}
.input-checkbox input[type="checkbox"]:checked + .input-cover::after {
  font-family: BD;
  content: "\e93e";
  width: 12px;
  height: 12px;
  font-size: 12px;
  color: #fff;
  background-color: #0066CC;
  position: absolute;
  left: 1px;
  top: 1px;
  line-height: 1;
  transition: all 0.1s ease-in;
}
.input-checkbox input[type="checkbox"]:disabled + .input-cover {
  border-color: #D7DADE;
  background-color: #f5f7fa;
  cursor: not-allowed;
  position: relative;
}
.input-checkbox input[type="checkbox"]:disabled + .input-cover + .input-cbtxt {
  color: #999;
  cursor: not-allowed;
}
.input-checkbox input[type="checkbox"]:checked:disabled + .input-cover {
  border-color: #D7DADE;
  background-color: #f5f7fa;
  cursor: not-allowed;
  position: relative;
}
.input-checkbox input[type="checkbox"]:checked:disabled + .input-cover::before {
  display: block;
  content: '';
  width: 15px;
  height: 15px;
  background-color: #D7DADE;
  position: absolute;
  inset: 0;
  line-height: 1;
}
.input-checkbox input[type="checkbox"]:checked:disabled + .input-cover::after {
  font-family: BD;
  content: "\e93e";
  width: 12px;
  height: 12px;
  font-size: 12px;
  color: #fff;
  background-color: #D7DADE;
  position: absolute;
  left: 1px;
  top: 1px;
  line-height: 1;
  transition: all 0.1s ease-in;
  z-index: 2;
}
.input-checkbox input[type="checkbox"]:checked:disabled + .input-cover + .input-cbtxt {
  color: #999;
  cursor: not-allowed;
}
