html.nd-i18n-pending body {
  visibility: hidden;
}

.nd-i18n-menu {
  position: fixed;
  z-index: 2147483000;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #11161f;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  color: #e6eaf0;
}

.nd-i18n-menu[hidden] {
  display: none !important;
}

.nd-i18n-option {
  display: grid;
  width: 100%;
  min-height: 42px;
  grid-template-columns: 28px 1fr 20px;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #e5e7eb;
  font: inherit;
  font-size: 14px;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease-out, color 160ms ease-out;
}

.nd-i18n-option:hover,
.nd-i18n-option:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nd-i18n-flag {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.nd-i18n-flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nd-i18n-name {
  min-width: 0;
  white-space: nowrap;
}

.nd-i18n-check {
  display: inline-flex;
  color: #3b9cff;
}

.nd-i18n-check svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 480px) {
  .nd-i18n-menu {
    border-radius: 10px;
  }

  .nd-i18n-option {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nd-i18n-option {
    transition: none;
  }
}
