/* Custom checkbox — обгортка та прихований нативний чекбокс */
.custom-checkbox-wrap {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.custom-checkbox-wrap input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}

/* Блок-заміна в розмірах чекбоксу */
.custom-checkbox-box {
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  box-sizing: border-box;
  border: 2px solid #333;
  background: #fff;
  pointer-events: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.custom-checkbox-wrap .custom-checkbox-box.is-checked {
  background-color: var(--color-yellow);
  border-color:  var(--color-yellow);
}

.custom-checkbox-wrap .custom-checkbox-box.is-checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid black;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox-box {
  position: relative;
}
