/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 04/09/2025, 19:31:42
    Author     : mobsolution
*/
.wizard-steps-custom {
    --cor-laranja-step: #D6885A;
    --cor-wizard-step-bar: #887165;
    cursor: default;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: sans-serif;
    padding: 0 10% 0 10% !important;
    /*padding: 0 20% 0 13% !important;*/
    /*padding: 0 18% 0 14% !important;*/
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 3px solid var(--cor-wizard-step-bar);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--cor-wizard-step-bar);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

.step.completed {
    background-color: var(--cor-laranja-step);
    color: white;
    border: none;
}

.step.active {
    background-color: var(--cor-laranja-step);
    color: #fff;
    border: none;
}

.line {
    flex: 1;
    height: 2px;
    background-color: var(--cor-wizard-step-bar);
}


@media(max-width: 400px){
    .step {
        width: 30px;
        height: 30px;
        border: 2px solid var(--cor-wizard-step-bar);
        font-size: 14px;
    }
}