.chart--horiz {
	overflow: hidden;
}

.chart__wrapper__bar {
    background: #E5E7EB;
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
    min-height: 30px;
    position: relative;
}

.chart__bar {
    position: absolute;
	height: 100%;
	background: #03A4FB;
	-webkit-border-top-right-radius: 4px;
	        border-top-right-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	        border-bottom-right-radius: 4px;
	opacity: 0;

	-webkit-animation: 1s anim-lightspeed-in ease forwards;

	        animation: 1s anim-lightspeed-in ease forwards;
}

.chart ul li:before {
    content: unset !important;
}

.chart__label {
    display: block;
	padding-left: 10px;
	line-height: 30px;
	color: #fff;
    position: relative;
    text-shadow: 1px 1px 2px #03A4FB;
	opacity: 0;

	-webkit-animation: 1s anim-lightspeed-in ease forwards;

	        animation: 1s anim-lightspeed-in ease forwards;
}
@-webkit-keyframes anim-lightspeed-in {
	0% {
		-webkit-transform: translateX(-200%);
		        transform: translateX(-200%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
		opacity: 1;
	}
}
@keyframes anim-lightspeed-in {
	0% {
		-webkit-transform: translateX(-200%);
		        transform: translateX(-200%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
		opacity: 1;
	}
}