﻿.news-container {
    position: relative;
    font-family: "Roboto", sans-serif;
    box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.3);
}

    .news-container .title {
        position: absolute;
        background: #df2020;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0 24px;
        color: white;
        font-weight: bold;
        z-index: 200;
    }

    .news-container ul {
        display: flex;
        list-style: none;
        margin: 0;
        animation: scroll 25s infinite linear;
    }

        .news-container ul li {
            white-space: nowrap;
            padding: 10px 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;
            }
@media(max-width:321px)
{
.news-container .title {
    position: absolute;
    background: #df2020;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 4px !important;
	 font-size: 14px !important;
    line-height: 14px !important;
    margin-bottom: 10px !important;
    color: white;
    font-weight: bold;
    z-index: 200;
}
}
@media(max-width:376px)
{
.news-container .title {
    position: absolute;
    background: #df2020;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 4px !important;
	 font-size: 22px !important;
    line-height: 10px !important;
    margin-bottom: 13px !important;
    color: white;
    font-weight: bold;
    z-index: 200;
}
}
@media(max-width:426px)
{
.news-container .title {
    position: absolute;
    background: #df2020;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 4px !important;
	 font-size: 22px !important;
    line-height: 10px !important;
    margin-bottom: 13px !important;
    color: white;
    font-weight: bold;
    z-index: 200;
}
}
@media(max-width:769px)
{
.news-container .title {
    position: absolute;
    background: #df2020;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10px !important;
	 font-size: 22px !important;
    line-height: 10px !important;
    margin-bottom: 13px !important;
    color: white;
    font-weight: bold;
    z-index: 200;
}
}


@keyframes scroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-1083px);
    }
}

.w-pdf {
    margin-bottom: 15px;
}

    .w-pdf .w-pdf-file {
        padding: 9px 12px;
        border: 2px solid #cc0000;
        border-radius: 50%;
        font-size: 22px;
        color: #cc0000;
        margin-left: 5px;
    }


