.custom-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid rgba(218, 122, 43, 0.949);
  border-radius: 3px;
}

.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 5px;
  top: 0px;
  width: 7px;
  height: 12px;
  border: solid rgba(218, 122, 43, 0.949);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.hidden {
  display: none;
}

.modal {
  z-index: 1000;
}
