/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* Start invisible */
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

/* Quad Layout Widget */
.choice-quad-container {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.choice-quad-container::-webkit-scrollbar {
    display: none;
}

/* Video Slider Widget */
.choice-vs-slider .swiper-button-next,
.choice-vs-slider .swiper-button-prev {
    width: 32px !important;
    height: 32px !important;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #333 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.choice-vs-slider .swiper-button-next:after,
.choice-vs-slider .swiper-button-prev:after {
    font-size: 14px !important;
    font-weight: bold;
}