.ecc-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, width, height, opacity;
  pointer-events: none;
}
.ecc-cursor.ecc--active { opacity: 1; }
.ecc-cursor .ecc-cursor-text {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  user-select: none;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
}
.ecc-cursor {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, width, height, opacity, background, filter;
  z-index: 2147483647 !important;
  isolation: isolate;
}

/* Jab Elementor se 'Hide Default Cursor' Yes ho */
body.ecc-hide-default-yes, 
body.ecc-hide-default-yes * {
    cursor: none !important;
}

/* Mobile par agar humne custom cursor disable kiya ho toh default cursor wapis dikhana paray ga */
@media (max-width: 1024px) {
    body.ecc-hide-default-yes.ecc-mobile-disabled, 
    body.ecc-hide-default-yes.ecc-mobile-disabled * {
        cursor: auto !important;
    }
}