.chart {
    zoom: 1;
    width: 90%
}

.chart:after {
    clear: both;
    content: '.';
    display: block;
    height: 0;
    visibility: hidden
}

.chart li {
    display: block;
    height: 35px;
    margin-top: 15px;
    position: relative;
}

.chart li:before {
    color: #fff;
    content: attr(title);
    left: 5px;
    position: absolute;
    padding: 5px;
    font-size: 22px;
    font-weight: 600;
}

.chart li.title:before {
    color: black;
    font-weight: bold;
    left: 0
}

.chart li:first-child {
    margin-top: 0
}

.chart li .bar {
    background: black;
    height: 100%
}

.chart li .number {

    color: black;
    font-size: 18px;
    font-weight: 400;
    padding-left: 5px;
    position: absolute;
    top: 9px;
    line-height: .8em;
    width: 70px;

}
.chart li.past .bar {
    background: #aaa
}

.chart li.past .number {
    color: #aaa
}

@media screen and (max-width: 480px) {
    .chart li {
        height: auto
    }

    .chart li:before {
        color: white;
        display: block;
        left: 0;
        position: relative;
    }

    .chart li.title:before {
        border-bottom: 1px solid
    }

    .chart li .bar {
        height: 35px
    }

    .chart li .number {
        display: block;
        left: 0 !important;
        padding-left: 3px;
        position: relative;
        top: -6px
    }
}