#seot-ticker-root {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: 40px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.75);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    backdrop-filter: blur(2px);
}
.seot-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    transform: translateX(0);
}
.seot-track.seot-animate {
    animation-name: seot-scroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.seot-track.seot-paused {
    animation-play-state: paused;
}
@keyframes seot-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.seot-item {
    display: inline-block;
    padding: 0 14px;
    font-size: 14px;
    line-height: 40px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}
.seot-item:active {
    opacity: 0.7;
}
.seot-sep {
    color: #ffffff;
    opacity: 0.4;
    font-size: 12px;
}
@media (min-width: 992px) {
    #seot-ticker-root {
        display: none;
    }
}