.framer-locale-picker.numa-locale-enhanced {
  overflow: visible !important;
  z-index: 60;
}

.framer-locale-picker.numa-locale-enhanced select {
  pointer-events: none;
}

.framer-locale-picker.numa-locale-enhanced .input {
  cursor: pointer;
  pointer-events: auto !important;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.framer-locale-picker.numa-locale-enhanced .input:focus-visible,
.framer-locale-picker.numa-locale-open .input {
  outline: 1px solid rgb(205, 170, 140);
  outline-offset: 0;
  border-color: rgb(205, 170, 140) !important;
  box-shadow: 0 0 0 3px rgba(205, 170, 140, 0.16);
}

.framer-locale-picker.numa-locale-open .caret {
  transform: rotate(180deg);
}

.framer-locale-picker.numa-locale-enhanced .caret {
  transition: transform 180ms ease;
}

.numa-locale-menu {
  position: fixed;
  z-index: 2147480010;
  min-width: 230px;
  max-width: calc(100vw - 32px);
  padding: 6px;
  border: 1px solid rgba(205, 170, 140, 0.34);
  border-radius: 14px;
  background: rgba(33, 32, 31, 0.96);
  box-shadow:
    0 18px 42px rgba(18, 17, 16, 0.34),
    0 2px 8px rgba(18, 17, 16, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(-4px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.numa-locale-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.numa-locale-option {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgb(224, 220, 216);
  cursor: pointer;
  font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 11px 12px;
  text-align: left;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.numa-locale-option:hover,
.numa-locale-option:focus-visible {
  background: rgba(205, 170, 140, 0.15);
  color: rgb(247, 245, 243);
  outline: none;
}

.numa-locale-option[aria-selected="true"] {
  background: rgba(205, 170, 140, 0.2);
  color: rgb(247, 245, 243);
}

.numa-locale-check {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgb(205, 170, 140);
  box-shadow: 0 0 0 4px rgba(205, 170, 140, 0.14);
  opacity: 0;
}

.numa-locale-option[aria-selected="true"] .numa-locale-check {
  opacity: 1;
}

@media (max-width: 480px) {
  .numa-locale-menu {
    min-width: min(230px, calc(100vw - 32px));
  }
}
