/*
 * INDOJAWA88
 * Interactions: target highlight, back to top and reduced motion
 */

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid #c5d8cb;
  border-radius: 50%;
  color: var(--green);
  box-shadow: 0 4px 16px #16362314;
  font-size: 19px;
}

.search-target {
  outline: 3px solid #8abb9b;
  outline-offset: 5px;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none!important;
    animation: none!important;
  }

}
