
/* Plugin CSS */

/*.ui-autocomplete-loading { 
	background:url('http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/images/ui-anim_basic_16x16.gif') no-repeat right center 
}*/


.spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Style for the popup container */
#zip-code-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FEE6C3;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    z-index: 1000;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

/* Style for the form inside the popup */
#delivery-options-form {
    margin-top: 20px;
}

/* Style for the radio button labels */
#delivery-options-form label {
    display: block;
    margin-bottom: 10px;
}

/* Style for the radio buttons */
#delivery-options-form input[type="radio"] {
    margin-right: 5px;
}

/* Style for the "Continue" button */
#delivery-options-form button {
    background-color: #0073e6;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Style for the "Continue" button on hover */
#delivery-options-form button:hover {
    background-color: #005bb8;
}

/* Style for the radio button labels and input elements */
#delivery-options-form label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* Style for the radio buttons */
#delivery-options-form input[type="radio"] {
    margin-right: 5px;
    vertical-align: middle; /* Aligns the radio button vertically in the middle of the label */
}

.close-button {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 18px;
    text-decoration: none;
    color: #000;
    z-index: 1;
}

/* Style for the close button on hover (optional) */
.close-button:hover {
    color: #ff0000; /* Change color on hover */
}

.sr-error{
	color: red;
}