/* Spinner styles */
#loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.spinner {
    width: 30px;
    height: 30px;
    border: 1px solid rgb(0 0 0 / 13%);
    border-top-color: #a1a1a1;
    border-radius: 50%;
    animation: spin 0.5s linear infinite;
    border-right-color: #a1a1a1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#custom_pickup_option_field .woocommerce-invalid input {
    border-color: initial;
    background-color: initial;
}

.shop_table .blockUI.blockOverlay {
    display: block !important;
    opacity: 0.6 !important;
}
#custom_pickup_option_field .woocommerce-invalid label, #custom_pickup_option_field label.woocommerce-invalid {
    color: inherit!important;
}

@media (max-width: 1200px) {
}
@media (max-width: 800px) {
    .site-main .product-page .woocommerce-error {
        width: 95%;        
    }
    .woocommerce-error li {
        display: block;
    }
}       



