/* \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\n   LOCATION AUTOCOMPLETE STYLES\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 */
\n.location-autocomplete {
    \n width: 100%;
    \n
}

\n\n.location-autocomplete__dropdown {
    \n position: absolute;
    \n top: 100%;
    \n left: 0;
    \n right: 0;
    \n background: #fff;
    \n border-radius: var(--r-md);
    \n box-shadow: var(--shadow-lg);
    \n border: 1px solid var(--c-border);
    \n margin-top: 8px;
    \n z-index: 1000;
    \n max-height: 280px;
    \n overflow-y: auto;
    \n opacity: 0;
    \n visibility: hidden;
    \n transform: translateY(10px);
    \n transition: all var(--t-fast);
    \n
}

\n\n.location-autocomplete__dropdown.active {
    \n opacity: 1;
    \n visibility: visible;
    \n transform: translateY(0);
    \n
}

\n\n.location-autocomplete__item {
    \n display: flex;
    \n align-items: center;
    \n gap: var(--sp-3);
    \n padding: var(--sp-3) var(--sp-4);
    \n font-size: var(--fs-sm);
    \n color: var(--c-text);
    \n cursor: pointer;
    \n transition: background var(--t-fast);
    \n
}

\n\n.location-autocomplete__item:hover,
\n.location-autocomplete__item.selected {
    \n background: var(--c-surface);
    \n color: var(--c-primary);
    \n
}

\n\n.location-autocomplete__item strong {
    \n color: var(--c-primary);
    \n font-weight: 700;
    \n
}

\n\n.location-autocomplete__pin {
    \n font-size: 1.1rem;
    \n
}

\n