:root {
  --flexlast-header-height: 136px;
}

.main-nav {
  gap: clamp(18px, 2.6vw, 44px);
}

.logo {
  flex: 0 0 auto;
}

.nav-links {
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 42px);
  margin: 0;
  padding: 0 clamp(10px, 2vw, 28px) 0 clamp(18px, 3vw, 42px);
}

.nav-links li {
  flex-shrink: 0;
}

.header-nav-item--has-dropdown {
  position: relative;
}

.header-nav-dropdown-backdrop {
  position: fixed;
  inset: var(--flexlast-header-height) 0 0;
  border: 0;
  padding: 0;
  margin: 0;
  appearance: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s ease, background-color 0.34s ease;
  z-index: 1090;
}

.header-nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.header-nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.header-nav-link--dropdown {
  gap: 6px;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  appearance: none;
}

.header-nav-caret {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.header-nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  width: min(620px, calc(100vw - 48px));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(-12px) scale(0.985);
  transform-origin: top left;
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    clip-path 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.24s ease;
  z-index: 1200;
}

.header-nav-dropdown-panel::before {
  content: none;
}

.flexlast-shared-header:has(.header-nav-item--has-dropdown.is-open)::after {
  opacity: 1;
}

.header-nav-dropdown-surface {
  width: 100%;
  margin: 0;
  padding: clamp(18px, 2.1vw, 28px) clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.1),
    0 2px 8px rgba(15, 23, 42, 0.04),
    0 2px 0 rgba(255, 255, 255, 0.92) inset;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  transform: translateY(-8px) scale(0.995);
  transition: opacity 0.26s ease 0.05s, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1) 0.03s;
}

.header-nav-dropdown-head {
  display: none;
}

.header-nav-dropdown-caption {
  padding: 0;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-nav-dropdown-body {
  display: block;
}

.header-service-links {
  display: grid;
  grid-template-columns: repeat(var(--header-dropdown-columns, 2), minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 64px);
  row-gap: clamp(14px, 1.8vw, 22px);
}

.header-service-link {
  position: relative;
  display: block;
  align-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1f2937 !important;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 700;
  line-height: 1.22;
  text-decoration: none;
  box-shadow: none;
  overflow: visible;
  transition: color 0.18s ease, transform 0.18s ease;
}

.header-service-link:last-child:nth-child(odd) {
  grid-column: auto;
}

.header-service-link:hover,
.header-service-link:focus-visible {
  outline: none;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: #16a34a !important;
  transform: translateX(2px);
}

.header-service-link-icon {
  display: none;
}

.header-service-link-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-service-link-copy {
  display: block;
  min-width: 0;
}

.header-service-link-title {
  min-width: 0;
  color: currentColor;
  font-size: inherit;
  font-weight: 700;
  line-height: 1.25;
}

.header-service-link-arrow {
  display: none;
}

.header-service-link-text {
  display: none;
}

.header-service-link:hover .header-service-link-arrow,
.header-service-link:focus-visible .header-service-link-arrow {
  display: none;
}

.header-nav-dropdown-panel.is-compact .header-nav-dropdown-surface {
  padding: 18px 20px;
  border-radius: 16px;
}

.header-nav-dropdown-panel.is-compact .header-service-links {
  grid-template-columns: 1fr;
  row-gap: 14px;
}

.header-nav-dropdown-panel.is-compact .header-service-link {
  font-size: 14.5px;
  line-height: 1.18;
}

.header-nav-dropdown-panel.is-medium .header-nav-dropdown-surface {
  padding: 22px 24px;
}

.header-nav-dropdown-panel.is-medium .header-service-links {
  column-gap: 34px;
}

.header-nav-dropdown-feature {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(226, 232, 240, 0.94);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.98));
  color: #111827 !important;
  text-decoration: none;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.header-nav-dropdown-feature::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: #00b840;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.header-nav-dropdown-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 94% 50%, rgba(0, 184, 64, 0.08), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.header-nav-dropdown-feature:hover,
.header-nav-dropdown-feature:focus-visible {
  outline: none;
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.header-nav-dropdown-feature:hover::before,
.header-nav-dropdown-feature:focus-visible::before,
.header-nav-dropdown-feature:hover::after,
.header-nav-dropdown-feature:focus-visible::after {
  opacity: 1;
}

.header-nav-dropdown-feature-icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #ffffff;
  font-size: 21px;
}

.header-nav-dropdown-feature-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 0;
  min-width: 0;
}

.header-nav-dropdown-feature-title {
  color: #111827;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.18;
}

.header-nav-dropdown-feature-text {
  color: #64748b;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.35;
}

.header-nav-dropdown-feature-arrow {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #16a34a;
  font-size: 18px;
  box-shadow: 0 10px 22px rgba(22, 163, 74, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.header-nav-dropdown-feature:hover .header-nav-dropdown-feature-arrow,
.header-nav-dropdown-feature:focus-visible .header-nav-dropdown-feature-arrow {
  background: #111827;
  color: #ffffff;
  transform: translateX(2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

.header-nav-item--has-dropdown.is-open {
  z-index: 1100;
}

.header-nav-item--has-dropdown.is-open .header-nav-dropdown-backdrop {
  opacity: 1;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: auto;
}

.header-nav-item--has-dropdown.is-open .header-nav-dropdown-panel {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.header-nav-item--has-dropdown.is-open .header-nav-dropdown-surface {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.header-nav-item--has-dropdown.is-open .header-nav-caret {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .header-nav-dropdown-backdrop,
  .header-nav-dropdown-panel,
  .header-nav-caret {
    transition: none;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
  flex-shrink: 0;
}

.header-contact-cluster {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
  color: #1f2937;
}

.header-top-theme {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 6px;
}

.header-phone-stack {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
}

.header-phone-entry {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  color: #1f2937 !important;
}

.header-phone-entry:hover,
.header-phone-entry:focus-visible {
  color: #1f2937 !important;
  opacity: 1;
}

.header-phone-cta {
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  color: #0f8a3d;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header-phone-number {
  font-size: 13px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header-phone-note {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  color: #087c3a;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.header-top-theme .theme-toggle-button {
  min-width: auto;
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: #1f2937;
  box-shadow: none;
  justify-content: center;
}

.header-top-theme .theme-toggle-button--switch {
  width: 68px;
  height: 38px;
}

.header-top-theme .theme-toggle-button--switch .theme-toggle-switch-track {
  border-color: rgba(148, 163, 184, 0.28);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.header-top-theme .theme-toggle-button:hover,
.header-top-theme .theme-toggle-button:focus-visible {
  transform: none;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: inherit;
}

.header-top-theme .theme-toggle-button--switch:hover .theme-toggle-switch-track,
.header-top-theme .theme-toggle-button--switch:focus-visible .theme-toggle-switch-track {
  border-color: rgba(148, 163, 184, 0.38);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.header-top-theme .theme-toggle-label {
  display: none;
}

.theme-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 22px;
  line-height: 1;
}

.header-call-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #5abc46;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.header-call-button:hover,
.header-call-button:focus-visible {
  color: #ffffff !important;
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.header-call-button .material-icons-round {
  font-size: 20px;
  color: #ffffff !important;
}

.header-locale-switch,
.header-menu {
  position: relative;
}

.header-mobile-locale {
  display: none;
}

.header-action-button {
  min-width: 42px;
  height: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 12px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.nav-actions > button[data-header-account],
.nav-actions > button[data-header-orders],
.header-menu [data-header-menu-toggle] {
  width: 42px;
  min-width: 42px;
  padding: 0;
  flex-shrink: 0;
}

.header-action-button:hover,
.header-action-button:focus-visible {
  outline: none;
  background: #f8fafc;
  border-color: #cbd5e1;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.nav-actions > button[data-header-account] > .material-icons-round,
.nav-actions > button[data-header-orders] > .material-icons-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 22px;
  height: 22px;
  font-size: 22px;
}

.header-locale-pill {
  min-width: 82px;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
}

.header-mobile-locale-button {
  min-width: 80px;
  width: auto;
  padding: 0 12px;
  justify-content: center;
  gap: 8px;
}

.header-locale-current {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.header-locale-current-flag {
  width: 18px;
  height: 18px;
}

.header-locale-trigger-label {
  color: #1f2937;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header-locale-trigger-caret {
  flex-shrink: 0;
  font-size: 16px !important;
  line-height: 1;
  color: currentColor;
  opacity: 0.64;
  margin-left: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.header-locale-switch.is-open .header-locale-trigger-caret,
.header-menu-locale-switch.is-open .header-locale-trigger-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.header-mobile-locale-panel {
  right: 0;
  left: auto;
  z-index: 1406;
  transform-origin: top right;
}

.header-mobile-locale-sheet {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
}

.header-mobile-locale-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-mobile-locale-sheet-title {
  color: #1f2937;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.header-mobile-locale-sheet-close {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.18s ease;
}

.header-mobile-locale-sheet-close:hover,
.header-mobile-locale-sheet-close:focus-visible {
  outline: none;
  background: #f3f4f6;
}

.header-mobile-locale-sheet-close .material-icons-round {
  font-size: 30px;
}

.header-locale-switch > .header-dropdown[data-locale-panel] {
  top: calc(var(--header-locale-panel-top, calc(100% + 10px)) - 4px);
}

.header-locale-inline > .header-dropdown[data-locale-panel] {
  left: -12px !important;
  right: auto !important;
}

.header-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(288px, calc(100vw - 28px));
  padding: 10px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e7edf3;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px) scale(0.985);
  transition: opacity 0.18s ease, transform 0.22s ease, visibility 0.18s ease;
  z-index: 1200;
}

.header-locale-switch.is-open .header-dropdown,
.header-menu.is-open .header-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

html.locale-sheet-open,
body.locale-sheet-open {
  overflow: hidden;
}

.locale-panel-section {
  padding: 6px 4px 4px;
}

.locale-panel-section + .locale-panel-section {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid #edf2f7;
}

.header-dropdown-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #71829a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-dropdown-caption::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e9eef4;
}

.locale-option-group {
  display: grid;
}

.locale-option-group--language {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 4px;
  border-radius: 16px;
  background: #f6f8fb;
  border: 1px solid #e7edf3;
}

.locale-option-group--country,
.locale-option-group--city {
  gap: 6px;
}

.locale-option {
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 14px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.locale-option-start {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.locale-option-flag {
  width: 22px;
  height: 22px;
}

.locale-option-label {
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.locale-option-check {
  font-size: 18px;
  color: #16a34a;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.locale-option-end {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.locale-option-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef2f6;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.locale-option-city-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 22px !important;
  flex-shrink: 0;
}

.locale-option--city {
  color: #1f2937;
  text-decoration: none;
}

.locale-option--city.active .locale-option-status {
  color: #64748b;
}

.locale-option--disabled {
  color: #94a3b8;
  cursor: not-allowed;
}

.locale-option--disabled .locale-option-label,
.locale-option--disabled .locale-option-city-icon {
  color: #94a3b8;
}

.locale-option.active .locale-option-check {
  opacity: 1;
  transform: scale(1);
}

.locale-option:hover,
.locale-option:focus-visible {
  outline: none;
}

.locale-option--language {
  min-height: 40px;
  justify-content: center;
  padding: 0 8px;
  border-radius: 12px;
}

.locale-option--language .locale-option-start {
  justify-content: center;
  gap: 0;
}

.locale-option--language .locale-option-check,
.locale-option--language .locale-option-flag {
  display: none;
}

.locale-option--language .locale-option-label {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.locale-option--language:hover,
.locale-option--language:focus-visible {
  background: rgba(255, 255, 255, 0.72);
}

.locale-option--language.active {
  background: #ffffff;
  border-color: #d8e1ec;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 8px 16px rgba(15, 23, 42, 0.05);
}

.locale-option--country,
.locale-option--city {
  min-height: 48px;
  padding: 0 12px;
  background: #ffffff;
}

.locale-option--country:hover,
.locale-option--country:focus-visible,
.locale-option--city:hover,
.locale-option--city:focus-visible {
  background: #f8fafc;
  border-color: #dbe4ee;
}

.locale-option--country.active,
.locale-option--city.active {
  background: linear-gradient(180deg, #f9fdf9 0%, #f4fbf5 100%);
  border-color: #cfe9d4;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.locale-option--country .locale-option-label,
.locale-option--city .locale-option-label {
  font-weight: 700;
}

.header-menu-panel {
  width: min(240px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - var(--flexlast-header-height) - 24px));
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.header-mobile-phone {
  display: none;
}

.header-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: center;
}

.header-menu [data-header-menu-toggle] {
  position: relative;
  z-index: 1305;
}

.header-menu-toggle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 0;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.24s ease;
  transform: translate(-50%, -50%);
}

.header-menu-toggle-icon--menu {
  width: 17px;
  height: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.header-menu-toggle-icon--menu span {
  display: block;
  width: 100%;
  height: 2.2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: none;
}

.header-menu-toggle-icon--close {
  width: 16px;
  height: 16px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72) rotate(-90deg);
}

.header-menu-toggle-icon--close span {
  position: absolute;
  top: 7px;
  left: 0;
  display: block;
  width: 16px;
  height: 2.2px;
  border-radius: 999px;
  background: currentColor;
}

.header-menu-toggle-icon--close span:first-child {
  transform: rotate(45deg);
}

.header-menu-toggle-icon--close span:last-child {
  transform: rotate(-45deg);
}

.header-menu.is-open .header-menu-toggle-icon--menu {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72) rotate(90deg);
}

.header-menu.is-open .header-menu-toggle-icon--close {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.header-menu-shell {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.header-menu-desktop-only {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header-menu-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 2px;
}

.header-menu-mobile-only {
  display: none !important;
}

.header-menu-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header-menu-section-title {
  padding: 2px 4px 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-menu-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.header-menu-switcher-link {
  min-height: 42px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  text-decoration: none;
  text-align: center;
  color: #5b6472;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.header-menu-switcher-link:hover,
.header-menu-switcher-link:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(203, 213, 225, 0.92);
  color: #111827;
  transform: translateY(-1px);
}

.header-menu-switcher--private .header-menu-switcher-link.is-active {
  background: linear-gradient(135deg, #16a34a 0%, #0f8a3d 100%);
  border-color: rgba(11, 121, 49, 0.44);
  color: #ffffff;
}

.header-menu-switcher--business .header-menu-switcher-link.is-active {
  background: linear-gradient(135deg, #16a34a 0%, #0f8a3d 100%);
  border-color: rgba(11, 121, 49, 0.44);
  color: #ffffff;
}

.header-menu-cluster {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.header-menu-cluster--primary {
  padding-top: 14px;
  border-color: rgba(203, 213, 225, 0.84);
}

.header-menu-cluster--private {
  background: linear-gradient(180deg, rgba(240, 253, 244, 0.96), rgba(255, 255, 255, 0.98) 62%);
}

.header-menu-cluster--business {
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.98), rgba(255, 255, 255, 0.98) 62%);
}

.header-menu-cluster--utility {
  padding-bottom: 10px;
}

.header-menu-cluster-caption {
  padding: 0 6px 2px;
  color: #9aa3b2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-menu-cluster-list {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
}

.header-menu-directory {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header-menu-row-group {
  display: flex;
  flex-direction: column;
}

.header-menu-row,
.header-menu-cluster .header-menu-item {
  width: 100%;
  min-height: 68px;
  border: none;
  background: transparent;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 8px;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header-menu-row + .header-menu-row,
.header-menu-cluster .header-menu-item + .header-menu-item,
.header-menu-row + .header-menu-item,
.header-menu-cluster .header-menu-item + .header-menu-row {
  border-top: 1px solid rgba(226, 232, 240, 0.86);
}

.header-menu-row-group + .header-menu-row,
.header-menu-row-group + .header-menu-item,
.header-menu-row-group + .header-menu-row-group > .header-menu-row,
.header-menu-row + .header-menu-row-group > .header-menu-row,
.header-menu-cluster .header-menu-item + .header-menu-row-group > .header-menu-row {
  border-top: 1px solid rgba(226, 232, 240, 0.86);
}

.header-menu-row:hover,
.header-menu-row:focus-visible,
.header-menu-row.is-active,
.header-menu-cluster .header-menu-item:hover,
.header-menu-cluster .header-menu-item:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.62);
}

.header-menu-row--primary {
  min-height: 78px;
  padding-left: 6px;
  padding-right: 10px;
}

.header-menu-row--text-only {
  padding-left: 32px;
}

.header-menu-row--accordion .header-menu-row-arrow {
  transition: transform 0.2s ease;
}

.header-menu-row-group.is-open .header-menu-row--accordion .header-menu-row-arrow {
  transform: rotate(180deg);
}

.header-menu-cluster--primary .header-menu-row--primary:first-child {
  min-height: 86px;
}

.header-menu-row--accent {
  color: #0f6d32;
}

.header-menu-row-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #111111;
  color: #ffffff;
  font-size: 22px;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.header-menu-row:not(.header-menu-row--primary) .header-menu-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #eef2f6;
  color: #111827;
  box-shadow: none;
}

.header-menu-cluster--private .header-menu-row--primary .header-menu-row-icon {
  background: linear-gradient(135deg, #0f172a 0%, #16a34a 100%);
}

.header-menu-cluster--business .header-menu-row--primary .header-menu-row-icon {
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
}

.header-menu-row-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header-menu-row-title {
  color: inherit;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.header-menu-row-meta {
  color: #7b8493;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.header-menu-row-arrow {
  color: #737c8b;
  font-size: 22px;
  flex-shrink: 0;
}

.header-menu-row--danger .header-menu-row-arrow {
  color: #b91c1c;
}

.header-menu-row-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 184, 64, 0.1);
  color: #0f6d32;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.header-menu-submenu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 0 12px;
  background: transparent;
}

.header-menu-submenu[hidden] {
  display: none;
}

.header-menu-submenu-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 14px 58px;
  color: #334155;
  text-decoration: none;
  border-top: 1px solid rgba(226, 232, 240, 0.78);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header-menu-submenu-link:hover,
.header-menu-submenu-link:focus-visible,
.header-menu-submenu-link.is-active {
  outline: none;
  background: rgba(255, 255, 255, 0.74);
  color: #0f172a;
}

.header-menu-submenu-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.header-menu-submenu-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.header-menu-submenu-meta {
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.header-menu-submenu-arrow {
  flex-shrink: 0;
  color: #94a3b8;
  font-size: 18px;
  margin-top: 1px;
}

.header-menu-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.header-menu-quick-link {
  min-height: 108px;
  border: 1px solid rgba(203, 213, 225, 0.74);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
  color: #0f172a;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 16px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.header-menu-quick-link:first-child {
  grid-column: 1 / -1;
}

.header-menu-quick-link:hover,
.header-menu-quick-link:focus-visible,
.header-menu-quick-link.is-active {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.header-menu-quick-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header-menu-quick-title {
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.header-menu-quick-meta {
  color: #64748b;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  max-width: 24ch;
}

.header-menu-quick-link .material-icons-round {
  color: #0f172a;
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.header-menu-audience-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.header-menu-audience-link {
  min-height: 44px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f8fafc;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-menu-audience-link:hover,
.header-menu-audience-link:focus-visible,
.header-menu-audience-link.is-active {
  outline: none;
  background: #eef1f5;
  border-color: #cbd5e1;
  color: #111827;
}

.header-menu-directory {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.header-menu-directory-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header-menu-directory-title {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 2px;
}

.header-menu-directory-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-menu-directory-link {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(226, 232, 240, 0.88);
  background: transparent;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  transition: color 0.2s ease, transform 0.18s ease;
}

.header-menu-directory-link .material-icons-round {
  color: #0f172a;
}

.header-menu-directory-list > :first-child {
  border-top: none;
}

.header-menu-directory-link:hover,
.header-menu-directory-link:focus-visible,
.header-menu-directory-link.is-active {
  outline: none;
  color: #0f172a;
  transform: translateX(2px);
}

.header-menu-directory-link--accent {
  color: #0f6d32;
}

.header-menu-link-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
}

.header-menu-link-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.header-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-menu-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  color: #111111;
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.header-menu-brand span {
  color: #16a34a;
}

.header-menu-close {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 16px;
  background: #f3f4f6;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-menu-close:hover,
.header-menu-close:focus-visible {
  outline: none;
  background: #ebedf1;
  transform: scale(0.98);
}

.header-menu-title {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 4px 0;
}

.header-menu-theme {
  display: none;
}

.header-menu-head .header-menu-theme {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  margin-left: auto;
}

.header-menu-theme .theme-toggle-button--switch,
.header-menu-theme .theme-toggle-button--switch:hover,
.header-menu-theme .theme-toggle-button--switch:focus-visible {
  transform: none;
  box-shadow: none;
}

.header-menu-theme .theme-toggle-button {
  min-width: auto;
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: #1f2937;
  box-shadow: none;
  justify-content: center;
}

.header-menu-head .theme-toggle-button--switch {
  width: 68px;
  height: 38px;
}

.header-menu-head .theme-toggle-button--switch .theme-toggle-switch-track {
  border-color: rgba(148, 163, 184, 0.28);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.header-menu-theme .theme-toggle-button:hover,
.header-menu-theme .theme-toggle-button:focus-visible {
  transform: none;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: inherit;
}

.header-menu-head .theme-toggle-button--switch:hover .theme-toggle-switch-track,
.header-menu-head .theme-toggle-button--switch:focus-visible .theme-toggle-switch-track {
  border-color: rgba(148, 163, 184, 0.38);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.header-menu-theme .theme-toggle-label {
  display: none;
}

.header-menu-theme--panel {
  width: 100%;
  padding: 2px 4px 6px;
}

.header-menu-theme--panel .theme-toggle-button {
  width: 100%;
  min-width: 0;
  justify-content: space-between;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  box-shadow: none;
  padding: 12px 14px;
}

.header-menu-theme--panel .theme-toggle-label {
  display: inline-flex;
}

.header-menu-item-start {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.header-menu-item-meta {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.header-menu-panel .theme-toggle-button {
  width: 100%;
  min-width: 0;
  justify-content: space-between;
  border-radius: 14px;
  border-color: #e5e7eb;
  background: #f8fafc;
  box-shadow: none;
  padding: 12px 14px;
}

.header-menu-panel .theme-toggle-icon {
  font-size: 20px;
}

.header-menu-panel .theme-toggle-button:hover {
  transform: none;
  box-shadow: none;
  background: #f1f5f9;
}

.header-menu-head .theme-toggle-button {
  width: 32px;
  min-width: 32px;
  height: 32px;
  padding: 0;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: transparent;
}

.header-menu-head .theme-toggle-button:hover,
.header-menu-head .theme-toggle-button:focus-visible {
  background: rgba(15, 23, 42, 0.06);
  border-color: transparent;
}

.header-menu-head .theme-toggle-button--switch,
.header-menu-head .theme-toggle-button--switch:hover,
.header-menu-head .theme-toggle-button--switch:focus-visible {
  width: 68px;
  min-width: 68px;
  height: 38px;
  padding: 0;
  background: transparent;
}

.header-menu-item {
  width: 100%;
  min-height: 46px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.header-menu-item[hidden],
.header-menu-row[hidden] {
  display: none !important;
}

.header-menu-item:hover,
.header-menu-item:focus-visible {
  outline: none;
  background: #f8fafc;
  border-color: #cbd5e1;
}

.header-menu-locale-switch {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.header-menu-locale-switch--desktop {
  position: relative;
  width: auto;
  max-width: 100%;
  align-items: flex-end;
}

.header-menu-locale-switch--desktop .header-menu-locale-button {
  width: auto;
  min-width: 96px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.header-menu-locale-switch--desktop .header-menu-item-start {
  gap: 8px;
}

.header-menu-locale-switch .header-menu-item-start .header-locale-trigger-label {
  font-size: 15px;
}

.header-menu-locale-switch--mobile {
  display: none;
}

.header-menu-locale-options {
  display: none;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  padding: 8px;
}

.header-menu-locale-switch.is-open .header-menu-locale-options,
.header-menu-locale-switch.is-open .header-menu-locale-options {
  display: block;
}

.header-menu-locale-options .locale-panel-section {
  padding: 4px 2px;
}

.header-menu-locale-options .locale-panel-section + .locale-panel-section {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #eef2f7;
}

.header-menu-locale-options .header-dropdown-caption {
  margin-bottom: 6px;
}

.header-menu-locale-switch--desktop .header-menu-locale-options {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  min-width: 188px;
  padding: 10px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
  z-index: 4;
}

.header-menu-danger {
  color: #475569;
  border-color: #e2e8f0;
  background: #f8fafc;
}

.header-menu-danger:hover,
.header-menu-danger:focus-visible {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.business-header .header-contact-cluster,
.business-header .header-phone-stack {
  color: #f4f7fa;
}

.business-header .header-phone-entry,
.business-header .header-phone-entry:hover,
.business-header .header-phone-entry:focus-visible {
  color: #f8fbff !important;
}

.business-header .header-phone-note {
  color: #dbffe6;
}

.business-header .header-top-theme .theme-toggle-button,
.business-header .header-menu-theme .theme-toggle-button {
  color: #f1f5f9;
}

.business-header .header-menu-head .theme-toggle-button--switch .theme-toggle-switch-track,
.business-header .header-top-theme .theme-toggle-button--switch .theme-toggle-switch-track {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 24px rgba(2, 8, 23, 0.2);
}

.business-header .header-top-theme .theme-toggle-button:hover,
.business-header .header-top-theme .theme-toggle-button:focus-visible,
.business-header .header-menu-theme .theme-toggle-button:hover,
.business-header .header-menu-theme .theme-toggle-button:focus-visible {
  color: #86efac;
}

.business-header .header-menu-head .theme-toggle-button--switch:hover .theme-toggle-switch-track,
.business-header .header-menu-head .theme-toggle-button--switch:focus-visible .theme-toggle-switch-track,
.business-header .header-top-theme .theme-toggle-button--switch:hover .theme-toggle-switch-track,
.business-header .header-top-theme .theme-toggle-button--switch:focus-visible .theme-toggle-switch-track {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 28px rgba(2, 8, 23, 0.24);
}

.business-header .header-call-button {
  background: #22c55e;
}

.business-header .header-action-button {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #f8fbff;
}

.business-header .header-action-button:hover,
.business-header .header-action-button:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 24px rgba(77, 88, 102, 0.18);
}

.business-header .header-locale-trigger-label,
.business-header .header-locale-trigger-caret {
  color: #f8fbff;
}

.business-header .header-dropdown,
.business-header .header-menu-locale-options {
  background: rgba(244, 247, 250, 0.98);
  border-color: rgba(118, 128, 141, 0.16);
  box-shadow: 0 24px 52px rgba(77, 88, 102, 0.18);
}

.business-header .locale-panel-section + .locale-panel-section,
.business-header .header-menu-locale-options .locale-panel-section + .locale-panel-section {
  border-top-color: rgba(118, 128, 141, 0.12);
}

.business-header .header-dropdown-caption,
.business-header .header-menu-title,
.business-header .header-menu-item-meta {
  color: #667383;
}

.business-header .header-dropdown-caption::after {
  background: rgba(118, 128, 141, 0.14);
}

.business-header .locale-option:hover,
.business-header .locale-option:focus-visible,
.business-header .locale-option.active {
  background: rgba(228, 234, 239, 0.82);
}

.business-header .locale-option-label,
.business-header .locale-option-check {
  color: #17212b;
}

.business-header .header-menu-item,
.business-header .header-menu-quick-link,
.business-header .header-menu-audience-link,
.business-header .header-menu-panel .theme-toggle-button {
  border-color: rgba(118, 128, 141, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: #17212b;
}

.business-header .header-menu-directory-link {
  color: #17212b;
  border-top-color: rgba(118, 128, 141, 0.18);
}

.business-header .header-menu-item:hover,
.business-header .header-menu-item:focus-visible,
.business-header .header-menu-quick-link:hover,
.business-header .header-menu-quick-link:focus-visible,
.business-header .header-menu-quick-link.is-active,
.business-header .header-menu-audience-link:hover,
.business-header .header-menu-audience-link:focus-visible,
.business-header .header-menu-audience-link.is-active,
.business-header .header-menu-directory-link:hover,
.business-header .header-menu-directory-link:focus-visible,
.business-header .header-menu-directory-link.is-active,
.business-header .header-menu-panel .theme-toggle-button:hover {
  border-color: rgba(118, 128, 141, 0.22);
}

.business-header .header-menu-item:hover,
.business-header .header-menu-item:focus-visible,
.business-header .header-menu-quick-link:hover,
.business-header .header-menu-quick-link:focus-visible,
.business-header .header-menu-quick-link.is-active,
.business-header .header-menu-audience-link:hover,
.business-header .header-menu-audience-link:focus-visible,
.business-header .header-menu-audience-link.is-active,
.business-header .header-menu-panel .theme-toggle-button:hover {
  background: rgba(228, 234, 239, 0.92);
}

.business-header .header-nav-dropdown-panel {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.business-header .header-nav-dropdown-surface {
  background: #ffffff;
  border-color: rgba(226, 232, 240, 0.9);
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.1),
    0 2px 8px rgba(15, 23, 42, 0.04),
    0 2px 0 rgba(255, 255, 255, 0.92) inset;
}

.business-header .header-nav-dropdown-caption {
  color: #667383;
}

.business-header .header-nav-dropdown-lead,
.business-header .header-service-link-text,
.business-header .header-service-link-arrow {
  color: #667383;
}

.business-header .header-service-link {
  border-color: transparent;
  background: transparent;
  color: #1f2937 !important;
}

.business-header .header-service-link:hover,
.business-header .header-service-link:focus-visible {
  background: transparent;
  border-color: transparent;
  color: #16a34a !important;
}

.business-header .header-service-link-icon {
  background: rgba(228, 234, 239, 0.92);
  color: #111827;
  box-shadow: inset 0 0 0 1px rgba(118, 128, 141, 0.14);
}

.business-header .header-nav-dropdown-feature {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(118, 128, 141, 0.14);
  color: #17212b !important;
}

.business-header .header-nav-dropdown-feature:hover,
.business-header .header-nav-dropdown-feature:focus-visible {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(118, 128, 141, 0.22);
  box-shadow: 0 18px 34px rgba(77, 88, 102, 0.12);
}

.business-header .header-nav-dropdown-feature-icon {
  background: #111827;
  color: #ffffff;
}

.business-header .header-nav-dropdown-feature-title {
  color: #17212b;
}

.business-header .header-nav-dropdown-feature-text {
  color: #667383;
}

.country-flag {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 1.5px rgba(15, 23, 42, 0.12));
}

.country-flag::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--flag-fill, transparent);
}

.flag-at {
  --flag-fill: linear-gradient(180deg, #ed2939 0 33.33%, #ffffff 33.33% 66.66%, #ed2939 66.66% 100%);
}

.flag-de {
  --flag-fill: linear-gradient(180deg, #000000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.flag-ru {
  --flag-fill: linear-gradient(180deg, #ffffff 0 33.33%, #224c9f 33.33% 66.66%, #d52b1e 66.66% 100%);
}

.flag-de-at::before {
  background: linear-gradient(180deg, #ed2939 0 33.33%, #ffffff 33.33% 66.66%, #ed2939 66.66% 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.flag-de-at::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(180deg, #000000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.flag-de-at {
  background:
    linear-gradient(135deg, transparent 48%, rgba(255, 255, 255, 0.95) 49%, rgba(255, 255, 255, 0.95) 51%, transparent 52%);
}

.flag-nl {
  --flag-fill: linear-gradient(180deg, #ae1c28 0 33.33%, #ffffff 33.33% 66.66%, #21468b 66.66% 100%);
}

.flag-es {
  --flag-fill: linear-gradient(180deg, #c60b1e 0 25%, #ffc400 25% 75%, #c60b1e 75% 100%);
}

.flag-us {
  --flag-fill: repeating-linear-gradient(180deg, #b22234 0 2px, #ffffff 2px 4px);
}

.flag-us::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 42%;
  height: 52%;
  background: #3c3b6e;
  border-top-left-radius: 999px;
  border-bottom-right-radius: 8px;
}

@media (min-width: 980px) and (max-width: 1439px) {
  .main-nav {
    gap: 16px;
  }

  .nav-links {
    gap: 24px;
    padding: 0 8px 0 16px;
    font-size: 13px;
  }

  .header-contact-cluster {
    gap: 10px;
  }

  .header-phone-stack {
    gap: 12px;
  }

  .header-phone-number {
    font-size: 13px;
  }

  .header-nav-dropdown-panel {
    width: min(620px, calc(100vw - 48px));
  }

  .header-service-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 52px;
  }

  .header-nav-dropdown-body {
    display: block;
  }

  .header-nav-dropdown-feature {
    min-height: 68px;
  }
}

@media (min-width: 980px) and (max-width: 1139px) {
  .flexlast-shared-header .header__inner {
    padding: 0 4% !important;
  }

  .flexlast-shared-header .header-top-meta {
    gap: 10px !important;
    min-width: 0 !important;
  }

  .flexlast-shared-header .header-context-current {
    gap: 6px !important;
  }

  .flexlast-shared-header .header-context-city {
    font-size: 12px !important;
  }

  .flexlast-shared-header .header-context-language-icon {
    width: 15px !important;
    height: 15px !important;
    flex-basis: 15px !important;
    font-size: 15px !important;
  }

  .flexlast-shared-header .header-context-divider {
    height: 14px !important;
    margin: 0 2px !important;
  }

  .flexlast-shared-header .header-city-flag {
    width: 16px !important;
    height: 16px !important;
  }

  .flexlast-shared-header .header-audience-switch {
    gap: 6px !important;
    margin-left: 0 !important;
  }

  .flexlast-shared-header .header-audience-button {
    height: 34px !important;
    padding: 0 13px !important;
    border-radius: 14px !important;
    font-size: 13px !important;
  }

  .flexlast-shared-header .main-nav {
    display: grid !important;
    grid-template-columns: 1fr max-content 1fr !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .flexlast-shared-header .logo {
    grid-column: 1 !important;
    justify-self: start !important;
  }

  .flexlast-shared-header .nav-links {
    grid-column: 2 !important;
    width: max-content !important;
    justify-self: center !important;
    justify-content: center !important;
    gap: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 13px !important;
  }

  .flexlast-shared-header .header-nav-indicator {
    display: none !important;
  }

  .flexlast-shared-header .nav-actions {
    grid-column: 3 !important;
    justify-self: end !important;
    margin-left: 0 !important;
    gap: 8px !important;
  }
}

@media (min-width: 980px) and (max-width: 1100px) {
  body.home-page .flexlast-shared-header .main-nav {
    gap: 10px !important;
  }

  body.home-page .flexlast-shared-header .header-action-button:not(.header-locale-pill):not(.header-context-button),
  body.home-page .flexlast-shared-header .header-menu [data-header-menu-toggle] {
    min-width: 40px !important;
    width: 40px !important;
    height: 40px !important;
  }

  body.home-page .flexlast-shared-header .header-locale-pill {
    width: auto !important;
    min-width: 68px !important;
  }
}

@media (max-width: 767px) {
  .header-menu-desktop-only {
    display: none;
  }

  html.header-menu-open,
  body.header-menu-open {
    overflow: hidden;
    overscroll-behavior-y: none;
  }

  .header-menu-footer {
    display: none;
  }

  .header-menu-locale-switch--desktop {
    display: none;
  }

  .header-menu-locale-switch--mobile {
    display: flex;
  }

  .header-menu-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-actions > .header-locale-switch,
  .nav-actions > button[data-header-account],
  .nav-actions > button[data-header-orders] {
    display: none;
  }

  .nav-actions > .header-mobile-locale {
    display: inline-flex;
  }

  .header-nav-dropdown-panel {
    display: none;
  }

  .top-bar,
  .header-contact-cluster {
    display: none;
  }

  .header-top-theme {
    display: none !important;
  }

  .business-header .header-mobile-locale-button {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.94);
    color: #223047;
    box-shadow: 0 12px 24px rgba(2, 8, 23, 0.2);
  }

  .business-header .header-mobile-locale-button:hover,
  .business-header .header-mobile-locale-button:focus-visible {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 28px rgba(2, 8, 23, 0.24);
  }

  .business-header .header-mobile-locale-button .header-locale-trigger-icon {
    opacity: 1;
  }

  .business-header .header-mobile-locale-button .header-locale-trigger-caret {
    opacity: 0.86;
  }

  .main-nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .nav-actions {
    gap: 8px;
    margin-left: 0;
    align-items: center;
    justify-self: end;
    position: static;
    z-index: auto;
  }

  body.home-page .flexlast-shared-header .nav-actions > .header-mobile-locale,
  body.home-page .flexlast-shared-header .nav-actions > .header-menu {
    display: inline-flex;
    align-items: center;
  }

  .nav-actions > .header-mobile-locale,
  .nav-actions > .header-menu {
    align-items: center;
    flex-shrink: 0;
  }

  .logo {
    grid-column: 1;
    justify-self: start;
    margin-left: 16px;
  }

  .header-mobile-phone {
    grid-column: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    text-align: center;
    line-height: 1;
    color: #000 !important;
  }

  .header-mobile-phone .header-phone-number {
    font-size: clamp(14px, 4.2vw, 17px);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1;
    white-space: nowrap;
    color: #091124 !important;
    font-variant-numeric: tabular-nums lining-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
  }

  .header-mobile-phone .header-phone-cta {
    display: block;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    color: #091124 !important;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .header-mobile-phone .header-phone-note {
    display: block;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 800;
    color: #087c3a;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }

  .header-action-button {
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    border-radius: 14px;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .header-menu [data-header-menu-toggle] {
    min-width: 42px;
    width: 42px;
    height: 42px;
    min-height: 42px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    padding: 0;
    box-sizing: border-box;
  }

  .header-menu [data-header-menu-toggle]:hover,
  .header-menu [data-header-menu-toggle]:focus-visible {
    background: #f8fafc;
    border-color: #cbd5e1;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
  }

  .header-locale-pill {
    min-width: 72px;
  }

  .header-mobile-locale-button {
    min-width: 42px;
    width: 42px;
    height: 42px;
    min-height: 42px;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    box-sizing: border-box;
  }

  body.home-page .flexlast-shared-header .header-mobile-locale-button {
    min-width: 42px !important;
    width: 42px !important;
    padding: 0 !important;
    height: 42px !important;
    border-radius: 16px !important;
  }

  .header-mobile-locale-button .header-locale-current {
    gap: 0;
  }

  .header-mobile-locale-button .header-locale-current-flag {
    display: inline-flex;
    width: 18px;
    height: 18px;
  }

  .header-mobile-locale-button .header-locale-trigger-caret {
    display: none;
  }

  .header-mobile-locale-button .header-locale-trigger-label {
    display: none;
  }

  body.home-page .flexlast-shared-header .header-menu [data-header-menu-toggle] {
    min-width: 42px !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 16px !important;
  }

  body.home-page .flexlast-shared-header .header-menu-toggle-icon {
    font-size: 20px !important;
  }

  .header-mobile-locale-panel {
    position: fixed;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    inset: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    min-height: 100svh;
    max-height: 100svh;
    padding: calc(env(safe-area-inset-top, 0px) + 28px) 20px 28px;
    border: none;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    margin: 0;
    transform: translateY(0) !important;
    z-index: 2600;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .header-mobile-locale-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-mobile-locale-panel .header-mobile-locale-sheet {
    width: min(720px, 100%);
    margin: 0 auto;
    gap: 28px;
  }

  .header-mobile-locale-panel .locale-panel-section {
    padding: 0;
  }

  .header-mobile-locale-panel .locale-panel-section + .locale-panel-section {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .header-mobile-locale-panel .header-dropdown-caption {
    margin-bottom: 14px;
    padding: 0 2px;
    color: #6b7280;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .header-mobile-locale-panel .header-dropdown-caption::after {
    display: none;
  }

  .header-mobile-locale-panel .locale-option-group--language,
  .header-mobile-locale-panel .locale-option-group--country,
  .header-mobile-locale-panel .locale-option-group--city {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
  }

  .header-mobile-locale-panel .locale-option {
    min-height: 72px;
    padding: 0 18px;
    border: 0;
    border-top: 1px solid #e5e7eb;
    border-radius: 0;
    background: #ffffff;
    justify-content: space-between;
    box-shadow: none;
    transform: none;
  }

  .header-mobile-locale-panel .locale-option:first-child {
    border-top: none;
  }

  .header-mobile-locale-panel .locale-option:hover,
  .header-mobile-locale-panel .locale-option:focus-visible,
  .header-mobile-locale-panel .locale-option.active {
    background: #ffffff;
    box-shadow: none;
    border-top-color: #e5e7eb;
  }

  .header-mobile-locale-panel .locale-option--language {
    justify-content: space-between;
  }

  .header-mobile-locale-panel .locale-option--language .locale-option-start {
    justify-content: flex-start;
    gap: 12px;
  }

  .header-mobile-locale-panel .locale-option--language .locale-option-label,
  .header-mobile-locale-panel .locale-option--country .locale-option-label,
  .header-mobile-locale-panel .locale-option--city .locale-option-label {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
    letter-spacing: -0.02em;
  }

  .header-mobile-locale-panel .locale-option--language .locale-option-check,
  .header-mobile-locale-panel .locale-option--country .locale-option-check {
    display: inline-flex;
    opacity: 0;
    transform: scale(1);
    font-size: 26px;
    color: #111827;
  }

  .header-mobile-locale-panel .locale-option.active .locale-option-check {
    opacity: 1;
  }

  .header-mobile-locale-panel .locale-option--city .locale-option-check {
    display: none;
  }

  .header-mobile-locale-panel .locale-option--city .locale-option-start {
    gap: 14px;
  }

  .header-mobile-locale-panel .locale-option--city .locale-option-city-icon {
    width: 26px;
    height: 26px;
    font-size: 26px !important;
    color: #111827;
  }

  .header-mobile-locale-panel .locale-option--city.locale-option--disabled .locale-option-city-icon,
  .header-mobile-locale-panel .locale-option--city.locale-option--disabled .locale-option-label {
    color: #94a3b8;
  }

  .header-mobile-locale-panel .locale-option--city .locale-option-status {
    min-height: 28px;
    padding: 0 12px;
    font-size: 11px;
  }

  .header-mobile-locale-panel .locale-option--language .locale-option-flag {
    display: none;
  }

  .header-mobile-locale-panel .locale-option-flag {
    width: 28px;
    height: 28px;
  }

  .header-call-button {
    display: none;
  }

  .header-call-button .material-icons-round {
    font-size: 22px;
  }

  .header-menu-panel {
    position: fixed;
    top: var(--flexlast-header-height);
    left: 0;
    right: 0;
    width: 100vw;
    height: calc(100svh - var(--flexlast-header-height));
    min-height: 0;
    max-height: calc(100svh - var(--flexlast-header-height));
    max-width: none;
    padding: 10px 10px 18px;
    border: none;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow-y: auto;
    overscroll-behavior: none;
    touch-action: pan-y;
    margin: 0;
    transform: translateY(0);
    z-index: 880;
  }

  .header-menu-mobile-only {
    display: flex !important;
  }

  .header-menu-shell {
    width: min(620px, 100%);
    margin: 0 auto;
    padding-bottom: 0;
    gap: 14px;
  }

  .header-menu-head {
    display: none;
  }

  .header-menu.is-open [data-header-menu-toggle] {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .header-menu.is-open .header-menu-panel {
    transform: translateY(0);
  }
}

@media (min-width: 980px) {
  .header-top-theme {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .nav-actions {
    gap: 6px;
    align-items: center;
  }

  .header-mobile-phone .header-phone-number {
    font-size: 14px;
  }

  .logo {
    margin-left: 12px;
  }

  .header-action-button {
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    border-radius: 16px;
    padding: 0 12px;
    gap: 8px;
    box-sizing: border-box;
  }

  .header-menu [data-header-menu-toggle] {
    min-width: 42px;
    width: 42px;
    height: 42px;
    min-height: 42px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    padding: 0;
    box-sizing: border-box;
  }

  .header-menu [data-header-menu-toggle]:hover,
  .header-menu [data-header-menu-toggle]:focus-visible {
    background: #f8fafc;
    border-color: #cbd5e1;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
  }

  .header-menu-panel {
    top: var(--flexlast-header-height);
    left: 0;
    right: 0;
    width: 100vw;
    height: calc(100svh - var(--flexlast-header-height));
    max-height: calc(100svh - var(--flexlast-header-height));
    padding: 10px 8px 16px;
    border-radius: 0;
  }

  .header-action-button .material-icons-round {
    font-size: 22px;
  }

  .header-locale-pill {
    min-width: 72px;
    font-size: 15px;
  }

  .header-mobile-locale-button {
    min-width: 42px;
    width: 42px;
    height: 42px;
    min-height: 42px;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    box-sizing: border-box;
  }

  body.home-page .flexlast-shared-header .header-mobile-locale-button {
    min-width: 42px !important;
    width: 42px !important;
    padding: 0 !important;
    height: 42px !important;
    border-radius: 16px !important;
  }

  body.home-page .flexlast-shared-header .header-menu [data-header-menu-toggle] {
    min-width: 42px !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 16px !important;
  }

  body.home-page .flexlast-shared-header .header-menu-toggle-icon {
    font-size: 20px !important;
  }

  .header-contact-cluster {
    gap: 10px;
  }

  .header-phone-number {
    font-size: 14px;
  }

  .header-phone-note {
    font-size: 10px;
  }

  .header-dropdown {
    top: calc(100% + 10px);
    width: min(280px, calc(100vw - 20px));
    padding: 10px;
    border-radius: 20px;
  }

  .header-mobile-locale-panel {
    padding: calc(env(safe-area-inset-top, 0px) + 24px) 16px 22px;
  }

  .header-menu-panel {
    top: var(--flexlast-header-height);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: calc(100svh - var(--flexlast-header-height));
    min-height: 0;
    max-width: none;
    max-height: calc(100svh - var(--flexlast-header-height));
    padding: 10px 8px 16px;
    border-radius: 0;
  }

  .locale-option {
    padding: 11px 8px;
  }

  .locale-option-label {
    font-size: 15px;
  }

  .header-menu-switcher-link {
    min-height: 40px;
    font-size: 12px;
  }

  .header-menu-cluster {
    padding: 10px;
    border-radius: 28px;
  }

  .header-menu-directory {
    gap: 12px;
  }

  .header-menu-row,
  .header-menu-cluster .header-menu-item {
    min-height: 62px;
    gap: 12px;
    padding: 14px 6px;
  }

  .header-menu-row--primary {
    min-height: 72px;
  }

  .header-menu-row-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 20px;
  }

  .header-menu-row-title {
    font-size: 16px;
  }

  .header-menu-row-meta {
    font-size: 11px;
  }
}

html:not([data-theme='light']) .header-action-button {
  background: rgba(12, 23, 38, 0.86);
  color: var(--night-text);
  border-color: var(--night-border-strong);
}

html:not([data-theme='light']) .header-action-button:hover,
html:not([data-theme='light']) .header-action-button:focus-visible {
  background: rgba(15, 23, 36, 0.98);
  border-color: rgba(148, 163, 184, 0.34);
  box-shadow: 0 18px 36px rgba(2, 8, 23, 0.34);
}

html:not([data-theme='light']) .header-dropdown {
  background: #0c1726;
  border-color: var(--night-border-strong);
  box-shadow: var(--night-shadow);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html:not([data-theme='light']) .header-nav-dropdown-panel {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html:not([data-theme='light']) .header-nav-dropdown-surface {
  background: #ffffff;
  border-color: rgba(226, 232, 240, 0.9);
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.1),
    0 2px 8px rgba(15, 23, 42, 0.04),
    0 2px 0 rgba(255, 255, 255, 0.92) inset;
}

html:not([data-theme='light']) .locale-panel-section + .locale-panel-section {
  border-top-color: var(--night-border);
}

html:not([data-theme='light']) .header-dropdown-caption,
html:not([data-theme='light']) .header-menu-title,
html:not([data-theme='light']) .header-menu-section-title,
html:not([data-theme='light']) .header-menu-directory-title,
html:not([data-theme='light']) .header-nav-dropdown-caption {
  color: var(--night-muted);
}

html:not([data-theme='light']) .header-nav-dropdown-lead,
html:not([data-theme='light']) .header-service-link-text,
html:not([data-theme='light']) .header-service-link-arrow,
html:not([data-theme='light']) .header-nav-dropdown-feature-text {
  color: rgba(203, 213, 225, 0.78);
}

html:not([data-theme='light']) .header-service-link-title {
  color: currentColor;
}

html:not([data-theme='light']) .header-service-link-icon {
  background: rgba(148, 163, 184, 0.12);
  color: rgba(248, 250, 252, 0.94);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.16);
}

html:not([data-theme='light']) .header-service-link-arrow {
  background: transparent;
}

html:not([data-theme='light']) .header-nav-dropdown-feature {
  background: rgba(15, 23, 36, 0.72);
  border-color: rgba(71, 85, 105, 0.34);
  color: rgba(226, 232, 240, 0.92) !important;
}

html:not([data-theme='light']) .header-nav-dropdown-feature:hover,
html:not([data-theme='light']) .header-nav-dropdown-feature:focus-visible {
  background: rgba(18, 28, 45, 0.96);
  border-color: rgba(148, 163, 184, 0.34);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

html:not([data-theme='light']) .header-nav-dropdown-feature-title {
  color: rgba(248, 250, 252, 0.96);
}

html:not([data-theme='light']) .header-nav-dropdown-feature-icon {
  background: rgba(248, 250, 252, 0.96);
  color: #0f172a;
}

html:not([data-theme='light']) .header-nav-dropdown-feature-arrow {
  background: #16a34a;
  color: #ffffff;
}

html:not([data-theme='light']) .header-nav-dropdown-feature:hover .header-nav-dropdown-feature-arrow,
html:not([data-theme='light']) .header-nav-dropdown-feature:focus-visible .header-nav-dropdown-feature-arrow {
  background: rgba(248, 250, 252, 0.96);
  color: #0f172a;
}

html:not([data-theme='light']) .header-dropdown-caption::after {
  background: var(--night-border);
}

html:not([data-theme='light']) .header-menu-switcher {
  background: rgba(30, 41, 59, 0.78);
  border-color: rgba(71, 85, 105, 0.48);
  box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.08);
}

html:not([data-theme='light']) .header-menu-switcher-link {
  color: rgba(226, 232, 240, 0.76);
}

html:not([data-theme='light']) .header-menu-switcher-link:hover,
html:not([data-theme='light']) .header-menu-switcher-link:focus-visible {
  background: #f8fafc;
  border-color: rgba(148, 163, 184, 0.26);
  color: #0f172a;
}

html:not([data-theme='light']) .header-menu-switcher--private .header-menu-switcher-link.is-active {
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  border-color: rgba(34, 197, 94, 0.36);
  color: #f8fafc;
}

html:not([data-theme='light']) .header-menu-switcher--business .header-menu-switcher-link.is-active {
  background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%);
  border-color: rgba(148, 163, 184, 0.34);
  color: #0f172a;
}

html:not([data-theme='light']) .header-menu-cluster {
  background: rgba(15, 23, 36, 0.82);
  border-color: var(--night-border-strong);
  box-shadow: none;
}

html:not([data-theme='light']) .header-menu-cluster--private {
  background: linear-gradient(180deg, rgba(14, 38, 23, 0.88), rgba(15, 23, 36, 0.9) 62%);
}

html:not([data-theme='light']) .header-menu-cluster--business {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 36, 0.9) 62%);
}

html:not([data-theme='light']) .header-menu-cluster-list {
  background: transparent;
}

html:not([data-theme='light']) .locale-option:hover,
html:not([data-theme='light']) .locale-option:focus-visible,
html:not([data-theme='light']) .locale-option.active {
  background: rgba(148, 163, 184, 0.08);
}

html:not([data-theme='light']) .locale-option-group--language {
  background: rgba(30, 41, 59, 0.74);
  border-color: rgba(71, 85, 105, 0.42);
}

html:not([data-theme='light']) .locale-option--language:hover,
html:not([data-theme='light']) .locale-option--language:focus-visible {
  background: rgba(51, 65, 85, 0.58);
}

html:not([data-theme='light']) .locale-option--language.active {
  background: rgba(15, 23, 36, 0.96);
  border-color: rgba(100, 116, 139, 0.48);
  box-shadow: 0 10px 22px rgba(2, 8, 23, 0.22);
}

html:not([data-theme='light']) .locale-option--country {
  background: rgba(15, 23, 36, 0.74);
  border-color: transparent;
}

html:not([data-theme='light']) .locale-option--country:hover,
html:not([data-theme='light']) .locale-option--country:focus-visible {
  background: rgba(30, 41, 59, 0.92);
  border-color: rgba(71, 85, 105, 0.44);
}

html:not([data-theme='light']) .locale-option--country.active {
  background: linear-gradient(180deg, rgba(20, 83, 45, 0.34) 0%, rgba(15, 23, 36, 0.94) 100%);
  border-color: rgba(74, 222, 128, 0.34);
}

html:not([data-theme='light']) .locale-option-label,
html:not([data-theme='light']) .locale-option-check,
html:not([data-theme='light']) .header-menu-quick-link,
html:not([data-theme='light']) .header-menu-audience-link,
html:not([data-theme='light']) .header-menu-directory-link,
html:not([data-theme='light']) .header-menu-item {
  color: var(--night-text);
}

html:not([data-theme='light']) .header-service-link {
  background: transparent;
  border-color: transparent;
  color: #1f2937 !important;
}

html:not([data-theme='light']) .header-menu-panel .theme-toggle-button,
html:not([data-theme='light']) .header-menu-quick-link,
html:not([data-theme='light']) .header-menu-audience-link,
html:not([data-theme='light']) .header-menu-item {
  background: rgba(15, 23, 36, 0.72);
  border-color: var(--night-border-strong);
  box-shadow: none;
}

html:not([data-theme='light']) .header-menu-panel {
  background: #0b1220;
}

html:not([data-theme='light']) .header-menu-head {
  background: #0b1220;
}

html:not([data-theme='light']) .header-menu-quick-meta,
html:not([data-theme='light']) .header-menu-row-meta {
  color: rgba(203, 213, 225, 0.72);
}

html:not([data-theme='light']) .header-menu-directory-link {
  border-top-color: rgba(71, 85, 105, 0.42);
}

html:not([data-theme='light']) .header-menu-row,
html:not([data-theme='light']) .header-menu-cluster .header-menu-item {
  color: var(--night-text);
}

html:not([data-theme='light']) .header-menu-row + .header-menu-row,
html:not([data-theme='light']) .header-menu-cluster .header-menu-item + .header-menu-item,
html:not([data-theme='light']) .header-menu-row + .header-menu-item,
html:not([data-theme='light']) .header-menu-cluster .header-menu-item + .header-menu-row {
  border-top-color: rgba(71, 85, 105, 0.42);
}

html:not([data-theme='light']) .header-menu-row-group + .header-menu-row,
html:not([data-theme='light']) .header-menu-row-group + .header-menu-item,
html:not([data-theme='light']) .header-menu-row-group + .header-menu-row-group > .header-menu-row,
html:not([data-theme='light']) .header-menu-row + .header-menu-row-group > .header-menu-row,
html:not([data-theme='light']) .header-menu-cluster .header-menu-item + .header-menu-row-group > .header-menu-row {
  border-top-color: rgba(71, 85, 105, 0.42);
}

html:not([data-theme='light']) .header-menu-row:hover,
html:not([data-theme='light']) .header-menu-row:focus-visible,
html:not([data-theme='light']) .header-menu-row.is-active,
html:not([data-theme='light']) .header-menu-cluster .header-menu-item:hover,
html:not([data-theme='light']) .header-menu-cluster .header-menu-item:focus-visible {
  background: rgba(15, 23, 36, 0.64);
}

html:not([data-theme='light']) .header-menu-submenu {
  background: transparent;
}

html:not([data-theme='light']) .header-menu-submenu-link {
  color: rgba(226, 232, 240, 0.88);
  border-top-color: rgba(71, 85, 105, 0.4);
}

html:not([data-theme='light']) .header-menu-submenu-link:hover,
html:not([data-theme='light']) .header-menu-submenu-link:focus-visible,
html:not([data-theme='light']) .header-menu-submenu-link.is-active {
  background: rgba(15, 23, 36, 0.7);
  color: #f8fafc;
}

html:not([data-theme='light']) .header-menu-submenu-meta,
html:not([data-theme='light']) .header-menu-submenu-arrow {
  color: rgba(203, 213, 225, 0.68);
}

html:not([data-theme='light']) .header-menu-row-icon {
  background: #f8fafc;
  color: #0f172a;
  box-shadow: none;
}

html:not([data-theme='light']) .header-menu-row:not(.header-menu-row--primary) .header-menu-row-icon {
  background: rgba(51, 65, 85, 0.88);
  color: #f8fafc;
}

html:not([data-theme='light']) .header-menu-cluster--private .header-menu-row--primary .header-menu-row-icon {
  background: linear-gradient(135deg, #f8fafc 0%, #22c55e 100%);
  color: #0f172a;
}

html:not([data-theme='light']) .header-menu-cluster--business .header-menu-row--primary .header-menu-row-icon {
  background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%);
  color: #0f172a;
}

html:not([data-theme='light']) .header-menu-brand {
  color: #f8fafc;
}

html:not([data-theme='light']) .header-menu-brand span {
  color: #86efac;
}

html:not([data-theme='light']) .header-menu-close {
  background: rgba(30, 41, 59, 0.92);
  color: #f8fafc;
}

html:not([data-theme='light']) .header-menu-close:hover,
html:not([data-theme='light']) .header-menu-close:focus-visible {
  background: rgba(51, 65, 85, 0.96);
}

html:not([data-theme='light']) .header-menu-row-arrow {
  color: rgba(203, 213, 225, 0.72);
}

html:not([data-theme='light']) .header-menu-row--danger .header-menu-row-arrow {
  color: #fca5a5;
}

html:not([data-theme='light']) .header-menu-row-badge {
  background: rgba(134, 239, 172, 0.14);
  color: #bbf7d0;
}

html:not([data-theme='light']) .header-service-link:hover,
html:not([data-theme='light']) .header-service-link:focus-visible {
  background: transparent;
  border-color: transparent;
  color: #16a34a !important;
}

html:not([data-theme='light']) .header-top-theme .theme-toggle-button {
  color: var(--night-text);
}

html:not([data-theme='light']) .header-menu-theme .theme-toggle-button {
  color: var(--night-text);
}

html:not([data-theme='light']) .header-menu-theme .theme-toggle-button:hover,
html:not([data-theme='light']) .header-menu-theme .theme-toggle-button:focus-visible {
  background: transparent;
  border-color: transparent;
  color: #86efac;
}

html:not([data-theme='light']) .header-top-theme .theme-toggle-button:hover,
html:not([data-theme='light']) .header-top-theme .theme-toggle-button:focus-visible {
  background: transparent;
  border-color: transparent;
  color: var(--night-text);
}

html:not([data-theme='light']) .header-menu-head .theme-toggle-button--switch .theme-toggle-switch-track,
html:not([data-theme='light']) .header-top-theme .theme-toggle-button--switch .theme-toggle-switch-track {
  border-color: rgba(100, 116, 139, 0.34);
  box-shadow: 0 12px 28px rgba(2, 8, 23, 0.26);
}

html:not([data-theme='light']) .header-menu-head .theme-toggle-button--switch:hover .theme-toggle-switch-track,
html:not([data-theme='light']) .header-menu-head .theme-toggle-button--switch:focus-visible .theme-toggle-switch-track,
html:not([data-theme='light']) .header-top-theme .theme-toggle-button--switch:hover .theme-toggle-switch-track,
html:not([data-theme='light']) .header-top-theme .theme-toggle-button--switch:focus-visible .theme-toggle-switch-track {
  border-color: rgba(148, 163, 184, 0.44);
  box-shadow: 0 16px 32px rgba(2, 8, 23, 0.34);
}

html:not([data-theme='light']) .header-menu-item-meta {
  color: var(--night-muted);
}

html:not([data-theme='light']) .header-menu-locale-options {
  background: rgba(15, 23, 36, 0.72);
  border-color: var(--night-border-strong);
}

html:not([data-theme='light']) .header-dropdown-caption::after {
  background: rgba(71, 85, 105, 0.4);
}

html:not([data-theme='light']) .header-menu-locale-options .locale-panel-section + .locale-panel-section {
  border-top-color: var(--night-border);
}

html:not([data-theme='light']) .header-menu-panel .theme-toggle-button:hover,
html:not([data-theme='light']) .header-menu-quick-link:hover,
html:not([data-theme='light']) .header-menu-quick-link:focus-visible,
html:not([data-theme='light']) .header-menu-quick-link.is-active,
html:not([data-theme='light']) .header-menu-audience-link:hover,
html:not([data-theme='light']) .header-menu-audience-link:focus-visible,
html:not([data-theme='light']) .header-menu-audience-link.is-active,
html:not([data-theme='light']) .header-menu-directory-link:hover,
html:not([data-theme='light']) .header-menu-directory-link:focus-visible,
html:not([data-theme='light']) .header-menu-directory-link.is-active,
html:not([data-theme='light']) .header-menu-item:hover,
html:not([data-theme='light']) .header-menu-item:focus-visible {
  background: rgba(15, 23, 36, 0.96);
  border-color: rgba(148, 163, 184, 0.34);
}

html:not([data-theme='light']) .header-phone-entry,
html:not([data-theme='light']) .header-phone-entry:hover,
html:not([data-theme='light']) .header-phone-entry:focus-visible {
  color: var(--night-text) !important;
}

html:not([data-theme='light']) .header-contact-cluster,
html:not([data-theme='light']) .header-phone-stack {
  color: var(--night-text) !important;
}

html:not([data-theme='light']) .header-phone-number {
  color: #f8fbff !important;
}

html:not([data-theme='light']) .header-phone-note {
  color: #86efac !important;
}

html:not([data-theme='light']) .header-call-button {
  background: #22c55e;
}

html:not([data-theme='light']) .flexlast-shared-header .header-top-meta,
html:not([data-theme='light']) .flexlast-shared-header .header-locale-inline,
html:not([data-theme='light']) .flexlast-shared-header .header-audience-switch {
  color: var(--night-text) !important;
}

html:not([data-theme='light']) .flexlast-shared-header .header-locale-inline [data-locale-trigger],
html:not([data-theme='light']) .flexlast-shared-header .header-locale-trigger-label,
html:not([data-theme='light']) .flexlast-shared-header .header-locale-trigger-caret {
  color: var(--night-text) !important;
}

html:not([data-theme='light']) .flexlast-shared-header .header-locale-inline [data-locale-trigger] {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

html:not([data-theme='light']) .flexlast-shared-header .header-locale-inline.is-open [data-locale-trigger],
html:not([data-theme='light']) .flexlast-shared-header .header-locale-inline [data-locale-trigger]:hover,
html:not([data-theme='light']) .flexlast-shared-header .header-locale-inline [data-locale-trigger]:focus-visible {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

html:not([data-theme='light']) .flexlast-shared-header .header-audience-button {
  color: var(--night-muted) !important;
}

html:not([data-theme='light']) .header-audience-button {
  color: #94a3b8;
}

html:not([data-theme='light']) .flexlast-shared-header .header-audience-button:hover,
html:not([data-theme='light']) .flexlast-shared-header .header-audience-button:focus-visible {
  color: #f8fbff !important;
}

html:not([data-theme='light']) .flexlast-shared-header .header-audience-button.is-active {
  background: rgba(148, 163, 184, 0.14) !important;
  color: var(--night-text) !important;
}

html:not([data-theme='light']) .header-audience-button.is-active {
  background: rgba(148, 163, 184, 0.14);
  color: var(--night-text);
}

html:not([data-theme='light']) .header-menu-danger {
  color: #cbd5e1;
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.24);
}

html:not([data-theme='light']) .header-menu-danger:hover,
html:not([data-theme='light']) .header-menu-danger:focus-visible {
  background: rgba(30, 41, 59, 0.34);
}

@media (max-width: 767px) {
  html body .flexlast-shared-header.flexlast-shared-header {
    padding: 12px 0 10px !important;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: none !important;
    color: #111827 !important;
    letter-spacing: normal !important;
    line-height: normal !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header.business-header {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: none !important;
    color: #111827 !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header::after {
    display: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header__inner {
    padding: 0 8px !important;
    letter-spacing: normal !important;
    line-height: normal !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .top-bar,
  html body .flexlast-shared-header.flexlast-shared-header .header-contact-cluster,
  html body .flexlast-shared-header.flexlast-shared-header .header-audience-switch,
  html body .flexlast-shared-header.flexlast-shared-header .nav-links {
    display: none !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .main-nav.main-nav {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 42px !important;
    width: 100% !important;
    letter-spacing: normal !important;
    line-height: normal !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .logo.logo {
    grid-column: 1 !important;
    justify-self: start !important;
    max-width: none !important;
    margin: 0 0 0 12px !important;
    font-size: 26px !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
    color: #0f172a !important;
    position: static !important;
    left: auto !important;
    transform: none !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .logo.logo span {
    letter-spacing: -0.04em !important;
    color: #00b840 !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-mobile-phone.header-mobile-phone {
    display: inline-flex !important;
    grid-column: 2 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    min-width: 0 !important;
    text-align: center !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    color: #000000 !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-mobile-phone.header-mobile-phone .header-phone-number.header-phone-number {
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: -0.025em !important;
    white-space: nowrap !important;
    color: #091124 !important;
    font-variant-numeric: tabular-nums lining-nums !important;
    font-feature-settings: "tnum" 1, "lnum" 1 !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-mobile-phone.header-mobile-phone .header-phone-cta.header-phone-cta {
    display: block !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    color: #091124 !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-mobile-phone.header-mobile-phone .header-phone-note.header-phone-note {
    display: block !important;
    min-width: 79.05px !important;
    text-align: center !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
    color: #087c3a !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .nav-actions.nav-actions {
    display: flex !important;
    grid-column: 3 !important;
    justify-self: end !important;
    align-items: center !important;
    gap: 6px !important;
    margin-left: 0 !important;
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    letter-spacing: normal !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .nav-actions.nav-actions > .header-mobile-locale,
  html body .flexlast-shared-header.flexlast-shared-header .header-menu.header-menu {
    display: inline-flex !important;
    align-items: center !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .nav-actions.nav-actions > button[data-header-account],
  html body .flexlast-shared-header.flexlast-shared-header .nav-actions.nav-actions > button[data-header-orders] {
    display: none !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-action-button.header-action-button:not(.header-context-button),
  html body .flexlast-shared-header.flexlast-shared-header .header-mobile-locale-button.header-mobile-locale-button,
  html body .flexlast-shared-header.flexlast-shared-header .header-menu.header-menu [data-header-menu-toggle][data-header-menu-toggle] {
    min-width: 42px !important;
    width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 16px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    letter-spacing: normal !important;
    color: #1f2937 !important;
    background: #fff !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu.header-menu [data-header-menu-toggle][data-header-menu-toggle] {
    border: 1px solid #e5e7eb !important;
    background: #ffffff !important;
    box-shadow: none !important;
    background-clip: padding-box !important;
    border-radius: 14px !important;
    color: #34323b !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-mobile-locale-button.header-mobile-locale-button .header-locale-current-flag {
    width: 18px !important;
    height: 18px !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon.header-menu-toggle-icon,
  html body .flexlast-shared-header.flexlast-shared-header .nav-actions.nav-actions .material-icons-round.material-icons-round:not(.header-locale-trigger-caret) {
    width: 40px !important;
    height: 40px !important;
    color: #1f2937 !important;
    font-size: 22px !important;
    line-height: 22px !important;
    letter-spacing: normal !important;
  }
}

html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu {
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: 18px !important;
  height: 13px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  color: #35333d !important;
  transform: translate(-50%, -50%) !important;
}

html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span {
  display: block !important;
  width: 100% !important;
  height: 2.2px !important;
  border-radius: 999px !important;
  background: currentColor !important;
}

html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu {
  transform: translate(-50%, -50%) scale(0.72) rotate(90deg) !important;
}

html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--close.header-menu-toggle-icon--close {
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  transform: translate(-50%, -50%) scale(0.72) rotate(-90deg) !important;
}

html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--close.header-menu-toggle-icon--close span {
  position: absolute !important;
  top: 13px !important;
  left: 0 !important;
  display: block !important;
  width: 30px !important;
  height: 2.2px !important;
  border-radius: 999px !important;
  background: currentColor !important;
}

html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--close.header-menu-toggle-icon--close {
  transform: translate(-50%, -50%) scale(1) rotate(0deg) !important;
}

@media (max-width: 767px) {
  html.header-menu-open .flexlast-shared-header {
    background: #fff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
  }

  html.header-menu-open .flexlast-shared-header::after {
    border-bottom-color: transparent !important;
  }

  html.header-menu-open .flexlast-shared-header .main-nav {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
  }

  html.header-menu-open body .flexlast-shared-header.flexlast-shared-header .header-mobile-phone.header-mobile-phone,
  html.header-menu-open body .flexlast-shared-header.flexlast-shared-header .nav-actions.nav-actions > .header-mobile-locale {
    display: none !important;
  }

  html.header-menu-open .flexlast-shared-header .nav-actions {
    grid-column: 3 !important;
  }

  html.header-menu-open .flexlast-shared-header .header-menu [data-header-menu-toggle] {
    border-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #1f2937 !important;
  }

  .flexlast-shared-header .header-menu-panel {
    position: fixed !important;
    top: var(--flexlast-header-height) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: calc(100svh - var(--flexlast-header-height)) !important;
    min-height: 0 !important;
    max-height: none !important;
    max-width: none !important;
    padding: 8px 12px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: visible !important;
    overscroll-behavior: auto !important;
    pointer-events: auto !important;
    transform: translateY(-10px) scale(0.985) !important;
    transform-origin: top center !important;
    z-index: 880 !important;
  }

  .flexlast-shared-header .header-menu.is-open .header-menu-panel {
    transform: translateY(0) scale(1) !important;
  }

  .flexlast-shared-header .header-menu-backdrop {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
  }

  .flexlast-shared-header .header-menu-shell {
    position: relative !important;
    z-index: 1 !important;
    width: min(100%, 620px) !important;
    max-height: min(58svh, 520px) !important;
    margin: 0 auto !important;
    padding: 12px 0 10px !important;
    border: 1px solid rgba(226, 232, 240, 0.96) !important;
    border-radius: 20px !important;
    background: #fff !important;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.13), 0 2px 0 rgba(255, 255, 255, 0.94) inset !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    pointer-events: auto !important;
    gap: 0 !important;
    scrollbar-width: thin;
  }

  .flexlast-shared-header .header-menu-section--simple {
    display: flex !important;
    gap: 0 !important;
    width: 100% !important;
  }

  .flexlast-shared-header .header-menu-simple-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 0 6px;
  }

  .flexlast-shared-header .header-menu-simple-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 40px;
    width: 100%;
    padding: 0 28px 0 46px;
    border: 0;
    background: transparent;
    color: #111827;
    text-align: left;
    text-decoration: none;
    font-family: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 19px;
    font-weight: 760;
    line-height: 1.08;
    letter-spacing: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.18s ease, background-color 0.18s ease, padding-left 0.18s ease;
  }

  .flexlast-shared-header .header-menu-simple-link:hover,
  .flexlast-shared-header .header-menu-simple-link:focus-visible {
    outline: none;
    color: #087c3a;
    background: #f8fafc;
    padding-left: 50px;
  }

  .flexlast-shared-header .header-menu-simple-link.is-active {
    color: #087c3a;
  }

  .flexlast-shared-header .header-menu-simple-link.is-active::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #00b840;
    transform: translateY(-50%);
  }

  .flexlast-shared-header .header-menu-simple-group {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .flexlast-shared-header .header-menu-simple-toggle {
    justify-content: space-between;
  }

  .flexlast-shared-header .header-menu-simple-toggle-icon {
    margin-left: auto;
    font-size: 22px;
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .flexlast-shared-header .header-menu-simple-group.is-open .header-menu-simple-toggle-icon {
    transform: rotate(180deg);
  }

  .flexlast-shared-header .header-menu-simple-submenu[hidden] {
    display: none !important;
  }

  .flexlast-shared-header .header-menu-simple-submenu:not([hidden]) {
    display: flex;
    flex-direction: column;
  }

  .flexlast-shared-header .header-menu-simple-submenu {
    padding: 0 0 6px;
  }

  .flexlast-shared-header .header-menu-simple-sublink {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 0 28px 0 62px;
    color: #334155;
    text-decoration: none;
    font-size: 15px;
    font-weight: 620;
    line-height: 1.1;
    letter-spacing: 0;
    transition: color 0.18s ease, background-color 0.18s ease;
  }

  .flexlast-shared-header .header-menu-simple-sublink:hover,
  .flexlast-shared-header .header-menu-simple-sublink:focus-visible {
    outline: none;
    color: #087c3a;
    background: #f8fafc;
  }

  .flexlast-shared-header .header-menu-simple-sublink.is-active {
    color: #087c3a;
  }

  .flexlast-shared-header .header-menu-simple-sublink.is-active::before {
    content: "";
    position: absolute;
    left: 42px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #00b840;
    transform: translateY(-50%);
  }

  .flexlast-shared-header .header-menu-audience-row {
    padding: 0 14px 8px;
    border-bottom: 0;
    background: #ffffff;
  }

  .flexlast-shared-header .header-menu-audience-row .header-menu-switcher {
    width: 100%;
    padding: 4px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #f6f8fb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .flexlast-shared-header .header-menu-audience-row .header-menu-switcher-link {
    min-height: 40px;
    border-radius: 12px;
    color: #526070;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0;
  }

  .flexlast-shared-header .header-menu-audience-row .header-menu-switcher--private .header-menu-switcher-link.is-active {
    background: #50b946;
    color: #ffffff;
    box-shadow: 0 9px 18px rgba(80, 185, 70, 0.2);
  }

  .flexlast-shared-header .header-menu-audience-row .header-menu-switcher--business .header-menu-switcher-link.is-active {
    background: #50b946;
    color: #ffffff;
    box-shadow: 0 9px 18px rgba(80, 185, 70, 0.2);
  }

  .flexlast-shared-header .header-menu-simple-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 8px 14px 12px;
    border-top: 0;
    border-bottom: 1px solid #edf2f7;
    background: #ffffff;
  }

  .flexlast-shared-header .header-menu-simple-chip {
    min-height: 36px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    text-align: center;
    text-decoration: none;
    font: inherit;
    font-size: 12px;
    font-weight: 820;
    line-height: 1.15;
    letter-spacing: 0;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  }

  .flexlast-shared-header .header-menu-simple-chip:hover,
  .flexlast-shared-header .header-menu-simple-chip:focus-visible {
    outline: none;
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #087c3a;
  }

  .flexlast-shared-header .header-menu-simple-chip--accent {
    grid-column: 1 / -1;
    background: #087c3a;
    border-color: #087c3a;
    color: #fff;
  }

  .flexlast-shared-header .header-menu-simple-chip--accent:hover,
  .flexlast-shared-header .header-menu-simple-chip--accent:focus-visible {
    background: #056f34;
    border-color: #056f34;
    color: #fff;
  }
}

@media (max-width: 380px) {
  .flexlast-shared-header .header-menu-shell {
    border-radius: 18px !important;
    max-height: min(56svh, 470px) !important;
  }

  .flexlast-shared-header .header-menu-simple-link {
    min-height: 38px;
    padding-left: 40px;
    font-size: 18px;
  }

  .flexlast-shared-header .header-menu-simple-link:hover,
  .flexlast-shared-header .header-menu-simple-link:focus-visible {
    padding-left: 44px;
  }

  .flexlast-shared-header .header-menu-simple-link.is-active::before {
    left: 22px;
  }

  .flexlast-shared-header .header-menu-simple-sublink {
    min-height: 34px;
    padding-left: 54px;
    font-size: 14px;
  }

  .flexlast-shared-header .header-menu-simple-sublink.is-active::before {
    left: 36px;
  }
}

@media (max-width: 767px) {
  html body .flexlast-shared-header.flexlast-shared-header .header-menu.header-menu [data-header-menu-toggle][data-header-menu-toggle] {
    min-width: 42px !important;
    width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #37373d !important;
    box-shadow: none !important;
    transition: color 0.22s ease, transform 0.22s ease !important;
  }

  html.header-menu-open body .flexlast-shared-header.flexlast-shared-header .header-mobile-phone.header-mobile-phone {
    display: inline-flex !important;
    grid-column: 2 !important;
    justify-self: center !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu {
    width: 18px !important;
    height: 13px !important;
    transform: translate(-50%, -50%) !important;
    opacity: 1 !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span {
    position: absolute !important;
    left: 0 !important;
    display: block !important;
    width: 18px !important;
    height: 2.2px !important;
    border-radius: 999px !important;
    background: currentColor !important;
    transform-origin: center center !important;
    transform: translateZ(0) rotate(0deg) !important;
    transition: top 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), width 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.18s ease, transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(1) {
    top: 0 !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(2) {
    top: 5.4px !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(3) {
    top: 10.8px !important;
    width: 12px !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu {
    transform: translate(-50%, -50%) !important;
    opacity: 1 !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(1) {
    top: 5.4px !important;
    width: 18px !important;
    transform: translateZ(0) rotate(-45deg) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(2) {
    top: 5.4px !important;
    width: 18px !important;
    transform: translateZ(0) rotate(45deg) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(3) {
    top: 5.4px !important;
    width: 18px !important;
    opacity: 0 !important;
    transform: translateZ(0) rotate(45deg) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--close.header-menu-toggle-icon--close,
  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--close.header-menu-toggle-icon--close {
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(0.72) rotate(-90deg) !important;
    pointer-events: none !important;
  }

  .flexlast-shared-header .header-menu-panel {
    padding: 0 !important;
    transform: translateY(-10px) scaleY(0.985) !important;
    transform-origin: top center !important;
    transition: opacity 0.2s ease, transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.2s ease !important;
  }

  .flexlast-shared-header .header-menu.is-open .header-menu-panel {
    transform: translateY(0) scale(1) !important;
  }

  .flexlast-shared-header .header-menu-shell {
    width: 100vw !important;
    max-width: none !important;
    max-height: min(62svh, 540px) !important;
    margin: 0 !important;
    padding: 0 0 12px !important;
    border: 0 !important;
    border-top: 1px solid #edf2f7 !important;
    border-bottom: 1px solid rgba(203, 213, 225, 0.82) !important;
    border-radius: 0 0 22px 22px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12) !important;
  }

  .flexlast-shared-header .header-menu-simple-link {
    min-height: 39px !important;
    padding: 0 30px !important;
    color: #111827 !important;
    font-size: 17px !important;
    font-weight: 650 !important;
    transition: color 0.18s ease, background-color 0.18s ease, padding-left 0.18s ease !important;
  }

  .flexlast-shared-header .header-menu-simple-link:hover,
  .flexlast-shared-header .header-menu-simple-link:focus-visible {
    color: #087c3a !important;
    background: #f8fafc !important;
    padding-left: 34px !important;
  }

  .flexlast-shared-header .header-menu-simple-link.is-active {
    color: #087c3a !important;
    padding-left: 48px !important;
  }

  .flexlast-shared-header .header-menu-simple-link.is-active::before {
    display: block !important;
  }

  .flexlast-shared-header .header-menu-simple-group {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .flexlast-shared-header .header-menu-simple-toggle {
    justify-content: space-between !important;
  }

  .flexlast-shared-header .header-menu-simple-toggle-icon {
    margin-left: auto !important;
    font-size: 20px !important;
    line-height: 1 !important;
    transition: transform 0.2s ease !important;
  }

  .flexlast-shared-header .header-menu-simple-group.is-open .header-menu-simple-toggle-icon {
    transform: rotate(180deg) !important;
  }

  .flexlast-shared-header .header-menu-simple-submenu[hidden] {
    display: none !important;
  }

  .flexlast-shared-header .header-menu-simple-submenu:not([hidden]) {
    display: flex !important;
    flex-direction: column !important;
  }

  .flexlast-shared-header .header-menu-simple-submenu {
    padding: 0 0 6px !important;
  }

  .flexlast-shared-header .header-menu-simple-sublink {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    min-height: 36px !important;
    padding: 0 30px 0 58px !important;
    color: #334155 !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 620 !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
    transition: color 0.18s ease, background-color 0.18s ease !important;
  }

  .flexlast-shared-header .header-menu-simple-sublink:hover,
  .flexlast-shared-header .header-menu-simple-sublink:focus-visible {
    outline: none !important;
    color: #087c3a !important;
    background: #f8fafc !important;
  }

  .flexlast-shared-header .header-menu-simple-sublink.is-active {
    color: #087c3a !important;
  }

  .flexlast-shared-header .header-menu-simple-sublink.is-active::before {
    content: "" !important;
    position: absolute !important;
    left: 38px !important;
    top: 50% !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 999px !important;
    background: #00b840 !important;
    transform: translateY(-50%) !important;
  }

  .flexlast-shared-header .header-menu-simple-footer {
    order: -1 !important;
    padding: 8px 20px 13px !important;
    border-top: 0 !important;
    border-bottom: 1px solid #edf2f7 !important;
    background: #ffffff !important;
  }

  .flexlast-shared-header .header-menu-audience-row {
    order: -2 !important;
    position: static !important;
    padding: 14px 20px 8px !important;
    border-bottom: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  .flexlast-shared-header .header-menu-audience-row .header-menu-switcher {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    padding: 4px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    background: #f6f8fb !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  }

  .flexlast-shared-header .header-menu-audience-row .header-menu-switcher-link {
    min-height: 40px !important;
    border-radius: 12px !important;
    color: #526070 !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    letter-spacing: 0 !important;
  }

  .flexlast-shared-header .header-menu-audience-row .header-menu-switcher--private .header-menu-switcher-link.is-active {
    background: #50b946 !important;
    color: #ffffff !important;
    box-shadow: 0 9px 18px rgba(80, 185, 70, 0.2) !important;
  }

  .flexlast-shared-header .header-menu-audience-row .header-menu-switcher--business .header-menu-switcher-link.is-active {
    background: #50b946 !important;
    color: #ffffff !important;
    box-shadow: 0 9px 18px rgba(80, 185, 70, 0.2) !important;
  }

  .flexlast-shared-header .header-menu-simple-chip {
    border-color: #e5e7eb !important;
    background: #ffffff !important;
    color: #1f2937 !important;
  }

  .flexlast-shared-header .header-menu-simple-chip--accent {
    border-color: #087c3a !important;
    background: #087c3a !important;
    color: #ffffff !important;
  }
}

@media (max-width: 380px) {
  .flexlast-shared-header .header-menu-panel {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .flexlast-shared-header .header-menu-shell {
    border-radius: 0 0 20px 20px !important;
    max-height: min(62svh, 500px) !important;
  }

  .flexlast-shared-header .header-menu-simple-link {
    min-height: 38px !important;
    padding-left: 26px !important;
    font-size: 16px !important;
  }

  .flexlast-shared-header .header-menu-simple-sublink {
    min-height: 34px !important;
    padding-left: 46px !important;
    font-size: 14px !important;
  }

  .flexlast-shared-header .header-menu-simple-sublink.is-active::before {
    left: 30px !important;
  }
}

@media (min-width: 980px) {
  html body .flexlast-shared-header.flexlast-shared-header .header-menu.header-menu [data-header-menu-toggle][data-header-menu-toggle] {
    min-width: 42px !important;
    width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #34323b !important;
    box-shadow: none !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu.header-menu [data-header-menu-toggle][data-header-menu-toggle]:hover,
  html body .flexlast-shared-header.flexlast-shared-header .header-menu.header-menu [data-header-menu-toggle][data-header-menu-toggle]:focus-visible {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu {
    width: 18px !important;
    height: 13px !important;
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span {
    position: absolute !important;
    left: 0 !important;
    display: block !important;
    width: 18px !important;
    height: 2.2px !important;
    border-radius: 999px !important;
    background: currentColor !important;
    transform-origin: center center !important;
    transition: top 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), width 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.18s ease, transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(1) {
    top: 0 !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(2) {
    top: 5.4px !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(3) {
    top: 10.8px !important;
    width: 12px !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu {
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(1) {
    top: 5.4px !important;
    width: 18px !important;
    transform: translateZ(0) rotate(-45deg) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(2) {
    top: 5.4px !important;
    width: 18px !important;
    transform: translateZ(0) rotate(45deg) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(3) {
    top: 5.4px !important;
    width: 18px !important;
    opacity: 0 !important;
    transform: translateZ(0) rotate(45deg) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--close.header-menu-toggle-icon--close,
  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--close.header-menu-toggle-icon--close {
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(0.72) rotate(-90deg) !important;
    pointer-events: none !important;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu {
    width: 18px !important;
    height: 13px !important;
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span {
    position: absolute !important;
    left: 0 !important;
    width: 18px !important;
    height: 2.2px !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(1) {
    top: 0 !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(2) {
    top: 5.4px !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(3) {
    top: 10.8px !important;
    width: 12px !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu {
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(1),
  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(2),
  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(3) {
    top: 5.4px !important;
    width: 18px !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(1) {
    transform: translateZ(0) rotate(-45deg) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(2),
  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(3) {
    transform: translateZ(0) rotate(45deg) !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--menu.header-menu-toggle-icon--menu span:nth-child(3) {
    opacity: 0 !important;
  }

  html body .flexlast-shared-header.flexlast-shared-header .header-menu-toggle-icon--close.header-menu-toggle-icon--close,
  html body .flexlast-shared-header.flexlast-shared-header .header-menu.is-open .header-menu-toggle-icon--close.header-menu-toggle-icon--close {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
