.gw-language-modal-grid {
  display: grid;
  grid-auto-rows: 3.5rem;
  row-gap: 1.5rem;
  align-content: start;
}

.gw-language-modal-item {
  box-sizing: border-box;
  min-width: 0;
  min-height: 3.5rem;
}

.gw-language-modal-label {
  min-width: 0;
  overflow-wrap: break-word;
}

.gw-contact-widget,
.gw-contact-widget * {
  box-sizing: border-box;
}

.gw-contact-widget {
  --gw-contact-expanded-size: min(260px, calc(100vw - 40px));
  position: fixed;
  inset-inline-end: max(20px, var(--gw-contact-safe-inline-end, 0px));
  inset-block-start: 55%;
  z-index: 70;
  inline-size: 56px;
  width: 56px;
  transform: translateY(-50%);
  color: #fff;
  font-family: inherit;
}

.gw-contact-widget__rail {
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: visible;
  background: #a7adb4;
  box-shadow: 0 16px 36px rgba(0, 30, 64, 0.2);
}

.gw-contact-widget__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  align-items: center;
  min-width: 44px;
  width: 56px;
  inline-size: 56px;
  max-width: var(--gw-contact-expanded-size);
  max-inline-size: var(--gw-contact-expanded-size);
  min-height: 56px;
  border: 0;
  color: inherit;
  background: #a7adb4;
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
  transition: width 240ms ease, inline-size 240ms ease, background-color 180ms ease, border-radius 180ms ease;
}

.gw-contact-widget__item + .gw-contact-widget__item {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.gw-contact-widget__item:first-child {
  border-radius: 999px 999px 0 0;
}

.gw-contact-widget__item:last-child {
  border-radius: 0 0 999px 999px;
}

.gw-contact-widget__item:is(:hover, :focus-visible) {
  width: var(--gw-contact-expanded-size);
  inline-size: var(--gw-contact-expanded-size);
}

.gw-contact-widget__item:is(:hover, :focus-visible) {
  border-radius: 999px;
  background: #003366;
}

.gw-contact-widget__icon {
  display: inline-flex;
  width: 56px;
  min-width: 56px;
  flex-shrink: 0;
  min-height: 56px;
  align-items: center;
  justify-content: center;
}

.gw-contact-widget__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.gw-contact-widget__panel {
  display: flex;
  flex: 1 1 auto;
  block-size: 56px;
  min-height: 56px;
  min-block-size: 56px;
  align-items: center;
  min-width: 0;
  min-inline-size: 0;
  overflow: visible;
  contain: paint;
  padding-inline-start: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

.gw-contact-widget__item:is(:hover, :focus-visible) .gw-contact-widget__panel {
  padding-inline-start: 6px;
  opacity: 1;
  overflow: visible;
  contain: none;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}

.gw-contact-widget__label,
.gw-contact-widget__hint {
  display: none;
}

.gw-contact-widget__label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.96);
}

.gw-contact-widget__value {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  min-inline-size: 0;
  margin-top: 0;
  overflow: visible;
  overflow-wrap: anywhere;
  word-break: normal;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
  white-space: normal;
}

.gw-contact-widget__hint {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.62);
}

.gw-contact-widget__toast {
  position: fixed;
  inset-inline-end: max(20px, var(--gw-contact-safe-inline-end, 0px));
  inset-block-end: calc(24px + env(safe-area-inset-bottom));
  z-index: 95;
  max-width: min(360px, calc(100vw - 32px));
  padding: 12px 14px;
  border: 1px solid rgba(0, 51, 102, 0.18);
  border-radius: 10px;
  background: #fff;
  color: #001e40;
  box-shadow: 0 14px 36px rgba(0, 30, 64, 0.18);
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gw-contact-widget__toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gw-contact-mobile-button {
  display: none;
  position: fixed;
  inset-inline-end: max(16px, var(--gw-contact-safe-inline-end, 0px));
  inset-block-start: var(--gw-contact-launcher-block-start, 16px);
  inset-block-end: auto;
  z-index: 74;
  width: 56px;
  height: 56px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: #003366;
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 30, 64, 0.22);
}

.gw-contact-mobile-button svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.gw-contact-widget__overlay {
  position: fixed;
  inset: 0;
  z-index: 88;
  display: none;
  background: rgba(0, 0, 0, 0.38);
}

.gw-contact-widget__overlay.is-open {
  display: block;
}

.gw-contact-widget__sheet {
  position: fixed;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 90;
  display: none;
  width: 100%;
  max-width: 100vw;
  padding: 18px clamp(12px, 4vw, 16px) calc(18px + env(safe-area-inset-bottom));
  border-radius: 18px 18px 0 0;
  background: #fff;
  color: #001e40;
  box-shadow: 0 -18px 40px rgba(0, 30, 64, 0.18);
}

.gw-contact-widget__sheet.is-open {
  display: block;
}

html.gw-contact-widget-sheet-open body {
  overflow: hidden;
}

.gw-contact-widget__sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.gw-contact-widget__sheet-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.gw-contact-widget__close {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c3c6d1;
  border-radius: 999px;
  background: #f9f9f9;
  color: #001e40;
}

.gw-contact-widget__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.gw-contact-widget__sheet-list {
  display: grid;
  gap: 10px;
}

.gw-contact-widget__sheet-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-width: 44px;
  min-height: 64px;
  padding: 12px;
  border: 1px solid #c3c6d1;
  border-radius: 10px;
  background: #fff;
  color: #001e40;
  text-align: left;
  text-decoration: none;
}

.gw-contact-widget__sheet-item > span:last-child {
  min-width: 0;
  min-inline-size: 0;
}

.gw-contact-widget__sheet-item:focus-visible,
.gw-contact-mobile-button:focus-visible,
.gw-contact-widget__close:focus-visible,
.gw-contact-widget__item:focus-visible {
  outline: 3px solid rgba(0, 51, 102, 0.28);
  outline-offset: 2px;
}

.gw-contact-widget__sheet-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #003366;
  color: #fff;
}

.gw-contact-widget__sheet-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
}

.gw-contact-widget__sheet-label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.gw-contact-widget__sheet-value {
  display: block;
  min-width: 0;
  min-inline-size: 0;
  margin-top: 3px;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
  font-size: 14px;
  line-height: 1.35;
  color: #43474f;
}

html[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
  letter-spacing: 0;
}

html[dir="rtl"] .gw-ltr,
html[dir="rtl"] a[dir="ltr"],
html[dir="rtl"] input[dir="ltr"] {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}

html[dir="rtl"] .space-x-3 > :not([hidden]) ~ :not([hidden]),
html[dir="rtl"] .space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 1;
}

html[dir="rtl"] .ml-2 {
  margin-left: 0;
  margin-right: 0.5rem;
}

html[dir="rtl"] .text-left {
  text-align: right;
}

html[dir="rtl"] .gw-brand {
  margin-right: 0 !important;
  margin-left: 1.5rem !important;
}

html[dir="rtl"] .gw-desktop-nav,
html[dir="rtl"] .gw-language-button,
html[dir="rtl"] [data-language-modal-panel],
html[dir="rtl"] [data-mobile-menu-panel] {
  text-align: start;
}

html[dir="rtl"] [data-language-modal-panel] {
  scrollbar-gutter: stable both-edges;
}

html[dir="rtl"] .gw-contact-widget {
  --gw-contact-safe-inline-end: env(safe-area-inset-left);
}

html[dir="rtl"] .gw-contact-widget__rail {
  align-items: flex-end;
}

html[dir="rtl"] .gw-contact-widget__item {
  grid-template-columns: 56px minmax(0, 1fr);
}

html[dir="rtl"] .gw-contact-widget__panel {
  order: 2;
  padding-inline-start: 0;
  transform: none;
  text-align: right;
}

html[dir="rtl"] .gw-contact-widget__icon {
  order: 1;
}

html[dir="rtl"] .gw-contact-widget__value {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}

html[dir="rtl"] .gw-contact-widget__toast {
  --gw-contact-safe-inline-end: env(safe-area-inset-left);
}

html[dir="rtl"] .gw-contact-mobile-button {
  --gw-contact-safe-inline-end: env(safe-area-inset-left);
}

.gw-contact-mobile-button[data-gw-contact-side="start"] {
  inset-inline-end: auto;
  inset-inline-start: 16px;
}

html[dir="rtl"] .gw-contact-mobile-button[data-gw-contact-side="start"] {
  --gw-contact-safe-inline-end: 0px;
}

html[dir="rtl"] .gw-contact-widget__sheet-item {
  grid-template-columns: minmax(0, 1fr) 44px;
  text-align: right;
}

html[dir="rtl"] .gw-contact-widget__sheet-icon {
  order: 2;
}

html[dir="rtl"] .gw-contact-widget__sheet-value {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}

@media (min-width: 768px) {
  html[dir="rtl"] .md\:text-left {
    text-align: right;
  }
}

@media (max-width: 1024px) {
  .gw-contact-widget {
    display: none;
  }

  .gw-contact-mobile-button {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .gw-contact-widget__sheet {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gw-contact-widget__item,
  .gw-contact-widget__panel,
  .gw-contact-widget__toast {
    transition: none;
  }
}
