.angie-marquee-7e4aef87 {
    --marquee-speed: 20s;
    --marquee-gap: 30px;
    --marquee-direction: normal;
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
}

.angie-marquee-track-7e4aef87 {
    display: flex;
    gap: var(--marquee-gap);
    min-width: 100%;
    animation: scroll-7e4aef87 var(--marquee-speed) linear infinite var(--marquee-direction);
}

.angie-marquee-7e4aef87.pause-on-hover:hover .angie-marquee-track-7e4aef87 {
    animation-play-state: paused;
}

.angie-marquee-content-7e4aef87 {
    display: flex;
    flex-shrink: 0;
    gap: var(--marquee-gap);
    min-width: 100%;
    justify-content: space-around;
}

.angie-marquee-item-7e4aef87 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.angie-marquee-item-7e4aef87 img {
    display: block;
    object-fit: contain;
}

@keyframes scroll-7e4aef87 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - var(--marquee-gap)));
    }
}