uix-scroll-top-anchor {
  margin: auto;
  display: flex;
  overflow: unset !important;
  flex-direction: column;
  background-color: var(--bg-content);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 8px !important;
  margin: 8px;
  justify-content: center;
  border-radius: 25px;
  transition: transform 0.1s ease-in-out, opacity 0.1s linear;
  opacity: 1;
  aspect-ratio: 1;
}
uix-scroll-top-anchor:hover {
  transform: scale(0.94);
  color: var(--text_accent_1);
}
uix-scroll-top-anchor:active {
  transform: scale(0.85);
  color: var(--text_accent_1);
}
uix-scroll-top-anchor.hidden {
  opacity: 0;
}
