
/*

SHIMMERING

*/

.shimmering,
.loading_menu .product-price,
.loading_menu .product-name,
.loading_menu .product-category,
.loading_menu .nav-product-category,
.loading_menu .product-description,
.loading_menu .order-price,
.loading_menu .cart-product-price,
.loading_menu .price-line.order-delivery-fees,

.loading_cart .product-price,
.loading_cart .order-price,
.loading_cart .cart-product-price,
.loading_cart .price-line.order-delivery-fees,
.loading_cart .close,

.loading_cart .add-product,
.loading_cart .remove-product,
.loading_cart .product-quantity,

.loading,

.image-loading {
    color: transparent;
    animation-duration: 2.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: shimmer;
    animation-timing-function: linear;
    border-radius: 20px;
    pointer-events: none;
    background: linear-gradient(to right, #e2e2e2 8%, #d8d8d8 18%, #eaeaea 33%);
    background-size: 1200px 100%;
    margin: 5px;
}

@-webkit-keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}
.loading_menu .product-img{
    display: none;
}

@keyframes shimmer {
    0% {
        background-position: -1200px 0;
    }
    100% {
        background-position: 1200px 0;
    }
}