@charset "UTF-8";
:root {
  --blue: #00338E;
  --white: #ffffff;
  --font-heading: 'Odds';
  --font-subheading: 'Iskra';
}

@font-face {
  font-family: "Odds";
  src: url("/assets/fonts/Odds/Odds-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Iskra";
  src: url("/assets/fonts/Iskra/iskra_medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SoftClubHelvetica";
  src: url("/assets/fonts/SoftClubHelvetica/softclubhelvetica.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  background: url("../imgs//background_main.png") center/cover no-repeat;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

section {
  overflow: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

img {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.main {
  flex: 1 0 auto;
}

/* Global: components present on every page (header, footer, auth, language…) */
/* ── Global components (visible on every page) ──────────────────── */
/* ── Auth Modal ─────────────────────────────────────────────────── */
.auth-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.auth-modal.show {
  display: flex;
}
.auth-modal__card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 44px 40px 40px;
  width: 100%;
  max-width: 420px;
  margin: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  animation: auth-card-in 0.25s ease;
}
.auth-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 18px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.auth-modal__close:hover {
  color: #333;
  background: #f0f0f0;
}

@keyframes auth-card-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* ── Tabs ───────────────────────────────────────────────────────── */
.auth-tabs {
  display: flex;
  gap: 4px;
  background: #f4f4f6;
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 24px;
}

.auth-tab {
  flex: 1;
  border: none;
  background: none;
  border-radius: 10px;
  padding: 9px 0;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.auth-tab.active {
  background: #fff;
  color: #111;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.auth-tab:hover:not(.active) {
  color: #444;
}

/* ── Form fields ────────────────────────────────────────────────── */
#authForm,
#otpForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-register-fields {
  display: none;
  flex-direction: row;
  gap: 12px;
}

#authForm input[type=text],
#authForm input[type=tel],
#otpForm input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e6;
  border-radius: 14px;
  font-size: 15px;
  color: #111;
  outline: none;
  background: #fafafa;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
#authForm input[type=text]::placeholder,
#authForm input[type=tel]::placeholder,
#otpForm input::placeholder {
  color: #bbb;
}
#authForm input[type=text]:focus,
#authForm input[type=tel]:focus,
#otpForm input:focus {
  border-color: var(--blue, #4361ee);
  background: #fff;
}

/* ── OTP step ───────────────────────────────────────────────────── */
.auth-otp-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.auth-otp-hint {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}

.auth-otp-input {
  letter-spacing: 0.25em;
  font-size: 22px !important;
  text-align: center;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.auth-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue, #4361ee);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.15s, transform 0.15s;
}
.auth-submit:hover {
  opacity: 0.88;
}
.auth-submit:active {
  transform: scale(0.98);
}
.auth-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.auth-back {
  display: block;
  margin-top: 14px;
  background: none;
  border: none;
  color: #888;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.auth-back:hover {
  color: #333;
}

/* ── Consent checkboxes ─────────────────────────────────────────── */
.auth-consents {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0;
}

.auth-consent-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}
.auth-consent-item input[type=checkbox] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  accent-color: var(--blue, #4361ee);
  cursor: pointer;
}
.auth-consent-item a {
  color: var(--blue, #4361ee);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Header auth button ─────────────────────────────────────────── */
.header__right {
  position: absolute;
  right: 5%;
  display: flex;
  align-items: center;
  gap: 16px;
  translate: 5% 0;
}

.header__auth-btn {
  background: #00338E;
  color: var(--white, #ffffff);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
}
.header__auth-btn:hover {
  background: var(--blue, #4361ee);
  color: #fff;
}

.header {
  position: relative;
  padding: 15px 100px;
  --header-background: rgba(255, 255, 255, 0.3);
  --header-link-color: var(--blue);
}
.header__container {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--header-background);
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  z-index: 10;
}
.header__logo {
  position: absolute;
  left: 0;
  top: 50%;
  width: 84px;
  transform: translate(-25%, -50%);
}
.header__nav {
  display: flex;
  width: 70%;
}
.header__link {
  color: var(--header-link-color);
  text-decoration: none;
}
.header__language {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}
.header__language-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: opacity 0.18s ease;
}
.header__language-code {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: opacity 0.18s ease;
}
.header__language:hover .header__language-icon, .header__language:hover .header__language-code {
  opacity: 0.7;
}

.footer {
  position: relative;
  --footer-background: var(--blue);
  --footer-company-color: rgba(255, 255, 255, 0.5);
  --footer-link-color: var(--white);
  flex-shrink: 0;
  margin-top: auto;
  z-index: 10;
}
.footer__container {
  padding: 40px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  background: var(--footer-background);
}
.footer__info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2cqi;
  text-align: center;
  flex-direction: column;
}
.footer__company {
  color: var(--footer-company-color);
}
.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__link {
  color: var(--footer-link-color);
  text-decoration: none;
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo img {
  width: 50%;
}

.language {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 800;
  background: rgba(2, 20, 60, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.language.show {
  display: flex;
}

.language__card {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 36px 36px;
  width: min(460px, 92vw);
  box-shadow: 0 48px 120px rgba(0, 51, 142, 0.2), 0 8px 24px rgba(0, 0, 0, 0.08);
  animation: lang-card-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.language__heading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 24px;
  letter-spacing: 0.01em;
}

.language__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.language__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 2px solid #dce8f8;
  border-radius: 14px;
  text-decoration: none;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.language__item:hover {
  border-color: var(--blue);
  background: #eef4ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 51, 142, 0.12);
}
.language__item.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(0, 51, 142, 0.3);
}
.language__item.active .language__item-code {
  opacity: 0.6;
}

.language__item-name {
  font-size: 14px;
}

.language__item-code {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.45;
}

@keyframes lang-card-in {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.admin-toast {
  display: flex !important;
  align-items: flex-start !important;
  gap: 20px;
  border-radius: 10px !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}
.admin-toast .toast-close {
  text-align: start !important;
}
.admin-toast-error {
  background: linear-gradient(135deg, #f44336 0%, #ef5350 100%) !important;
}
.admin-toast-success {
  background: linear-gradient(135deg, #00b09b 0%, #34d399 100%) !important;
}
.admin-toast-info {
  background: linear-gradient(135deg, #2196f3 0%, #64b5f6 100%) !important;
}
.admin-toast-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
  color: #fff !important;
}

/* Main: page-specific blocks (hero, promo, flavors, feedback…) */
/* ── Main page block styles ─────────────────────────────────────── */
.hero {
  --hero-title-font-family: var(--font-heading);
  --hero-title-font-color: var(--blue);
  --hero-title-font-size: 6cqi;
  --hero-desc-font-family: var(--font-subheading);
  --hero-desc-font-color: var(--blue);
  --hero-desc-font-size: 1.4cqi;
  position: relative;
}
.hero__background {
  width: 100%;
  display: block;
}
.hero__background.mobile {
  display: none;
}
.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 13cqi 0 0 5cqi;
}
.hero__title {
  font-family: var(--hero-title-font-family);
  font-size: var(--hero-title-font-size);
  line-height: 1;
  color: var(--hero-title-font-color);
  text-shadow: 0.3cqi 0.3cqi 0 white, -0.3cqi 0.3cqi 0 white, 0.3cqi -0.3cqi 0 white, -0.3cqi -0.3cqi 0 white;
}
.hero__description {
  font-family: var(--hero-desc-font-family);
  font-size: var(--hero-desc-font-size);
  color: var(--hero-desc-font-color);
  margin-top: 1cqi;
  line-height: 1.4;
  max-width: 40cqi;
}

.creative {
  --creative-title-font: var(--font-heading);
  --creative-title-font-color: var(--blue);
  --creative-description-font: var(--font-subheading);
  --creative-description-font-color: var(--blue);
  --creative-button-color: var(--blue);
  --creative-button-color-hover: #022C79FF;
  --creative-button-font-color: var(--white);
  --creative-button-font: var(--font-base);
}
.creative__container {
  position: relative;
}
.creative__background {
  width: 100%;
}
.creative__content {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2cqi;
}
.creative__title {
  color: var(--creative-title-font-color);
  font-family: var(--creative-title-font);
  text-align: center;
  font-size: 4cqi;
  text-shadow: 0.3cqi 0.3cqi 0 white, -0.3cqi 0.3cqi 0 white, 0.3cqi -0.3cqi 0 white, -0.3cqi -0.3cqi 0 white;
  text-wrap: nowrap;
}
.creative__description {
  color: var(--creative-description-font-color);
  font-family: var(--creative-description-font);
  text-align: center;
  font-size: 2cqi;
  text-wrap: nowrap;
}
.creative__button {
  color: var(--creative-button-font-color);
  background-color: var(--creative-button-color);
  font-family: var(--creative-button-font);
  text-decoration: none;
  padding: 2cqi 5cqi;
  border-radius: 50px;
  cursor: pointer;
  font-size: 2cqi;
  text-wrap: nowrap;
}
.creative__button:hover {
  background-color: var(--creative-button-color-hover);
}

.cookie-page__content {
  padding: 20px;
  background: white;
  color: var(--blue);
  font-family: var(--font-subheading);
}
.cookie-page__content h2 {
  margin-bottom: 20px;
}
.cookie-page__content .ot-sdk-show-settings {
  margin-top: 20px;
}
.cookie-page__content .ot-sdk-cookie-policy th, .cookie-page__content .ot-sdk-cookie-policy td, .cookie-page__content .ot-sdk-cookie-policy p, .cookie-page__content .ot-sdk-cookie-policy span, .cookie-page__content .ot-sdk-cookie-policy a {
  color: rgba(0, 51, 142, 0.8039215686) !important;
}
.cookie-page__content .ot-sdk-cookie-policy-group {
  color: rgba(0, 51, 142, 0.8039215686) !important;
}

.error-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f0f4ff;
  font-family: var(--font-body, Arial, sans-serif);
  padding: 24px;
}

.error-page {
  text-align: center;
  padding: 40px 24px;
  max-width: 480px;
}
.error-page__code {
  font-size: clamp(80px, 20vw, 160px);
  font-weight: 900;
  color: var(--blue, #1a3a6b);
  line-height: 1;
  margin: 0;
  letter-spacing: -4px;
}
.error-page__title {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  color: var(--blue, #1a3a6b);
  margin: 16px 0 8px;
}
.error-page__sub {
  font-size: 16px;
  color: #6b7a9e;
  margin: 0 0 32px;
  line-height: 1.55;
}
.error-page__btn {
  display: inline-block;
  padding: 12px 36px;
  background: var(--blue, #1a3a6b);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.15s;
}
.error-page__btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Profile: sidebar, personal data, consents… */
/* Profile styles are split into sub-modules for maintainability */
/* ── Profile page background ────────────────────────────────────── */
body.profile-body {
  background: #E5F8FF;
}

/* In admin constructor preview */
#page-content.profile-body {
  background: #E5F8FF;
}

/* ── Profile two-column layout ──────────────────────────────────── */
.profile-layout {
  display: flex;
  align-items: flex-start;
  padding: 32px 48px 60px;
  gap: 24px;
}

.profile-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 4cqi;
  width: 100%;
}

/* ── Profile sidebar menu ───────────────────────────────────────── */
.profile-menu {
  position: sticky;
  top: 100px;
  width: 220px;
  flex-shrink: 0;
}
.profile-menu__inner {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.profile-menu__avatar-block {
  display: flex;
  flex-direction: column;
  padding: 24px 16px 20px;
  gap: 8px;
  border-bottom: 1px solid #EAEAEA;
}
.profile-menu__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue, #00338E);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-menu__avatar-initials {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.profile-menu__username {
  font-size: 2cqi;
  font-weight: 700;
  color: var(--blue, #00338E);
  text-align: start;
  line-height: 1.3;
}
.profile-menu__item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  text-decoration: none;
  color: #040429;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid #EAEAEA;
  transition: background 0.12s, color 0.12s;
}
.profile-menu__item:hover {
  background: #f5f5f7;
}
.profile-menu__item.active {
  color: var(--blue, #00338E);
  font-weight: 600;
}
.profile-menu__item--danger {
  color: #e53935;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .profile-layout {
    flex-direction: column;
    padding: 16px 16px 40px;
    gap: 16px;
  }
  .profile-menu {
    position: static;
    width: 100%;
  }
  .profile-menu__avatar-block {
    display: none;
  }
  .profile-menu__inner {
    display: flex;
    flex-wrap: wrap;
  }
  .profile-menu__item {
    flex: 1 1 auto;
    min-width: 110px;
    justify-content: center;
    border-top: none;
    border-left: 1px solid #EAEAEA;
  }
  .profile-menu__item:first-child {
    border-left: none;
  }
}
/* ── Personal data card ─────────────────────────────────────────── */
.personal-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 36px 36px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.personal-section + .personal-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #EAEAEA;
}
.personal-section__title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

/* ── Form grid ──────────────────────────────────────────────────── */
.personal-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
@media (max-width: 600px) {
  .personal-fields {
    grid-template-columns: 1fr;
  }
}

.personal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.personal-field__label {
  font-size: 12px;
  font-weight: 500;
  color: #999;
}
.personal-field__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.personal-field__input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #E0E0E6;
  border-radius: 6px;
  font-size: 14px;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.personal-field__input:focus {
  border-color: var(--blue, #00338E);
}
.personal-field__input:read-only {
  background: #F9F9FB;
  color: #777;
  cursor: default;
}
.personal-field__badge {
  position: absolute;
  right: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
}
.personal-field__badge--verified {
  background: #E6F4EA;
  color: #2E7D32;
}
.personal-field__badge--unlinked {
  background: #FFF8E1;
  color: #F57F17;
}

/* ── Referral section ───────────────────────────────────────────── */
.personal-referral__input-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.personal-referral__input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #E0E0E6;
  border-radius: 6px;
  font-size: 14px;
  color: #555;
  background: #F9F9FB;
  outline: none;
  box-sizing: border-box;
}
.personal-referral__copy-btn {
  padding: 10px 20px;
  background: var(--blue, #00338E);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.personal-referral__copy-btn:hover {
  opacity: 0.85;
}

/* ── Stats row ──────────────────────────────────────────────────── */
.personal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .personal-stats {
    grid-template-columns: 1fr;
  }
}

.personal-stat {
  border: 1.5px solid #EAEAEA;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.personal-stat__value {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  line-height: 1;
}
.personal-stat__label {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

/* ── Action buttons ─────────────────────────────────────────────── */
.personal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #EAEAEA;
  gap: 12px;
  flex-wrap: wrap;
}

.personal-btn {
  padding: 11px 28px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s;
  border: 1.5px solid transparent;
}
.personal-btn--outline {
  background: transparent;
  border-color: #CCCCCC;
  color: #333;
}
.personal-btn--outline:hover {
  border-color: #e53935;
  color: #e53935;
}
.personal-btn--primary {
  background: var(--blue, #00338E);
  color: #fff;
  border-color: var(--blue, #00338E);
}
.personal-btn--primary:hover {
  opacity: 0.88;
}
.personal-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Consents checkboxes ────────────────────────────────────────── */
.consent-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}
.consent-row:last-child {
  border-bottom: none;
}
.consent-row {
  /* custom checkbox */
}
.consent-row__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--blue, #00338E);
  cursor: pointer;
}
.consent-row__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.consent-row__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue, #00338E);
  line-height: 1.4;
}
.consent-row__sub {
  font-size: 12px;
  color: #AAAAAA;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.consent-row__link {
  color: var(--blue, #00338E);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 12px;
}
.consent-row__link:hover {
  opacity: 0.75;
}
.consent-row {
  /* Read-only accepted state */
}
.consent-row--accepted .consent-row__check {
  pointer-events: none;
}
.consent-row--accepted .consent-row__label {
  color: #111;
}

/* Layout */
@media (max-width: 1024px) {
  .language__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .header {
    padding: 15px 50px;
  }
  .hero__background {
    display: none;
  }
  .hero__background.mobile {
    display: block;
  }
  .hero__title {
    font-size: calc(var(--hero-title-font-size) * 1.5);
  }
  #authForm .auth-register-fields {
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */
