:root {
  --aunt-back-top-size: calc(40 * var(--aunt-hd));
  --aunt-back-top-background-color: var(--aunt-background-color);
  --aunt-back-top-color: var(--aunt-text-color);
  --aunt-back-square-radius: var(--aunt-border-radius-lg);
}

.aunt-back-top {
  position: fixed;
  cursor: pointer;
}

.aunt-back-top__content {
  width: var(--aunt-back-top-size);
  height: var(--aunt-back-top-size);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--aunt-back-top-background-color);
  color: var(--aunt-back-top-color);
}

.aunt-back-top--square {
  border-radius: var(--aunt-back-square-radius);
}

.aunt-back-top--round {
  border-radius: var(--aunt-border-radius-max);
}