#popup-inicio{
	background-color: rgba(255, 40, 40, 0.40);
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
}

.contendor-anuncio{
	width: 450px;
	min-width: 320px;
	height: auto;
	background-color: #000;
	padding: 15px;
	position: relative;
	box-sizing: border-box;
}

.contendor-anuncio .cerrar-anuncio{
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 25px;
	background: #C83939;
	position:absolute;
	padding: 10px;
	right: 0;
	top: 0;
}

.contendor-anuncio .cerrar-anuncio:hover{
	cursor: pointer;
	background: #3B5999;
}

.contendor-anuncio .anuncio{
	border: solid 2px #FFF;
	padding: 15px 25px;
	color: #FFF;
	text-align: center;
}

.contendor-anuncio .anuncio .titulo{
	font-size: 50px;
	border-top: solid 6px #FFF;
	border-bottom: solid 6px #FFF;
	padding: 30px 0;
	font-family: 'Roboto', Arial, sans-serif;
	display: inline-block;
}

.contendor-anuncio .anuncio .subtitle, .mensaje{
	font-size: 30px;
	line-height: 120%;
	margin: 50px 0;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-weight: 700;
	display:inline-block;
}

.contendor-anuncio .anuncio .mensaje{
	font-size: 20px;
	line-height: 140%;
	margin-top: 0;
}

@media only screen and (max-width: 667px) {
	.contendor-anuncio{
		width: 100%;
	}

}


@media only screen and (max-width: 480px) {

	.contendor-anuncio .anuncio .titulo{
		font-size: 35px;
	}
	.contendor-anuncio .anuncio .subtitle{
		font-size: 25px;
		margin: 35px 0;
	}
	.contendor-anuncio .anuncio .mensaje{
		font-size: 18px;
	}

}