@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  html.combainer-custom-cursor,
  html.combainer-custom-cursor * {
    cursor: none !important;
  }

  .combainer-cursor-dot,
  .combainer-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2147483647;
    display: block;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  }

  .combainer-cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--green, #31cb22);
    outline: 1px solid rgba(20, 24, 20, 0.82);
    outline-offset: 0;
    transition:
      opacity 0.14s ease,
      width 0.16s ease,
      height 0.16s ease,
      outline-color 0.16s ease;
  }

  .combainer-cursor-ring {
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(49, 203, 34, 0.64);
    outline: 1px solid transparent;
    outline-offset: 1px;
    background: transparent;
    transition:
      width 0.18s ease,
      height 0.18s ease,
      border-color 0.18s ease,
      outline-color 0.18s ease,
      background-color 0.18s ease,
      opacity 0.14s ease;
    will-change: transform;
  }

  html.combainer-custom-cursor.combainer-cursor-visible .combainer-cursor-dot,
  html.combainer-custom-cursor.combainer-cursor-visible .combainer-cursor-ring {
    opacity: 1;
  }

  .combainer-cursor-ring.is-interactive {
    width: 44px;
    height: 44px;
    border-color: var(--green, #31cb22);
    outline-color: rgba(20, 24, 20, 0.52);
    background: rgba(49, 203, 34, 0.1);
  }

  .combainer-cursor-ring.is-pressed {
    width: 30px;
    height: 30px;
  }

  .combainer-cursor-dot.is-interactive {
    width: 6px;
    height: 6px;
    outline-color: rgba(20, 24, 20, 0.92);
  }
}
