/* Use same queries as tailwindcss to brevent broken layouts! */
.go-to-top {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-50);
  bottom: 20px;
  right: 20px;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  cursor: pointer;
}

.go-to-top.shown {
  animation-timing-function: ease-in-out;
  animation-duration: var(--animation-normal);
  animation-name: fadeIn;
  animation-fill-mode: forwards;
}

.go-to-top.hidden {
  animation-timing-function: ease-in-out;
  animation-duration: var(--animation-normal);
  animation-name: fadeOut;
  animation-fill-mode: forwards;
}