.marquee-wrapper-c5731b5e {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    position: relative;
    display: flex;
}

.marquee-content-c5731b5e {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
}

.marquee-content-c5731b5e span {
    display: inline-block;
    padding-right: 2rem;
}

/* Direction: Right to Left (Scrolls left) */
.marquee-content-c5731b5e.direction-left {
    animation: marquee-scroll-left linear infinite;
}

/* Direction: Left to Right (Scrolls right) */
.marquee-content-c5731b5e.direction-right {
    animation: marquee-scroll-right linear infinite;
}

.marquee-wrapper-c5731b5e.pause-on-hover:hover .marquee-content-c5731b5e {
    animation-play-state: paused;
}

@keyframes marquee-scroll-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes marquee-scroll-right {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}
