.cursorbox {
  
}
.cursor {
    position: absolute;
    border: 4px solid #fff;
    /* background-color: #cc8d8a; */
    display: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    pointer-events: none;
    transition: transform 0.3s linear;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 4px 0px, rgba(0, 0, 0, 0.4) inset 0px 0px 4px 0px;
    /* mix-blend-mode: multiply; */
}

.cursor:before,
.cursor:after {
    top: -4px;
    left: -4px;
    border-radius: 50%;
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    animation: curcorAni 2s infinite;
}

@keyframes curcorAni {
    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255, 0.8);
    }

    50% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.cursor:before {
    animation-delay: 0.9s;
}

.cursor:after {
    animation-delay: 0.5s;
}
/* @media (max-width: 768px) {
    .cursorbox {
        display: none;
    }
} */