.chart {
    width: 90%;
}
.chart::after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}
.chart li {
    display: block;
    height: 23px;
    margin-top: 3px;
    position: relative;
}
.chart li::before {
    color: #fff;
    content: attr(title);
    left: 5px;
    position: absolute;
}
.chart li.title::before {
    color: black;
    font-weight: bold;
    left: 0;
}
.chart li:first-child {
    margin-top: 0;
}
.chart li .bar {
    background: #ff9b35 none repeat scroll 0 0;
    height: 100%;
}
.chart li .number {
    color: #730000;
    font-size: 10px;
    font-weight: bold;
    padding-left: 5px;
    position: absolute;
    top: 3px;
}
.chart li.past .bar {
    background: #ff9b35 none repeat scroll 0 0;
}
.chart li.past .number {
    color: #730000;
}


/*Css for reducing space*/
.chart.graph {
    float: left!important;
    padding-left: 0px;
}

.chart.title li {
    font-size: 10px;
    color: #730000;
}
.chart li .number {
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

.chart.graph li .bar {
    min-width: 3px!important;
}
.chart {
    margin-bottom: 25px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

.chart.title li {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 480px) {
    .chart li {
        height: auto;
    }
    .chart li::before {
        color: black;
        display: block;
        left: 0;
        position: relative;
    }
    .chart li.title::before {
        border-bottom: 1px solid;
    }
    .chart li .bar {
        height: 23px;
    }
    .chart li .number {
        display: block;
        /*left: 0 !important;*/
        padding-left: 0;
        position: relative;
        top: -8px;
    }
}