/* Form progress */
.formProgress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 90%;
    max-width: 810px;
    margin: 0 auto 15px;
}

.formProgress__bar {
    position: relative;
    width: 100%;
    height: 16px;
    background: #F5FAFB;
    border-radius: 10px;
    opacity: 1;
    transition: all .4s linear;
    box-shadow: inset 1px -1px 4px rgba(0,0,0,.1);
}

.formProgress__value {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 16px;
    background-color: #80D3EF;
    border-radius: 10px;
    transition: all .3s linear;
}

.formProgress__value_green {
    background-color: #00a94f;
}

.formProgress__step {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    top: -6px;
    min-width: 60px;
    text-align: right;
}

@media (max-width: 575.98px) {
    .formProgress__step {
        font-size: 16px;
        top: -4px;
    }
}