/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */
.rd-scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-brand-orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 4;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.15);
  @media (min-width: 1280px) {
    display: none;
  }
}

.rd-scroll-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.rd-scroll-to-top__icon {
  width: 24px;
  height: 32px;
}
