@import url(https://fonts.googleapis.com/css?family=Open+Sans);

ul{
     list-style-type: none;
}

.skills {
  width: 100%;
  max-width: 960px;
  height: 600px;
  /* margin: auto; */
  position: relative;
}

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

.line {
  height: inherit;
  width: 2px;
  position: absolute;
  background: rgba(238, 238, 238, 0.6);
}
.line.l--0 {
  left: 0;
}
.line.l--25 {
  left: 25%;
}
.line.l--50 {
  left: 50%;
}
.line.l--75 {
  left: 75%;
}
.line.l--100 {
  left: calc(100% - 1px);
}

.line__label {
  display: block;
  width: 100px;
  text-align: center;
  position: absolute;
  color: black;
}
.line__label.title {
  text-transform: uppercase;
  font-weight: bold;
}

.charts {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.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;
  padding-inline-start: 0px !important;
}

.chart__bar {
  height: 45px;
  margin-bottom: 10px;
  background: linear-gradient(to left, #4d3e66, #666699);
  border-top: 10px solid transparent;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.2);
  opacity: 0;
  text-align: left;
  transform: skewX(-45deg);

}

.chart--dev .chart__bar:nth-of-type(9) {
  background: linear-gradient(to left, #669977, #3E665C);
}
.chart--dev .chart__bar:nth-of-type(8) {
  background: linear-gradient(to left, #669988, #3E6366);
}
.chart--dev .chart__bar:nth-of-type(7) {
  background: linear-gradient(to left, #669999, #3E5666);
}
.chart--dev .chart__bar:nth-of-type(6) {
  background: linear-gradient(to left, #668899, #3E4966);


}
.chart--dev .chart__bar:nth-of-type(5) {
  background: linear-gradient(to left, #667799, #403E66);

}
.chart--dev .chart__bar:nth-of-type(4) {
  background: linear-gradient(to left, #666699, #4d3e66);
}
.chart--dev .chart__bar:nth-of-type(3) {
  background: linear-gradient(to left, #776699, #5A3E66);
}
.chart--dev .chart__bar:nth-of-type(2) {
  background: linear-gradient(to left, #886699, #663E64);
}
.chart--dev .chart__bar:nth-of-type(1) {
  background: linear-gradient(to left, #996699, #663E56);
}

/* .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;
  font-weight: bold;
  font-size: 20px;
  color: white;
  font-family: 'Overpass', sans-serif;
  font-weight: 200;
}

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

@keyframes bounceIn {
  0% {
    transform: scale(1.0);
    opacity: 1;
  }
  60% {
    transform: scale(1.04);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
