.step-indicator {
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.step {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.step-indicator .step-icon {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #c2c2c2;
    font-size: 10px;
    text-align: center;
    color: #ffffff;
    position: relative;
    /* line-height: 50px; */
    font-size: 20px;
}

.step.active .step-icon {
    background: #0178d4;
}

.step p {
    text-align: center;
    position: absolute;
    bottom: -20px;
    color: #c2c2c2;
    font-size: 14px;
    font-weight: bold;
}

.step.active p {
    color: #0178d4;
}

.step.step2 p,
.step.step3 p {
    left: 50%;
    transform: translateX(-50%);
}

.indicator-line {
    width: 100%;
    height: 2px;
    background: #c2c2c2;
    flex: 1;
}

.indicator-line.active {
    background: #0178d4;
}

@media screen and (max-width: 500px) {
    .step p {
        font-size: 11px;
        bottom: -20px;
    }
}