.mouse-cursor {
    top: 0;
    left: 0;
    position: fixed;
    visibility: hidden;
    border-radius: 50%;
    pointer-events: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.cursor-inner {
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background: var(--gradient_bg1);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner.cursor-hover {
    width: 70px;
    height: 70px;
    opacity: 0.3;
    margin-top: -35px;
    margin-left: -35px;
    background: var(--gradient_bg1);
}
.cursor-outer {
    width: 30px;
    height: 30px;
    opacity: 0.5;
    z-index: 10000000;
    margin-top: -12px;
    margin-left: -12px;
    border: 1px solid var(--white);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.08s ease-out;
    -o-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}
.cursor-outer.cursor-hover {
    opacity: 0;
}