.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;
}
.arrastre{
    /*cursor: grab;*/
    position: sticky;
    top: 0;
    cursor:move;
    height:fit-content;/*35px;*/
    font-weight: 600; 
    font-size: large;
    /*text-align: center;*/
    display: flex;
    justify-content: space-around;
}
.arrastre:active{
    cursor: grabbing;
}
/*.principal:has(.open) .ventanaMovil{max-width:40vw;}*/

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