.slider-button-active {
    background: #140B09 !important;
    color: #FFFFFF !important;
}
.slider-button-inactive {
    background: #F1ECEB !important;
    color: #140B09 !important;
}
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}
.animate-marquee-fast {
    display: inline-block;
    animation: marquee 10s linear infinite;
}
.animate-marquee-slow {
    display: inline-block;
    animation: marquee 20s linear infinite;
}
.collapsible-content {
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.collapsible-content.closed {
    opacity: 0;
    max-height: 0;
}

.collapsible-content.open {
    opacity: 1;
    max-height: 1000px;
}
