body {

}

/* keyframes definition for WebKit browsers */

@-webkit-keyframes travel {
    from { left: 0;     }
    to   { left: 99%; }
}

@-webkit-keyframes bounce {
    from, to  {
        bottom: 0;
        -webkit-animation-timing-function: ease-out;
    }
    50% {
        bottom: 75%;
        -webkit-animation-timing-function: ease-in;
    }
}

@-webkit-keyframes spin {
    from {                                     }
    to   { -webkit-transform: rotateZ(360deg); }
}

/* keyframes definition for other browsers */

@keyframes travel {
    from { left: 0;     }
    to   { left: 99%; }
}

@keyframes bounce {
    from, to  {
        bottom: 0;
        animation-timing-function: ease-out;
    }
    50% {
        bottom: 75%;
        animation-timing-function: ease-in;
    }
}

@keyframes spin {
    from {
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#onestic-bouncing-animation-ball-holder {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999999999999;
}
#onestic-bouncing-animation-ball-holder.stop {
    display: none;
}

#onestic-bouncing-animation-ball-traveler {
    position: absolute;
    width: 20px;
    height: 100%;

    -webkit-animation-name: travel;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-duration: 3.8s;

    animation-name: travel;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 3.8s;
}

#onestic-bouncing-animation-ball-bouncer {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: transparent;
    background-position: center;
    background-size: cover;

    -webkit-animation-name: bounce, spin;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 2s;

    animation-name: bounce, spin;
    animation-iteration-count: infinite;
    animation-duration: 2s;
}