.marquee-wrapper-0f8938b5 {
display: flex;
overflow: hidden;
user-select: none;
width: 100%;
}
.marquee-content-0f8938b5 {
display: flex;
flex-shrink: 0;
align-items: center;
justify-content: space-around;
min-width: 100%;
animation: scroll-0f8938b5 20s linear infinite;
}
.marquee-item-0f8938b5 {
display: flex;
justify-content: center;
align-items: center;
}
@keyframes scroll-0f8938b5 {
from {
transform: translateX(0);
}
to {
transform: translateX(-100%);
}
}