.steps {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0;
}

.step {
    flex-basis: 50%;
}
.step-num{font-size: 18px;font-style: italic;padding-bottom: 10px;text-align: center;font-weight: 700;color: #333;}
.step-head {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.step:last-of-type .step-head .line {
    display: none;
}

.steps .active-icon {
    border: 2px solid #3D7BED !important;
    background-color: #fff !important;
}

.steps .icon {
    position: absolute;
    width: 6px;
    height: 6px;
    border: 1px solid #ccc;
    background-color: #d3d6ec;
    border-radius: 50%;
    z-index: 1;
}

.steps .line {
    position: absolute;
    right: -50%;
    left: 50%;
    width: 100%;
    height: 1px;
    background-color: #d3d6ec;
    z-index: 0;
}

.steps .active-line {
    background-color: #3D7BED !important;
}

.steps .title {
    margin-top: 16px;
    text-align: center;
}

.steps .active-title {
    color: #000;
    font-size: 16px;
}
.steps .active-title p{
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}