/* Progress Tracker v2 */
ol.progress[data-steps="2"] li { width: 49%; }
ol.progress[data-steps="3"] li { width: 33%; }
ol.progress[data-steps="4"] li { width: 24%; }
ol.progress[data-steps="5"] li { width: 19%; }
ol.progress[data-steps="6"] li { width: 16%; }
ol.progress[data-steps="7"] li { width: 14%; }
ol.progress[data-steps="8"] li { width: 12%; }
ol.progress[data-steps="9"] li { width: 11%; }

.progress {
    width: 100%;
    list-style: none;
    list-style-image: none;
    margin: 20px 0 20px 0;
    padding: 0;
}

.progress li {
    float: left;
    text-align: center;
    position: relative;
}

.progress .name {
    display: block;
    font-family: 'Raleway-SemiBold';
    font-size:16px;
    text-transform: uppercase;
    vertical-align: bottom;
    text-align: center;
    margin-bottom: 1em;
    color: #134a4f;
    opacity: 0.3;
}

.progress .step {
    color: black;
    border: 1px solid #134a4f;
    background-color: #FFF;
    border-radius: 50%;
    line-height: 1px;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    z-index: 0;
}

.progress .step span {
    opacity: 0.3;
}

.progress .active .name,
.progress .active .step span {
    opacity: 1;
}

.progress .step:before {
    content: "";
    display: block;
    background-color: #134a4f;
    height: 1px;
    width: 50%;
    position: absolute;
    bottom: 14px;
    left: 0;
    z-index: -1;
}

.progress .step:after {
    content: "";
    display: block;
    background-color: #134a4f;
    height: 1px;
    width: 50%;
    position: absolute;
    bottom: 14px;
    right: 0;
    z-index: -1;
}

.progress li:first-of-type .step:before {
    display: none;
}

.progress li:last-of-type .step:after {
    display: none;
}

.progress .done .step,
.progress .active .step {
    border: 1px solid #134a4f;
}

.progress .done .step,
.progress .done .step:before,
.progress .done .step:after {
    background-color: #134a4f;
}

.progress .active .step,
.progress .active .step:before {
    background-color: #134a4f;
}

@media only screen and (min-width:100px) and (max-width:630px){
    ol.progress[data-steps="4"] li span.name{
        opacity:0;
    }
    ol.progress[data-steps="4"] li.active span.name{
        opacity:1;
    }
}
@media only screen and (min-width:100px) and (max-width:390px){
    .progress .name{
        font-size:12px;
    }
}