.div_fondo 
{
	top:0px;
	left:0px;
	background:url("bg.png");
	background-repeat:repeat;
	width:100%;
	height:100%;
	position:fixed;
	z-index:1000;
	display:none;
}
.div_popup_escritorio
{
	width:500px;
	margin:auto;
	margin-top:40px;
	background-color:white;
	position:relative;
	padding-bottom:1px;
	border-radius:5px;
}
.div_popup_movil
{
	width:500px;
	margin:auto;
	margin-top:40px;
	background-color:#f1f2f2;
	/*background-color:#d9faff;*/
	position:relative;
	padding-bottom:1px;
	border-radius:5px;
	border: medium solid #333;
	display:none;
	font-size:20px;
}
.div_fondo img
{
	margin-bottom:10px;
}
.div_fondo button
{
	display:block;
	height:50px;
	width:100%;
	margin-bottom:10px;
	border-radius:20px;
	outline:none;
	font-size:20px;
	cursor:pointer;
	color:green;
	border-color:green;
	
}
.div_fondo button
{
	transition-duration: 0.4s;
}
.div_fondo button:hover
{
	background-color:green;
	color:white;
}
.boton_cerrar
{
	position:absolute;
	top:10px;
	right:25px;
	width:10px;
	height:10px;
	cursor:pointer;
}
.boton_cerrar img
{
	height:24px;
	width:24px;
}
.parrafo
{
	padding:10px;
}
.parrafo p
{
	text-align:center;
	font-family:arial;
}
@media only screen and (max-width:900px)
{
	.div_popup_escritorio
	{
		display:none;
	}
	.div_popup_movil
	{
		display:block;
		width:100%;
	}
}