.angie-marquee-wrapper-5a22bdbf {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.angie-marquee-container-5a22bdbf {
    display: flex;
    white-space: nowrap;
    width: fit-content;
}

.angie-marquee-content-5a22bdbf {
    display: flex;
    flex-shrink: 0;
    padding-right: 50px;
    animation-name: scroll-marquee-5a22bdbf;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

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

.angie-marquee-wrapper-5a22bdbf.pause-on-hover:hover .angie-marquee-content-5a22bdbf {
    animation-play-state: paused;
}