@media (min-width: 1024px) {
    .cursor-outer {
        border-radius: 100%;
        transition: all 200ms ease-out;
        position: fixed;
        pointer-events: none;
        left: 0;
        top: 0;
        transform: translate(calc(-50% + 15px), -50%);
        z-index: 999;
    }

    .cursor-inner {
        border-radius: 100%;
        position: fixed;
        transform: translate(-50%, -50%);
        pointer-events: none;
        transition: width .3s, height .3s, opacity .3s;
        z-index: 999;
    }
}

@media (max-width: 1023px) {
    .cursor-outer, .cursor-inner {
        display: none!important;
    }
}

/*
OG
.cursor-outer {

    width: 50px;
    height: 50px;

    border-radius: 100%;
    border: 1px solid black;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
}

.cursor-inner {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: black;
    opacity: .3;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
}


.cursor-hover {
    background-color: red;
    opacity: 0.5;
}

.cursor-inner__hover {
    width: 50px;
    height: 50px;
    opacity: .5;
}

 */