.tcr-cursor {
  display: none;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .tcr-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    display: block;
    width: 18px;
    height: 18px;
    border: 2px solid #d92732;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, -50%, 0);
    transition: width 140ms ease, height 140ms ease, border-color 140ms ease, background-color 140ms ease, opacity 140ms ease;
  }

  .tcr-cursor.is-visible {
    opacity: .82;
  }

  .tcr-cursor.is-interactive {
    width: 30px;
    height: 30px;
    border-color: #003566;
    background: rgba(217, 39, 50, .08);
  }

  .tcr-cursor.is-pressed {
    width: 38px;
    height: 38px;
    opacity: .45;
  }

  .tcr-cursor.is-suppressed {
    opacity: 0;
  }
}
