@charset "utf-8";

 @import url('jquery.fullpage.css');
 

#mouse_body {
   border-style: solid;
  border-width: 2px;
  border-color: #3a5fdc;
  border-radius: 32px;
  /* used just to add space from top */
   /* size of the mouse body */
  height: 43px;
  width: 23px;
  /* to center in browser */
  margin: 0 auto;
}

#mouse_wheel {
  border-style: solid;
  border-width: 2px;
  border-color: #3a5fdc;
  border-radius: 8px;
  background-color: #3a5fdc;
  /* position property required to play animation  */
  position: relative;
  height: 3px;
  width: 3px;
  /* to center wheel in mouse body */
  margin: 0 auto;
  -webkit-animation: wheel_animation 1.5s linear infinite;
          animation: wheel_animation 1.5s linear infinite;
}

/* include use -moz-, -webkit-, or -o- for respective browser type*/
@-webkit-keyframes wheel_animation {
  0% {
    opacity: 0;
    top: 2px;
  }
  50% {
    opacity: 1;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 33px;
  }
}
@keyframes wheel_animation {
  0% {
    opacity: 0;
    top: 2px;
  }
  50% {
    opacity: 1;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 33px;
  }
}

 