@-webkit-keyframes ball-grid-pulse
{
    0%
    {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    50%
    {
        -webkit-transform: scale(.5);
                transform: scale(.5);

        opacity: .7;
    }
    100%
    {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
}

@-moz-keyframes ball-grid-pulse
{
    0%
    {
        -moz-transform: scale(1);
             transform: scale(1);
    }
    50%
    {
        -moz-transform: scale(.5);
             transform: scale(.5);

        opacity: .7;
    }
    100%
    {
        -moz-transform: scale(1);
             transform: scale(1);

        opacity: 1;
    }
}

@-o-keyframes ball-grid-pulse
{
    0%
    {
        -o-transform: scale(1);
           transform: scale(1);
    }
    50%
    {
        -o-transform: scale(.5);
           transform: scale(.5);

        opacity: .7;
    }
    100%
    {
        -o-transform: scale(1);
           transform: scale(1);

        opacity: 1;
    }
}

@keyframes ball-grid-pulse
{
    0%
    {
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1);
    }
    50%
    {
        -webkit-transform: scale(.5);
           -moz-transform: scale(.5);
             -o-transform: scale(.5);
                transform: scale(.5);

        opacity: .7;
    }
    100%
    {
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
}

.ball-grid-pulse
{
    width: 57px;
}
.ball-grid-pulse > div:nth-child(1)
{
    -webkit-animation-duration: .8s;
       -moz-animation-duration: .8s;
         -o-animation-duration: .8s;
            animation-duration: .8s; 
    -webkit-animation-delay: -.1s;
       -moz-animation-delay: -.1s;
         -o-animation-delay: -.1s;
            animation-delay: -.1s;
}
.ball-grid-pulse > div:nth-child(2)
{
    -webkit-animation-duration: .82s;
       -moz-animation-duration: .82s;
         -o-animation-duration: .82s;
            animation-duration: .82s; 
    -webkit-animation-delay: .36s;
       -moz-animation-delay: .36s;
         -o-animation-delay: .36s;
            animation-delay: .36s;
}
.ball-grid-pulse > div:nth-child(3)
{
    -webkit-animation-duration: .76s;
       -moz-animation-duration: .76s;
         -o-animation-duration: .76s;
            animation-duration: .76s; 
    -webkit-animation-delay: .14s;
       -moz-animation-delay: .14s;
         -o-animation-delay: .14s;
            animation-delay: .14s;
}
.ball-grid-pulse > div:nth-child(4)
{
    -webkit-animation-duration: .62s;
       -moz-animation-duration: .62s;
         -o-animation-duration: .62s;
            animation-duration: .62s; 
    -webkit-animation-delay: .17s;
       -moz-animation-delay: .17s;
         -o-animation-delay: .17s;
            animation-delay: .17s;
}
.ball-grid-pulse > div:nth-child(5)
{
    -webkit-animation-duration: 1s;
       -moz-animation-duration: 1s;
         -o-animation-duration: 1s;
            animation-duration: 1s; 
    -webkit-animation-delay: .16s;
       -moz-animation-delay: .16s;
         -o-animation-delay: .16s;
            animation-delay: .16s;
}
.ball-grid-pulse > div:nth-child(6)
{
    -webkit-animation-duration: 1.15s;
       -moz-animation-duration: 1.15s;
         -o-animation-duration: 1.15s;
            animation-duration: 1.15s; 
    -webkit-animation-delay: .17s;
       -moz-animation-delay: .17s;
         -o-animation-delay: .17s;
            animation-delay: .17s;
}
.ball-grid-pulse > div:nth-child(7)
{
    -webkit-animation-duration: .92s;
       -moz-animation-duration: .92s;
         -o-animation-duration: .92s;
            animation-duration: .92s; 
    -webkit-animation-delay: .71s;
       -moz-animation-delay: .71s;
         -o-animation-delay: .71s;
            animation-delay: .71s;
}
.ball-grid-pulse > div:nth-child(8)
{
    -webkit-animation-duration: 1.17s;
       -moz-animation-duration: 1.17s;
         -o-animation-duration: 1.17s;
            animation-duration: 1.17s; 
    -webkit-animation-delay: .46s;
       -moz-animation-delay: .46s;
         -o-animation-delay: .46s;
            animation-delay: .46s;
}
.ball-grid-pulse > div:nth-child(9)
{
    -webkit-animation-duration: .68s;
       -moz-animation-duration: .68s;
         -o-animation-duration: .68s;
            animation-duration: .68s; 
    -webkit-animation-delay: .27s;
       -moz-animation-delay: .27s;
         -o-animation-delay: .27s;
            animation-delay: .27s;
}
.ball-grid-pulse > div
{
    display: inline-block;
    float: left;

    width: 15px;
    height: 15px;
    margin: 2px;

    -webkit-animation-name: ball-grid-pulse;
       -moz-animation-name: ball-grid-pulse;
         -o-animation-name: ball-grid-pulse;
            animation-name: ball-grid-pulse;
    -webkit-animation-delay: 0;
       -moz-animation-delay: 0;
         -o-animation-delay: 0;
            animation-delay: 0; 
    -webkit-animation-iteration-count: infinite;
       -moz-animation-iteration-count: infinite;
         -o-animation-iteration-count: infinite;
            animation-iteration-count: infinite;

    border-radius: 100%;
    background-color: #55595c;

    -webkit-animation-fill-mode: both;
       -moz-animation-fill-mode: both;
         -o-animation-fill-mode: both;
            animation-fill-mode: both;
}
