#bar-chart {
	width: 99%;
	display: grid;
	margin-left:5px;
	grid-template: auto / 20px auto 1fr;
	grid-row-gap: 1ex;
	row-gap: 1ex;
	grid-column-gap: 1ex;
	column-gap: 1ex;
}
.collapser {
	cursor: pointer;
	align-self: center;
}
#bar-chart .major-col-label {
	text-align: right;
	align-self: center;
	font-size: 28px;
	width: 100%;
	transition: font-size .8s ease, width 1.5s ease;
	white-space: nowrap;
}

#bar-chart .data-container {
	display: grid;
	grid-template: auto / auto 1fr;
	grid-column-gap: 1ex;
	column-gap: 1ex;
	background-color: white;
	height: 100%;
	transition: height .8s ease;
}

#bar-chart .data-container.odd{
	background-color: #F6F6F6; 
}

#bar-chart .filter-label {
	font-weight: bold;
	font-size: 20px;
	text-align: right;
}
#bar-chart .bar {
	line-height: 1.5em;
	border-bottom: thin solid white;
	font-weight: bold;
	padding-left: 3px;
	text-align: right;
	color:white;
	text-shadow: 
   -1px -1px 0 #000,  
   1px -1px 0 #000,
   -1px 1px 0 #000,
   1px 1px 0 #000;
	 white-space: nowrap;
}

@media only screen and (max-width: 600px) {
	#bar-chart .major-col-label {
		font-size: 14px;
	}
	#bar-chart .filter-label {
		font-size: 12px;
	}
}
