.containerbuscador {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 6px;
	background: #2C2F6F;
	padding: 10px 16px;
	width: 100%;
	box-sizing: border-box;
}

.formbuscador {
	display: contents;
}

.containerbuscador .btn-open-modal,
.containerbuscador #boton1,
.containerbuscador #boton2 {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	color: #FFF;
	padding: 10px 18px;
	border-radius: 12px;
	font-size: 13px;
	font-family: inherit;
	background: rgba(255,255,255,0.12);
	text-decoration: none;
	border: none;
	cursor: pointer;
	min-width: 80px;
	transition: background 0.2s;
}

.containerbuscador .btn-open-modal:hover,
.containerbuscador #boton1:hover,
.containerbuscador #boton2:hover {
	background: rgba(255,255,255,0.25);
	color: #FFF;
}

.containerbuscador .material-symbols-outlined {
	font-size: 20px;
	margin-right: 6px;
}

.container_resultados{
	background-color: #F4F4F4;
	}

.contenido_resultados{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	width:100%;
	max-width:1300px;
	margin: 0 auto;
}
.fotoprop{
	width: 95%;
	height: 300px;
	object-fit: cover;
	border-radius:20px;
}
.foto_thumb{
	width:180px;
	height:100px;
	object-fit:cover;
	display: inline;
	
}


.cajaresultado{
	border-radius:20px;
	background:#FFF;
	padding:0 10px;
	margin: 10px;
	box-shadow: 2px 2px 10px 5px rgba(0, 0, 0, 0.2);
	width:95%;}
	
.botonlimpiar {
	display: inline-block;
	padding: 8px 18px;
	background: #C73139;
	color: #FFF;
	border-radius: 12px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	margin-top: 8px;
	transition: background 0.2s;
}
.botonlimpiar:hover {
	background: #a0222a;
	color: #FFF;
}

.cajagris{
	background:#F2F2F2;
	font-size:16px;
	padding:10px;
	margin: 0;
	width:100%;}
	
.caja{
	font-size:16px;
	padding:10px;
	margin: 0;
	width:100%;}
	
.derecha
{	text-align:right; }
.centrado
{	text-align: center; }
.izquierda
{	text-align: left; }
.subtitulo{
	font-size:16px;
	font-weight:bold;
	}

/* ------------------- Paginación ------------------- */
.paginacion {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 16px 10px;
    width: 100%;
}

.pag-btn {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    background: #fff;
    color: #2C2F6F;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.15);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    border: none;
}

.pag-btn:hover {
    background: #2C2F6F;
    color: #fff;
}

.pag-actual {
    background: #C73139;
    color: #fff;
    cursor: default;
    box-shadow: none;
}

.pag-actual:hover {
    background: #C73139;
    color: #fff;
}

.pag-disabled {
    opacity: 0.35;
    cursor: default;
    box-shadow: none;
}

.pag-disabled:hover {
    background: #fff;
    color: #2C2F6F;
}

.pag-nav {
    font-weight: 600;
}

.pag-dots {
    padding: 8px 4px;
    color: #888;
    font-size: 15px;
}

@media screen and (min-width: 600px){

.cajaresultado{	width:45%;}
	
}

@media screen and (min-width: 1080px){

.cajaresultado{	width:30%;}
	
}