.scroll-btn-wrapper {
  position: relative;
  z-index: 1;
  display: none;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .scroll-btn-wrapper {
    display: flex;
  }
}

.scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  animation: bounce 2s infinite;
  background-color: transparent;
  border: none;
  border-radius: 50%;
}
.scroll-btn:hover {
  animation-play-state: paused;
}
.scroll-btn:focus {
  outline: 2px solid #C05630;
  outline-offset: 2px;
}

.scroll-icon {
  width: 24px;
  height: 24px;
  fill: #fff;
}
@media only screen and (min-width: 768px) {
  .scroll-icon {
    width: 28px;
    height: 28px;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/*# sourceMappingURL=scroll-button.css.map */
