.budi-interactive-vertical-process-step__wrapper {
    position: relative;
}

.budi-interactive-vertical-process-step__content {
    max-width: 460px !important;
    position: relative;
}

.budi-interactive-vertical-process-step__content.is-fixed {
    position: fixed;
    top: 130px;
    max-width: inherit;
    width: inherit;
}

.budi-interactive-vertical-process-step__content.reached-bottom {
    position: absolute;
    bottom: 0;
    top: auto;
}

.budi-interactive-vertical-process-step__lists {
    padding-left: 60px;
}


.budi-interactive-vertical-process-step__title span {
    background: var(--color-sub);
    padding: 3px 10px 5px;
    border-radius: 15px;
    color: #ffffff;
}

.budi-interactive-vertical-process-step__item {
    margin-bottom: 65px;
    padding: 25px 35px;
    border-radius: 15px;
    background: #F5F5F5;
}

.budi-interactive-vertical-process-step__item:last-child {
    margin-bottom: 0;
}

.budi-interactive-vertical-process-step__item-number {
    margin-bottom: 18px;
    line-height: 1em;
    font-size: 48px;
}


.budi-interactive-vertical-process-step__item-checklist-icon {
    left: -99px;
    top: 45px;
    transition: opacity 0.5s ease, transform 0.5s ease;
    /* Initially hidden */
    opacity: 0;
}

/* Line */
.budi-interactive-vertical__line {
    position: absolute;
    top: 84px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    overflow: hidden;
}

.budi-interactive-vertical__line-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F5F5F5;
}

.budi-interactive-vertical__line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-main);
    height: 0%;
    transition: height 0.3s ease;
}

@media screen and (max-width: 992px) {
    .budi-interactive-vertical-process-step__title span {
        display: inline-block;
    }

    .budi-interactive-vertical__line {
        left: 53%;
    }

    .budi-interactive-vertical-process-step__item-checklist-icon {
        left: -77px;
    }
}

@media screen and (max-width: 767px) {
    .budi-interactive-vertical-process-step__title {
        margin-bottom: 45px;
    }

    .budi-interactive-vertical-process-step__lists {
        margin-top: 45px;
        padding-left: 0;
    }

    .budi-interactive-vertical-process-step__item:not(:last-child) {
        margin-bottom: 22px;
    }
}