.ticker-container {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.ticker-viewport {
    min-height: 50px;
    position: relative;
    overflow: hidden;
    background: #373a48;
}

.ticker-content {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.news-item {
    padding: 15px 0;
    display: flex;
    align-items: left;
    justify-content: left;
}

.news-item.current {
    animation: fadeIn 0.8s ease-in forwards;
}

.news-title {
    font-size: 17px;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



/* Mobile styles  */
@media (max-width: 767px) {
    .news-item{
        padding:2px 0 0 0;
    }
    .news-title{
        font-size:13px;
    }
}