/* HOLE */
@import "compass/css3"

#hole {
  position: absolute;
  z-index: 2;
  height: 155px;
}

#hole i {
  text-align: center;
  left: 102px;
  top: -26px;
  display: block;
  position: absolute;
  width: 120px; /*$particleSize*/
  height: 120px; /*$particleSize*/
  border-radius: 120px; /*$particleSize*/
  opacity: 0;
  animation-name: scale;
  animation-duration: 5s; /*$lapDuration*/
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

#hole i:nth-child(1) {
  animation-delay: 0.5s; /* $i*($lapDuration/$particleSize) */
}

#hole i:nth-child(2) {
  animation-delay: 1s;
}

#hole i:nth-child(3) {
  animation-delay: 1.5s;
}

#hole i:nth-child(4) {
  animation-delay: 2s;
}

#hole i:nth-child(5) {
  animation-delay: 2.5s;
}

#hole i:nth-child(6) {
  animation-delay: 3s;
}

#hole i:nth-child(7) {
  animation-delay: 3.5s;
}

#hole i:nth-child(8) {
  animation-delay: 4s;
}

#hole i:nth-child(9) {
  animation-delay: 4.5s;
}

#hole i:nth-child(10) {
  animation-delay: 5s;
}

@keyframes scale {
  0% {
    transform: scale(2); 
    opacity: 0;
    box-shadow: 0px 0px 50px rgba(61,63,80,0.9);
  }
  50% {
    transform: scale(1) translate(0px, -5px);
    opacity: 1;
    box-shadow: 0px 8px 20px rgba(61,63,80,0.9);
  }
  100% {
    transform: scale(0.1) translate(0px, 5px);
    opacity: 0;
    box-shadow: 0px 10px 20px rgba(61,63,80,0);
  }
}
/* End HOLE */