.marquee-block {
width: 100%;
background-color: #000000;
position: relative;
overflow: hidden;
white-space: nowrap;
height: 24px;
margin-top: 20px;
}
.marquee-wrapper {
width: 100%;
height: 100%;
display: flex;
align-items: center;
}
.marquee-inner {
display: inline-block;
white-space: nowrap;
animation: scroll-left 15s linear infinite;
}
.marquee-block.black-theme .marquee-inner span {
display: inline-block;
padding-right: 30px;
color: #ffffff;
background-color: #000000;
font-family: sans-serif;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.marquee-inner:hover {
animation-play-state: paused;
}
@keyframes scroll-left {
0% {
transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(-50%, 0, 0);
}
}