/*Icon progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
    text-align: center;
}

#progressbar .active {
    color: #673AB7;
}

#progressbar .success {
    color: #1b6c05;
}

#progressbar .error {
    color: #d41e06;
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 14%;
    float: left;
    position: relative;
    font-weight: 400;
}

/*Icons in the ProgressBar*/
#progressbar #prog_deatils:before {
    font-family: FontAwesome;
    content: "1";
}

#progressbar #prog_features:before {
    font-family: FontAwesome;
    content: "2";
}

#progressbar #prog_images:before {
    font-family: FontAwesome;
    content: "3";
}

#progressbar #prog_videos:before {
    font-family: FontAwesome;
    content: "4";
}

#progressbar #prog_locations:before {
    font-family: FontAwesome;
    content: "5";
}

#progressbar #prog_contact:before {
    font-family: FontAwesome;
    content: "6";
}

#progressbar #prog_preview:before {
    font-family: FontAwesome;
    content: "7";
}

/*Icon ProgressBar before any progress*/
#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

/*ProgressBar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #673AB7;
}

#progressbar li.success:before, #progressbar li.success:after {
    background: #1b6c05;
}

#progressbar li.error:before, #progressbar li.error:after {
    background: #d41e06;
}
