.progbar-bg{
    height: 3px;
    width: 82%;
    min-width: 70px;
    background-color: rgba(243, 243, 243, 0.7);
    box-shadow: 0px 2px rgba(71, 71, 71, 0.35);
    position: absolute;
    border-radius: 5px;
    margin: 0 auto;
    bottom: 23%;
}

.progbar-bar{
    position: absolute;
    height: 100%;
    width: 0%;
    transition: width 0.45s ease-in-out, border-radius 0.45s ease-in-out;
    border-radius: 5px 0 0 5px;
}

.progbar-green{
    background: greenyellow;
}

.progbar-orange{
    background: orange;
}

.progbar-sect {
    height: 100%;
    display: inline-block;
}

.progbar-dcont{
    display: none;
    height: 100%;
}

.progbar-pct {
    /* display: block; */
    /* float: right; */
    /* top: 0; */
    /* right: 0; */
    /* margin: 0 auto; */
    /* position: absolute; */
    /* height: 100%; */
    float: right;
    font-size: 0.9rem;
}

@media screen and (min-width: 767px){
    .progbar-bg{
        width: 88%;
    }    
}