/* CSS Document */
.bg-grey {
	background: #F2F2F2;
}
.map,
#cargarMapa.active{
	height: 45vh;
	transition: .5s;
}
.btCercano {
	margin-bottom: 20px;
}
.filtros {
	width: 100%;
}
.filtros form {
	display: flex;
	flex-direction: column;
	gap:17px;
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
}
.filter-formato {
	gap:15px;
	display: flex;
	justify-content: center;
}
.filter-formato div {
	background: #FFF;
    padding: 10px 15px 3px 15px;
	box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.1);
	-webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.1);
}
.filter-locate {
	gap:15px;
	display: flex;
	justify-content: center;
}
.filter-locate .wrSelect label {
	margin-right: 10px;
}
.filter-locate .btn {
	margin: 0;
}
.filter-locate select {
    padding: 10px 15px 10px 15px;
	box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.1);
	-webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.1);
	height: auto;
	border:0 none;
	box-sizing: border-box;
}
.resultados {
	padding-top: 50px;
	padding-bottom: 80px;
}
.resultados h3 {
	margin-top: 0;
	padding-top: 0;
	font-size: 38px;
	line-height: 140%;
	font-weight: 400;
	color: #000;
	margin-bottom: 25px;
	text-align:center;
	
}
.local {
	border-bottom:2px solid #f0f0f0;
	padding: 24px;
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	transition: .5s;
}
.local.active {
	background: #f0f0f0;
}
.local .info {}
.local .info p {
	margin-bottom: 0;
}
.local .info span {}
.local .info h4 {
	margin-bottom: 0;
	transition: .5s;
}
.local.active .info h4 {
	color: #0053E2;
}
.local .btn {
	margin: 0;
}
@media(max-width:991px) {
	.filter-formato {
		flex-wrap: wrap;
	}
	.filter-formato div {
		flex-wrap: nowrap;
		display: flex;
		gap: 10px;
		flex-direction: row;
		align-items: stretch;
		padding-bottom: 10px;
	}
	.filter-formato div label {
		margin-bottom: 0;
		white-space: nowrap;
	}
	.filter-locate {
		flex-direction: column;
	}
	.filter-locate .wrSelect {
		width: 100%;
		text-align: center;
	}
	.filter-locate .btn {
		margin: auto;
	}
}
@media(max-width:528px) {
	.local {
		flex-direction: column;
		gap:15px;
	}
	.local .info {
		width: 100%;
	}
	.local .btn {
		white-space:nowrap; 
	}
}
