.stepwizard {
  display: table;
  width: 100%;
  position: relative;
  margin: 20px 0;
}
.stepwizard .col-sm-2 {
    width: 20%;
    padding: 0;
}
.stepwizard .wizard-stepnum {
    font-size: 0.9em;
    padding-bottom: 10px;
}
.stepwizard .disabled .wizard-stepnum {
    color: #777;
}
.stepwizard .progress {
    background-color: #E6E6E6;
    border-radius: 0;
    box-shadow: none;
    height: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}
.stepwizard .step1 .progress {
    border-radius: 15px 0 0 15px;
}
.stepwizard .step5 .progress {
    border-radius: 0 15px 15px 0;
}
.stepwizard .state2 .progress .progress-bar {
    width: 100%;
}
.stepwizard .progress .progress-bar {
    width: 50%;
    box-shadow: none;
}
.stepwizard .disabled .progress .progress-bar {
    width: 0;
}
.stepwizard .wizard-dot {
    background: #fff;
    border: 2px solid #bfa67a;
    border-radius: 50%;
    display: block;
    margin-left: -12px;
    height: 25px;
    width: 25px;
    left: 50%;
    position: absolute;
    top: 23px;
    line-height: 20px;
    font-size: 0.8em;
    text-align: center;
    color: #bfa67a;
}
.stepwizard .disabled .wizard-dot {
    border-color: #E6E6E6;
    color: #ccc;
}