.hslands-back-to-top {
  position: fixed;
  right: 20px;
  bottom: 108px;
  z-index: 99997;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(6, 119, 108, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #06776c;
  box-shadow: 0 10px 24px rgba(15, 60, 57, 0.16);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.hslands-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.hslands-back-to-top svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.hslands-back-to-top:hover,
.hslands-back-to-top:focus-visible {
  border-color: #087f73;
  background: #087f73;
  color: #fff;
  box-shadow: 0 13px 28px rgba(8, 127, 115, 0.3);
  outline: none;
}

.hslands-back-to-top:focus-visible {
  outline: 3px solid rgba(25, 161, 146, 0.28);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .hslands-back-to-top {
    right: 12px;
    bottom: calc(128px + env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }

  .hslands-back-to-top svg {
    width: 21px;
    height: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hslands-back-to-top {
    transition: none;
  }
}
