#popup_notificacion {
	position: fixed;
	pointer-events: all;
	width: 100%;
	height: 100%;
	z-index: 999999;
	left: 0;
	top: 0;
	background-color: #000000aa;
	display: flex;
	justify-content: center;
	align-items: center;
}
#popup_notificacion > div {
	max-width: 90%;
	max-height: 90%;
	position: relative;
	/* background-color: #ffffff; */
}
#popup_notificacion > div > div.cerrar {
	position: absolute;
	right: 5px;
	top: 5px;
	z-index: 999999;
	cursor: pointer;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	color: #848484;
	background-color: #ffffff;
	border-radius: 2px;
	transition: ease all .3s;
	padding: 2px;
	gap: 5px;
	border: solid 1px #848484;
}
#popup_notificacion > div > div.cerrar > span {
	font-size: 11px;
	text-transform: uppercase;
}
#popup_notificacion > div > div.cerrar:hover{
	color: #494949;
}