.formulario-wizard-stepper {
    margin: 0 0 30px;
}

    .formulario-wizard-stepper .wizard-steps {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: space-between;
        counter-reset: wizard-step;
        position: relative;
    }

        .formulario-wizard-stepper .wizard-steps::before {
            content: "";
            position: absolute;
            top: 18px;
            left: 5%;
            right: 5%;
            height: 2px;
            background: #d6d6d6;
            z-index: 0;
        }

    .formulario-wizard-stepper .wizard-step {
        flex: 1;
        text-align: center;
        position: relative;
        z-index: 1;
        color: #8a8a8a;
    }

    .formulario-wizard-stepper .wizard-step-circle {
        display: inline-flex;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #ffffff;
        border: 2px solid #d6d6d6;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: #8a8a8a;
        margin-bottom: 8px;
        transition: all .25s ease;
    }

    .formulario-wizard-stepper .wizard-step-check {
        display: none;
    }

    .formulario-wizard-stepper .wizard-step-label {
        display: block;
        font-size: 13px;
        line-height: 1.2;
        word-break: break-word;
        padding: 0 4px;
    }

    .formulario-wizard-stepper .wizard-step.is-active .wizard-step-circle {
        background: #003f7d;
        border-color: #003f7d;
        color: #fff;
    }

    .formulario-wizard-stepper .wizard-step.is-active .wizard-step-label {
        color: #003f7d;
        font-weight: 600;
    }

    .formulario-wizard-stepper .wizard-step.is-done .wizard-step-circle {
        background: #2e7d32;
        border-color: #2e7d32;
        color: #fff;
    }

    .formulario-wizard-stepper .wizard-step.is-done .wizard-step-number {
        display: none;
    }

    .formulario-wizard-stepper .wizard-step.is-done .wizard-step-check {
        display: inline-block;
        color: #fff;
    }

.formulario-passo.is-hidden {
    display: none !important;
}

.wizard-nav-buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
}

    .wizard-nav-buttons .btn + .btn {
        margin-left: 8px;
    }

@media (max-width: 768px) {
    .formulario-wizard-stepper .wizard-step-label {
        font-size: 11px;
    }

    .formulario-wizard-stepper .wizard-step-circle {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .formulario-wizard-stepper .wizard-steps::before {
        top: 15px;
    }
}
