/* UT Back To Top version: 2026-05-28-1 */
.ut-back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease;
}

.ut-back-to-top[hidden] {
  display: none !important;
}

.ut-back-to-top svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.25));
}

.ut-back-to-top:hover {
  transform: scale(1.05);
}

.ut-back-to-top:active {
  transform: scale(0.95);
}

.ut-back-to-top:focus-visible {
  outline: 4px solid #ffe600;
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .ut-back-to-top {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}
