.marquee-wrapper-ce34ebfc {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
}

.marquee-track-ce34ebfc {
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    width: max-content;
    will-change: transform;
}

.marquee-item-ce34ebfc {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

/* Pause on hover state */
.marquee-wrapper-ce34ebfc.pause-on-hover-ce34ebfc:hover .marquee-track-ce34ebfc {
    animation-play-state: paused !important;
}

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

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