﻿.barChart {
}

.barChart__row {
    display: block;
    align-items: center;
    margin-bottom: 30px;
    width: 88%;
}

    .barChart__row:after {
        content: " ";
        display: table;
        clear: both;
    }

.barChart__label {
    
	text-align:right;
    padding-right: 0px;
	margin-right: 15px;
    width: 100px;
}

.barChart__value {
    float: right;
    padding-left: 10px;
    width: 30px;
}

.barChart__bar {
    display: block;
    overflow: hidden;
    background: #a9a9a9;
    height: 20px;
}

.barChart__barFill {
    display: block;
    height: 100%;
    width: 0;
    background: #ffffff;
}

