/* Wrackleford_AddressLookup autocomplete dropdown */

.wrackled-al-dropdown {
    display: none;
    list-style: none;
    margin: 0;
    padding: 4px 0;
    background: #fff;
    border: 1px solid #c2c2c2;
    border-radius: 2px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    max-height: 280px;
    overflow-y: auto;
    font-size: 14px;
}

.wrackled-al-item {
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.wrackled-al-item:last-child {
    border-bottom: none;
}

.wrackled-al-item:hover,
.wrackled-al-item:focus {
    background: #f5f5f5;
    outline: none;
}

.wrackled-al-main {
    flex: 1 1 auto;
    color: #1979c3;
    font-weight: 500;
}

.wrackled-al-secondary {
    flex: 0 0 auto;
    color: #666;
    font-size: 12px;
}

.wrackled-al-loading {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 50 50"><circle cx="25" cy="25" r="20" fill="none" stroke="%231979c3" stroke-width="4" stroke-dasharray="31.4 31.4"><animateTransform attributeName="transform" type="rotate" from="0 25 25" to="360 25 25" dur="1s" repeatCount="indefinite"/></circle></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px 16px;
    padding-right: 32px !important;
}
