/**
 * Plugin Name: Sustra Scroll To Top
 * Description: Dodaje przycisk powrotu na górę strony.
 * Version: 1.0.0
 * Author: Jakub Klonowski-Rosploch
 * Update URI: https://sustra.pl/plugins/sustra-scrolltop
 */

.scroll-top-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #733449;
  border: solid 2px #e4dad8;
  position: fixed;
  right: 20px;
  bottom: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;

  z-index: 9999;
}

.scroll-top-button.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top-icon {
  width: 12px;
}

.scroll-top-icon path {
  fill: #fff;
}
