#magic-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}
#ball {
    width: 12px;
    height: 12px;
    border: none;
    background-color: #a8200c !important;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    position: absolute;
}
body, html {
    cursor: auto !important;
}
@media (max-width: 768px) {
    #magic-cursor {
        display: none;
    }
}