.ventanaMovil{
    position: absolute;
    z-index: 100;
    max-width: 100vw;
    /*width: fit-content;*/
    resize: both;
    height: auto;
    border-radius: 8px ;
    overflow: auto;
    flex-shrink: 0;
    max-height: 100vh;
    /*
    background-color: rgba(var(--ventanaMovil-back), 1);
    border: 1px solid rgba(var(--side-back), 0.5);
    color: rgba(var(--ventanaMovil-color), 0.9);
    */
}
.arrastre{
    /*cursor: grab;*/
    cursor:move;
    height:20px; 
    /*background-color:rgb(35, 109, 176);*/
}
.arrastre:active{
    cursor: grabbing;
}
/*
.ventanaMovil:active{
    border:1px solid blue;
}
*/
.principal:has(.open) .ventanaMovil{max-width:40vw;}

/* Responsive */
@media (max-width:900px) {
    .ventanaMovil{
        max-width: 100vw !important;
        left:0 !important;
    }
}