.checkbox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  margin-top: 8px;
  gap: 10px;
}

.checkbox-input {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

.checkbox-input:focus + span:before {
  border: 1px solid var(--bs-link-hover-color);
}

.checkbox-input + span {
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 24px;
}

.checkbox-input + span:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0px;
  top: -1px;
  border: 1px solid #000;
}

.checkbox-input:checked + span:before {
  border: 1px solid #000;
  background: #000 url("../images/icons/checkbox.svg") no-repeat center center;
  background-size: 60% 60%;
  box-shadow: none;
}

.checkbox-input.invalid + span:before {
  border: 1px solid red;
  background: none;
}

.checkbox-input.invalid + span,
.checkbox-input.invalid + span a {
  color: red;
}

.checkbox-input + span,
.checkbox-input + span a {
  font-size: 12px;
  line-height: 1.4;
  color: #9f9f9f;
}

.checkbox-input + span a {
  display: inline;
  text-decoration: underline;
}
.checkbox-input + span a:hover {
  color: #b9a17e;
}

[required].invalid {
  border: 1px solid red;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .btn.btn-outline-secondary.w-100.border-2x {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.cookie-warning {
  display: none;
  position: fixed;
  width: calc(100% - 30px);
  max-width: 360px;
  padding: 20px;
  padding-top: 24px;
  left: 15px;
  bottom: 15px;
  transition: transform 1s ease-in-out;
  transform: translate(0px, 0px);
  flex-direction: column;
  gap: 0px;
  justify-content: flex-start;
  align-items: flex-start;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
  z-index: 999999;
}

.cookie-warning .btn-close {
  right: 10px !important;
  top: 10px !important;
}
.cookie-warning p {
  display: block;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  text-align: left;
  color: #000000;
}

.cookie-warning.hide {
  transform: translate(0px, 200%);
}

.modal-footer-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 20px 10px;
  padding: 0px 20px 10px 20px;
  border-top: 1px solid #eee;
}

.modal-footer-wrapper__inner {
  flex: 1;
}

.modal-footer-wrapper__inner > p {
  text-align: center;
  display: block;
  width: 100%;
  color: #000;
  margin-top: 10px;
}

.modal-footer__separator {
  display: flex;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  transform: translate(0%, -50%);
  margin-bottom: -20px;
}

.modal-footer__separator span {
  padding: 5px 20px;
  background: #fff;
}

a.modal-footer__button {
  flex: 1;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-decoration: none !important;
  gap: 10px;
  border: 1px solid #888888;
  color: #888888;
  padding: 10px;
  transition: 0.3s;
}

a.modal-footer__button:hover {
  border: 1px solid #ccc;
  background: #ccc;
  color: #000;
}

a.modal-footer__button span {
  font-size: 16px;
  font-family: var(--bs-font-monospace);
  font-weight: 600;
  text-decoration: none !important;
  border: none !important;
  transition: 0.3s;
}

@media (max-width: 469px) {
  .modal-footer-wrapper {
    gap: 5px;
  }
  a.modal-footer__button {
    flex: none;
    width: 100%;
  }
  a.modal-footer__button span {
    font-size: 14px;
  }
  .modal-footer-wrapper__inner > p {
    font-size: 11px;
    margin-top: 5px;
  }
  .modal-footer__separator {
    margin-bottom: -10px;
  }
}
