/* Infinite Scroller Module Styles */
.flateffects-infinite-scroller {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.fe-scroller-inner {
    display: flex;
    animation: fe-scroll var(--fe-scroller-speed, 20s) linear infinite;
    width: max-content;
}

.direction-right .fe-scroller-inner {
    animation-direction: reverse;
}

.fe-scroller-content {
    flex-shrink: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

@keyframes fe-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}