/* Mobile-first, Bolt-inspired: dark shell, green accent, calm typography */

:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-elevated: #1c1c1c;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f5;
  --text-muted: rgba(245, 245, 245, 0.55);
  --accent: #34d186;
  --accent-dim: rgba(52, 209, 134, 0.15);
  --danger: #ff5c5c;
  --radius: 14px;
  --radius-sm: 10px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --tap: 48px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Атрибут hidden: авторские display (flex/inline-block) иначе перебивают UA и элемент остаётся видимым */
[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  min-height: 100dvh;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
  color: var(--text);
  background: var(--bg);
  padding-bottom: calc(24px + var(--safe-bottom));
}

.app {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 8px 12px 0;
  overflow-x: hidden;
  min-width: 0;
}

.header {
  padding: 2px 0 4px;
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.header__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex: 1;
  min-width: 0;
}

.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 140px;
  padding: 8px 10px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-elevated);
  color: var(--text);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.lang-trigger:hover {
  background: rgba(255, 255, 255, 0.04);
}

.lang-trigger__icon {
  display: flex;
  color: var(--accent);
  flex-shrink: 0;
}

.lang-trigger__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 50;
  min-width: 160px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.lang-menu__item {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
  text-align: left;
  cursor: pointer;
}

.lang-menu__item:hover,
.lang-menu__item:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.lang-menu__item[aria-selected="true"] {
  color: var(--accent);
  font-weight: 600;
}

.header__subtitle {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
}

.hero {
  margin: 0 0 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background:
    radial-gradient(circle at top left, rgba(52, 209, 134, 0.14), transparent 32%),
    var(--surface);
}

.hero__eyebrow {
  margin: 0 0 4px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.hero__text {
  margin: 5px 0 0;
  font-size: 0.76rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.hero__trust {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  margin-top: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.hero__trust::-webkit-scrollbar {
  display: none;
}

.hero__trust span {
  flex: 0 0 auto;
  padding: 4px 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(245, 245, 245, 0.78);
}

.card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 2px 0;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.card--notice {
  background: transparent;
  border: none;
  padding-top: 0;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 4px;
  min-width: 0;
}

.section-head__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  min-width: 0;
}

.section-head__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 999px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 1;
}

.route-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.route-badge {
  text-align: center;
  max-width: 100%;
}

.section-head--pricing {
  margin-top: 2px;
  padding-top: 0;
  border-top: none;
}

.field__help,
.microcopy,
.hint,
.empty-hint,
.notice,
.pricing-disclaimer,
.pricing-row__sub {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.microcopy {
  margin: 0 0 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.field {
  margin-bottom: 8px;
  min-width: 0;
  max-width: 100%;
}

.field:last-child {
  margin-bottom: 0;
}

.field__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.field__help {
  margin: 8px 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.row-dates {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 6px;
  min-width: 0;
}

.field--inline {
  margin-bottom: 0;
  min-width: 0;
}

.input-date {
  width: 100%;
  min-width: 0;
  min-height: var(--tap);
  padding: 0 12px;
  font: inherit;
  color: var(--text);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color-scheme: dark;
}

.input-date:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.hint {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Combobox */
.combo {
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.combo__input {
  width: 100%;
  min-height: var(--tap);
  padding: 0 14px;
  font: inherit;
  color: var(--text);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.combo__input::placeholder {
  color: rgba(245, 245, 245, 0.35);
}

.combo__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.select-input {
  width: 100%;
  min-height: var(--tap);
  padding: 0 12px;
  font: inherit;
  color: var(--text);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  appearance: none;
}

.select-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.field.is-invalid .combo__input,
.field.is-invalid .select-input,
.field.is-invalid .date-chip,
.date-chip.is-invalid,
.field.is-invalid .combo-host,
.check.is-invalid {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 2px rgba(255, 92, 92, 0.25);
  border-radius: var(--radius-sm);
}

.pricing-body.is-invalid {
  border-radius: 16px;
  box-shadow: 0 0 0 2px rgba(255, 92, 92, 0.35);
}

.pricing-body.is-invalid .pricing-table {
  border-color: var(--danger);
  box-shadow: 0 0 0 2px rgba(255, 92, 92, 0.2);
}

.pricing-body.is-invalid .empty-hint {
  color: var(--danger);
  font-weight: 650;
}

.add-country.is-invalid .add-country__trigger {
  border-color: var(--danger) !important;
  border-style: solid;
  box-shadow: 0 0 0 2px rgba(255, 92, 92, 0.25);
  background: rgba(255, 92, 92, 0.09);
}

.plate-row {
  display: grid;
  grid-template-columns: minmax(100px, 34%) minmax(0, 1fr);
  gap: 6px;
  min-width: 0;
}

.plate-country-wrap {
  position: relative;
  min-width: 0;
}

.plate-country-combo {
  position: relative;
  width: 100%;
  min-width: 0;
}

.plate-country-trigger {
  width: 100%;
  margin: 0;
  cursor: pointer;
  text-align: center;
  padding-left: 8px;
  padding-right: 8px;
}

.plate-country-trigger__code {
  display: block;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plate-country-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 6500;
  display: flex;
  flex-direction: column;
  max-height: min(420px, 62vh);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.plate-country-filter {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  margin: 0;
  font: inherit;
  color: var(--text);
  background: var(--surface);
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}

.plate-country-filter::placeholder {
  color: rgba(245, 245, 245, 0.35);
}

.plate-country-filter:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.03);
}

.plate-country-list {
  list-style: none;
  margin: 0;
  padding: 6px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.plate-country-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 12px;
  font: inherit;
  font-size: 0.88rem;
  text-align: left;
  color: var(--text);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.plate-country-item:hover,
.plate-country-item:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.07);
}

.plate-number {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Google PlaceAutocompleteElement (web component) */
.combo-host {
  width: 100%;
  min-height: var(--tap);
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
  isolation: isolate;
}

gmp-place-autocomplete,
.combo__gmp {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: block;
  min-height: var(--tap);
  box-sizing: border-box;
  color-scheme: dark;
  background: var(--surface-elevated) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text) !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

gmp-place-autocomplete:focus-within,
.combo__gmp:focus-within {
  outline: none;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-dim);
}

/* Shadow Parts (если поддерживаются версией виджета) — внутренности как тёмное поле */
gmp-place-autocomplete::part(input-container),
.combo__gmp::part(input-container) {
  background: var(--surface-elevated) !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: inherit !important;
}

gmp-place-autocomplete::part(input),
.combo__gmp::part(input) {
  background: transparent !important;
  color: var(--text) !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
}

gmp-place-autocomplete::part(input):focus,
.combo__gmp::part(input):focus {
  outline: none !important;
  box-shadow: none !important;
}

gmp-place-autocomplete::part(input)::placeholder,
.combo__gmp::part(input)::placeholder {
  color: rgba(245, 245, 245, 0.35) !important;
}

.combo__list {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  max-height: min(240px, 45vh);
  overflow-y: auto;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.combo__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
}

.combo__item:hover,
.combo__item:focus {
  background: rgba(255, 255, 255, 0.06);
}

.combo__item[aria-selected="true"] {
  background: var(--accent-dim);
  color: var(--accent);
}

.combo__item-country {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.country-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.country-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.country-row:last-child {
  border-bottom: none;
}

.country-row__check {
  margin-top: 2px;
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
}

.country-row__body {
  flex: 1;
  min-width: 0;
}

.country-row__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.country-row__meta {
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.empty-hint {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.notice {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.notice strong {
  color: var(--text);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 10px 0;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.check__input {
  margin-top: 3px;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.link {
  color: var(--accent);
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.legal-links {
  margin: -2px 0 8px;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.legal-links a {
  color: var(--accent);
  text-decoration: none;
}

.legal-links a:hover {
  text-decoration: underline;
}

.clear-data-btn {
  width: 100%;
  min-height: 44px;
  margin: 2px 0 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.clear-data-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.clear-data-btn:active {
  transform: scale(0.98);
}

.pay-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-top: 6px;
  min-width: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.12s ease, opacity 0.12s ease;
}

.btn:active:not(:disabled) {
  transform: scale(0.98);
}

.btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.btn--stripe {
  position: relative;
  min-height: 64px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 45%),
    linear-gradient(135deg, #44d48d 0%, #2dbd78 100%);
  color: #06130d;
  border: 1px solid rgba(91, 230, 154, 0.62);
  box-shadow:
    0 0 0 1px rgba(52, 209, 134, 0.18),
    0 12px 28px rgba(52, 209, 134, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.28);
}

.btn--stripe::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 48%);
  pointer-events: none;
}

.pay-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(6, 19, 13, 0.12);
  box-shadow: inset 0 0 0 1px rgba(6, 19, 13, 0.16);
}

.btn__content {
  display: flex;
  align-items: center;
  text-align: left;
  min-width: 0;
  flex: 1;
}

.btn__label {
  font-size: 1rem;
  line-height: 1.15;
}

.btn__cards {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}

.btn__logos {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.pay-logo {
  display: block;
  height: 27px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(6, 19, 13, 0.12));
}

.pay-logo--stripe {
  width: 64px;
}

.pay-logo--visa {
  width: 50px;
}

.pay-logo--mastercard {
  width: 43px;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 27px;
  padding: 0 7px;
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.94);
  color: #0f172a;
  border: 1px solid rgba(6, 19, 13, 0.12);
  box-shadow: 0 8px 18px rgba(6, 19, 13, 0.14);
  font-size: 0.56rem;
  font-weight: 900;
  line-height: 1;
}

.btn-card--visa {
  color: #155ea8;
  font-size: 0.76rem;
  font-style: italic;
  letter-spacing: -0.05em;
}

.btn-card--mastercard {
  min-width: 42px;
  overflow: hidden;
  background: #111827;
}

.lead-status {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.lead-status:empty {
  display: none;
}

.lead-status--success {
  color: var(--accent);
}

.lead-status--error {
  color: var(--danger);
}

.payment-strip {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.payment-strip__stripe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.payment-strip__stripe span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.payment-strip__stripe strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: Inter, system-ui, sans-serif;
}

.card-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  padding: 0 7px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #f8fafc;
  color: #0f172a;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.card-logo--visa {
  color: #155ea8;
  font-size: 0.84rem;
  font-style: italic;
  letter-spacing: -0.05em;
}

.card-logo--secure {
  min-width: 62px;
  background: linear-gradient(135deg, #f8fafc 0%, #f8fafc 60%, #e2e8f0 61%, #e2e8f0 100%);
  color: #334155;
  font-size: 0.54rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.card-logo--mastercard {
  position: relative;
  min-width: 48px;
  overflow: hidden;
  background: #111827;
}

.payment-strip .card-logo {
  min-width: 38px;
  height: 24px;
  padding: 0 6px;
  box-shadow: none;
}

.payment-strip .card-logo--visa {
  font-size: 0.72rem;
}

.payment-strip .card-logo--mastercard {
  min-width: 42px;
}

.payment-strip .mc-circle {
  width: 18px;
  height: 18px;
}

.mc-circle {
  width: 22px;
  height: 22px;
  border-radius: 999px;
}

.mc-circle--red {
  background: #eb001b;
  transform: translateX(5px);
}

.mc-circle--yellow {
  background: #f79e1b;
  mix-blend-mode: screen;
  transform: translateX(-5px);
}

.pay-note {
  margin: 8px 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.footer {
  display: none;
}

/* Cohesive visual pass: softer contrast, shared spacing and consistent surfaces */
body {
  background:
    radial-gradient(circle at 50% -10%, rgba(52, 209, 134, 0.1), transparent 32%),
    linear-gradient(180deg, #070807 0%, #090b0a 100%);
}

.app {
  max-width: 430px;
  padding: 18px 14px 0;
}

.header {
  padding: 0 0 12px;
}

.header__title {
  font-size: 1.22rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.lang-trigger {
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 650;
}

.main {
  gap: 10px;
}

.card {
  padding: 0;
}

.field {
  margin-bottom: 10px;
}

.combo__input,
.select-input,
.date-chip,
gmp-place-autocomplete,
.combo__gmp {
  min-height: 56px;
  border-radius: 15px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    #171a18 !important;
  border-color: rgba(255, 255, 255, 0.095) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.combo__input,
.select-input {
  padding: 0 16px;
  font-size: 0.96rem;
  font-weight: 520;
}

.combo__input::placeholder,
.plate-country-filter::placeholder {
  color: rgba(245, 245, 245, 0.34);
}

.combo__input:focus,
.select-input:focus,
.date-chip:focus-visible,
gmp-place-autocomplete:focus-within,
.combo__gmp:focus-within {
  border-color: rgba(52, 209, 134, 0.8) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(52, 209, 134, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.plate-row,
.date-display-row {
  gap: 10px;
}

.plate-country-trigger__code {
  font-weight: 750;
  letter-spacing: 0.03em;
}

.date-chip {
  padding: 8px 12px;
}

.date-chip__prefix {
  color: rgba(245, 245, 245, 0.48);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.date-chip__value {
  font-size: 0.96rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.route-badge-wrap {
  margin: 2px 0 10px;
}

.route-badge,
.section-head__badge {
  color: #39da8e;
  background: rgba(52, 209, 134, 0.14);
  border: 1px solid rgba(52, 209, 134, 0.14);
  padding: 5px 12px;
  font-size: 0.74rem;
  font-weight: 750;
}

.add-country {
  position: relative;
  margin: 0 0 10px;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

.add-country__trigger {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px dashed rgba(52, 209, 134, 0.35);
  border-radius: 16px;
  background: rgba(52, 209, 134, 0.08);
  color: var(--accent);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

.add-country__trigger:active {
  transform: scale(0.98);
}

.add-country__plus {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #06130d;
  font-size: 1.55rem;
  font-weight: 850;
  line-height: 1;
}

.add-country__panel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-elevated);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.add-country__search {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  outline: none;
}

.add-country__search:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-dim);
}

.add-country__list {
  display: grid;
  gap: 6px;
  max-width: 100%;
  min-width: 0;
  max-height: 220px;
  margin-top: 8px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

.add-country__list::-webkit-scrollbar {
  display: none;
}

.add-country__option {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  cursor: pointer;
}

.add-country__option strong {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.add-country__empty {
  padding: 10px 8px;
  color: var(--text-muted);
  font-size: 0.84rem;
  text-align: center;
}

.pricing-table {
  border-radius: 18px;
  border-color: rgba(255, 255, 255, 0.085);
  margin-bottom: 12px;
  background: #141815;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.pricing-row {
  padding: 14px 14px 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    #151916;
}

.pricing-row__head {
  align-items: center;
}

.pricing-row__title .pricing-row__check-wrap {
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: -0.015em;
}

.pricing-country-check,
.check__input {
  accent-color: #34d186;
}

.pricing-row__price {
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.pricing-options {
  gap: 8px;
  margin-top: 10px;
}

.pricing-option-chip {
  min-height: 34px;
  padding: 7px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.09);
  color: rgba(245, 245, 245, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
}

.pricing-option-chip.is-active {
  color: #f7fbf8;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pricing-grand {
  padding: 2px 2px 0;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.68);
}

.pricing-grand strong {
  color: var(--text);
  font-size: 1.08rem;
}

.pricing-fee-note,
.notice,
.check {
  color: rgba(245, 245, 245, 0.58);
}

.card--notice {
  padding: 0;
}

.notice {
  font-size: 0.78rem;
}

.check {
  gap: 9px;
  margin: 12px 0;
  font-size: 0.8rem;
}

.check__input {
  width: 21px;
  height: 21px;
}

.btn--stripe {
  min-height: 62px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 48%),
    linear-gradient(135deg, #3ed98f 0%, #2fbe7b 100%);
  border-color: rgba(86, 230, 156, 0.55);
  box-shadow: 0 12px 28px rgba(52, 209, 134, 0.16), 0 8px 18px rgba(0, 0, 0, 0.26);
}

.btn__label {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.payment-strip__stripe {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.card-logo {
  height: 30px;
  border-radius: 8px;
}

@media (min-width: 480px) {
  .header__title {
    font-size: 1.5rem;
  }
}

/* Узкий экран: бейдж маршрута не сжимает строку — переносим под заголовок */
@media (max-width: 420px) {
  .app {
    padding-left: 12px;
    padding-right: 12px;
  }

  .payment-strip {
    display: flex;
  }

  .section-head {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .section-head__badge {
    align-self: flex-start;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
  }

  .row-dates {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .input-date {
    padding: 0 10px;
    font-size: 0.92rem;
  }
}

@media (max-width: 600px) {
  :root {
    --tap: 48px;
  }

  body {
    padding-bottom: calc(108px + var(--safe-bottom));
    overflow-x: hidden;
  }

  html,
  .app,
  .main {
    overflow-x: hidden;
  }

  .app {
    max-width: 100%;
    padding-top: 14px;
  }

  .header {
    padding-bottom: 10px;
  }

  .header__title {
    font-size: 1.08rem;
  }

  .lang-trigger {
    min-height: 38px;
    padding: 7px 10px;
    border-radius: 12px;
    font-size: 0.78rem;
  }

  .main {
    gap: 7px;
  }

  .field {
    margin-bottom: 7px;
  }

  .combo__input,
  .select-input,
  .date-chip,
  gmp-place-autocomplete,
  .combo__gmp {
    min-height: 48px;
    border-radius: 13px !important;
  }

  .combo__input,
  .select-input {
    padding: 0 13px;
    font-size: 16px;
  }

  .plate-row,
  .date-display-row {
    gap: 7px;
  }

  .route-badge-wrap {
    margin-bottom: 7px;
  }

  .route-badge,
  .section-head__badge {
    padding: 4px 10px;
    font-size: 0.7rem;
  }

  .add-country {
    margin-bottom: 7px;
  }

  .add-country__trigger {
    min-height: 48px;
    border-radius: 14px;
    font-size: 0.88rem;
  }

  .add-country__plus {
    width: 30px;
    height: 30px;
    font-size: 1.35rem;
  }

  .pricing-table {
    margin-bottom: 8px;
    border-radius: 15px;
  }

  .pricing-row {
    padding: 9px 11px;
  }

  .pricing-row__title .pricing-row__check-wrap {
    font-size: 0.9rem;
  }

  .pricing-country-check {
    width: 18px;
    height: 18px;
  }

  .pricing-row__price {
    font-size: 0.9rem;
  }

  .pricing-options {
    gap: 5px;
    margin-top: 7px;
  }

  .pricing-option-chip {
    min-height: 29px;
    padding: 5px 6px;
    font-size: 0.66rem;
  }

  .pricing-grand {
    padding-top: 0;
    font-size: 0.82rem;
  }

  .pricing-grand strong {
    font-size: 0.96rem;
  }

  .pricing-fee-note {
    display: none;
  }

  .notice {
    font-size: 0.74rem;
  }

  .check {
    margin: 8px 0;
    font-size: 0.76rem;
  }

  .check__input {
    width: 19px;
    height: 19px;
  }

  .pay-row {
    position: fixed;
    left: 50%;
    bottom: calc(8px + var(--safe-bottom));
    z-index: 9000;
    width: min(430px, calc(100vw - 24px));
    transform: translateX(-50%);
    gap: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .btn--stripe {
    min-height: 52px;
    border-radius: 14px;
  }

  .pay-lock {
    width: 30px;
    height: 30px;
  }

  .btn__label {
    font-size: 0.94rem;
  }

  .payment-strip {
    display: none;
  }

  .payment-strip__stripe {
    min-height: 26px;
    padding: 4px 10px;
  }

  .payment-strip__stripe span {
    font-size: 0.54rem;
  }

  .payment-strip__stripe strong {
    font-size: 0.86rem;
  }

  .card-logo {
    min-width: 38px;
    height: 26px;
    padding: 0 5px;
    font-size: 0.5rem;
  }

  .card-logo--visa {
    font-size: 0.72rem;
  }

  .card-logo--secure {
    min-width: 54px;
    font-size: 0.46rem;
  }

  .card-logo--mastercard {
    min-width: 42px;
  }

  .btn__logos {
    gap: 3px;
  }

  .pay-logo {
    height: 24px;
  }

  .pay-logo--stripe {
    width: 56px;
  }

  .pay-logo--visa {
    width: 43px;
  }

  .pay-logo--mastercard {
    width: 38px;
  }

  .mc-circle {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 720px) {
  body {
    padding: 36px 24px;
  }

  .app {
    max-width: 640px;
    padding: 0;
  }

  .header {
    padding-bottom: 18px;
  }

  .header__title {
    font-size: 1.55rem;
  }

  .lang-trigger {
    min-height: 46px;
    padding: 9px 14px;
  }

  .main {
    gap: 14px;
  }

  .card {
    padding: 0;
  }

  [data-i18n-aria="sectionRoute"] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  [data-i18n-aria="sectionRoute"] .field {
    margin-bottom: 0;
  }

  #fuel-field,
  [data-i18n-aria="sectionRoute"] .field:has(.plate-row) {
    grid-column: 1 / -1;
  }

  .plate-row {
    grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  }

  [data-i18n-aria="sectionTripPeriod"] {
    margin-top: -2px;
  }

  .pricing-row {
    padding: 15px 16px 13px;
  }

  .pricing-option-chip {
    font-size: 0.78rem;
  }

  [data-i18n-aria="sectionContact"] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.9fr);
    gap: 12px 14px;
    align-items: start;
  }

  [data-i18n-aria="sectionContact"] .field,
  [data-i18n-aria="sectionContact"] .check {
    grid-column: 1;
  }

  [data-i18n-aria="sectionContact"] .pay-row {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
  }

  .payment-strip {
    display: flex;
  }

  .maps-banner {
    max-width: 640px;
  }
}

/* Fallback: если web-component Google задаёт внутренний min-width */
.app gmp-place-autocomplete {
  inline-size: 100% !important;
  max-inline-size: 100% !important;
}

/* Google Places dropdown */
.pac-container {
  z-index: 5000 !important;
  margin-top: 6px !important;
  font-family: var(--font) !important;
  background: var(--surface-elevated) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45) !important;
}

.pac-item {
  padding: 12px 14px !important;
  border-top: none !important;
  font-size: 0.92rem !important;
  color: var(--text) !important;
}

.pac-item-query {
  color: var(--text) !important;
}

.pac-item:hover,
.pac-item-selected {
  background: rgba(255, 255, 255, 0.06) !important;
}

/* Maps API key notice */
.maps-banner {
  max-width: 440px;
  margin: 0 auto 12px;
  padding: 12px 14px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-muted);
  background: var(--accent-dim);
  border: 1px solid rgba(52, 209, 134, 0.35);
  border-radius: var(--radius-sm);
}

.maps-banner strong {
  color: var(--text);
}

.maps-banner code {
  font-size: 0.76rem;
  word-break: break-all;
}

.maps-banner--error {
  border-color: rgba(255, 92, 92, 0.45);
  background: rgba(255, 92, 92, 0.08);
}

/* Pricing */
.pricing-trip {
  display: none;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-trip strong {
  color: var(--text);
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
}

.pricing-row {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-elevated);
}

.pricing-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.pricing-row__title {
  flex: 1;
  min-width: 0;
}

.pricing-row--off {
  opacity: 0.6;
}

.pricing-row__check-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pricing-country-check {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row__title .pricing-row__check-wrap {
  font-weight: 600;
  font-size: 0.92rem;
}

.pricing-row__sub {
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.pricing-row__sub:empty {
  display: none;
}

.pricing-options {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: 6px;
  width: 100%;
  min-width: 0;
}

.pricing-option-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 6px 8px;
  font-size: 0.72rem;
  line-height: 1.2;
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
}

.pricing-option-chip.is-active {
  color: rgba(245, 245, 245, 0.88);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.pricing-row__price {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  white-space: nowrap;
}

.pricing-grand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  padding-top: 8px;
}

.pricing-grand strong {
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

.pricing-fee-note {
  margin: 6px 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-disclaimer {
  display: none;
  margin: 8px 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--text-muted);
}


.date-display-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.date-chip {
  min-height: var(--tap);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.date-chip--inline {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.date-chip__prefix {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.date-chip__value {
  flex: 1;
  min-width: 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
}

.date-chip__value:empty {
  display: none;
}

@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
    --bg: #f6f7f3;
    --surface: #ffffff;
    --surface-elevated: #ffffff;
    --border: rgba(15, 23, 42, 0.12);
    --text: #111827;
    --text-muted: rgba(17, 24, 39, 0.58);
    --accent: #11855b;
    --accent-dim: rgba(17, 133, 91, 0.12);
    --danger: #d92d20;
  }

  body {
    background:
      radial-gradient(circle at 50% -10%, rgba(17, 133, 91, 0.1), transparent 32%),
      linear-gradient(180deg, #fbfcf8 0%, #eef2ea 100%);
  }

  .hero {
    background:
      radial-gradient(circle at top left, rgba(17, 133, 91, 0.11), transparent 32%),
      #ffffff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  }

  .lang-trigger,
  .hero__trust span,
  .clear-data-btn {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(15, 23, 42, 0.12);
  }

  .hero__trust span {
    color: rgba(17, 24, 39, 0.76);
    font-weight: 750;
  }

  .hero__text {
    color: rgba(17, 24, 39, 0.64);
  }

  .lang-trigger:hover,
  .clear-data-btn:hover,
  .lang-menu__item:hover,
  .lang-menu__item:focus-visible,
  .combo__item:hover,
  .combo__item:focus,
  .pac-item:hover,
  .pac-item-selected {
    background: rgba(15, 23, 42, 0.06) !important;
  }

  .lang-menu,
  .plate-country-panel,
  .combo__list,
  .pac-container {
    background: #ffffff !important;
    border-color: rgba(15, 23, 42, 0.12) !important;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.14) !important;
  }

  .combo__input,
  .select-input,
  .date-chip,
  gmp-place-autocomplete,
  .combo__gmp {
    color-scheme: light;
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.025), rgba(15, 23, 42, 0.01)),
      #ffffff !important;
    border-color: rgba(15, 23, 42, 0.12) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .combo__input::placeholder,
  .plate-country-filter::placeholder {
    color: rgba(17, 24, 39, 0.38);
  }

  .combo__input:focus,
  .select-input:focus,
  .date-chip:focus-visible,
  gmp-place-autocomplete:focus-within,
  .combo__gmp:focus-within {
    box-shadow: 0 0 0 2px rgba(17, 133, 91, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .combo__gmp::part(input-container) {
    background: #ffffff !important;
  }

  .combo__gmp::part(input) {
    color: var(--text) !important;
  }

  .date-chip__prefix {
    color: rgba(17, 24, 39, 0.52);
  }

  .route-badge,
  .section-head__badge {
    color: #0f7a52;
    background: rgba(17, 133, 91, 0.1);
    border-color: rgba(17, 133, 91, 0.16);
  }

  .add-country__trigger {
    background: rgba(17, 133, 91, 0.08);
    border-color: rgba(17, 133, 91, 0.26);
  }

  .add-country__plus {
    color: #ffffff;
  }

  .add-country__panel {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  }

  .add-country__search,
  .add-country__option {
    background: rgba(15, 23, 42, 0.025);
    border-color: rgba(15, 23, 42, 0.1);
  }

  .pricing-table {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  }

  .pricing-row {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.018), transparent),
      #ffffff;
  }

  .pricing-option-chip {
    background: rgba(15, 23, 42, 0.035);
    border-color: rgba(15, 23, 42, 0.1);
    color: rgba(17, 24, 39, 0.62);
  }

  .pricing-option-chip.is-active {
    color: #0f172a;
    background: rgba(17, 133, 91, 0.11);
    border-color: rgba(17, 133, 91, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  }

  .pricing-grand,
  .pricing-fee-note,
  .notice,
  .check {
    color: var(--text-muted);
  }

  .payment-strip__stripe {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
      rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.1);
    color: rgba(17, 24, 39, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  .payment-strip__stripe strong {
    color: #111827;
  }

  .pay-logo {
    filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.12));
  }

  .pac-item,
  .pac-item-query {
    color: var(--text) !important;
  }

  .maps-banner--error {
    background: rgba(217, 45, 32, 0.08);
    border-color: rgba(217, 45, 32, 0.28);
  }
}

@media (prefers-color-scheme: light) and (max-width: 600px) {
  .pay-row {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
