/* simple_marquee */
.simple_marquee-container {
    overflow: hidden;
    /* white-space: nowrap; */
    position: relative;
    width: 100%;
}

.simple_marquee-content {
    display: inline-flex;
    animation: scroll linear infinite;
}

.simple_marquee-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.simple_marquee-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

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

/* Horizontal base styles */
.simple_marquee-horizontal .simple_marquee-content {
    flex-direction: row;
    white-space: nowrap;
}

/* Left direction (default) */
.simple_marquee-left {
    animation-name: scroll-left;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

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

/* Right direction */
.simple_marquee-right {
    animation-name: scroll-right;
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Horizontal gradient fade */
.simple_marquee-horizontal::before {
    left: 0;
    top: 0;
    bottom: 0;
    width: 50px;
}

.simple_marquee-horizontal::after {
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
}

/* Vertical simple_marquee styles */
.simple_marquee-vertical {
    display: flex;
    flex-direction: column;
    white-space: normal;
    height: 200px;
}

.simple_marquee-up {
    animation: scroll-up linear infinite;
}

.simple_marquee-down {
    animation: scroll-down linear infinite;
}