.scrollContainer {
  position: fixed;
  bottom: 4%;
  right: 1.7%;
  width: 4%;
  height: 0;
  padding-bottom: 4%;
  border-radius: 50%;
  background-color: #E42313;
}

.mouse-icon {
  margin: 10% auto 0 auto;
  width: 40%;
  height: 0;
  padding-bottom: 72%;
  border: 2px solid white;
  border-radius: 15px;
  text-align: center;
  box-sizing: initial;
}

.mouse-wheel {
  height: 6px;
  margin: 2px auto 0;
  display: block;
  width: 3px;
  background-color: white;
  border-radius: 50%;
  -webkit-animation: 1.2s ease infinite wheel-up-down;
  -moz-animation: 1.2s ease infinite wheel-up-down;
  animation: 1.2s ease infinite wheel-up-down;
}

@keyframes wheel-up-down {
  0% {
    margin-top: 10%;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    margin-top: 70%;
    opacity: 0;
  }
}

/*# sourceMappingURL=scroll.css.map */
