body.li-lang-popup-open {
  overflow: hidden;
}
body.li-lang-popup-open:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(51, 51, 51, 0.8);
}

.li-lang-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
  background-color: var(--e-global-color-e979fd2);
  box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2);
  width: 90vw;
  height: auto;
  max-width: 700px;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
}
.li-lang-popup--notification {
  color: var(--e-global-color-primary);
  font-size: 1.1em;
  font-style: italic;
}
.li-lang-popup--buttons {
  margin: 20px 0 35px;
}
.li-lang-popup--alternative-countries > .headline {
  color: var(--e-global-color-primary);
  font-weight: 700;
}
.li-lang-popup__button {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid var(--e-global-color-primary);
  font-family: var(--e-global-typography-accent-font-family), -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
  font-size: var(--e-global-typography-accent-font-size);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  word-spacing: var(--e-global-typography-accent-word-spacing);
  fill: var(--e-global-color-primary);
  color: var(--e-global-color-primary);
  background-color: var(--e-global-color-e979fd2);
  border-radius: 35px 35px 35px 35px;
  transition: 0.3s ease;
}
.li-lang-popup__button--close {
  position: absolute;
  top: 10px;
  right: 12px;
  color: var(--e-global-color-text);
  cursor: pointer;
  font-size: 0.9em;
}
.li-lang-popup__button:hover, .li-lang-popup__button:focus {
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: var(--e-global-color-primary);
}
.li-lang-popup ul.language-nav {
  justify-content: center;
  margin-top: 20px;
  margin-bottom: -10px;
  gap: 10px 30px;
}
.li-lang-popup ul.language-nav li {
  flex: 0 0 auto !important;
  width: auto !important;
}
@media (max-width: 400px) {
  .li-lang-popup ul.language-nav li {
    min-width: calc(42% - 15px) !important;
  }
  .li-lang-popup ul.language-nav li > a {
    display: block;
  }
}
