.tournaments-container .tournament-item.active {
    background-color: #404459;
}

.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
} 

.js-toggle-season-icon {
    transition: transform 0.3s ease;
}

.js-season-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.js-season-content.active {
    max-height: 100%;
}

.js-date-filter-item.active {
    color:#FFFFFF;
    background-color: #404459;
}

.tournaments-custom-scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.tournaments-custom-scrollbar::-webkit-scrollbar-track {
    border-radius: 9999px;
}

.tournaments-custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #2B303D;
    border-radius: 9999px;
    background-clip: padding-box;
}

.tournaments-custom-scrollbar::-webkit-scrollbar-button {
    display: none;
}

@media (min-width: 1200px) {
    .tournaments-custom-scrollbar::-webkit-scrollbar {
        width: 7px;
        height: 7px;
        margin-top: 4px;
    }

    .tournaments-custom-scrollbar::-webkit-scrollbar-thumb {
        border: 1px solid #13171c;
    }

    .tournaments-custom-scrollbar::-webkit-scrollbar-track {
        background-color: #13171c;
        margin-top: 4px;
        margin-bottom: 4px;
        margin-right: 2px;
    }
}

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

.marquee-content {
    display: inline-block;
    white-space: nowrap;
}

.marquee-content.animate {
    animation: marquee 15s linear infinite;
}

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