html.js {
    cursor: none;
}

html.js a,
html.js button {
    cursor: none;
}

.cb-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(212, 212, 212, 0.85);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    mix-blend-mode: difference;
    transition: width .15s cubic-bezier(0.22, 1, 0.36, 1), height .15s cubic-bezier(0.22, 1, 0.36, 1);
}

.cb-cursor.-visible {
    opacity: 1;
}

.cb-cursor.-active {
    width: 13px;
    height: 13px;
}

.cb-cursor.-pointer {
    width: 28px;
    height: 28px;
}

.cb-cursor.-text {
    width: 72px;
    height: 72px;
}

.cb-cursor-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    letter-spacing: .08em;
    color: #0d0d0d;
    opacity: 0;
    transition: opacity 0.15s;
}

.cb-cursor.-text .cb-cursor-text {
    opacity: 1;
}