﻿.news-banner {
    overflow: hidden;
    width: 100%;
    height: 50px;
    white-space: nowrap;
    background: rgb(0, 103, 190);
    display: flex;
    position: absolute;
    bottom: 0;
}

    .news-banner:lang(it)::before {
        content: "ULTIME NEWS";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        background: rgb(0, 103, 190);
        z-index: 1;
        display: flex;
        align-items: center;
        padding: 20px;
        font-weight: bold;
        color: #44b8f3;
    }

    .news-banner:lang(en)::before {
        content: "LATEST NEWS";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        background: rgb(0, 103, 190);
        z-index: 1;
        display: flex;
        align-items: center;
        padding: 20px;
        font-weight: bold;
        color: #44b8f3;
    }

    .news-banner .news-banner-container {
        width: 200%;
        display: flex;
        flex-wrap: nowrap;
        animation: move 40s infinite linear;
    }

        .news-banner .news-banner-container:hover {
            animation-play-state: paused;
        }

        .news-banner .news-banner-container p a {
            font-size: 1rem;
            margin: 0;
            padding-left: 0px;
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            color: white;
            line-height: 3rem;
            font-weight: initial;
        }

        .news-banner .news-banner-container p i {
            font-size: .6em;
            padding: 0px 25px;
            color: #44b8f3;
        }

@keyframes move {
    to {
        transform: translateX(-50%);
    }
}





/*

@media only screen and (max-width: 1024px) {
    .news-banner {
        display: none;
    }
}
*/
