.custom-checkbox__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .custom-checkbox__label {
    font-size: 16px;
  }
}

.custom-checkbox__input + .custom-checkbox__label::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(/img/icons/checked-open.svg);
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.custom-checkbox__input:checked + .custom-checkbox__label::before {
  background-image: url(/img/icons/checked-full.svg);
}

.custom-checkbox__label:has(input)::after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(/img/icons/checked-open.svg);
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.custom-checkbox__label:has(input:checked)::after {
  background-image: url(/img/icons/checked-full.svg);
}
