/*progress bar*/
ol.progressbar[data-steps="2"] li { width: 49%; }
ol.progressbar[data-steps="3"] li { width: 33%; }
ol.progressbar[data-steps="4"] li { width: 24%; }
ol.progressbar[data-steps="5"] li { width: 19%; }
ol.progressbar[data-steps="6"] li { width: 16%; }
ol.progressbar[data-steps="7"] li { width: 14%; }
ol.progressbar[data-steps="8"] li { width: 12%; }
ol.progressbar[data-steps="9"] li { width: 11%; }
.progressbar {
    width: 100%;
    list-style: none;
    list-style-image: none;
    margin: 20px 0 20px 0;
    padding: 0;
    z-index: 1;
}

.progressbar li {
    float: left;
    text-align: center;
    position: relative;
}

.progressbar .name {
    display: block;
    vertical-align: bottom;
    text-align: center;
    margin-bottom: 1em;
    color: black;
    opacity: 0.3;
}

.progressbar .step {
    color: black;
    border: 3px solid silver;
    background-color: silver;
    border-radius: 50%;
    line-height: 1.2;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    z-index: 0;
}

.progressbar .step span {
    opacity: 0.3;
}

.progressbar .activetask .name,
.progressbar .activetask .step span {
    opacity: 1;
}

.progressbar .step:before {
    content: "";
    display: block;
    background-color: silver;
    height: 0.4em;
    width: 50%;
    position: absolute;
    bottom: 0.8em;
    left: 0;
    z-index: -1;
}

.progressbar .step:after {
    content: "";
    display: block;
    background-color: silver;
    height: 0.4em;
    width: 50%;
    position: absolute;
    bottom: 0.8em;
    right: 0;
    z-index: -1;
}

.progressbar li:first-of-type .step:before {
    display: none;
}

.progressbar li:last-of-type .step:after {
    display: none;
}

.progressbar .done .step,
.progressbar .done .step:before,
.progressbar .done .step:after,
.progressbar .activetask .step,
.progressbar .activetask .step:before {
    background-color: #1a4c78;
}

.progressbar .done .step,
.progressbar .activetask .step {
    border: 3px solid #1a4c78;
}
