@-webkit-keyframes rotation{
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(360deg);}
}

#Rotation{  width:30px; height:30px; border-radius: 50%; overflow: hidden;
position: absolute ; right:15px; top:15px; z-index:20000; cursor: pointer;
}

#Rotation img{width:30px; height:30px; }


.Rotation{
    -webkit-transform: rotate(360deg);
    animation: rotation 3s linear infinite;
    -moz-animation: rotation 3s linear infinite;
    -webkit-animation: rotation 3s linear infinite;
    -o-animation: rotation 3s linear infinite;
}
