@charset "UTF-8";
/* =============================================
   CITY INPUT — Autocomplete dropdown snippet
   Standalone: scoped to this component's own
   classes, safe to include on any page.
   ============================================= */
/* line 8, city_input.scss */
input,
textarea,
select {
  font-size: max(16px, var(--font-size)) !important; }

/* line 14, city_input.scss */
.city-input,
.city-input *,
.city-input *::before,
.city-input *::after {
  box-sizing: border-box; }

/* line 21, city_input.scss */
.city-input {
  position: relative;
  width: 100%;
  font-family: var(--font-family); }

/* ── Label ─────────────────────────────────────── */
/* line 29, city_input.scss */
.city-input__label {
  display: block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 11px;
  color: var(--color-content-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem; }

/* ── Field ─────────────────────────────────────── */
/* line 42, city_input.scss */
.city-input__field-wrap {
  position: relative; }

/* line 46, city_input.scss */
.city-input__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-content-secondary);
  pointer-events: none;
  transition: color 0.18s; }

/* line 61, city_input.scss */
.city-input__icon svg {
  width: 100%;
  height: 100%; }

/* line 66, city_input.scss */
.city-input__field {
  width: 100%;
  height: 48px;
  padding: 0 1.25rem 0 2.75rem;
  border: 2px solid var(--color-accent-border-m);
  border-radius: 9999px;
  background: var(--bg);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-content-primary);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s; }

/* line 83, city_input.scss */
.city-input__field::placeholder {
  color: var(--color-content-secondary);
  font-weight: 500; }

/* line 88, city_input.scss */
.city-input__field:focus {
  border-color: var(--color-bg-secondary); }

/* line 92, city_input.scss */
.city-input__clear-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  border: none;
  background: var(--color-bg-success);
  color: var(--color-accent-success);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  line-height: 1; }

/* line 116, city_input.scss */
.city-input__clear-btn:hover {
  background: var(--color-bg-error);
  color: var(--color-accent-error);
  cursor: pointer; }

/* ── Confirmed (success) state ─────────────────── */
/* line 124, city_input.scss */
.city-input--confirmed .city-input__field {
  border-color: var(--color-bg-success);
  box-shadow: 0 4px 14px rgba(120, 200, 90, 0.18); }

/* line 129, city_input.scss */
.city-input--confirmed .city-input__icon {
  color: var(--color-bg-success); }

/* ── Dropdown ──────────────────────────────────── */
/* line 135, city_input.scss */
.city-input__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.5rem);
  z-index: 20;
  background: var(--bg);
  border: 1px solid var(--color-accent-border-m);
  border-radius: 1.25rem;
  box-shadow: 0 12px 32px rgba(47, 79, 149, 0.14);
  max-height: 260px;
  overflow-y: auto;
  padding: 0.5rem; }

/* line 150, city_input.scss */
.city-input__option {
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-content-primary);
  cursor: pointer;
  transition: background-color 0.12s; }

/* line 161, city_input.scss */
.city-input__option:hover,
.city-input__option--highlighted {
  background: var(--color-bg-canvas); }

/* line 166, city_input.scss */
.city-input__option--empty {
  color: var(--color-content-secondary);
  font-weight: 500;
  cursor: default; }

/* line 172, city_input.scss */
.city-input__option--empty:hover {
  background: none; }
