@media (pointer: fine) {
  html.awc-arrow-cursor-enabled,
  html.awc-arrow-cursor-enabled * {
    cursor: none !important;
  }
}

.awc-follow-arrow-cursor {
  position: fixed;
  top: 0;
  left: -14px;
  z-index: 2147483647;
  width: 28px;
  height: 28px;
  opacity: 0;
  transform-origin: 50% 0%;
  transition: opacity 120ms ease;
  will-change: transform;
  pointer-events: none;
  user-select: none;
}

.awc-follow-arrow-cursor svg {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: 50% 0%;
  transition:
    transform 90ms ease,
    filter 90ms ease;
}

.awc-follow-arrow-cursor.is-clicking svg {
  filter: invert(1);
  transform: scale(0.78);
}

@media (prefers-reduced-motion: reduce) {
  .awc-follow-arrow-cursor,
  .awc-follow-arrow-cursor svg {
    transition: none;
  }
}

@media (hover: none), (pointer: coarse) {
  html,
  html * {
    cursor: auto !important;
  }

  .awc-follow-arrow-cursor {
    display: none !important;
  }
}
