#mouseCursor {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
  transform: translate3d(-100%, -100%, 0);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9997;
}
@media only screen and (max-width: 1023px) {
  #mouseCursor {
    display: none;
  }
}
#mouseCursor div {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: #fff;
  font-size: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale3d(var(--cursor-scale), var(--cursor-scale), 1);
  will-change: transform;
  transition: transform 150ms ease-in-out, background-color 150ms ease-in-out;
}
#mouseCursor div::after {
  content: attr(data-name);
  position: absolute;
  color: #fff;
  transform: scale(0.5);
  white-space: nowrap;
}

.cursor-text-mode {
  mix-blend-mode: initial !important;
}

.cursor-text-mode > div {
  background-color: rgba(7, 7, 7, 0.7) !important;
}