.vs-ticker {
    white-space: nowrap;
    overflow: hidden;
    background: transparent;
    position: relative;
}

.vs-ticker__wrapper {
    display: flex;
    align-items: stretch;
    opacity: 0;
    transition: opacity 0.3s;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}
.vs-ticker__text a {
    color: inherit;
    text-decoration: none;
    border-bottom: none;
}
.vs-ticker__wrapper.is-init {
    opacity: 1;
    animation: ticker linear infinite;
}

.vs-ticker__text {
    color: #fff;
    background: #F26522;
    display: flex;
    padding: 8px 24px;
    align-items: center;
    font-size: 16px;
    flex-shrink: 0;
}

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

@media (prefers-reduced-motion: reduce) {
    .vs-ticker__wrapper {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}