.step {
    transition: all;
    transition-duration: .5s;
    transition-timing-function: ease-out;
    display: flex;
    align-items: center;
    justify-content: center
}

.step-inactive {
    width: 16px;
    height: 16px;
    border-radius: 100px;
    background-color: #c5e5ef
}

.step-active {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: #00a3d4
}

.step-prev-active {
    width: 16px;
    height: 16px;
    border-radius: 100px;
    background-color: #00a3d4
}

.step-text {
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    transition: all;
    transition-duration: .8s;
    transition-timing-function: ease-out;
    display: none
}

.step-active > .step-text {
    display: block
}
