.centerContainer {
  pointer-events: none;
  position: absolute;
  width: 100%;
  max-width: 800px;
  height: 440px;
  margin: -220px 0 0 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  left: 50%;
  top: 55%;  
  overflow: hidden;
}

.skillsBars {
  width: 80%;
  max-width: 800px;
  height: 440px;
  margin: auto;
  position: relative;
  font-family: 'Titillium Web', sans-serif;
  font-size: 14px;
  list-style:none; 
}

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

.lines .line {
  height: inherit;
  width: 2px;
  position: absolute;
  background: rgba(128, 128, 128, 0);
  margin-top: 30px;
  list-style:none; 
}

.lines .line.l--33 {
  left: 37.2%;
}

.lines .line.l--66 {
  left: 68.2%;
}

.lines .line.l--99 {
  left: calc(100% - 1px);
}

.lines .line .line__label {
  display: block;
  width: 100px;
  text-align: center;
  position: absolute;
  top: -30px;
  right: -50px;
  font-size: 16px;
  color: grey;
}

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

.chart {
  margin: 30px 20px 0;
}

.chart:first-child {
  margin: 0;
}

.chart__label {
  display: block;
  margin: 0 0 10px;
  font-weight: bold;
  opacity: 0;
  /*animation: 1s anim-lightspeed-in ease forwards;*/
}

/*.chart__label {
  animation-delay: 3s;
}*/

.chart--horiz {
  list-style:none; 
}

.chart__bar {
  height: 25px;
  margin-bottom: 10px;
  background: -webkit-gradient(linear, right top, left top, from(#3fffff), to(#38f19f));
  background: linear-gradient(to left, #3fffff, #38f19f);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  opacity: 0;
  /*animation: 1s anim-lightspeed-in ease forwards;*/
  overflow: hidden;
}

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

.chart__bar:nth-of-type(11) span{
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}
.chart__bar:nth-of-type(10) span{
  -webkit-animation-delay: 3.0s;
          animation-delay: 3.0s;
}
.chart__bar:nth-of-type(9) span{
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
.chart__bar:nth-of-type(8) span{
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.chart__bar:nth-of-type(7) span{
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.chart__bar:nth-of-type(6) span{
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.chart__bar:nth-of-type(5) span{
  -webkit-animation-delay: 2.0s;
          animation-delay: 2.0s;
}
.chart__bar:nth-of-type(4) span{
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.chart__bar:nth-of-type(3) span{
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.chart__bar:nth-of-type(2) span{
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.chart__bar:nth-of-type(1) span{
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.chart__bar[data-skill='33'] {
  width: 33%;
}
.chart__bar[data-skill='66'] {
  width: 66%;
}
.chart__bar[data-skill='100'] {
  width: 100%;
}

.chart__label {
  padding-left: 4px;
  line-height: 30px;
  color: grey;
}

@-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;
  }
}

/************************************************************************************
MEDIA QUERIES
*************************************************************************************/

/* for 800px or less */
@media screen and (max-width: 800px) {
  .skillsBars {
    max-width: 620px;
    left: -10px;
  }

  .lines .line .line__label {
    right: -42px;
  }
}

/* for 639px or less */
@media screen and (max-width: 639px) {
  .skillsBars {
    max-width: 460px;
    left: -20px;
  }

  .lines .line .line__label {
    right: -42px;
  }
}

/* for 479px or less */
@media screen and (max-width: 479px) {
  .skillsBars {
    max-width: 300px;
    left: 0px;
  }

 .lines .line .line__label {
    right: -24px;
  }

  .charts {
    left: -20px;
  }
}