.ticker-wrapper-h {
    /*width: 1010px;*/
    height: 24px;
    display: flex;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
    background-color: #333;
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 12px;
}
.ticker-wrapper-h .heading {
    background-color: #333;
    color: #fff;
    padding: 3px 6px;
    flex: 0 0 auto;
    z-index: 1000;
}
.news-ticker-h {
    display: flex;
    margin: 0;
    padding: 0;
    padding-left: 90%;
    z-index: 999;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: tic-h;
    animation-duration: 60s;
}
.news-ticker-h:hover {
    animation-play-state: paused;
}
.news-ticker-h li {
    display: flex;
    width: 100%;
    align-items: center;
    white-space: nowrap;
    padding-left: 20px;
}
.news-ticker-h li a {
    color: #fff;
    text-decoration: none;
}
.news-ticker-h li a:hover {
    color: #e31a22;
}
@keyframes tic-h {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
