.stb-container-1675 {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    display: flex;
}

.stb-marquee-1675 {
    display: flex;
    white-space: nowrap;
    animation: stb-scroll-1675 var(--stb-speed-1675, 20s) linear infinite;
    animation-direction: var(--stb-direction-1675, normal);
}

.stb-text-1675 {
    flex-shrink: 0;
    padding-right: 10px; /* slight buffer */
    font-size: 80px;
    font-weight: 800;
}

@keyframes stb-scroll-1675 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}