.prueba{
    position:fixed;
    display:none;
    top:0;
    left:0;
    width:100%;
    max-width:100%;
    height:100vh;
    background-color:rgba(0,0,0,0.88);
    z-index:999999999;
}
.prueba .zoom{
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
}
.prueba .zoom .contenido{
    width: auto;
    height: auto;
    background-color:#FFF;
    overflow: hidden;
}
.prueba .zoom .contenido img {
    height: auto;
    display: table;
}
input.cerrar,input.abrir{
    display:none;
}
label{
    display:block;
    cursor:pointer;
}
label.close{
    position:absolute;
    top: 0px;
    right: 10px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    margin:30px;
    width:60px;
    height:60px;
    font-size: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    border-radius: 50%;
    background: #98a82e;
    color:#fff;
    z-index: 9999;
}
label.open{
    position:relative;
    margin:0 auto;
    justify-content:center;
    align-items: center;
    flex-direction:column;
    float: right;
    color:#fff;
    font-size:3em;
}
@media screen and (max-width: 1100px){
    .prueba .zoom .contenido{
        width: 95%;
        max-width:none;
    }
    label.close{
        right: 30px;
    }
}@media screen and (max-width: 800px){
    .prueba .zoom .contenido{
        width: 90%;
        height: auto;
        max-width:none;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .prueba .zoom .contenido img {
        width: 100%;
        height: auto;
    }
    label.close{
        top: 10px;
        right: -15px;
    }

}