	/* Barra de scroll */
	.infoObraLateral::-webkit-scrollbar {
	  width: 12px;
	  margin-top: 2rem;
	}
	.infoObraLateral::-webkit-scrollbar-y {
	  height: 6px;
	}
	.infoObraLateral::-webkit-scrollbar-track {
	  background: white;
	}
	.infoObraLateral::-webkit-scrollbar-thumb {
	  background-color: #333333;
	  border-radius: 20px;
	  border: 3px solid white;
	}

	/* Contenedor mapa y panel lateral */
	.content-mapa {
       	height: calc(100vh - 75px);
		width: 100%;
		overflow: hidden;
		position: relative;
	}
	
	/* Panel lateral */
	.overlay {
		opacity: 0;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 76px;
		left: 0;
		background: #00000070;
		z-index: 1;
		transform: translateX(-100%);
	}
	.overlay.open {
		transform: translateX(0);
		animation: entradaOverlay .8s ease .5s forwards;
	}
	@keyframes entradaOverlay {
		from {
			opacity: 0;
			transform: translateX(0);
		}
		to {
			transform: translateX(0);
			opacity: 1;
		}
	}
	.wrapper-infoObraLateral {
		opacity: 0;
		position: absolute;
		top: 76px;
		padding-bottom: 76px;
		left: 0;
		width: 50%;
		background: white;
		height: 100%;
		z-index: 2;
		transform: translateX(-100%);
	}
	.wrapper-infoObraLateral.open {
		animation: entradaBox .8s ease .5s forwards;
	}
	@keyframes entradaBox {
		from {
			opacity: 0;
			transform: translateX(-25px);
		}
		to {
			transform: translateX(0);
			opacity: 1;
		}
	}
	.cerrar-infoObraLateral { 
		background: #42bfdb;
		color: white;
		cursor: pointer;
		position: absolute;
		right: 1rem;
		top: 5px;
		width: 30px;
		height: 30px;
		z-index: 9;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.cerrar-infoObraLateral:hover { 
		background: #2e8699;
	}
	.infoObraLateral {
		width: 100%;
		overflow-y: scroll;
		overflow-x: hidden;
		height: 100%;
	}	
	.loader-obra {
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: white;
		z-index: 10;
	}
	/* Mapa */
    #map {
       	height: calc(100vh - 151px);
       	width: calc(100%);
       	overflow: hidden;
    }

	/* Generales panel lateral */
	.infoObraLateral .single-obra .noticia-top {
		padding: 2rem;
		margin-bottom: 0; 
	}
	.infoObraLateral .single-obra .noticia-top:after {
		height: 700px;
	}
	.infoObraLateral .single-obra .noticia-top > .content {
		width: 100%;
		padding-top: 0;
		padding-left: 1rem;
		flex-wrap: wrap;
	}
	.infoObraLateral .single-obra .col-left {
		order: 4;
	}
	.infoObraLateral .single-obra .col-right{
		padding-left: 0;
		order: 3;
	} 
	.infoObraLateral .single-obra .col-left, 
	.infoObraLateral .single-obra .col-right {
		width: 100%;
	}
	.infoObraLateral .single-obra .noticia-title {
		margin-top: 0;
		padding: 2rem 1rem 2rem 0;
	}
	.infoObraLateral .single-obra .item-area {
		margin: 0; 
	}
	
	/* Galeria imagenes */
	.infoObraLateral .noticia-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.infoObraLateral .noticia-img, 
	.infoObraLateral .galeria {
		height: 500px;
	}
	
	/* Numeros */
	.infoObraLateral .single-obra .los-numeros .numeros-content {
		flex-direction: row;
		justify-content: space-around;
		padding: 1rem 0; 
		gap: 0;
		background: transparent;
	}
	.infoObraLateral .single-obra .los-numeros .numero {
		width: 25%;
	}
	.infoObraLateral .los-numeros .objetivo.numero img {
		width: 120px;
	}
	
	/* Listados */
	.infoObraLateral .listas {
		padding: 20px 0 0 0;
	}
	.infoObraLateral .listas .titulo-lista {
		margin: 2rem 0 1rem 0;
	}
	.infoObraLateral .listado-obras {
		margin: 0;
	}
	.infoObraLateral .listado-obras .obra {
		gap: 1rem;
	}
	.infoObraLateral .listado-obras .obra .imagen {
		height: 140px;
	}
	.infoObraLateral .listado-obras .obra .contenido {
		padding: 0;
	}
	
	@media (min-width: 1500px) {
		.content-mapa {
			height: calc(100vh - 75px);
		}
		#map {
			height: calc(100vh - 151px);
		}
	}
	@media (max-width: 1499px) {
		.infoObraLateral .single-obra .noticia-top {
			padding: 2rem 1rem;
		}
		.infoObraLateral .single-obra .item-area {
			padding-left: 0;
		}
		.infoObraLateral .los-numeros .objetivo {
			padding: 0;
		}
		.infoObraLateral .los-numeros .objetivo.numero img {
			width: 100px;
		}
		.infoObraLateral .single-obra .los-numeros .numero span.el-numero {
			top: -1.4rem;
			font-size: 2rem;
		}
	}
	@media (max-width: 1300px) {
		.infoObraLateral .noticia-img, 
		.infoObraLateral .galeria {
			height: 400px;
		}
		.infoObraLateral .single-obra .los-numeros .numero {
			width: 50%;
		}
		.infoObraLateral .single-obra .los-numeros .numero > p {
			margin-top: 0.5rem;
		}
	}
	@media (max-width: 1100px) {
		.infoObraLateral .noticia-img, 
		.infoObraLateral .galeria {
			height: 280px;
		}
		.infoObraLateral .single-obra .item-area {
			order: 1;
		}
		.infoObraLateral .single-obra .noticia-title {
			order: 2;
		} 
		.infoObraLateral .single-obra .noticia-title, 
		.infoObraLateral .single-obra .item-area {
			width: 100%;
		}
		
		.infoObraLateral .single-obra .noticia-top .noticia-content {
			padding: 40px 0 20px 0;
			width: 100%;
		}
		.infoObraLateral .noticia-redes {
			position: relative;
			top: initial;
			left: initial;
			margin: 0 auto;
			display: flex;
		}
		
	}
	@media (max-width: 800px) {
		.content-mapa {
			height: calc(100vh - 75px);
		}
		.wrapper-infoObraLateral {
			top: 0;
			padding-bottom: 0;
		}
		.wrapper-infoObraLateral {
			width: 90%;
		}
		.infoObraLateral .noticia-img, 
		.infoObraLateral .galeria {
			height: 450px;
		}
		.infoObraLateral .noticia-title {
			font-size: 36px;
			line-height: 42px;
		}
		.infoObraLateral .single-obra .noticia-title {
			order: 1;
			width: 70%;
		}
		.infoObraLateral .single-obra .item-area {
			order: 2;
			width: 30%;
		}
		.infoObraLateral .single-obra .los-numeros .numero {
			width: 25%;
		}
	}
	@media (max-width: 600px) {
		#map {
			height: calc(100vh - 240px);
		}
		.wrapper-infoObraLateral {
			width: 100%;
			transform: translateY(-100%);
		}
		.wrapper-infoObraLateral.open {
			animation: entradaBox .8s ease .5s forwards;
		}
		@keyframes entradaBox {
			from {
				opacity: 0;
				transform: translateY(25px);
			}
			to {
				transform: translateY(0);
				opacity: 1;
			}
		}
		.infoObraLateral .noticia-img, 
		.infoObraLateral .galeria {
			height: 250px;
		}
		.infoObraLateral .single-obra .noticia-top > .content {
			padding-left: 0;
		}
		.infoObraLateral .single-obra .noticia-title {
			order: 2;
			width: 100%;
		}
		.infoObraLateral .single-obra .item-area {
			order: 1;
			width: 100%;
		}
		.infoObraLateral .single-obra .los-numeros .numero {
			width: 50%;
		}
	}

	
	/* Pali */
	#filtros {
		padding: 1rem 0;
		display: flex;
		align-items: center;
		width: 100%;
		font-family: 'Roboto Condensed';
		font-size: 16px;
	}
	#filtros span.select2 {
		width: 33%;
	}
	#filtros .select2-container {
		/* display: inline-flex; */
	}
	
	#filtros .select2-container--default .select2-selection--single .select2-selection__rendered { 
		padding: 0.5rem 1rem;
		font-weight: 500;
		color: #131352;
	}
	#filtros .select2-container--default .select2-selection--single .select2-selection__placeholder {
		color: #42bfdb;
		font-weight: 400;
	}
	#filtros .select2-container--default:hover .select2-selection--single .select2-selection__placeholder {
		color: #196577;
	}
	#filtros .select2-container--default .select2-selection--single:hover .select2-selection__rendered { 
		color: #0f4975;
	}

	#filtros .select2-container--default .select2-selection--single .select2-selection__arrow {
		height: 44px;
		padding: 0.5rem 1rem;
	}
	#filtros .select2-selection__clear {
		border-radius: 50%;
		position: absolute;
		right: 0px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #40bdd9;
		margin: 6px 6px;
		color: #131352;
		z-index: 1;
	}
	#filtros .select2-selection__clear:hover {
		background: #0f4975;
		color: white;
	}
	.wp-admin #filtros .select2-container--default .select2-selection--single .select2-selection__arrow {
		height: 26px;
	}
	#filtros .select2-container--default .select2-selection--single .select2-selection__arrow b {
		border-color: #42bfdb transparent transparent transparent;
	}
	#filtros .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
		border-color: transparent transparent #42bfdb transparent;
	}
	/*
	#filtros .select2-container--default .select2-selection--single:hover .select2-selection__arrow b {
		border-color: #0f4975 transparent transparent transparent;
	}
	*/	
	#filtros span.select2 .selection .select2-selection {
		background: #ecf9fb;
		height: 44px;
		border: 1px solid #42bfdb;
	}
	
	#filtros span.select2:nth-child(2) .selection .select2-selection {
		border-radius: 22px 0 0 22px;
		border-right-color: #a0dae7;
	}
	
	#filtros span.select2:nth-child(4) .selection .select2-selection {
		border-radius: 0;
		border-right-color: transparent;
		border-left-color: transparent;
	}
	
	#filtros span.select2:nth-child(6) .selection .select2-selection {
		border-radius: 0 22px 22px 0;
		border-left-color: #a0dae7;
	}
	
	#filtros span.select2 .selection:hover .select2-selection {
		border: 1px solid #42bfdb;
	}
	#filtros span.select2 .selection .select2-selection {
		/* border: 0; */
	}
	.select2-container .select2-dropdown {
		border: 0;
		box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
	}
	.select2-container .select2-results {
		font-family: 'Roboto Condensed';
		font-size: 14px;
		color: #797979;
	}
	.select2-container .select2-search--dropdown {
		padding: 0.8rem;
		border-bottom: 1px solid #f2f2f2;
	}
	.select2-container .select2-results__option {
		padding: 0.8rem 1rem;
	}	
	.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
		background-color: #42bfdb;
	}
	.select2-container--default .select2-results__option--selected {
		background-color: #f2f2f2;
	}
	@media (max-width: 600px) {
		/* filtros */
		#filtros {
			flex-direction: column;
		}
		#filtros .select2 {
			width:100%!important;
		}
		#filtros span.select2:nth-child(2) .selection .select2-selection {
			border-radius: 10px 10px 0 0;
			border: 1px solid #42bfdb;
			border-bottom-color: #a0dae7;
		}
		#filtros span.select2:nth-child(4) .selection .select2-selection {
			border-radius: 0;
			border: 1px solid #42bfdb;
			border-top-color: transparent;
			border-bottom-color: transparent;
		}
		#filtros span.select2:nth-child(6) .selection .select2-selection {
			border-radius: 0 0 10px 10px;
			border: 1px solid #42bfdb;
			border-top-color: #a0dae7;
		}
	}

	
	/* Popup */
	.gm-style .gm-style-iw-c {
		width: 300px;
		padding: 1rem;
		font-size: 16px;
		border-radius: 0;
	}
	.gm-style .imagen {
		width: 100%;
		height: 150px;
		overflow: hidden;
	}
	.gm-style .imagen img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.infowindowsmap .titulo {
		font-family: 'Roboto Condensed', sans-serif;
	}
	.infowindowsmap .titulo {
		font-size: 20px;
		font-weight: 300;
		line-height: 22px;
		color: #0f4975;
		margin: 0.5rem 0;
	}
	.infowindowsmap .link {
		margin-bottom: 1rem;
	}
	.infowindowsmap .link a {
		display: inline-flex;
		background: #42bfdb;
		color: white;
		padding: 8px 20px;
		text-transform: uppercase;
		font-size: 12px;
		letter-spacing: 2px;
		text-decoration: none;
	}
	.infowindowsmap .link a:hover {
		background: #37a4bc;
	}



/* Style Theme */

#MapLateral{
	top:0px;
	width: 50%;
	height: 100%;
}

.wrapper-infoObraLateral.fullMapWindows{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	background-color: #ffffff;
	opacity: 100%;
}