#cursorEffects{

    position:fixed;

    inset:0;

    width:100vw;
    height:100vh;

    pointer-events:none;

    z-index:999998;

}

/* ==========================================
   Welding Effects
========================================== */

#cursorEffects {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 999998;
}

/* Отключаем эффекты на мобильных */
@media (pointer: coarse) {
    #cursorEffects {
        display: none !important;
    }
}

@media (max-width: 1024px) and (pointer: fine) {
    #cursorEffects {
        display: none !important;
    }
}