
/* Essential CSS - News Ticker */

.news-container {
    position: relative;
	height:40px;
    top: -21px;
    left: 0;
    right: 0;
    font-family: "Roboto", sans-serif;
}

.news-container .title {
    position: absolute;
    background: #304770;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
    color: white;
    font-weight: bold;
	border-radius: 0px 5px 5px 0px;
    z-index: 200;
}

.news-container ul {
    display: flex;
    list-style: none;
    margin: 0;
    animation: scroll 75s infinite linear;
}

.news-container:hover ul{
     animation-play-state: paused;
}

.news-container ul li {
    white-space: nowrap;
    padding: 0px 24px;
    color: #494949;
    position: relative;
}

.news-container ul li::after {
    content:"";
    width: 1px;
    height: 100%;
    background: #b8b8b8;
    position: absolute;
    top: 0;
    right: 0;
}

.news-container ul li:last-child::after {
    display: none;
}

@keyframes scroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);

    }
}