﻿.barChart {
}
.barChart__row {
    display: block;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}
.barChart__row:after {
 	content: " ";
	display: table;
	clear: both;
}
.barChart__label {
    float: left;
    padding-right: 10px;
    width: 100px;
}
.barChart__value {
    float: right;
    padding-left: 10px;
    width: 100px;
}
.barChart__bar {
    display: block;
    overflow: hidden;
    /*background: grey;*/
	background-color: rgb(223, 223, 223);
    height: 18px;
}
.barChart__barFill {
    display: block;
    height: 100%;
    width: 0;
    background: red;
}
