.fl-row:has(#stappenSlider)>.fl-row-content-wrap {
    overflow: hidden;
}

#stappenSlider .swiper-container {
    overflow: visible;
}

/* #stappenSlider .swiper-wrapper {
    cursor: none;
    align-items: stretch;
} */

#stappenSlider .swiper-slide {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, #4CB690 0%, #368066 100%);
    padding: 25px;
    color: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
    cursor: pointer
}

#stappenSlider .swiper-slide:not(.swiper-slide-active) {
    /* filter: blur(1px); */
    /* scale: 0.9; */
    opacity: 0.8;
    /* background: linear-gradient(180deg, #7CCDB0 0%, #7CCDB0 100%); */
}

#stappenSlider .swiper-slide.swiper-slide-active {
    cursor: auto;
}


#dragIndicator {
    display: flex;
    align-items: center;
    gap: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9;
    translate: -50% -50%;
    background: rgba(66, 63, 77, 0.10);
    box-shadow: 0px 15.493px 19.265px 0px rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(28px);
    border-radius: 7px;
    padding: 10px 15px;
    pointer-events: none;
    opacity: 0;
}



#stappenSlider .stap-header h3 {
    width: fit-content;
    margin-bottom: 16px;
    color: #fff;
    /* font-size: clamp(22px, 22px + (30 - 22) * ((100vw - 350px) / (1280 - 350)), 30px); */
    line-height: 130%;
}

#stappenSlider .stap-text {
    margin-bottom: 0;
    line-height: 150%;
}

#stappenSlider .swiper-slide:not(.swiper-slide-active) .stap-header::after {
    filter: grayscale(1);
}


#stappenBullets {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    max-width: 1280px;
}

#stappenBullets .stappen-progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #173C99, #173C99 50%, transparent 50%, transparent 100%);
    background-size: 8px 100%;
}

#stappenBullets .bar-fill {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 2;
    translate: 0 -50%;
    width: 10%;
    height: 2px;
    background-color: #4CB690;
}

#stappenBullets>svg {
    position: relative;
    z-index: 5;
    cursor: pointer;
}

/* #stappenBullets>svg circle {
    fill: #173C99;
    transition: all 0.3s ease-in-out;
} */

#stappenBullets>svg:nth-of-type(1) circle,
#stappenBullets>svg.active circle {
    fill: #4CB690;
}

#stappenBullets svg text {
    font-size: 24px;
    font-weight: 700;
}

@media screen and (max-width: 992px) {
    #stappenSlider .swiper-slide {
        padding: 40px;
    }

    #stappenBullets {
        margin-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    #stappenSlider .swiper-slide {
        padding: 20px;
    }

    #stappenBullets {
        margin-top: 0px;
    }
}