/*** Анимация мышки css3 ***/

.mouse {
  border: 2px solid #000;
  border-radius: 17px;
  height: 50px;
  width: 30px;
  display: block;
  z-index: 10;
  opacity: 0.7;
  margin: 20px auto;
}


.mouse .wheel {
  -webkit-animation-name: wheel;
          animation-name: wheel;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.mouse .wheel {
  position: relative;
  border-radius: 4px;
  background:#000;
  width: 2px;
  height: 7px;
  margin: auto;
}

@-webkit-keyframes wheel {
  0% {
    top: 3px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 18px;
    opacity: 0;
  }
}

@keyframes wheel {
  0% {
    top: 3px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 18px;
    opacity: 0;
  }
}
