/*--------------------------------GALERÍA PANTALLA COMPLETA*/
.ImagenGde, .videoDemoContainer{
	display: none;
	position: fixed;
	z-index: 2;
	width: 100%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	backdrop-filter: blur(30px);  
	-webkit-backdrop-filter: blur(30px);
	background-color: rgba(7, 1, 22, .8); /*<<<<<<<<<<<<<<<<<<<<<<<<<<Darkmode value*/
	top: 0;
	left: 0;
}
.contenedorBtnGalGde{
	display: flex;
	position:fixed;
	bottom: 20px;
	left: calc(50% - 50px);
	/*right: 30px;*/
	text-align: center;
	border-radius: 18px;
	width: fit-content;
	gap: 4px;
	padding: 4px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background-color: rgba(7, 1, 22, .5); /*<<<<<<<<<<<<<<<<<<<<<<<<<<Darkmode value*/
	box-shadow: 1px 0 4px rgba(0, 0, 0, .3);
}
#contenedorImgGde{
	position: absolute;
	/*keep aspect ratio*/
	max-height: 98%;
	max-width: 98%;
	height: auto;
	width: auto;
	/*end keep aspect ratio*/
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .3);
    z-index: -1;
}
.contenedorImg{
    margin: auto;
}
#siguiente, #anterior, #cerrar{
	display: flex;
	justify-content: center;
	transition: .5s;
	min-width: 30px;
	cursor: pointer;
	padding: 4px;
	border-radius: 15px;
	color: white; /*<<<<<<<<<<<<<<<<<<<<<<<<<<Darkmode value*/
	background-color: gray; /*<<<<<<<<<<<<<<<<<<<<<<<<<<Darkmode value*/
}
#siguiente:hover, #anterior:hover{
	transition: .5s;
	background-color: #4c61b6;
	color: white;
}
#cerrar:hover{
	transition: .5s;
	background-color: #CA0003;
	color: white;
}
#tituloGal{
	display: block;
	position: fixed;
	top: 20px;
	left: calc(50% - 70px);
	/*left: 30px;*/
	font-family: 'fira-sans'; font-weight: 400;
	font-size: 1.2em;
	padding: 5px;
	width: 120px;
	padding: 4px 15px;
	border-radius: 18px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: white; /*<<<<<<<<<<<<<<<<<<<<<<<<<<Darkmode value*/
	background-color: rgba(7, 1, 22, .5);
	box-shadow: 1px 0 4px rgba(0, 0, 0, .3);
}
#anterior img, #siguiente img, #cerrar img{width:.8em;margin: 4px;}