.wizard-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

/* connecting line behind the circles */
.wizard-steps:before {
    content: "";
    position: absolute;
    top: 16px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

.wizard-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.wizard-step-num {
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ddd;
    color: #999;
    font-weight: bold;
    transition: all .2s ease;
}

.wizard-step-label {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #999;
}

/* completed steps */
.wizard-step.done .wizard-step-num {
    background: #5cb85c;
    border-color: #5cb85c;
    color: #fff;
}
.wizard-step.done .wizard-step-label {
    color: #5cb85c;
}

/* current step */
.wizard-step.active .wizard-step-num {
    background: #337ab7;
    border-color: #337ab7;
    color: #fff;
}
.wizard-step.active .wizard-step-label {
    color: #337ab7;
    font-weight: bold;
}

.wizard-wide .list-group-item input[type="radio"] {
    vertical-align: middle;
}

.wizard-wide .list-group-item {
    overflow: auto;
    white-space: nowrap;
}

.wizard-wide .__logreg_block,
.wizard-wide .__logreg_wrap {
    max-width: 600px;
    width: 100%;
}

.wizard-wide .list-group-item .corp-text {
    white-space: nowrap;
}