h1, h2, h3, h4, h5 {
	margin:0;
	padding:0;
}
.btn-open-modal{
	/*position:absolute;*/
	top:10%;
	left:50%;
	display:block;
	padding:5px;
	font-size:12px;
	border: 1px #0033CC solid;
	border-radius:10px;
	margin:3px;
	width:100%;
	min-width:80px;
	text-align:center;
}
.btn-open-modal:hover{	
	background-color: rgb(44,47,111);
	color:#FFF;

}

.container-all{
	width:100%;
	height:100%;
	top:0;
	left:0;
	position: absolute;
	visibility: hidden;
	opacity:0;
	z-index:1;
	transition:all 600ms;
	
}
.container-all:target{
	background:rgba(0,0,0,0.6);
	visibility: visible;
	opacity:1;
	
}
.popup{
	width:90%;
	max-width:700px;
	height: 80%;
	max-height:320px;
	padding:10px;
	background:#FFF;
	opacity:1;
	border-radius:18px;
	position:relative;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}
	
.img{
	width:100%;
	background-size:cover;
	background-position:center;
}

.container-text{
	padding:50px 10px;
	text-align:center;}
	
.containerbuscador{
	max-width:100%;
	display:flex;
	justify-content: center;
	}

.btn-close-popup{
	width:40px;
	height:40px;
	position:absolute;
	right:0px;
	top:0px;
	background: rgba(44,47,111);
	color:#FFF;
	border-radius:50%;
	line-height:10px;
	padding:15px;
	font-size:20px;
	font-weight:600;
	}
	
.botoncito{
	border: 1px #0033CC solid;
	border-radius:10px;
	text-align:center;
	padding: 2px 1px;
}
.botonlimpiar{
	background-color:#FFF;
	color:#009;	
	border: 1px #009 solid;
	border-radius:10px;
	text-align:center;
	display:block;
	padding: 5px;
	width: 100%;
	max-width:400px;
}
.botonlimpiar:hover{
	background-color: rgb(44,47,111);
	color:#FFF;
}

@media screen and (min-width: 880px){
	.popup{
	height:440px;}
	
	.btn-open-modal{
	min-width:100px;}


	
}