.target-cursor-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.target-cursor-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.target-cursor-corner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  will-change: transform;
}

.target-cursor-corner.corner-tl {
  transform: translate(-150%, -150%);
  border-right: none;
  border-bottom: none;
}

.target-cursor-corner.corner-tr {
  transform: translate(50%, -150%);
  border-left: none;
  border-bottom: none;
}

.target-cursor-corner.corner-br {
  transform: translate(50%, 50%);
  border-left: none;
  border-top: none;
}

.target-cursor-corner.corner-bl {
  transform: translate(-150%, 50%);
  border-right: none;
  border-top: none;
}

body.target-cursor-enabled {
  cursor: none;
}

body.target-cursor-enabled a,
body.target-cursor-enabled button,
body.target-cursor-enabled [role="button"] {
  cursor: none;
}

body.target-cursor-enabled input,
body.target-cursor-enabled textarea,
body.target-cursor-enabled select,
body.target-cursor-enabled summary,
body.target-cursor-enabled label,
body.target-cursor-enabled .contact-modal-close {
  cursor: auto;
}

@media (pointer: coarse), (max-width: 768px), (prefers-reduced-motion: reduce) {
  .target-cursor-wrapper {
    display: none !important;
  }

  body.target-cursor-enabled {
    cursor: auto;
  }
}
