/**
 * Termly CMP: до согласия с cookies баннер часто ломает сетку (100vw / overflow)
 * и перекрывает UI с z-index 2147483647. Языковая модалка должна быть выше баннера.
 * Подключается последним в <head>.
 */
html {
  overflow-x: clip;
}
@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }
}
body {
  box-sizing: border-box;
  padding-bottom: var(--hu-termly-pad, 0px);
  transition: padding-bottom 0.2s ease;
}
#lang-modal {
  z-index: 2147483647 !important;
}
[class*="termly-styles-module"] {
  box-sizing: border-box !important;
  max-width: 100vw !important;
}
iframe[src*="termly"] {
  max-width: 100% !important;
}

/* Полоска языков: не сжимать в «кучу» на узкой ширине */
#hu-lang-bar-codes {
  max-width: min(92vw, 36rem) !important;
  row-gap: 0.35rem;
  column-gap: 0.125rem;
}
#hu-lang-desktop-wrap {
  max-width: 100%;
}
