.steps-plan {
    width: 100%;
}

.steps-plan .sp-carousel-outer {
    padding: 0 40px 0;
}

.steps-plan .sp-carousel .owl-stage-outer {
    margin-bottom: 10px;
}

.steps-plan .sp-carousel {
    position: relative;
}

.steps-plan .sp-carousel .owl-stage {
    display: flex;
    align-items: end;
}

.steps-plan .sp-carousel .owl-next,
.steps-plan .sp-carousel .owl-prev {
    position: absolute;
    bottom: 24px;
}

.steps-plan .sp-carousel .owl-next i,
.steps-plan .sp-carousel .owl-prev i {
    font-size: 20px;
    color: #2a99d1;
}

.steps-plan .sp-carousel .owl-prev {
    left: -40px;
}

.steps-plan .sp-carousel .owl-next {
    right: -40px;
}

.steps-plan .step {
    height: 100%;
}

.steps-plan .step .step-title {
    text-align: center;
    padding-bottom: 5px;
    margin: 0 10px;
    border-bottom: 2px solid #5f5f5f;
    font-weight: bold;
    cursor: pointer;
    word-break: break-word;
}

.steps-plan .step.step-selected .step-title {
    border-color: #2a99d1;
    color: #2a99d1;
}

.steps-plan .step .step-arrow {
    margin-top: 5px;
    color: transparent;
    text-align: center;
}

.steps-plan .step.step-selected .step-arrow {
    color: #2a99d1;
}

.steps-plan .plan-content {
    background-color: #F4F4F4;
    padding: 30px 90px;
}

.steps-plan.transparent .plan-content {
    background-color: transparent;
    padding: 0;
}

.steps-plan .plan-content .step:not(.step-selected) {
    display: none;
}

@media screen and (max-width: 767px) {
    .steps-plan .sp-carousel-outer {
        padding: 0 30px 0;
    }

    .steps-plan .sp-carousel .owl-prev {
        left: -30px;
    }

    .steps-plan .sp-carousel .owl-next {
        right: -30px;
    }

    .steps-plan:not(.transparent) .plan-content {
        padding: 30px;
    }
}