.modalDatos{
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    z-index: 100000;
}

.contenidoDatos{
    margin: auto;
    width: 40%;
    height: auto;
    background: rgba(255, 255, 255);
    border-radius: 2px;
}

@media (max-width:760px){
    .contenidoDatos{
        width: 45%;
    }
}
@media (max-width:710px){
    .contenidoDatos{
        width: 50%;
    }
}
@media (max-width:660px){
    .contenidoDatos{
        width: 55%;
    }
}
@media (max-width:610px){
    .contenidoDatos{
        width: 60%;
    }
}
@media (max-width:560px){
    .contenidoDatos{
        width: 65%;
    }
}
@media (max-width:510px){
    .contenidoDatos{
        width: 70%;
    }
}
@media (max-width:460px){
    .contenidoDatos{
        width: 75%;
    }
}
@media (max-width:410px){
    .contenidoDatos{
        width: 82%;
    }
}
@media (max-width:360px){
    .contenidoDatos{
        width: 90%;
    }
}