.showScrollToTopButton {
  @include max(mobile) {
      display: none !important;
  }
}

.scrollToTop {
  z-index: 1;
  border-radius: 50%;
  position: relative;
  background-color: var(--scroll-to-top-background-color);
  width: 64px;
  height: 64px;
  text-align: center;
  margin: 1rem;
  position: absolute;
  bottom: calc(100%);
  right: 0;

  &:before {
    @include arrow(#000, 2rem, up, false);
    position: absolute;
    bottom: calc(50% - 1.25rem);
    left: calc(50% - 1rem);
  }
}
