*,
*::after,
*::before {
  cursor: none;
}

.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
  z-index: 1100;
}

.cursor-dot {
  width: 3px;
  height: 3px;
  border-radius: 0%;
  background-color: #ffffff;
}

.cursor-dot-outline {
  width: 10px;
  height: 10px;
  border: 1px solid rgb(255, 255, 255);
  background: #ffffff87;
  border-radius: 50%;
  /* mix-blend-mode: saturation; */
  
}