.scroll-to-top {
  display: none;
}
.scroll-to-top.fab {
  z-index: 1;
  position: fixed;
  margin: 40px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  pointer-events: none;
}
.scroll-to-top.fab.ready {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.scroll-to-top.fab.ready.is-active {
  pointer-events: initial;
  animation-name: appear;
  animation-duration: 150ms;
  animation-delay: 300ms;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-fill-mode: forwards;
}
.scroll-to-top.fab.ready.is-not-active {
  pointer-events: none;
  animation-name: disappear;
  animation-duration: 250ms;
  animation-delay: 0s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-fill-mode: forwards;
}
.scroll-to-top.fab--bottom-right {
  bottom: 0;
  right: 0;
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes disappear {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.scroll-to-top.fab.is-style-travel {
  background: #192024;
  color: #ffffff;
}
.scroll-to-top.fab.is-style-travel img {
  fill: currentColor;
}
.scroll-to-top.fab.is-style-dining {
  background: #192024;
  color: #ffffff;
}
.scroll-to-top.fab.is-style-dining img {
  fill: currentColor;
}