﻿.barChart {
}

.barChart__row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
    font-size: 12px;
   
    
}

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



.barChart__label {
   
    padding-right: 10px;
    width: 60px;
   
}

.barChart__value {
	padding-left: 5px;
	width: 50px;
	border: 1px solid #999;
    text-align: center;
    border-radius: 2px;
}
.barChart__value:hover {
	
	border: 1px solid red;
   
}





.barChart__bar {
	display: inline-block;
	background: #E9E9E9;
	height: 4px;
	padding: 2px 0;
	position: relative;
	width: 100%;
    margin-right: 20px;
}

.barChart__barFill {
    display: inline-block;
    height: 100%;
    width: 0;
    top: 0;
    left: 0;
    background: red;
    position: absolute;
}
