.site-pref-controls {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  min-width: unset;
  gap: 0;
  padding: 0;
  margin-top: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  justify-content: center;
}

.site-pref-toggle {
  width: 72px;
  height: 40px;
  border: 1px solid rgba(181, 220, 255, 0.42);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.site-pref-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 1080;
  width: min(320px, calc(100vw - 24px));
  color: #333;
}

.site-pref-panel[hidden] {
  display: none;
}

.site-pref-panel-inner {
  display: grid;
  gap: 12px;
  padding: 18px 20px 20px;
  border-radius: var(--radius);
}

.site-pref-section-title,
.site-pref-field > span {
  font-size: 1rem;
  font-weight: 650;
}

.site-lang-list {
  gap: 0;
}

.site-lang-option {
  min-height: 48px;
  display: grid;
  grid-template-columns: 24px 34px 1fr;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0 2px;
  border-bottom: 1px solid #c9cdd2;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
}

.site-lang-radio {
  width: 20px;
  height: 20px;
}

.site-lang-radio::after {
  width: 8px;
  height: 8px;
}

.site-lang-flag,
.site-pref-flag {
  display: inline-block;
}

.site-lang-flag {
  width: 28px;
  height: 18px;
}

.site-pref-select {
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  border: 1px solid #c9cdd2;
  border-radius: var(--radius-sm);
  background: #fff;
  color: #333;
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
  padding: 0 42px 0 14px;
  appearance: none;
  cursor: pointer;
}

.site-pref-field {
  gap: 6px;
}

.site-pref-field::after {
  right: 14px;
  bottom: 13px;
  font-size: 1.35rem;
}

.site-rate-info {
  text-align: left;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0;
}

.site-pref-apply {
  min-height: 48px;
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .site-pref-panel {
    left: 0;
    right: auto;
  }
}

@media (max-width: 767.98px) {
  .site-pref-toggle {
    width: 58px;
    height: 38px;
    border-color: #d5d5d5;
    background: #fff;
    color: #111;
  }

  .site-pref-panel {
    position: fixed;
    top: 64px;
    left: 12px;
    right: 12px;
    width: auto;
  }
}

@media (max-width: 575.98px) {
  .site-pref-panel-inner {
    gap: 10px;
    padding: 18px;
  }

  .site-lang-option {
    min-height: 46px;
  }

  .site-pref-select {
    min-height: 50px;
  }

  .site-pref-field::after {
    bottom: 12px;
  }

  .site-pref-apply {
    min-height: 48px;
  }

  .site-pref-section-title,
  .site-pref-field > span,
  .site-lang-option,
  .site-pref-select {
    font-size: 1rem;
  }
}
