body.loading-processing .shimmer-loading {
    position: relative;
    overflow: hidden;
}

body.loading-processing .shimmer-loading.container-fluid {
    border-radius: 1rem;
}

body.loading-processing .shimmer-loading::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg,
            rgba(220, 220, 220, 0) 0%,
            rgba(220, 220, 220, 0.3) 10%,
            rgba(220, 220, 220, 0.6) 60%,
            rgba(220, 220, 220, 0));
    animation: shimmer 3s infinite;
    content: '';
    z-index: 999;
    inset: 0 !important;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

body.loading-processing #main-slider {
    min-height: 400px !important;
    height: 400px !important;
}

body.loading-processing #categories-slider {
    min-height: 230px !important;
    height: 230px !important;
}

body.loading-processing #products-slider {
    min-height: 315px !important;
    height: 315px !important;
}

body.loading-processing #popular-products-slider {
    min-height: 380px !important;
    height: 380px !important;
}

body.loading-processing #posters {
    min-height: 250px !important;
    height: 250px !important;
}

body.loading-processing #blogs-slider {
    min-height: 400px !important;
    height: 400px !important;
}

@media (max-width: 768px) {
    body.loading-processing #main-slider {
        min-height: 180px !important;
        height: 180px !important;
    }

    body.loading-processing #products-slider {
        min-height: 280px !important;
        height: 280px !important;
    }

    body.loading-processing #posters {
        min-height: 300px !important;
        height: 300px !important;
    }
}