/* @media screen and (min-width: 767px) { */


/*TODO: damit cusorformattierung nur bei Devices mit Maus funktioniert @media (hover: hover) d.h. erste Zeile hinzufügen*/

@media (hover: hover) {
    #pointer-dot {
        left: 0;
        top: 0;
        width: 0;
        height: 0;
        border: 2.5px solid black;
        position: fixed;
        border-radius: 4px;
        z-index: 101;
        pointer-events: none;
        transition: border-color 0.5s;
    }
    #pointer-ring {
        left: 0;
        top: 0;
        width: 0;
        height: 0;
        padding: 15px;
        border: 2px solid black;
        position: fixed;
        border-radius: 150px;
        z-index: 102;
        pointer-events: none;
    }
    /* html {
        cursor: none !important;
    } */
    a {
        cursor: none !important;
    }
}