/* ==========================================================
 * MULTI-STEP PROGRESS
 * ==========================================================
 */
.multi-step-container 
{
    margin-left: 25px;
    margin-bottom: 25px;
}
.segment 
{
    position: relative;
    display: inline-block;
    margin-right: -10px;
}
.multi-step-container .circle 
{
    display: inline-block;
    background-color: #A8A9AD;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    color: white;
    overflow: hidden;
    text-align: center;
    font-size: 12px;
}
.multi-step-container .line {
    display: inline-block;
    width: 140px;
    height: 10px;
    margin: 5px 0;
    background-color: #A8A9AD;
    position: relative;
    left: -5px;
}
.multi-step-container .label 
{
    position: absolute;
    left: 10px;
    top: 25px;
    transform: translate(-50%, 0);
    font-size: 12px;
    color: #A8A9AD;
}
.multi-step-container .segment.active .circle, .segment.active .line 
{
    background-color: #C0A05F;
}
.multi-step-container .segment.active .label 
{
    color: #C0A05F;
}