#checkout-popup {
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
#checkout-popup{
    height: 500px;
    overflow: scroll;
}
.woocommerce-additional-fields {
    display: none;
}
#checkout-popup{display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90%; max-width: 1000px; background: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index: 1000; padding: 20px;}
#close-popup{
    position: absolute;
    right: 10px;
    background: #ff2121;
    border: none;
    font-size: 16px;
    cursor: pointer;
    z-index: 99;
    color: white;
    font-size: 30px;
    border-radius: 5px;
    padding: 0px 10px;
    font-weight: bold;
}

#checkout-popup .wc-block-components-notice-banner.is-error {
    display: none !important;
}

/* Loading popup */
#bwdcv-loading-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    text-align: center;
    display: none;
}
#bwdcv-loading-popup .loader {
    border: 8px solid #f3f3f3; 
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto; 
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#bwdcv-loading-popup p {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}
