Info proužek rotující při overflow

https://chat.openai.com/share/b21cad8e-5560-4cff-90f1-6f70229171e7

 

.site-msg.information {text-align:center;
background-color: #43727A;
color: #fff;
position: relative;
bottom: unset;
left: 0;
right: 0;
max-width: 100% !important;
width: 100%;
overflow: hidden;
padding: 12px;
}
.site-msg.information .text {
white-space: nowrap;
font-size: 16px;
}
.scroll {
animation: scroll 10s linear infinite;
}

@keyframes scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-100%);
}
}

 

---------------------