/* Large Devices, Wide Screens */
@media only screen and (min-width : 992px) {
    * {
        cursor: none !important;
    }
}

@media only screen and (min-width : 320px) and (max-width: 991px) {    
    .cursor2 {
        display: none;
    }

    .canvas {
        display: none;
    }
}

.cursor2 {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    opacity: 1;
    position: fixed;
    pointer-events: none;
    transition: 100ms transform ease;
    z-index: 100;
}

.cursor2 img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.2));
}

.canvas {
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    position: fixed;
    z-index: 99;
    pointer-events: none;
}