/* -------------------------------------------------------
Custom carousel widget plugin for wordpress (nsshop.ir).

Developer: Hamid Hossein vand

Telegram: https://t.me/hamidhosseinvand

Phone: +98 914 919 0764
----------------------------------------------------------*/

.swiper-wrapper {
    display: flex;
}

.swiper-container {
    width: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.swiper-slide img {
    max-width: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.swiper-lazy-preloader {
    display: none;
}

.custom-carousel {
    overflow: hidden;
}

.custom-carousel .swiper-slide {
    width: 215px;
}

.swiper-prevent-content-shift .swiper-slide {
    width: 215px;
}

/* Initial state of the image with placeholder */
.cl-image {
    opacity: 1; /* Placeholder is fully visible */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.35s ease-in-out forwards;
    opacity: 0;
}