/*
Theme Name: MTECH
Description: Child theme of Avada theme
Author: freeunited.de
Author URI: https://www.freeunited.de
Template: Avada
Version: 1.0.1
Text Domain:  Avada
*/

.custom-product-price {

}

.custom-product-price.loading::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: custom-product-price-spin 0.8s linear infinite;
}

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

.custom-product-price:not(.loading)::after {
    display: none;
}
