:root {
    --swiper-pagination-color: #DDBE79;
}

@keyframes shimmering {
    0% {
        background-position: -1300px 0;
    }

    100% {
        background-position: 1300px 0;
    }
}

.shimmer {
    animation: shimmering 3.1s linear infinite;
    background: rgba(226, 226, 226, 1);
    background: linear-gradient(90deg, rgba(226, 226, 226, 1) 9%, rgba(238, 238, 238, 1) 18%, rgba(226, 226, 226, 1) 31%);
    background-size: 1300px 100%;
}