.rs-slide {
    opacity: 0;
    transform: translateY(var(--rs-offset, 6px));
    transition:
        opacity var(--rs-duration, 600ms) cubic-bezier(.4,0,.2,1),
        transform var(--rs-duration, 600ms) cubic-bezier(.4,0,.2,1);
    position: absolute;
    width: 100%;
    pointer-events: none;
}

.rs-slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

.rs-dots {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.rs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    margin: 0 5px;
    cursor: pointer;
}

.rs-dot.active {
    background: #333;
}

@media (prefers-reduced-motion: reduce) {
    .rs-slide {
        transition: none;
        transform: none;
    }
}
