
/////////////////////////////////////////////////////////////
#fla-body{
    a,[data-hover]{
        cursor: none !important;
    }
}
#fla-cursor-mouse {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vw;
    // border: 6px solid rgba(#ffffff, 1);
    border-radius: 50%;
    pointer-events: none;
    background-color: rgba(#ffffff,.9);
    mix-blend-mode: difference;
    // outline: 2px solid #ffffff;
    z-index: 999999999999;
    opacity: 0;
    transition: width .5s, height .5s, opacity .5s, outline-offset .5s, background-color .5s !important;
    // 
    font-size: 18px;
    display: grid;
    place-content: center;
    font-weight: 400;
    letter-spacing: 0.1em;
    font-family: $font-family;
    overflow: hidden;
    &.init {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    &.active {
        width: 80px;
        height: 80px;
        opacity: 1;
        mix-blend-mode: unset;
        border: 1px solid rgb(200, 200, 200);
    }
    &.hide {
        width: 0;
        height: 0;
        opacity: 0;
    }
}
