@-webkit-keyframes ball-grid-pulse {
  0% {
    -webkit-transform : scale(1);
            transform : scale(1);
  }
  50% {
    -webkit-transform : scale(0.5);
            transform : scale(0.5);
    opacity : 0.7;
  }
  100% {
    -webkit-transform : scale(1);
            transform : scale(1);
    opacity : 1;
  }
}

@keyframes ball-grid-pulse {
  0% {
    -webkit-transform : scale(1);
            transform : scale(1);
  }
  50% {
    -webkit-transform : scale(0.5);
            transform : scale(0.5);
    opacity : 0.7;
  }
  100% {
    -webkit-transform : scale(1);
            transform : scale(1);
    opacity : 1;
  }
}

.ball-grid-pulse {
  width : 57px;
}
.ball-grid-pulse > div:nth-child(1) {
  -webkit-animation-delay : 0.69s;
          animation-delay : 0.69s;
  -webkit-animation-duration : 1.41s;
          animation-duration : 1.41s;
}
.ball-grid-pulse > div:nth-child(2) {
  -webkit-animation-delay : 0.61s;
          animation-delay : 0.61s;
  -webkit-animation-duration : 1.25s;
          animation-duration : 1.25s;
}
.ball-grid-pulse > div:nth-child(3) {
  -webkit-animation-delay : -0.09s;
          animation-delay : -0.09s;
  -webkit-animation-duration : 1.25s;
          animation-duration : 1.25s;
}
.ball-grid-pulse > div:nth-child(4) {
  -webkit-animation-delay : -0.08s;
          animation-delay : -0.08s;
  -webkit-animation-duration : 0.99s;
          animation-duration : 0.99s;
}
.ball-grid-pulse > div:nth-child(5) {
  -webkit-animation-delay : 0.31s;
          animation-delay : 0.31s;
  -webkit-animation-duration : 0.91s;
          animation-duration : 0.91s;
}
.ball-grid-pulse > div:nth-child(6) {
  -webkit-animation-delay : -0.04s;
          animation-delay : -0.04s;
  -webkit-animation-duration : 1.04s;
          animation-duration : 1.04s;
}
.ball-grid-pulse > div:nth-child(7) {
  -webkit-animation-delay : 0.07s;
          animation-delay : 0.07s;
  -webkit-animation-duration : 0.99s;
          animation-duration : 0.99s;
}
.ball-grid-pulse > div:nth-child(8) {
  -webkit-animation-delay : 0.16s;
          animation-delay : 0.16s;
  -webkit-animation-duration : 1.09s;
          animation-duration : 1.09s;
}
.ball-grid-pulse > div:nth-child(9) {
  -webkit-animation-delay : 0.4s;
          animation-delay : 0.4s;
  -webkit-animation-duration : 0.99s;
          animation-duration : 0.99s;
}
.ball-grid-pulse > div {
  background-color : #404E67;
  width : 15px;
  height : 15px;
  border-radius : 100%;
  margin : 2px;
  -webkit-animation-fill-mode : both;
          animation-fill-mode : both;
  display : inline-block;
  float : right;
  -webkit-animation-name : ball-grid-pulse;
          animation-name : ball-grid-pulse;
  -webkit-animation-iteration-count : infinite;
          animation-iteration-count : infinite;
  -webkit-animation-delay : 0;
          animation-delay : 0;
}