#cookieModal {
  position: fixed;
  inset: 0;
  background: rgba(11, 29, 51, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cookie-modal-dialog {
  width: 100%;
  max-width: 540px;
  margin: 1rem;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}

.cookie-modal-content {
  background: #f4ecd6;
  border-radius: 0.25rem;
  overflow: hidden;
}

.cookie-message {
  width: 100%;
  padding: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #1a2c44;
}
.cookie-message h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #0b1d33;
  margin-bottom: 0.75rem;
}
.cookie-message a {
  color: #a07f2c;
  text-decoration: underline;
}
.cookie-message a:hover {
  color: #0b1d33;
}
.cookie-message button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-family: "Nunito", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cookie-message button.confirm-button {
  background-color: #0b1d33;
  color: #f4ecd6;
  border: 2px solid #0b1d33;
}
.cookie-message button.confirm-button:hover {
  background-color: #a07f2c;
  border-color: #a07f2c;
}
.cookie-message button.adjust-button {
  background: transparent;
  color: #0b1d33;
  border: 1px solid rgba(11, 29, 51, 0.3);
}
.cookie-message button.adjust-button:hover {
  border-color: rgba(160, 127, 44, 0.4);
  color: #a07f2c;
}
.cookie-message .button-container {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1rem;
}
.cookie-message .button-container button {
  width: 100%;
}

.cookie-settings {
  padding: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #1a2c44;
}
.cookie-settings > p {
  margin-bottom: 1rem;
}
.cookie-settings > button.confirm-button {
  display: block;
  width: 100%;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-family: "Nunito", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #0b1d33;
  color: #f4ecd6;
  border: 2px solid #0b1d33;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  margin-bottom: 1rem;
}
.cookie-settings > button.confirm-button:hover {
  background-color: #a07f2c;
  border-color: #a07f2c;
}
.cookie-settings > button.confirm-button:last-of-type {
  margin-top: 1rem;
}
.cookie-settings .cookie-item {
  border: 1px solid rgba(11, 29, 51, 0.2);
  width: 100%;
  background-color: transparent;
  display: flex;
  flex-direction: column;
}
.cookie-settings .cookie-item:not(:last-of-type) {
  border-bottom: 0;
}
.cookie-settings .cookie-item button {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  width: 100%;
  border: 0;
  border-radius: 0;
  font-family: "Nunito", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0b1d33;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}
.cookie-settings .cookie-item button:hover {
  color: #a07f2c;
}
.cookie-settings .cookie-item button span:last-child {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a07f2c;
}
.cookie-settings .cookie-item .cookie-item-icon {
  width: 14px;
  opacity: 0.6;
}
.cookie-settings .cookie-item__row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.cookie-settings .cookie-item__checkbox-wrap {
  display: flex;
  align-items: center;
}
.cookie-settings .collapse-container {
  padding: 0.75rem 1rem;
  background-color: rgba(11, 29, 51, 0.05);
  border-top: 1px solid rgba(11, 29, 51, 0.1);
  font-size: 0.8125rem;
  color: #1a2c44;
}
.cookie-settings input[type=checkbox][role=switch] {
  appearance: none;
  -webkit-appearance: none;
  width: 2.5rem;
  height: 1.375rem;
  background-color: rgba(11, 29, 51, 0.15);
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}
.cookie-settings input[type=checkbox][role=switch]::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 1rem;
  height: 1rem;
  background-color: #f4ecd6;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(11, 29, 51, 0.2);
}
.cookie-settings input[type=checkbox][role=switch]:checked {
  background-color: #0b1d33;
}
.cookie-settings input[type=checkbox][role=switch]:checked::before {
  transform: translateX(1.125rem);
}

.u-hidden {
  display: none !important;
}

.clickable {
  cursor: pointer;
}

.required label::after {
  content: "*";
  color: #e24747;
}

.wait {
  display: none;
  margin-top: 1rem;
  color: #1a2c44;
}

img {
  height: auto;
}

.grecaptcha-badge {
  display: none !important;
}

.validation-summary-errors {
  margin-top: 1rem;
  color: #e24747;
}
.validation-summary-errors ul,
.validation-summary-errors ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: #e24747;
}

.dropzone {
  border: 1px solid #ececec;
  background-color: #f1f3f8;
  min-height: 138px;
}
.dropzone .dz-preview {
  width: 75px;
  height: 75px;
  min-height: 75px;
}
.dropzone .dz-preview.dz-image-preview {
  background: transparent;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 0;
}
.dropzone .dz-preview .dz-image {
  border-radius: 0;
  width: 80px;
  height: 80px;
}
.dropzone .dz-preview .dz-image img {
  display: block;
  width: 100%;
  height: 100%;
}
.dropzone .dz-preview .dz-progress {
  margin-top: 0;
  width: 60px;
  margin-left: -26px;
}

.dz-details {
  display: none;
}

ul.attachments {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

ul.images li {
  float: left;
  margin: 0 6px 0 0;
  padding: 0;
  position: relative;
  border: 1px solid white;
  list-style-type: none;
}
ul.images li a {
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: white;
  padding: 5px;
  height: 24px;
  width: 23px;
}
ul.images li a i {
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.delete {
  right: 25px !important;
  color: red;
}

.newsitems div img {
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
