.progressBar {

    position: relative;
    background: #f6f6f6;
    height: 40px;
    border-radius: 99px;
    overflow: hidden;
}

.progressBar .left {
    display: inline-block;
    width: 60%;
    float: left;
    height: 100% ;
}
.progressBar .right {
    height: 100% ;
    display: inline-block;
    width: 40%;

}
.progressBar  .active{
    background: #39b118;
}
.progressBar .value {
    background: white;
    border-radius: 99px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    text-align: center;
    margin: 4px;
}
.progressBar .left .value{
     float: left;
}
.progressBar .title {

    font-size: 12px !important;
    margin-top: 10px;
    color: #777;

}
.progressBar .active .title {

    color: #fff !important;

}
.progressBar .right .value{
     float: right;
}
.progressBar .left .title {

    float: left;
    margin-left: 5px;

}
.progressBar  .right .title {

    margin-right: 45px;

}