.vitaliberte-stepper--reformer {
    .section-title {
        color: #CA7144;
    }

    .store_locator_steps::before {
        background-color: #D56F34;
    }

    .store_locator_steps li.steps_step .step_link .step_circle {
        border: solid 2px #D56F34;
    }

    .store_locator_steps li.steps_step .step_link .step_circle span {
        color: #6E2913;
    }

    .store_locator_steps li.steps_step .step_link .step_info .info_title {
        color: #6E2913;
    }

    .store_locator_steps li.steps_step.-active .step_circle {
        background-color: #D56F34;
    }

    .store_locator_steps li.steps_step.-active .step_circle span {
        color: white;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #05AAC6;
}

.store_locator_steps {
    position: relative;
    list-style: none;
    padding-left: 0;
}

.store_locator_steps::before {
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    width: calc(100% - 100px);
    left: 50%;
    top: 25px;
    z-index: -1;
    transform: translateX(-50%);
    background-color: #05AAC6;
}

@media (max-width: 575.98px) {
    .store_locator_steps::before {
        width: calc(100% - 80px);
        top: 20px;
        height: 1px;
    }
}

.store_locator_steps li.steps_step {
    display: flex;
    justify-content: flex-start;
    flex: 1;
    max-width: 25%;
}

.store_locator_steps li.steps_step.step-2 {
    justify-content: center;
}

.store_locator_steps li.steps_step.step-3 {
    justify-content: end;
}

.store_locator_steps li.steps_step .step_link .step_circle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border-radius: 25px;
    border: solid 2px #05AAC6;
    margin: 0 auto 5px;
    background-color: white;
}

@media (max-width: 575.98px) {
    .store_locator_steps li.steps_step .step_link .step_circle {
        height: 40px;
        width: 40px;
    }
}

.store_locator_steps li.steps_step .step_link .step_circle span {
    font-size: 1.75rem;
    font-weight: bold;
    color: #B62879;
}

@media (max-width: 575.98px) {
    .store_locator_steps li.steps_step .step_link .step_circle span {
        font-size: 1.25rem;
    }
}

.store_locator_steps li.steps_step .step_link .step_info {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.store_locator_steps li.steps_step .step_link .step_info .info_title {
    color: #B62879;
}

@media (max-width: 575.98px) {
    .store_locator_steps li.steps_step .step_link .step_info {
        font-size: 0.75rem;
    }
}

.store_locator_steps li.steps_step.-active .step_circle {
    background-color: #05AAC6;
}

.store_locator_steps li.steps_step.-active .step_circle span {
    color: white;
}