/* =========================================================================
   Component: Scroll-to-top button
   ========================================================================= */
.evox-scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--evox-primary);
  border-radius: 50%;
  background-color: var(--evox-surface);
  box-shadow: var(--evox-shadow-button);
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.evox-scroll-top img {
  width: 1.25rem;
  height: 1.25rem;
}
