.Ventana{
    position: absolute;
    display: none;

    background-color: rgba(46, 46, 46, 0.9);
    width: 100%;
    height: 100vh;
    z-index: 3;
}

.VentPicInfo{
    background-color: rgb(255, 195, 155);
    width: 50%;
    
    padding: 9px;
    border-radius: 10px;
    overflow: auto;

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;

    display: flex;
    align-items: center;
    justify-items: center;

    transition: all 1s ease;
}

.BotonCerrar{
    width: 30px;
    height: 30px;

    position: absolute;
    right: 9px;
}

.TextInfoExpositor{
    width: 80%;
    height: 100%;
    padding: 15px;

    display: flex;
    align-content: center;
    text-align: justify;

    color: rgb(0, 0, 0);
}
.TextInfoExpositor > section{
    font-family: 'Montserrat';
    font-size: 16px;
}

.Cursiva{
    font-style: italic;
}

.status{
    display: none;
}

.VentPicInfo::-webkit-scrollbar{
	width: 7px;
}

.VentPicInfo::-webkit-scrollbar-thumb{
	background: linear-gradient(184deg, rgb(223, 85, 200) 0%, rgb(241, 130, 39)100%);
	border-radius: 5px;
}