.order-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.order-list-item {
    display: flex;
    align-items: center;
    gap: 34px;
}

.order-list-item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 142%;
    color: #000;
    margin-bottom: 0;
}

.order-list-item-title {
    min-width: 275px;
}

.order-list-item-num {
    border: 2px solid #46B3DE;
    max-width: 56px;
    min-width: 56px;
    min-height: 56px;
    max-height: 56px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #46B3DE;
    background: white;
    position: relative;
}

.order-list-item-num:before {
    height: 76px;
    content: '';
    display: block;
    width: 76px;
    position: absolute;
    left: -10px;
    background: white;
    z-index: -1;
}

.order-list-item-num span:after {
    content: '';
    display: block;
    position: absolute;
    height: 160px;
    width: 2px;
    border-left: 2px dashed #46B3DE;
    z-index: -2;
    left: calc(28px - 2px);
    top: 54px;
}

.order-list-item:last-child .order-list-item-num span:after {
    display: none;
}

.order-list-item-text {
    padding-left: 43px;
}
@media (max-width: 400px) {
    .order-list-item-title {
        font-size: 20px;
    }
}
@media (max-width: 374px) {
    .order-list-item-title {
        font-size: 16px;
        min-width: auto;
    }
    .order-list-item-num:before {
        height: 45px;
        width: 45px;
    }
    .order-list-item-num {
        max-width: 30px;
        min-width: 30px;
        min-height: 30px;
        max-height: 30px;
        font-size: 15px;
    }
}