.screen{
    background: rgba(33, 41, 52, .85);
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    display: flex;
    position: fixed;
    z-index: 1100;
}

.screen .container{
    max-width: 80%;    
    margin: auto;
    background: #fff;
    box-shadow: 5px 5px 5px rgba(33, 41, 52, .75);
}

.pop{
    align-items: center;
    align-content: center;
    background-color: rgb(141, 204, 255);
    border-radius: 50%;
    display: flex;
    height: 40px;
    margin: 0.5em;
    width: 40px;
    position: fixed;
    z-index: 2000;
}

.pop:hover {
    background-color: rgb(236, 236, 236);
}

.pop p{
    margin: auto;
    font-family: Arial;
    color: rgb(0, 0, 0);
    font-size: 16pt;
    font-weight: bold;
    text-align: center;
}

.screen .container .image{
    max-width: 90%;
    margin: 1em;
    display: flex;
    justify-content: center;
}

.screen .container .image img{
    height: 200px;
    margin: auto;
    object-fit: cover;
}

#aux-information-user{
    display: grid; 
    grid-column-gap: 1em;
    grid-template-columns: 50% 50%;
    
}

#backbuttons{
    display: grid;
    grid-template-columns: 30% 70%;
}

#backbuttons .btn-return{
    margin: auto;
    width: 30px;
    border-radius: 50%;
    box-shadow: 3px 3px 3px #a3d4fe;
}

#backbuttons .btn-return:hover{
    background: #e2e2e2;
}


@media screen and (min-width: 1300px){
    .screen .container{
        max-width: 60%;
        display: grid;
        grid-template-columns: 70% 30%;
    }

    .screen .container .text .informacion{
        display: grid; 
        grid-template-columns: 50% 50%; 
        margin: 0em;
    }

}


@media screen and (max-width: 1300px){
    .screen .container{
        max-width: 80%;
        display: grid;
        grid-template-columns: 70% 30%;
    }

    .screen .container .text .informacion{
        display: grid; 
        grid-template-columns: 50% 50%; 
        margin: 0em;
    }

}

@media screen and (max-width: 850px){
    .screen .container{
        max-width: 90%;
        display: grid;
        grid-template-columns: 100%;
    }

    #aux-information-user{
        display: grid; 
        grid-template-columns: 100%; 
        margin: 0em;
    }
}
