.country-select {
  position: relative;
  width: 100%;
}
.country-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}
.country-select-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  border-radius: 16px;
  background: rgba(3, 19, 40, 0.72);
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}
.country-select-button::after {
  content: "⌄";
  margin-left: auto;
  color: #e7b94f;
  font-size: 1.1em;
}
.country-select-button:focus-visible {
  outline: 2px solid #e7b94f;
  outline-offset: 2px;
}
.country-flag {
  width: 30px;
  height: 21px;
  object-fit: cover;
  border-radius: 3px;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(255,255,255,.16);
}
.country-select-list {
  position: absolute;
  z-index: 60;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  max-height: 330px;
  overflow-y: auto;
  padding: 6px;
  margin: 0;
  border: 1px solid rgba(231, 185, 79, 0.48);
  border-radius: 16px;
  background: #071a31;
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
}
.country-select-list[hidden] { display: none; }
.country-select-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.country-select-option:hover,
.country-select-option:focus-visible,
.country-select-option[aria-selected="true"] {
  background: rgba(231, 185, 79, 0.12);
  outline: none;
}
@media (max-width: 640px) {
  .country-select-button { min-height: 58px; padding: 0 16px; }
  .country-select-list { max-height: 310px; }
  .country-select-option { min-height: 50px; }
}

/* INFINITY registration/profile integration */
.select-wrap .country-select-button {
  min-height: 72px;
  padding: 0 22px;
  border-color: var(--line);
  border-radius: 13px;
  background: rgba(0, 14, 34, .48);
  font-size: 19px;
}
.profile-field .country-select-button {
  min-height: 58px;
  border-color: #31577e;
  border-radius: 11px;
  background: #173b63;
}
@media (max-width: 680px) {
  .select-wrap .country-select-button {
    min-height: 64px;
    font-size: 17px;
  }
}
