.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

@media (max-width: 768px) {
    .stepper-item {
        font-size: 12px;
    }
}

.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 5px solid #EFF0F7;
    width: 100%;
    top: 14px;
    left: -50%;
    z-index: 1;
}

.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #EFF0F7;
    width: 100%;
    top: 14px;
    left: 50%;
    z-index: 1;
}

.stepper-item .step-counter {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #EFF0F7;
    color: #3F3F3F;
}

.stepper-item.active div.step-counter {
    font-weight: 800;
}

.stepper-item.completed .step-counter {
    background-color: #1f2d48;
    color: #ffffff;
}

.stepper-item.notFirstChild.completed::before {
    position: absolute;
    content: "";
    border-bottom: 5px solid #1f2d48;
    width: 50%;
    top: 14px;
    left: -5%;
    z-index: 1;
}

.stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 5px solid #1f2d48;
    width: 50%;
    top: 14px;
    left: 50%;
    z-index: 2;
}

.stepper-item:first-child::before {
    content: none;
}
.stepper-item:last-child::after {
    content: none;
}
