/* Cursor Effect — a7a5ce22 */
.ce-cursor-a7a5ce22 {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    will-change: transform;
    transform: translate(-50%, -50%) translate(var(--ce-x, -200px), var(--ce-y, -200px));
    opacity: 0;
    transition: opacity 0.25s ease, width 0.3s ease, height 0.3s ease;
}

.ce-cursor-a7a5ce22.ce-visible-a7a5ce22 {
    opacity: 1;
}

/* Hide on touch devices */
@media (hover: none) and (pointer: coarse) {
    .ce-cursor-a7a5ce22 {
        display: none !important;
    }
}
