html,
body{
    overflow-x: hidden;
    cursor: none;
}

.cb-cursor{
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 9999;
    pointer-events: none;
    will-change: transform;
    transform: translate3d(0,0,0);
}

.cb-cursor:before{
    content: "";
    position: absolute;
    top: -24px;
    left: -24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    transform: scale(0);
    transition: transform .3s ease;
}

.cb-cursor-text{
    position: absolute;
    transform: translate3d(0,0,0);
}

.cb-cursor.-visible:before{
    transform: scale(.2);
}

.cb-cursor.-text:before{
    background: #000;
    opacity: .8;
    backdrop-filter: blur(10px);
    transform: scale(1.7);
}