.news-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    font-family: 'Ubuntu Condensed', sans-serif;
    box-shadow: 0 4px 8px -4px rgba(187, 187, 187, 0.3);
}

.news-container .title {
    position: absolute;
    background: #df2020;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: white;
    font-weight: bold;
    z-index: 200;
}

.news-container ul {
    display: flex;
    list-style: none;
    margin: 0;
    animation: scroll 30s infinite linear;
}

.news-container ul li {
    white-space: nowrap;
    padding: 2px 10px;
    color: #fff;
    position: relative;
	font-size: 18px;
}

.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(-1083px);

    }
}