.step {
    display: flex;
    display: -ms-flexbox;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    list-style: none;
    margin: .2rem 0;
    width: 100%;
}

.step .step-item {
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    margin-top: 0;
    min-height: 1rem;
    position: relative;
    text-align: center;
}

.step .step-item:not(:first-child)::before {
    background: #24A483;
    content: "";
    height: 5px;
    right: -50%;
    position: absolute;
    top: 12px;
    width: 100%;
}

.step .step-item span {
    color: #acb3c2;
    display: inline-block;
    padding: 30px 15px 0;
    text-decoration: none;
}

.step .step-item span::before {
    background: #24A483;
    border: .2rem solid #fff;
    border-radius: 50%;
    content: "";
    display: block;
    height: 1rem;
    right: 50%;
    position: absolute;
    top: .2rem;
    transform: translateX(50%);
    width: 1rem;
    z-index: 1;
}

.step .step-item.active span::before {
    background: #fff;
    border: .2rem solid #24A483;
}

.step .step-item.active ~ .step-item::before {
    background: #e7e9ed;
}

.step .step-item.active ~ .step-item span::before {
    background: #e7e9ed;
}