.step-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    position: relative;
}

.step-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.step-indicator {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #6C6C6C;
    color: #6C6C6C;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight: 700;
}

.step-indicator.active {
    background: #82b46a;
    color: #fff;
    border-color: #7BB062;
}

.step-line {
    width: 30%;
    height: 3px;
    border-top:2px dashed #6C6C6C;
    position: relative;
}

.step-line.completed {
    border-top:2px solid #82b46a;
}

.step-indicator,
.step-line {
    transition: all 0.3s ease;
}

.step-navigation .button{
    border: 2px solid #7BB062;
    border-radius: 10px;
    background: #7BB062;
    min-width: 150px;
    text-align: center;
    padding: 12px 20px 15px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    transition: 0.3s all;
    font-family: "Lato", sans-serif;
}
.step-navigation .button:hover{
    color: #7BB062;
}
.step-navigation .button#prev-step{
    background: #ffffff !important; 
    color: #7BB062;
}
.step-navigation .button#prev-step:hover{
    background: #7BB062 !important;
    color: #ffffff;
}
.step-navigation .button::after, .step-navigation .button::before{
    display: none;
}
@media (max-width: 575px) {
    
    /* .step-indicator{
        width: 40px;
        height: 40px;
        font-size: 18px;
    } */
     .step-navigation .button{
        min-width: 164px;
     }
}

@media (max-width: 360px){
    .step-navigation .button{
        min-width: 148px;
     }
}