/* Custom country autocomplete dropdown */
.autocomplete-field {
    position: relative;
}

.autocomplete-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 30;
    margin: 4px 0 0;
    padding: 4px 0;
    list-style: none;
    max-height: 240px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #7f909f;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 35, 64, 0.12);
}

.autocomplete-list.open {
    display: block;
}

.autocomplete-item {
    padding: 10px 16px;
    cursor: pointer;
    font-family: var(--font-light);
    color: var(--color-prime);
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: var(--greyOP-50, rgba(0, 35, 64, 0.05));
}
