
.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  z-index: 9999999999;
}

.cursor-dot {
  width: 14px;
  height: 14px;
  background-color: #ddacb0;
}

.cursor-dot-outline {
  width: 30px;
  height: 30px;    

box-shadow:  0 0 0 3px #ddacb0;
    background-color: #ddacb000;
}


.hoverstate .cursor-dot-outline{
box-shadow:  0 0 0 3px #ddacb0;
    background-color: #ddacb000;

}