@media (pointer: fine) {
  html.once-custom-cursor,
  html.once-custom-cursor * {
    cursor: none !important;
  }

  .once-cursor {
    position: fixed;
    left: -100px;
    top: -100px;
    z-index: 2147483647;
    width: 28px;
    height: auto;
    pointer-events: none;
    opacity: 0;
    transform: none;
    transform-origin: 0 0;
    transition: opacity 120ms ease, transform 120ms ease;
    will-change: left, top, opacity, transform;
  }

  .once-cursor.is-visible {
    opacity: 1;
  }

  .once-cursor.is-pressed {
    transform: scale(0.92);
  }
}

@media (pointer: coarse) {
  .once-cursor {
    display: none !important;
  }
}
