#TickerLineMarquee {
    position: relative;
    width: 100%;
    height: 24px;    
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

#TickerLineMarquee span {
    position: absolute;
    top: 0;
    bottom: 0;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 100%;
    /* show the marquee just outside the paragraph */
    animation: marquee 40s linear infinite;
    font-size: .75rem;
}

#TickerLineMarquee span:hover {
    animation-play-state: paused
}


/* Make it move */

@keyframes marquee {
    0% { opacity: 0; }
    1% { opacity: 1; transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}


/* Respect user preferences about animations */

@media (prefers-reduced-motion: reduce) {
    #TickerLineMarquee {
        white-space: normal
    }

    #TickerLineMarquee span {
        animation: none;
        padding-left: 0;
    }
}