.form-steps .form-navigation {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.form-steps .form-navigation.reverse {
    flex-direction: row-reverse;
}

.form-steps .form-prev-button img {
    width: 21px;
    height: 17px;
}

.form-steps .form-navigation .form-nav-button {
    color: #0967B1;
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    column-gap: 18px;
    align-items: center;
}

.small-controls .form-check-input[type="checkbox"], 
.small-controls .form-check-input[type="radio"] {
    width: 15px;
    height: 15px;
}

.form-steps .form-page {
    display: none;
    width: 100%;
}

.form-steps .form-page.active {
    display: grid;
}

.steps {
    display: flex;
    gap: 1%;
}

.steps .step {
    height: 5px;
    width: 25%;
    background-color: #D6D6D6;
    border: none;
    display: inline-block;
    opacity: 0.5;
}

.steps.threeSteps .step {
    width: 33%;
}

.step.active {
    background-color: #757575;
    opacity: 1;
}

.step.disabled {
    background: #2E7D32;
    opacity: 1;
}

#paginador {
    display: flex;
    flex-direction: row-reverse;
}

span.small {
    color: rgb(117, 117, 117);
    font-size: 0.75rem;
    display: block;
    position: absolute;
}

@media screen and (min-width: 768px) {
    label.lbl-two-lines {
        min-height: 36px;
    }
    
    label.lbl-three-lines {
        min-height: 54px;
    }
}


.form-check {
    display: flex;
    gap: 5px;
}

.form-check input {
    min-width: 15px;
    min-height: 15px;
}

.form-check label {
    margin-top: 2px;
}

.form-check-input:checked[type="checkbox"] {
    background-size: 10px;
}