._msj_fondo{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	opacity: 0.95;
	z-index: 1000000;
}

._msj_contenedor{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-width:100%;
	z-index: 1000001;
	margin:0;
	display:flex;
	justify-content: center;
	align-items: center;
}

._box{
	flex-wrap: wrap;
   /* max-height: 80%;*/
    display: none;
    border-radius: 1em;
    box-shadow: 0 0 5em rgb(118, 118, 118);
    background-color: white;
    box-sizing: border-box;
    padding: 0;
    width: auto;
}

._box ._tit{
	text-align:left;
	font-weight: bold;
	padding:1.2em 2em;
	width:75%;
	box-sizing:border-box;
}

._msj_mostrar{
	animation-name: mostrar;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity:0;
	display:flex;
}

@keyframes mostrar {
	from{transform:scale(0); opacity:0;}
	to{transform:scale(1); opacity:1;}
}

._msj_next{
	animation-name: next;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes next{
	from{transform:scale(1); opacity:1;}
	25%{transform:scale(1.1);}
	to{transform:scale(0); opacity:0; }
}

._msj_close{
	animation-name: close;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
}

@keyframes close{
	from{transform:scale(1); opacity:1;}
	25%{transform:scale(1.1);}
	to{transform:scale(0); opacity:0; }
}

._msj_fondo_close{
	animation-name: fondo_close;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes fondo_close{
	from{}
	to{opacity:0;}
}

._box ._tit img{
	height:1.5em;
	vertical-align:text-bottom;
	margin-right: 0.5em;
}

._box ._content img{
	max-width:100%;
	max-height:100%;
}

._box ._cerrar{
	text-align:right;
	font-weight:bold;
	color:rgba(255,255,255,.85);
	text-shadow: 1px 1px 1px black;
	padding:1em 1.5em 0.5em 0;
	width:25%;
	box-sizing:border-box;
	cursor:pointer;
}

._box ._content{
	padding:2.5em;
	/*max-height:80%;*/
	/*overflow: auto;*/
	box-sizing:border-box;
	width:100%;
}

._box ._carga{
	width:10em;
}

._transparente{
	background:transparent !important;
	box-shadow:none !important;
}