﻿/* Spinner */
.let-the-ponies-run-sidebar {
    background-image: url("/images/spinner.png");
    position: absolute;
    margin: 0 auto;
    z-index: 99999999;
    margin-left: -190px;
    text-align: center;
    left: 50%;
    top: 30%;
    width: 380px;
    height: 380px;
    z-index: 10000;
    -webkit-animation: play .3s steps(11) infinite;
    -moz-animation: play .3s steps(11) infinite;
    -ms-animation: play .3s steps(11) infinite;
    -o-animation: play .3s steps(11) infinite;
    animation: play .3s steps(11) infinite;
    -webkit-animation-play-state: running; /* Chrome, Safari, Opera */
    animation-play-state: running;
    transform: scale(0.5);
}

.let-the-ponies-run {
    background-image: url("/images/spinner.png");
    position: fixed;
    margin: 0 auto;
    z-index: 99999999;
    margin-left: -190px;
    text-align: center;
    left: 50%;
    top: 30%;
    width: 380px;
    height: 380px;
    z-index: 10000;
    -webkit-animation: play .3s steps(11) infinite;
    -moz-animation: play .3s steps(11) infinite;
    -ms-animation: play .3s steps(11) infinite;
    -o-animation: play .3s steps(11) infinite;
    animation: play .3s steps(11) infinite;
    -webkit-animation-play-state: running; /* Chrome, Safari, Opera */
    animation-play-state: running;
}

@-webkit-keyframes play {
    from {
        background-position: 0px;
    }

    to {
        background-position: -4180px;
    }
}

@-moz-keyframes play {
    from {
        background-position: 0px;
    }

    to {
        background-position: -4180px;
    }
}

@-ms-keyframes play {
    from {
        background-position: 0px;
    }

    to {
        background-position: -4180px;
    }
}

@-o-keyframes play {
    from {
        background-position: 0px;
    }

    to {
        background-position: -4180px;
    }
}
/*end Spinner*/
