.scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999999;
  background:linear-gradient(to right, #27BCF4, #1798EB 80%);
  color: white;
  font-size: 1.5rem;
  border-radius: 50px;
  display: none;
  width: 56px !important;
  height: 56px !important;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.scrollToTop:hover {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  background:linear-gradient(to left, #27BCF4, #1798EB 80%);
  color: white;
}

.scrollToTop:hover>.iconScrollToTop {
  animation: animasiicon 0.7s infinite ease-in-out;
}

@keyframes animasiicon {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
/*# sourceMappingURL=scrollToTop.css.map */