html,
body {
    cursor: none;
}

a,
button,
[role="button"],
.language-glass,
.language-option,
.theme-toggle {
    cursor: none !important;
}

.inner-cursor {
    position: fixed;
    left: 10px;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    mix-blend-mode: difference;
    border-radius: 50%;
    pointer-events: none;
    transition: width .5s, height .5s;
    z-index: 9999999999999999;
}

.inner-cursor.grow {
    width: 40px;
    height: 40px;
    transition: width .5s, height .5s;
    z-index: 9999999999999999;
}

.inner-cursor.grow:before {
    width: 10px;
    height: 10px;
    transition: width .5s, height .5s;
    z-index: 9999999999999999;
}

.inner-cursor.project-hidden,
.outer-cursor.project-hidden {
    opacity: 0;
}

.outer-cursor {
    position: fixed;
    left: 10px;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    border: 1px solid #FFF;
    border-radius: 50%;
    mix-blend-mode: difference;
    pointer-events: NONE;
    transition: .1s;
    z-index: 9999999999999999;
}

.project-cursor-label {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999999999;
    padding: 14px 18px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 0.68em;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-cursor-label.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 630px) {

    html,
    body {
        cursor: auto;
    }

    a,
    button,
    [role="button"],
    .language-glass,
    .language-option,
    .theme-toggle {
        cursor: auto !important;
    }

    .inner-cursor {
        position: absolute;
        left: 10px;
        width: 0;
        height: 0;
        transform: translate(-50%, -50%);
        background-color: #FFF;
        mix-blend-mode: difference;
        border-radius: 0%;
        pointer-events: none;
        transition: width .5s, height .5s;
        z-index: 9999999999999999;
    }

    .inner-cursor.grow {
        width: 0;
        height: 0;
        transition: width .5s, height .5s;
        z-index: 9999999999999999;
    }

    .inner-cursor.grow:before {
        width: 0;
        height: 0;
        transition: width .5s, height .5s;
        z-index: 9999999999999999;
    }

    .outer-cursor {
        position: fixed;
        left: 10px;
        width: 0;
        height: 0;
        transform: translate(-50%, -50%);
        border: 0px solid #FFF;
        border-radius: 50%;
        mix-blend-mode: difference;
        pointer-events: NONE;
        transition: .1s;
        z-index: 9999999999999999;
    }

    .project-cursor-label {
        display: none;
    }
}
