.steps-wrapper {
    position: relative;
}

.steps-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #dee2e6;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    background-color: #dee2e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px auto;
    font-weight: bold;
    color: #6c757d;
    transition: background-color 0.3s, color 0.3s;
}

.step-circle.active,
.step-circle.completed {
    background-color: #0362fe;
    color: #fff;
}

.step-label {
    font-size: 0.9rem;
    color: #333;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .steps-wrapper::before{
        height: 2px;
        top: 15px;
    }
    .step-circle{
        width: 30px;
        height: 30px;
    }
    .step-circle i {
        font-size: 12px;
    }
    .step-label{
        font-size: 9px;
    }
}