/* Search box inside the intl-tel-input country dropdown (contact form phone field) */
.intl-tel-input .country-list .iti-search {
    position: sticky;
    top: 0;
    z-index: 2;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.intl-tel-input .country-list .iti-search-input {
    width: 100%;
    box-sizing: border-box;
    padding: 7px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.3;
    outline: none;
}
.intl-tel-input .country-list .iti-search-input:focus {
    border-color: #264e86;
}
/* ensure the list scrolls under the sticky search (v12 sets max-height already) */
.intl-tel-input .country-list {
    max-height: 220px;
}
