.scroll-steps-wrapper {
    display: flex;
    gap: 16px;
    /*max-height: 410px;*/
    /*height: 410px;*/
    max-height: 375px;
    height: 375px;
    position: relative;

}
@media (max-width: 1024px) {
    .scroll-steps-wrapper {
        max-height: 332px;
        height: 332px;
    }
}

@media (max-width: 640px) {
    .scroll-steps-wrapper {
        max-height: 590px;
        height: 590px;
    }
}
/* ===== INDICATOR ===== */
.scroll-steps__indicator {
    position: sticky;
    top: 0;
    width: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-self: flex-start;
}

.scroll-steps__segment {
    flex: 1;
    background: #E5E7EB;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.scroll-steps__segment.is-filled {
    background: #E96F9A80;
}

/* ===== SCROLL AREA ===== */
.scroll-steps {
    flex: 1;
    height: 100%;
}

.scroll-steps__items {
    height: 100%;
    /*overflow-y: auto;*/
    padding-right: 20px;
}

/* ===== STEPS ===== */
.scroll-step {
    margin-bottom: 16px;
    transition: background 0.3s ease;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: start;

}
@media (max-width: 640px) {
    .scroll-step {
        flex-direction: column;
    }
}
.scroll-step:last-child{
    margin-bottom: 0;
}

/*.scroll-steps__items .scroll-step:last-child {*/
/*    padding-bottom: 140px;*/
/*}*/

.scroll-step.is-active .scroll-step__label {
    background: #E96F9A40;
}

.scroll-step__label {
    display: inline-block;
    padding: 8px 19px;
    border: 1px solid #E96F9A;
    border-radius: 12px;
    font-size: 14px;
    color: #9F0038;
    font-family: 'Nunito';
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.scroll-step__title {
    margin-bottom: 4px;
    font-family: 'Nunito';
    color: #111827;
    font-size: 16px!important;
    font-family: 'Nunito';
    font-weight: 600;
}

.scroll-step__text {
    color: #374151;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Nunito';
}
