.marquee-container {
    overflow: hidden;
    width: 100%;
    background-color: #111;
    padding: 15px 0;
    box-sizing: border-box;
}

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

.marquee-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-scroll-870988fc linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 40px;
}

.marquee-item-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

/* Pause on Hover option */
.marquee-pause-yes:hover .marquee-track {
    animation-play-state: paused;
}

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