/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 30-gen-2024, 14.22.02
    Author     : acasano
*/

#news_container{ width: 100%; height: auto; position: relative;}

#scatola {
max-width: 100%;
overflow: hidden;
position: absolute;
left: 0;
z-index: 1;
background-color: #111;
height: 31px;
}
.stage_animation {
overflow: hidden;
white-space: nowrap;
display: inline-block;
animation: stage_animation 20s linear infinite;
margin-top: 2px;

}
.stage_animation p {
display: inline-block;
font-family: Poppins;
color: #fff;
font-size: 14px;
}
.stage_animation a {
display: inline-block;
font-family: Poppins;
color: #fff;
font-size: 14px;
}
@keyframes stage_animation {
0% {
transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(-90%, 0, 0);
}
}
