#steps {
    list-style-type: none !important;
    padding: 0 !important;
}

#steps > li {
    font-size: 12px;
    text-align: center;
    position: relative;
    color: #526069;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

#steps > li:before {
    content: '';
    height: 2px;
    vertical-align: middle;
    background-color: #c0cacf;

}

#steps > li:after {
    content: '';
    position: absolute;
    left: -50%;
    top: 8px;
    height: 2px;
    width: 100%;
    z-index: -1;
    vertical-align: middle;
    background-color: #c0cacf;
}

#steps > li.active:before, #steps > li.active:after {
    background-color: #15baff;

}

#steps > li:first-child:after {
    content: none !important;

}

#steps > li.active {
    color: #15baff !important;

}

.step_content {
    min-height: 200px;
    /*
    margin-top: 40px;
    */
    width: 100%;
    position: relative;
}

.hidden {
    display: none;
}

.steps-btn-group {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    margin: 12px 0;
    text-align: center;
}

.all-content > fieldset:not(:first-child) {
    display: none;
}