body.lgh-language-overlay-open {
  overflow: hidden;
}
#lgh .header .lgh-language-switcher {
  margin-left: 8px;
}
#lgh .header .lgh-language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  padding: 4px 11px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: #000;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
#lgh .header .lgh-language-toggle:hover,
#lgh .header .lgh-language-toggle:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.15);
}
#lgh .header .lgh-language-toggle:focus {
  outline: none;
}
#lgh .header .lgh-language-toggle .flag-icon {
  width: 18px;
  height: 18px;
  border-radius: 3px;
}
#lgh .header .lgh-language-toggle__chevron {
  color: #b0aa00;
  font-size: 10px;
  transition: transform 180ms ease;
}
#lgh .header .lgh-language-toggle[aria-expanded="true"] .lgh-language-toggle__chevron {
  transform: rotate(180deg);
}
#lgh .lgh-language-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 18px;
  background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px), #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}
#lgh .lgh-language-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#lgh .lgh-language-overlay__panel {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 72px);
  overflow: auto;
  padding: 0 24px 24px;
  background: #fff;
  border-top: 6px solid #b0aa00;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  transform: translateY(14px) scale(0.98);
  transition: transform 220ms ease;
}
#lgh .lgh-language-overlay.is-open .lgh-language-overlay__panel {
  transform: translateY(0) scale(1);
}
#lgh .lgh-language-overlay__top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid #e6e6e6;
}
#lgh .lgh-language-overlay__close {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  font-size: 27px;
  line-height: 30px;
  transition: color 180ms ease, transform 180ms ease;
}
#lgh .lgh-language-overlay__close:hover,
#lgh .lgh-language-overlay__close:focus {
  color: #b0aa00;
  transform: rotate(90deg);
}
#lgh .lgh-language-overlay__close:focus {
  outline: none;
}
#lgh .lgh-language-overlay__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
}
#lgh .lgh-language-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 3px;
  background: #fff;
  color: #000;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}
#lgh .lgh-language-card:hover,
#lgh .lgh-language-card:focus {
  background: #f5f5f5;
  color: #000;
  text-decoration: none;
}
#lgh .lgh-language-card:focus {
  outline: none;
}
#lgh .lgh-language-card.is-active {
  background: #d7d368;
  color: #000;
}
#lgh .lgh-language-card .flag-icon {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  padding: 10px;
}
#lgh .lgh-language-card__body {
  display: flex;
  flex: 1;
  min-width: 0;
}
#lgh .lgh-language-card__label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}
#lgh .lgh-language-card__status {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
}
#lgh .lgh-language-card__status:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media screen and (max-width: 767.98px) {
  #lgh .header .lgh-language-switcher {
    margin-left: 6px;
  }
  #lgh .header .lgh-language-toggle {
    padding: 4px 9px;
  }
  #lgh .lgh-language-overlay {
    align-items: flex-start;
    padding: 22px 14px;
  }
  #lgh .lgh-language-overlay__panel {
    max-height: calc(100vh - 44px);
    padding: 0 18px 22px;
  }
  #lgh .lgh-language-overlay__top {
    min-height: 50px;
  }
  #lgh .lgh-language-card {
    min-height: 56px;
    padding: 13px 14px;
  }
  #lgh .lgh-language-card__label {
    font-size: 13px;
  }
}
