/* Supprime définitivement l'ancien gros curseur "VOIR" */
.project-cursor,
.project-cursor *,
.project-cursor-ring,
.project-cursor-core{
  display:none!important;
  opacity:0!important;
  visibility:hidden!important;
  pointer-events:none!important;
}

/* Règle unique : point jaune fluo simple partout */
html,body,body *,html *,body *::before,body *::after,
a,a *,button,button *,[role="button"],[role="button"] *,
input,textarea,select,label,[onclick],[data-cursor],[data-link],[data-href]{
  cursor:none!important;
}

.ic-fluo-cursor-final{
  position:fixed;
  left:0;
  top:0;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#d9ff00;
  border:0;
  outline:0;
  box-shadow:none;
  filter:none;
  pointer-events:none;
  z-index:2147483647;
  transform:translate(-50%,-50%);
  transition:width .25s ease,height .25s ease,opacity .25s ease;
}

body.ic-cursor-hover .ic-fluo-cursor-final{
  width:14px;
  height:14px;
}
