/* ---------------------------------------------------------------------------------------------------------------------- */

/*  START CUSTOM CURSOR */

/* ---------------------------------------------------------------------------------------------------------------------- */

.cursor-custom-tear-effect {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    z-index: 9999;
    pointer-events: none;
}
/* darkmode theme */
body.light #cursor-custom, body.light .cursor-custom-tear-effect{
    background: var(--primary-color);
}
body.dark #cursor-custom, body.dark .cursor-custom-tear-effect{
    background: var(--primary-darkmode-color);
}

@keyframes cursorCustomApear {
    from {
        opacity: 0;
    } to {
        opacity: 1;
    }
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, i, a, u, b, a, strong {
    pointer-events: auto;
}

/* ---------------------------------------------------------------------------------------------------------------------- */

/*  END CUSTOM CURSOR */

/* ---------------------------------------------------------------------------------------------------------------------- */