
.graphic_chart {
	width: 80%;
	height: 350px;
	max-width: 960px;
	margin: auto;
	position: relative;
	background: rgba(0,0,0,0.7);
}

.graphic_chart ul {
	list-style: none;
	padding: 0;
	padding-top: 5px;
}

.lines {
  height: 100%;
  position: relative;
}

.line {
  height: inherit;
  width: 2px;
  position: absolute;
}
.line.l--0 {
	left: 0;
	background: darkred;
}
.line.l--20 {
	left: 20%;
	background: red;
}
.line.l--40 {
	left: 40%;
	background: orangered;
}
.line.l--60 {
	left: 60%;
	background: orange;
}
.line.l--80 {
	left: 80%;
	background: yellow;
}
.line.l--100 {
	left: calc(100% - 2px);
	background: green;
}

.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__title {
  display: block;
  margin: 0 0 10px;
  font-weight: bold;
  opacity: 0;
  animation: 1s anim-lightspeed-in ease forwards;
}
.chart--prod .chart__title {
  animation-delay: 3.3s;
}
.chart--design .chart__title {
  animation-delay: 4.5s;
}**/

.chart--horiz {
  overflow: hidden;
}

.chart__bar {
	height: 28px;
    margin-bottom: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    opacity: 0;
    border: solid 1px #FFF;
  /*animation: 1s anim-lightspeed-in ease forwards;*/
}

.bar_red {background: linear-gradient(to left, #990000, #2c0202);}
.bar_redorange {background: linear-gradient(to left, #ff0000, #821111);}
.bar_orange {background: linear-gradient(to left, #FF5722, #FF9800);}
.bar_yellow {background: linear-gradient(to left, #FFEB3B, #dda80a);}
.bar_green {background: linear-gradient(to left, #8BC34A, #166c19);}

.marker {
	display: inline-block;
    position: absolute;
    right: -30px;
    top: -5px;
    background: #929292;
    font-size: 0.8em;
    font-weight: 700;
    padding: 0.5em;
    border-radius: 0.5em;
}


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

.chart--dev .chart__bar:nth-of-type(11) {
  animation-delay: 2.7s;
}
.chart--dev .chart__bar:nth-of-type(10) {
  animation-delay: 2.5s;
}
.chart--dev .chart__bar:nth-of-type(9) {
  animation-delay: 2.3s;
}
.chart--dev .chart__bar:nth-of-type(8) {
  animation-delay: 2.1s;
}
.chart--dev .chart__bar:nth-of-type(7) {
  animation-delay: 1.9s;
}
.chart--dev .chart__bar:nth-of-type(6) {
  animation-delay: 1.7s;
}
.chart--dev .chart__bar:nth-of-type(5) {
  animation-delay: 1.5s;
}
.chart--dev .chart__bar:nth-of-type(4) {
  animation-delay: 1.3s;
}
.chart--dev .chart__bar:nth-of-type(3) {
  animation-delay: 1.1s;
}
.chart--dev .chart__bar:nth-of-type(2) {
  animation-delay: 0.9s;
}
.chart--dev .chart__bar:nth-of-type(1) {
  animation-delay: 0.7s;
}
.chart--prod .chart__bar:nth-of-type(2) {
  animation-delay: 4.2s;
}
.chart--prod .chart__bar:nth-of-type(1) {
  animation-delay: 4s;
}
.chart--design .chart__bar:nth-of-type(3) {
  animation-delay: 5.6s;
}
.chart--design .chart__bar:nth-of-type(2) {
  animation-delay: 5.4s;
}
.chart--design .chart__bar:nth-of-type(1) {
  animation-delay: 5.2s;
}

.chart__label {
  padding-left: 10px;
  line-height: 30px;
  color: white;
}

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