

@-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.19s;
    animation-delay: 0.19s;
    -webkit-animation-duration: 0.98s;
    animation-duration: 0.98s; }
.ball-grid-pulse > div:nth-child(2) {
    -webkit-animation-delay: 0.48s;
    animation-delay: 0.48s;
    -webkit-animation-duration: 1.58s;
    animation-duration: 1.58s; }
.ball-grid-pulse > div:nth-child(3) {
    -webkit-animation-delay: 0.58s;
    animation-delay: 0.58s;
    -webkit-animation-duration: 1.13s;
    animation-duration: 1.13s; }
.ball-grid-pulse > div:nth-child(4) {
    -webkit-animation-delay: 0.63s;
    animation-delay: 0.63s;
    -webkit-animation-duration: 0.98s;
    animation-duration: 0.98s; }
.ball-grid-pulse > div:nth-child(5) {
    -webkit-animation-delay: 0.06s;
    animation-delay: 0.06s;
    -webkit-animation-duration: 0.64s;
    animation-duration: 0.64s; }
.ball-grid-pulse > div:nth-child(6) {
    -webkit-animation-delay: 0.38s;
    animation-delay: 0.38s;
    -webkit-animation-duration: 0.85s;
    animation-duration: 0.85s; }
.ball-grid-pulse > div:nth-child(7) {
    -webkit-animation-delay: -0.06s;
    animation-delay: -0.06s;
    -webkit-animation-duration: 1.53s;
    animation-duration: 1.53s; }
.ball-grid-pulse > div:nth-child(8) {
    -webkit-animation-delay: 0.57s;
    animation-delay: 0.57s;
    -webkit-animation-duration: 0.76s;
    animation-duration: 0.76s; }
.ball-grid-pulse > div:nth-child(9) {
    -webkit-animation-delay: 0.73s;
    animation-delay: 0.73s;
    -webkit-animation-duration: 0.98s;
    animation-duration: 0.98s; }
.ball-grid-pulse > div {
    background-color: #ff8b29;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: inline-block;
    float: left;
    -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; }