.woocommerce-Price-amount{display:block!important;}

.woocommerce-Price-amount.loading {
    position: relative;
    color: transparent !important;
    opacity:0.8;
}

.woocommerce-Price-amount.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-left: -8px;
    border: 2px solid #ccc;
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}





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


