#scrollToTop.scroll-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ff511a;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
  transition: all .3s ease;
}

#scrollToTop.scroll-to-top:hover {
  background: #43ba7f;
  color: #fff;
  transform: translateY(-3px);
}

#scrollToTop.scroll-to-top.is-visible {
  display: flex;
}
