
html, body, * {
  cursor: none;
}

.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  z-index: 99999;
  left: 50%;
  border-radius: 100%;
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  visibility: visible;
}

.cursor-dot.has-hover,
.cursor-dot-outline.has-hover {
  transform: translate(-50%, -50%) scale(4);
  opacity: 0.3;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background-color: #87a780;
  visibility: visible;
}

a {
  cursor: pointer !important;
}

.cursor-dot-outline {
  width: 20px;
  height: 20px;
  visibility: visible;
}

.cursor-dot-outline:after {
  border-radius: 50%;
  padding: 5px;
  border: 2px solid #87a780;
  position: absolute;
  content: "";
  top: -6px;
  left: -6px;
  bottom: -6px;
  right: -6px;
}
