/**
 * ------------------------------------------------------------
 * Wooptima Checkout > VIES Validation Styles
 * ------------------------------------------------------------
 * @updated    29/09/2025
 * @author     Wooptima
 * ------------------------------------------------------------
 */

.form-field.vies-loading #billing_dic {
    cursor: not-allowed !important;
    padding-right: 40px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E%3Cpath fill='%23FF3D00' d='M25,5A20.14,20.14,0,0,1,45,22.88a2.51,2.51,0,0,0,2.49,2.26h0A2.52,2.52,0,0,0,50,22.33a25.14,25.14,0,0,0-50,0,2.52,2.52,0,0,0,2.5,2.81h0A2.51,2.51,0,0,0,5,22.88,20.14,20.14,0,0,1,25,5Z'%3E%3CanimateTransform attributeName='transform' type='rotate' values='0 25 25;360 25 25' dur='1s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 10px) center !important;
    background-size: 20px 20px !important;
    transition: none !important;
}

#billing_dic[readonly] {
    background-color: #ffffff !important;
    cursor: not-allowed;
}

/* VIES Notice Styles */
.vies-notice-container {
    margin-top: 8px;
}

.vies-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 6px;
    border: 2px solid;
    font-size: 14px;
    line-height: 1.4;
}

.vies-notice-success {
    background-color: #f0f9f0;
    border-color: #28a745;
    color: #155724;
}

.vies-notice-error {
    background-color: #fdf2f2;
    border-color: #dc3545;
    color: #721c24;
}

.vies-notice-text {
    flex: 1;
    margin-right: 10px;
}

.vies-notice-link {
    color: #007cba;
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.vies-notice-link:hover {
    color: #005a87;
    text-decoration: underline;
}

.vies-notice-link:active {
    color: #003d5c;
}