#toTop {
  position: fixed;
  right: 15px;
  opacity: 0;
  visibility: hidden;
  bottom: 15px;
  z-index: 999;
  transition: 0.35s;
  transform: scale(0.7);
  width: 40px;
  height: 40px;
  background-color: #eaa16c;
  opacity: 1;
  transition: all 0.3s;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
#toTop.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
#toTop:after {
  font-family: "ElegantIcons";
  content: "2";
  position: relative;
  display: block;
  top: 50%;
  transform: translateY(-50%);
}
#toTop:hover {
  background-color: #978667;
}/*# sourceMappingURL=scroll-top.css.map */