
.graphic_chart {
	width: 95%;
	height: 600px;
	max-width: 960px;
	margin: auto;
	position: relative;
	background: #DEDEDE;
}

.graphic_chart ul {
	list-style: none;
	padding: 0;
	padding-top: 5px;
}

.lines {
	height: 100%;
	position: relative;
}

.line {
	background: #CCC;
	height: inherit;
	width: 2px;
	position: absolute;
}
.line.l--0 {left: 0;}
.line.l--20 {left: 20%;}
.line.l--40 {left: 40%;}
.line.l--60 {left: 60%;}
.line.l--80 {left: 80%;}
.line.l--100 {left: calc(100% - 2px);}

.line__label {
	display: block;
	width: 100px;
	text-align: center;
	position: absolute;
	bottom: -20px;
	right: -50px;
}
.line__label.title {
	text-transform: uppercase;
	font-weight: bold;
}

.charts {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 10;
}

.chart {
  margin: 30px 0 0;
}
.chart:first-child {
  margin: 0;
}


.chart--horiz {
  overflow: hidden;
}

.chart__bar {
	box-shadow: #AFAFAF 1px 3px 1px;
	background-color: #2196F3;
	height: 20px;
    margin-bottom: 8px;
    opacity: 0;
  	/*animation: 1s anim-lightspeed-in ease forwards;*/
}

.marker {
	display: inline-block;
    position: absolute;
    right: -10px;
    top: -5px;
    font-size: 0.8em;
    font-weight: 700;
    padding: 0.5em;
    border-radius: 0.5em;
	background-color: #FFF;
}


.grow_bars_chart {animation: 1s anim-lightspeed-in ease forwards;}

.chart--dev .chart__bar:nth-of-type(25) {animation-delay: 5.3s;}
.chart--dev .chart__bar:nth-of-type(24) {animation-delay: 5.1s;}
.chart--dev .chart__bar:nth-of-type(23) {animation-delay: 4.9s;}
.chart--dev .chart__bar:nth-of-type(22) {animation-delay: 4.7s;}
.chart--dev .chart__bar:nth-of-type(21) {animation-delay: 4.5s;}
.chart--dev .chart__bar:nth-of-type(20) {animation-delay: 4.3s;}
.chart--dev .chart__bar:nth-of-type(19) {animation-delay: 4.1s;}
.chart--dev .chart__bar:nth-of-type(18) {animation-delay: 3.9s;}
.chart--dev .chart__bar:nth-of-type(17) {animation-delay: 3.7s;}
.chart--dev .chart__bar:nth-of-type(16) {animation-delay: 3.5s;}
.chart--dev .chart__bar:nth-of-type(15) {animation-delay: 3.3s;}
.chart--dev .chart__bar:nth-of-type(14) {animation-delay: 3.1s;}
.chart--dev .chart__bar:nth-of-type(13) {animation-delay: 2.9s;}
.chart--dev .chart__bar:nth-of-type(12) {animation-delay: 2.7s;}
.chart--dev .chart__bar:nth-of-type(11) {animation-delay: 2.5s;}
.chart--dev .chart__bar:nth-of-type(10) {animation-delay: 2.3s;}
.chart--dev .chart__bar:nth-of-type(9) {animation-delay: 2.1s;}
.chart--dev .chart__bar:nth-of-type(8) {animation-delay: 1.9s;}
.chart--dev .chart__bar:nth-of-type(7) {animation-delay: 1.7s;}
.chart--dev .chart__bar:nth-of-type(6) {animation-delay: 1.5s;}
.chart--dev .chart__bar:nth-of-type(5) {animation-delay: 1.3s;}
.chart--dev .chart__bar:nth-of-type(4) {animation-delay: 1.1s;}
.chart--dev .chart__bar:nth-of-type(3) {animation-delay: 0.9s;}
.chart--dev .chart__bar:nth-of-type(2) {animation-delay: 0.7s;}
.chart--dev .chart__bar:nth-of-type(1) {animation-delay: 0.5s;}


.chart__label {
  padding-left: 10px;
  line-height: 20px;
  color: white;
}

@keyframes anim-lightspeed-in {
  0% {
    transform: translateX(-200%);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
