.mouse-wrap,.scroll-wrap {
	position: absolute;
	bottom: 50px;
	z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  &.left {
    left: 30px;
    transform: translateX(0%);
  }
}
.mouse {
  width: 30px;
  height: 50px;
  border-radius: 20px;
  border: 2px solid $gray-900;
  position: absolute;

  top: calc(50% - 30px);
  left: calc(50% - 20px);
}
.mouse:before, .mouse:after {
  content: "";
  display: block;
  position: absolute;
}


/* Second */
.m-1:before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 10px;
  left: calc(50% - 3px);
  background: $gray-900;
  -webkit-animation: m-1-ball 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
          animation: m-1-ball 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@-webkit-keyframes m-1-ball {
  0%, 65%, 100% {
    opacity: 0;
  }
  10%, 40% {
    opacity: 1;
  }
  0% {
    -webkit-transform: translateY(5px) scale(0.7);
            transform: translateY(5px) scale(0.7);
  }
  5% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  15%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45%, 65% {
    -webkit-transform: translateY(24px) scale(0.7);
            transform: translateY(24px) scale(0.7);
  }
}

@keyframes m-1-ball {
  0%, 65%, 100% {
    opacity: 0;
  }
  10%, 40% {
    opacity: 1;
  }
  0% {
    -webkit-transform: translateY(5px) scale(0.7);
            transform: translateY(5px) scale(0.7);
  }
  5% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  15%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45%, 65% {
    -webkit-transform: translateY(24px) scale(0.7);
            transform: translateY(24px) scale(0.7);
  }
}


.scroll-wrap {
  transition: .3s all ease-out;
  bottom: 50px;
  opacity: 1;
  visibility: visible; 
  &.sleep {
    bottom: 0;
    opacity: 0;
    visibility: hidden;
  }
}