/* =========================================================
   AJORDI.CH – HEADER, WETTER UND MOBILE NAVIGATION
   ========================================================= */

:root {
  --header-background: #ffffff;
  --header-text: #111111;
  --header-accent: #c62828;
  --header-border: rgba(0, 0, 0, 0.09);
  --header-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   HEADER
   ========================================================= */

/* Der Include-Platzhalter darf auf keiner Viewport-Groesse einen
   eigenen oberen Abstand erzeugen. Das ist bewusst global, damit
   Desktop, Tablet und Smartphone identisch am Seitenanfang starten. */
html body > #header-placeholder {
  top: 0 !important;
  inset-block-start: 0 !important;
  margin-top: 0 !important;
  margin-block-start: 0 !important;
  padding-top: 0 !important;
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  inset-block-start: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 3000;

  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  margin-block-start: 0 !important;
  padding-top: 0 !important;
  transform: none !important;

  background: var(--header-background);

  border-bottom:
    1px solid var(--header-border);
}


.site-header .header-inner {
  position: relative;

  display: flex;
  align-items: center;

  width: min(calc(100% - 2rem), var(--container, 1180px)) !important;
  max-width: var(--container, 1180px) !important;
  min-width: 0;
  margin-left: auto !important;
  margin-right: auto !important;

  min-height: 76px;

  gap: 1.2rem;
}


/* =========================================================
   LOGO
   ========================================================= */

.brand {
  display: inline-flex;
  align-items: center;

  gap: 0.75rem;

  flex-shrink: 0;

  color: var(--header-text);

  text-decoration: none;
}


.brand-logo {
  display: block;

  width: 48px;
  height: 48px;

  object-fit: contain;
}


.brand-text {
  font-weight: 700;
  font-size: 1.2rem;

  color: #111111;

  white-space: nowrap;
}


.brand-j {
  color: #c62828;
}

/* =========================================================
   WETTERBLOCK
   ========================================================= */

.header-weather {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 1 1 auto;

  min-width: 0;

  margin-left: auto;
  margin-right: auto;

  gap: 0.12rem;

  line-height: 1.15;
}


/* =========================================================
   KLICKBARE WETTERFLÄCHE
   ========================================================= */

.header-weather__link {
  display: inline-flex;
  align-items: center;

  width: auto;
  min-width: 0;

  padding: 0.3rem 0.15rem;

  border-radius: 10px;

  color: inherit;
  text-decoration: none;

  transition:
    background-color 0.2s ease;
}


.header-weather__link:hover,
.header-weather__link:focus-visible {
  background:
    rgba(198, 40, 40, 0.06);

  outline: none;
}


.header-weather__content {
  display: inline-flex;
  flex-direction: column;

  width: auto;
  min-width: 0;
}


/* =========================================================
   WETTERHAUPTZEILE
   ========================================================= */

.header-weather__main {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;

  width: auto;

  gap: 0.35rem;

  white-space: nowrap;
}


.header-weather__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  font-size: 1.3rem;
  line-height: 1;
}

.header-weather__icon img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}


.header-weather__temperature {
  color: var(--header-text);

  font-size: 1rem;
  font-weight: 800;

  font-variant-numeric: tabular-nums;
}


.header-weather__precipitation {
  display: inline-flex;
  align-items: center;

  gap: 0.15rem;

  color: #4b5563;

  font-size: 0.8rem;
  font-weight: 650;

  font-variant-numeric: tabular-nums;

  white-space: nowrap;
}

.header-weather__precipitation img {
  display: block;
  width: 15px;
  height: 15px;
  object-fit: contain;
}


/* =========================================================
   STANDORTZEILE
   ========================================================= */

.header-weather__location {
  margin-top: 0.12rem;

  color: #6b7280;

  font-size: 0.65rem;
  font-weight: 600;

  line-height: 1.2;

  text-align: left;

  white-space: nowrap;
}


/* =========================================================
   REFRESH-BUTTON
   Direkt anschliessend an die Wetterfläche
   ========================================================= */

.header-weather__refresh {
  position: static;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  width: 28px;
  height: 28px;

  margin: 0 0 0 0.08rem;
  padding: 0;

  border: 0;
  border-radius: 50%;

  background: transparent;

  color: #4b5563;

  font-size: 1.15rem;
  font-weight: 700;

  line-height: 1;

  cursor: pointer;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}


.header-weather__refresh:hover,
.header-weather__refresh:focus-visible {
  color: var(--header-accent);

  background:
    rgba(198, 40, 40, 0.08);

  outline: none;
}

.header-weather__refresh-icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}


.header-weather__refresh.is-loading img {
  animation:
    ajordi-weather-spin
    0.8s linear infinite;
}


@keyframes ajordi-weather-spin {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1500px) {

  .header-weather {
    flex: 1 1 auto;

    min-width: 0;

    margin-left: 0.25rem;
    margin-right: 0.25rem;

    gap: 0.08rem;
  }


  .header-weather__link {
    width: auto;
    min-width: 0;

    padding:
      0.2rem 0.08rem;
  }


  .header-weather__main {
    gap: 0.22rem;
  }


  .header-weather__icon {
    width: 23px;
    height: 23px;

    font-size: 1.1rem;
  }


  .header-weather__temperature {
    font-size: 0.9rem;
  }


  .header-weather__precipitation {
    font-size: 0.7rem;
  }


  .header-weather__refresh {
    width: 25px;
    height: 25px;

    margin-left: 0.05rem;

    font-size: 1.02rem;
  }


  .header-weather__location {
    max-width: 100%;

    overflow: hidden;

    font-size: 0.59rem;

    text-overflow: ellipsis;

    white-space: nowrap;
  }
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.site-nav {
  flex-shrink: 0;
  min-width: 0;
}


.nav-list,
.dropdown-menu {
  margin: 0;
  padding: 0;

  list-style: none;
}


.nav-list {
  display: flex;
  align-items: center;

  gap: 0.4rem;
}


.nav-list a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;

  min-height: 44px;

  padding:
    0.65rem 0.85rem;

  border: 0;
  border-radius: 0.55rem;

  background: transparent;

  color: var(--header-text);

  font: inherit;
  font-weight: 600;

  text-decoration: none;

  cursor: pointer;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}


.nav-list a:hover,
.nav-list a:focus-visible,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
  color: var(--header-accent);

  background:
    rgba(198, 40, 40, 0.08);

  outline: none;
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.nav-dropdown {
  position: relative;
}


.dropdown-menu {
  position: absolute;

  top: calc(100% + 0.3rem);
  left: 0;

  display: none;

  min-width: 250px;

  padding: 0.5rem;

  background:
    var(--header-background);

  border:
    1px solid var(--header-border);

  border-radius: 0.7rem;

  box-shadow:
    var(--header-shadow);
}


.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown:focus-within > .dropdown-menu,
.nav-dropdown.is-open > .dropdown-menu {
  display: block;
}


.dropdown-menu a {
  display: flex;

  width: 100%;
}


/* Hamburger auf Desktop verborgen */

.menu-toggle {
  display: none;
}


/* =========================================================
   REMOTE SUPPORT
   ========================================================= */

.nav-remote-support {
  display: flex;
  align-items: center;

  flex: 0 0 auto;
}


.remote-support-link {
  display: inline-flex !important;

  align-items: center;
  justify-content: center;

  width: 58px;
  min-width: 58px;

  height: 58px;
  min-height: 58px;

  padding: 4px !important;

  overflow: hidden;
}


.remote-support-icon {
  display: block;

  width: 48px !important;
  max-width: 48px !important;

  height: 48px !important;
  max-height: 48px !important;

  object-fit: contain;
}


/* Beide Klassennamen unterstützen */

.main-navigation.is-open,
.site-nav.is-open {
  display: block;
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 1500px) {

  .site-header .header-inner {
    min-height: 72px;

    gap: 0.55rem;
  }


  /* Logo kompakter */

  .brand {
    gap: 0.45rem;
  }


  .brand-logo {
    width: 40px;
    height: 40px;
  }


  .brand-text {
    font-size: 1rem;
  }


  /* Wetter bleibt in der Kopfzeile */

  .header-weather {
    min-width: 0;

    margin-left: auto;

    flex: 1;

    overflow: hidden;
  }


  .header-weather__main {
    justify-content: flex-end;

    gap: 0.25rem;
  }


  .header-weather__icon {
    width: 24px;
    height: 24px;

    font-size: 1.15rem;
  }


  .header-weather__temperature {
    font-size: 0.92rem;
  }


  .header-weather__precipitation {
    font-size: 0.73rem;
  }


  .header-weather__refresh {
    width: 28px;
    height: 28px;

    font-size: 1.12rem;
  }


  .header-weather__location {
    overflow: hidden;

    font-size: 0.61rem;

    text-overflow: ellipsis;

    white-space: nowrap;
  }


  /* Hamburger */

  .menu-toggle {
    display: inline-flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    width: 44px;
    min-width: 44px;

    height: 44px;

    margin-left: 0;

    padding: 8px;

    border: 0;
    border-radius: 0.55rem;

    background: transparent;

    cursor: pointer;

    z-index: 2;
  }


  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    background:
      rgba(198, 40, 40, 0.08);

    outline: none;
  }


  .menu-toggle span {
    display: block;

    width: 25px;
    height: 3px;

    background:
      var(--header-text);

    border-radius: 999px;

    transform-origin: center;

    transition:
      transform 0.25s ease,
      opacity 0.2s ease,
      background-color 0.2s ease;
  }


  .menu-toggle.is-open span,
  .menu-toggle:hover span {
    background:
      var(--header-accent);
  }


  .menu-toggle.is-open span:nth-child(1) {
    transform:
      translateY(8px)
      rotate(45deg);
  }


  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }


  .menu-toggle.is-open span:nth-child(3) {
    transform:
      translateY(-8px)
      rotate(-45deg);
  }


  /* Navigation klappt UNTER dem Header auf */

  .site-nav {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    display: none;

    width: 100%;

    max-height:
      calc(100vh - 72px);

    margin: 0;

    padding:
      0.8rem 1rem 1.2rem;

    overflow-y: auto;

    overscroll-behavior:
      contain;

    background:
      var(--header-background);

    border-top:
      1px solid var(--header-border);

    box-shadow:
      var(--header-shadow);
  }


  .site-nav.is-open {
    display: block;
  }


  .nav-list {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 0.25rem;
  }


  .nav-list > li,
  .nav-list a,
  .dropdown-toggle {
    width: 100%;
  }


  .nav-list a,
  .dropdown-toggle {
    justify-content: flex-start;

    min-height: 48px;

    padding:
      0.75rem 0.85rem;

    text-align: left;
  }


  .dropdown-toggle::after {
    content: "▾";

    margin-left: auto;

    transition:
      transform 0.2s ease;
  }


  .nav-dropdown.is-open
  > .dropdown-toggle::after {
    transform:
      rotate(180deg);
  }


  .dropdown-menu {
    position: static;

    display: none;

    min-width: 0;

    margin:
      0 0 0.45rem;

    padding:
      0.25rem 0
      0.25rem 0.8rem;

    border: 0;

    border-left:
      3px solid
      rgba(198, 40, 40, 0.25);

    border-radius: 0;

    box-shadow: none;
  }


  .nav-dropdown:hover
  > .dropdown-menu,

  .nav-dropdown:focus-within
  > .dropdown-menu {
    display: none;
  }


  .nav-dropdown.is-open
  > .dropdown-menu {
    display: block;
  }


  body.mobile-menu-open {
    overflow: hidden;
  }


  /* Remote Support */

  .nav-remote-support {
    width: 100%;
  }


  .remote-support-link {
    justify-content:
      flex-start;

    width: 100%;
    min-width: 0;

    height: auto;
    min-height: 48px;

    padding:
      0.65rem 0.85rem !important;
  }


  .remote-support-icon {
    width: 38px !important;
    max-width: 38px !important;

    height: 38px !important;
    max-height: 38px !important;
  }

}


/* =========================================================
   SEHR KLEINE HANDYS
   ========================================================= */

@media (max-width: 520px) {

  .site-header .header-inner {
    gap: 0.35rem;
  }


  .brand-logo {
    width: 36px;
    height: 36px;
  }


  /*
   * Auf sehr kleinen Geräten reicht das Logo.
   * Der Domain-Text darf verschwinden, damit Wetter
   * und Hamburger genügend Platz behalten.
   */

  .brand-text {
    display: none;
  }


  .header-weather__precipitation {
    font-size: 0.68rem;
  }


  .header-weather__location {
    font-size: 0.58rem;
  }

}


/* =========================================================
   ANMELDUNG / BENUTZERKONTO IM HEADER
   ========================================================= */

.header-auth {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;
}

.header-auth-link,
.header-account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  min-width: 44px;

  height: 44px;
  min-height: 44px;

  margin: 0;
  padding: 7px;

  border: 0;
  border-radius: 50%;

  background: transparent;

  color: var(--header-text);

  text-decoration: none;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.header-auth-link:hover,
.header-auth-link:focus-visible,
.header-account-button:hover,
.header-account-button:focus-visible,
.header-account-button[aria-expanded="true"] {
  background:
    rgba(198, 40, 40, 0.08);

  outline: none;
}

.header-auth-link:hover,
.header-account-button:hover {
  transform: translateY(-1px);
}

.header-auth-icon {
  display: block;

  width: 28px;
  height: 28px;

  overflow: visible;

  pointer-events: none;
}

.header-auth-person,
.header-auth-arrow {
  fill: none;
}

.header-account {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-account[hidden],
.header-auth-link[hidden] {
  display: none !important;
}


/* =========================================================
   LOGIN-MODAL
   ========================================================= */

.auth-overlay {
  position: fixed;
  inset: 0;

  z-index: 12000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(20, 24, 32, 0.45);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.auth-overlay[hidden] {
  display: none !important;
}

.auth-modal {
  position: relative;

  width: min(440px, calc(100vw - 32px));

  padding: 32px 28px 28px;

  background: rgba(255, 255, 255, 0.98);

  border: 1px solid rgba(20, 30, 45, 0.12);

  border-radius: 22px;

  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);

  max-height: calc(100svh - 40px);
  overflow-y: auto;

  animation: ajordi-auth-modal-open 180ms ease-out;
}

@keyframes ajordi-auth-modal-open {

  from {
    opacity: 0;

    transform: translateY(-12px) scale(0.97);
  }

  to {
    opacity: 1;

    transform: translateY(0) scale(1);
  }

}

.auth-modal-close {
  position: absolute;

  top: 14px;
  right: 16px;

  display: grid;
  place-items: center;

  width: 36px;
  height: 36px;

  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.05);

  color: #333333;

  font: inherit;
  font-size: 1.55rem;
  line-height: 1;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
}

.auth-modal-close:hover,
.auth-modal-close:focus-visible {
  background: rgba(198, 40, 40, 0.10);

  color: var(--header-accent);

  outline: none;
}

.auth-title {
  margin: 0 0 8px;

  color: #1c2738;

  font-size: 1.4rem;
  font-weight: 700;
}

.auth-intro {
  margin: 0 0 18px;

  color: #6b7280;

  font-size: 0.88rem;
  line-height: 1.45;
}

.auth-message--error {
  margin-bottom: 16px;
  padding: 10px 14px;

  border-radius: 8px;

  background: #fef2f2;
  border: 1px solid #fecaca;

  color: #b91c1c;

  font-size: 0.85rem;
  line-height: 1.35;
}

.auth-message[hidden] {
  display: none !important;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-field {
  display: grid;
  gap: 5px;
}

.auth-field label {
  color: #374151;

  font-size: 0.86rem;
  font-weight: 600;
}

.auth-field input {
  width: 100%;
  min-height: 42px;

  padding: 8px 12px;

  border: 1px solid #d1d5db;
  border-radius: 8px;

  background: #ffffff;

  color: #111111;

  font: inherit;
  font-size: 0.95rem;

  box-sizing: border-box;

  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.auth-field input:focus {
  border-color: var(--header-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.15);
}

.auth-actions--modal {
  display: grid;
  gap: 12px;

  margin-top: 6px;
}

.auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 44px;

  padding: 10px 16px;

  border: 0;
  border-radius: 8px;

  background: var(--header-accent);

  color: #ffffff;

  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  transition: background-color 0.2s ease, transform 0.15s ease;
}

.auth-submit:hover,
.auth-submit:focus-visible {
  background: #a32222;
  outline: none;
  transform: translateY(-1px);
}

.auth-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-link {
  color: #6b7280;

  font-size: 0.82rem;
  text-align: center;
  text-decoration: none;

  transition: color 0.15s ease;
}

.auth-link:hover,
.auth-link:focus-visible {
  color: var(--header-accent);
  text-decoration: underline;
}

body.auth-modal-open {
  overflow: hidden;
}


/* =========================================================
   BENUTZERKONTO – MODALE BLASE
   ========================================================= */

.account-overlay {
  position: fixed;
  inset: 0;

  z-index: 12000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  overflow-y: auto;

  background:
    rgba(20, 24, 32, 0.30);

  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.account-overlay[hidden] {
  display: none !important;
}

.account-modal {
  position: relative;

  width:
    min(
      430px,
      calc(100vw - 32px)
    );

  padding:
    30px;

  background:
    rgba(255, 255, 255, 0.98);

  border:
    1px solid
    rgba(20, 30, 45, 0.12);

  border-radius:
    26px;

  box-shadow:
    0 24px 70px
    rgba(0, 0, 0, 0.22);

  max-height: calc(100svh - 40px);
  overflow-y: auto;

  animation:
    ajordi-account-modal-open
    180ms ease-out;
}

@keyframes ajordi-account-modal-open {

  from {
    opacity: 0;

    transform:
      translateY(-10px)
      scale(0.97);
  }

  to {
    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }

}

.account-modal-close {
  position: absolute;

  top: 14px;
  right: 16px;

  display: grid;
  place-items: center;

  width: 36px;
  height: 36px;

  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 50%;

  background:
    rgba(0, 0, 0, 0.05);

  color: #333333;

  font: inherit;
  font-size: 1.55rem;
  line-height: 1;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
}

.account-modal-close:hover,
.account-modal-close:focus-visible {
  background:
    rgba(198, 40, 40, 0.10);

  color:
    var(--header-accent);

  outline: none;
}

.account-modal-icon {
  display: grid;
  place-items: center;

  width: 64px;
  height: 64px;

  margin:
    0 auto 14px;

  border-radius: 50%;

  background:
    rgba(198, 40, 40, 0.07);
}

.account-modal-icon svg {
  display: block;

  width: 34px;
  height: 34px;
}

.account-modal-heading {
  text-align: center;
}

.account-modal-kicker {
  display: block;

  margin-bottom: 3px;

  color: #6b7280;

  font-size: 0.78rem;
}

.account-modal-heading h2 {
  margin:
    0 0 5px;

  color: #1c2738;

  font-size: 1.35rem;
}

.account-modal-heading strong {
  display: block;

  color: #333333;

  font-size: 0.95rem;

  overflow-wrap: anywhere;
}

.account-modal-divider {
  height: 1px;

  margin:
    20px 0;

  background:
    rgba(0, 0, 0, 0.09);
}

.account-modal-navigation {
  display: grid;

  gap: 9px;
}

.account-modal-link {
  display: flex;
  align-items: center;

  gap: 14px;

  min-height: 62px;

  padding:
    11px 14px;

  color: #263142;

  text-decoration: none;

  background:
    rgba(246, 247, 249, 0.90);

  border:
    1px solid
    rgba(0, 0, 0, 0.07);

  border-radius: 14px;

  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease;
}

.account-modal-link:hover,
.account-modal-link:focus-visible {
  transform:
    translateY(-1px);

  background:
    rgba(198, 40, 40, 0.055);

  border-color:
    rgba(198, 40, 40, 0.22);

  outline: none;
}

.account-modal-link[hidden] {
  display: none !important;
}

.account-modal-link-icon {
  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;

  flex:
    0 0 38px;

  border-radius: 10px;

  background:
    rgba(255, 255, 255, 0.90);

  font-size: 1.1rem;
}

.account-modal-link-text {
  display: flex;

  flex-direction: column;

  gap: 2px;

  min-width: 0;
}

.account-modal-link-text strong {
  color: #263142;

  font-size: 0.92rem;
}

.account-modal-link-text small {
  color: #6b7280;

  font-size: 0.76rem;
}

.account-modal-logout {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  min-height: 44px;

  padding:
    8px 12px;

  color: #a32222;

  text-decoration: none;

  font-size: 0.9rem;
  font-weight: 700;

  border-radius: 10px;
}

.account-modal-logout:hover,
.account-modal-logout:focus-visible {
  background:
    rgba(198, 40, 40, 0.07);

  color:
    var(--header-accent);

  outline: none;
}

body.account-modal-open {
  overflow: hidden;
}


/* =========================================================
   BENUTZERKONTO – MOBILE
   ========================================================= */

@media (max-width: 1500px) {

  .header-auth-link,
  .header-account-button {
    width: 42px;
    min-width: 42px;

    height: 42px;
    min-height: 42px;

    padding: 7px;
  }

  .header-auth-icon {
    width: 27px;
    height: 27px;
  }

  .account-overlay {
    padding:
      calc(72px + 18px)
      16px
      24px;
  }

}


@media (max-width: 600px) {

  .account-overlay {
    align-items: center;

    padding: 20px;
  }

  .account-modal {
    padding:
      28px 20px 22px;

    border-radius: 22px;
  }

}
