#sprite {
position: absolute;
top: 160px;
right: -32px;
animation: move 70s linear infinite;
-webkit-animation: move 70s linear infinite;
z-index: 1000;
}
#sprite a {
display: block;
width: 32px;
height: 32px;
background: url(//www.info-d-74.com/wp-content/themes/nirvana-child/sprite/rabbit.png) 0px -32px no-repeat;
animation: anim 0.5s steps(3) infinite;
-webkit-animation: anim 0.5s steps(3) infinite;
}
@media screen and (max-width: 800px) {
#sprite {
display: none;
}
}
@keyframes anim {
form {
background-position: 0px -32px;
}
to {
background-position: -96px -32px;
}
}
@-webkit-keyframes anim {
form {
background-position: 0px -32px;
}
to {
background-position: -96px -32px;
}
} 
@keyframes move {
form {
right: -32px;
}
to {
right: 100%;
}
}
@-webkit-keyframes move {
form {
right: -32px;
}
to {
right: 100%;
}
}