._msj_fondo{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.7;
	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 black;
    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;
}

._box ._titulo{
	position:relative;
	top:-0.75em;
	color: gray;
}

._msj_mostrar{
	animation-name: _msj_mostrar;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity:0;
	display:flex;
}

@keyframes _msj_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 ._imgCerrar{
	height:1em;
	width:1em;
	transform:rotate(45deg);
	filter: invert(0.7);
	margin-left:0.25em;
	position:relative;
	top:-0.15em;
}

._box ._cerrar{
	cursor: pointer;
    position: absolute;
    top: 0.5em;
    right: 1.25em;
    padding: 0.1em 0em;
    font-size: 0.8em;
    background: transparent !important;
    box-shadow: none;
    border: none;
    font-weight: bold;
    color: black !important;
}

._box ._content{
	padding:3.5em;
	/*max-height:80%;*/
	/*overflow: auto;*/
	box-sizing:border-box;
	width:100%;
}

._msj_contenedor ._carga{
	/*width:5em;*/
}

._transparente{
	background:transparent !important;
	box-shadow:none !important;
}

@media (max-width:767px){
	._box ._content {
	    padding: 1.5em;
	    padding-top: 4em;
	}


	._box h5._titulo{
		/*left:1.5em !important;
		top:2em !important;*/
		font-size:1em !important;
		color:black !important;
	}
}