.mouse,
.mouse:before {
  position: absolute;
  left: 50%;
}
.mouse {
  width: 40px;
  height: 70px;
  margin-left: -20px;
  bottom: 40px;
  margin-top: -35px;
  box-shadow: inset 0 0 0 3px #fff;
  border-radius: 25px;
  zoom: 0.65;
  z-index: 1;
}
.mouse:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
          animation-name: scroll;
}

.green{
  box-shadow: inset 0 0 0 3px #008402;
}


.green:before{
  background: #008402;
}

.black{
  box-shadow: inset 0 0 0 3px #000;
}


.black:before{
  background: #000;
}
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
            transform: translateY(46px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
            transform: translateY(46px);
  }
}