.moittry-cursor-halo {
  pointer-events: none;
  position: fixed;
  left: 0; top: 0;
  z-index: 99999 !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  box-shadow: 0 0 28px 12px rgba(220,255,195,0.33);
  transition: transform 0.12s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.16s;
  opacity: 0.80;
  mix-blend-mode: lighten;
  will-change: transform, opacity;
}
.moittry-cursor-halo--click {
  animation: moittryCursorPulse 0.33s cubic-bezier(0.4,0,0.2,1);
}
@keyframes moittryCursorPulse {
  0% { transform: scale(1); opacity:0.8;}
  50% { transform: scale(1.5); opacity:0.45;}
  100% { transform: scale(1); opacity:0.8;}
}
@media (max-width:700px) {
  .moittry-cursor-halo {display:none!important;}
}
