/*
 * Search box injected into the intl-tel-input country dropdown
 * (v17 has no built-in search). See custom-js/phone/phone-validation.js.
 */

.iti__country-list {
    max-height: 260px;
    overflow-y: auto;
}

.iti__search-wrap {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 8px;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

.iti__search-input {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.iti__search-input:focus {
    border-color: var(--primary-color, #563714);
    box-shadow: 0 0 0 2px rgba(86, 55, 20, 0.12);
}

/* The dropdown must escape cards and modals rather than being clipped by them. */
.iti__country-list {
    z-index: 10050;
}
