.scroll-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  cursor: pointer !important;
  opacity: 1;
  transition: opacity 0.12s ease-in-out;
}

.scroll-button:hover {
  background-color: var(--primary-dark-color);
}

.scroll-button:active {
  background-color: var(--primary-darker-color);
}

.scroll-button.hidden {
  opacity: 0;
  cursor: default !important;
}

.scroll-button-icon {
  margin-top: 2px;
  font-size: 1.4em;
  color: var(--web-text-color);
}
