/*****modification eleo*****/
/****mbola à reglena xD****/
.cursor_p{
    display: none;
    position: fixed;
    transition: 0.6s ease-out;
    z-index: -1;
    
}
/* .cursor{
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.123);
    width: 35px;
    height: 35px;
    border: 1px solid var(--c-principal);
    
    border-radius: 50%;
    transition: 0.2s ease-out;
    z-index: 999;
    mix-blend-mode: difference;
    transform-origin: center;
    transform-box: fill-box;
       
}


@keyframes c_disapear {
    0%{
        width: 35px;
        height: 35px;
        opacity: 0.4;
        transform: translateY(0px);
    }
    90%{

        opacity: 0;
        width: 70px;
        height: 70px;
        transform: translateY(0px);
    }
    100%{

        opacity: 0;
        width: 70px;
        height: 70px;
        transform: translateY(1000px);
    }
}

@keyframes c_appear {
    0%{
        transform: translateY(0px);
        opacity: 0;
        width: 70px;
        height: 70px;
    }
    100%{
        
        transform: translateY(0px);
        width: 35px;
        height: 35px;
        opacity: 0.7;
    }
}


.cursor_c{
    
    position: fixed;
    transition: 0.4s ease-out;
    background-color: rgb(0, 174, 255);
    display: grid;
    align-items: center;
    justify-items: center;
    z-index: 999;
    /* background-color: #B2A7A7; */
    
}
.cursor2{
    position: absolute;
    display: grid;
    
    /* background-color: rgb(24, 13, 13); */
    justify-self: center;
    align-self: center;
    transform-origin: center;
    transform-box: fill-box;
    animation: rotate_c 2s linear infinite; 
}


.cursor2 div{
    position: absolute;
    width: 5px;
    height: 4px;
    border-radius: 2px;
    background-color: rgb(85, 201, 255);
    align-self: center;
    justify-self: center;
    transition: 0.3s ease-in-out;
    
    
}
@keyframes rotate_c {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.sp0{
    transform: translateY(-3px) rotate(-90deg);
}
.sp1{
    transform: translateY(3px) translateX(-3px) rotate(-45deg);
}
.sp2{
    transform: translateY(3px) translateX(3px) rotate(45deg);
} */
