/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/*
 * Custom jQuery UI autocomplete
 */

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active, .ui-button:active,
.ui-button.ui-state-active:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.loading-spin {
    position: relative;
    z-index: 999;
    bottom: -10px;
    left: 70px;
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid var(--color-secondary);
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin-bottom: -20px;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.shipping-address-choice {
    background-color: #DBDBDB;
}
