#popup_overlay {
	position: fixed;
	z-index: 99998;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#popup_container {
	font-family: Montserrat;
	font-size: 14px;
	min-width: 300px; /* Dialog will be no smaller than this */
	/* max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
	border: solid 3px #999;
	color: #000;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 20px;
	/* agregado */
	z-index: 99999;
	padding: 0;
	margin: 0;
	max-width:650px;
}


#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	background-color: #61A2C2;
	color: White;
	border: solid 2px White;
	cursor: default;
	padding: 0em;
	margin: 0em;
}


#popup_content {
	padding: 1em 1.75em;
	margin: 0em;
	text-align: center;
}

#popup_content {
	/*background: 16px 16px no-repeat url(images/error.png);*/
	overflow-y: auto;
	text-align: center;
}

/*#popup_content.confirm {
	background-image: url(images/information.png);
}

#popup_content.prompt {
	background-image: url(images/tick.png);
}*/


#popup_message {
	padding: 14px;
	/*padding-left: 48px;
	padding-top: 16px;*/
	clear: both;
}

#popup_panel {
	margin: 1em;
	clear: both;
	display: flex;
	justify-content: center;
}
	

#popup_Aceptar {
	margin-right: 15px;
	font-size: 16px;
}

#popup_Cancelar {
	font-size: 13px;
}

#popup_prompt {
	margin: .5em 0em;
}
