/****************** Body ******************/
body {
  font-family:'Open Sans Condensed', sans-serif !important;
}

/****************** Letter spacing ******************/
.txt-ls-1 { letter-spacing: 1px !important; }
.txt-ls-2 { letter-spacing: 2px !important; }
.txt-ls-3 { letter-spacing: 3px !important; }
.txt-ls-4 { letter-spacing: 4px !important; }
.txt-ls-5 { letter-spacing: 5px !important; }
.txt-ls-6 { letter-spacing: 6px !important; }
.txt-ls-7 { letter-spacing: 7px !important; }
.txt-ls-8 { letter-spacing: 8px !important; }
.txt-ls-9 { letter-spacing: 9px !important; }
.txt-ls-10 { letter-spacing: 10px !important; }

/****************** Opacity ******************/
.opacity-1 { opacity: 0.1 !important; }
.opacity-2 { opacity: 0.2 !important; }
.opacity-3 { opacity: 0.3 !important; }
.opacity-4 { opacity: 0.4 !important; }
.opacity-5 { opacity: 0.5 !important; }
.opacity-6 { opacity: 0.6 !important; }
.opacity-7 { opacity: 0.7 !important; }
.opacity-8 { opacity: 0.8 !important; }
.opacity-9 { opacity: 0.9 !important; }
.opacity-10 { opacity: 1 !important; }

/****************** Z-index ******************/
.zindex-0 { z-index: 0 !important; }
.zindex-1 { z-index: 10 !important; }
.zindex-2 { z-index: 20 !important; }
.zindex-3 { z-index: 30 !important; }
.zindex-4 { z-index: 40 !important; }
.zindex-5 { z-index: 50 !important; }
.zindex-6 { z-index: 60 !important; }
.zindex-7 { z-index: 70 !important; }
.zindex-8 { z-index: 80 !important; }
.zindex-9 { z-index: 90 !important; }
.zindex-10 { z-index: 100 !important; }
.zindex-99 { z-index: 99 !important; }
.zindex-999 { z-index: 999 !important; }
.zindex-9999 { z-index: 9999 !important; }

/****************** Position: Right; ******************/
.txt-pr-0 { right: 0 !important; }
.txt-pr-1 { right: 1px !important; }
.txt-pr-2 { right: 2px !important; }
.txt-pr-3 { right: 3px !important; }
.txt-pr-4 { right: 4px !important; }
.txt-pr-5 { right: 5px !important; }
.txt-pr-6 { right: 6px !important; }
.txt-pr-7 { right: 7px !important; }
.txt-pr-8 { right: 8px !important; }
.txt-pr-9 { right: 9px !important; }
.txt-pr-10 { right: 10px !important; }
.txt-pr-15 { right: 15px !important; }
.txt-pr-20 { right: 20px !important; }
.txt-pr-25 { right: 25px !important; }
.txt-pr-30 { right: 30px !important; }
.txt-pr-50 { right: 50px !important; }
.txt-pr-100 { right: 100px !important; }

/****************** Hover ******************/
a.hover-opacity:hover, li.hover-opacity:hover, button.hover-opacity:hover, div.hover-opacity:hover {
	-webkit-transition: all 0.5s;
  	-moz-transition: all 0.5s;
  	-ms-transition: all 0.5s;
  	-o-transition: all 0.5s;
  	transition: all 0.5s;
  	opacity: 0.4;
}

/****************** Transition ******************/
a:hover, li:hover, button:hover {
	-webkit-transition: all 0.5s;
  	-moz-transition: all 0.5s;
  	-ms-transition: all 0.5s;
  	-o-transition: all 0.5s;
  	transition: all 0.5s;
}

/****************** Rotate ******************/
.rotate-rl {    
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	white-space: nowrap;
	display: inline-block;
	overflow: visible;
}

.rotate-rr {    
	writing-mode: vertical-rl;
	transform: rotate(-180deg);
	white-space: nowrap;
	display: inline-block;
	overflow: visible;
}

/****************** Full width ******************/
.full-width {
	width: 100vw !important;
	position: relative !important;
	margin-left: -50vw !important;
	left: 50% !important;
}

/****************** Radio Icon ******************/
#radioBtn .notActive{
    color: #3276b1;
    background-color: #fff;
}

/****************** Presentación intro - Página cargando ******************/
#imgPresentacionIntro .intro-spinner {
	width: 3rem !important; 
	height: 3rem !important; 
	animation-duration: 1s !important;
}

#imgPresentacionIntro .intro-character {
	margin:-16px -2px 0 0 !important;
}

/****************** Header ******************/
.header-on {
	top:0 !important;
	height:90px !important;
	-webkit-transition: all 0.5s;
  	-moz-transition: all 0.5s;
  	-ms-transition: all 0.5s;
  	-o-transition: all 0.5s;
  	transition: all 0.5s;
}
.header-off {
	display:none !important;
	-webkit-transition: all 0.5s;
  	-moz-transition: all 0.5s;
  	-ms-transition: all 0.5s;
  	-o-transition: all 0.5s;
  	transition: all 0.5s;
}
.icon_header {
	width:25px;
	height:25px;
}

/****************** Subheader ******************/
.subheader-up {
	top:0 !important;
	-webkit-transition: all 0.1s;
  	-moz-transition: all 0.1s;
  	-ms-transition: all 0.1s;
  	-o-transition: all 0.1s;
  	transition: all 0.1s;
}
.subheader-down {
	top:90px !important;
	-webkit-transition: all 0.1s;
  	-moz-transition: all 0.1s;
  	-ms-transition: all 0.1s;
  	-o-transition: all 0.1s;
  	transition: all 0.1s;
}
.subheader-on {
	display:block !important;
	-webkit-transition: all 0.5s;
  	-moz-transition: all 0.5s;
  	-ms-transition: all 0.5s;
  	-o-transition: all 0.5s;
  	transition: all 0.5s;
}
.subheader-off {
	display:none !important;
	-webkit-transition: all 0.5s;
  	-moz-transition: all 0.5s;
  	-ms-transition: all 0.5s;
  	-o-transition: all 0.5s;
  	transition: all 0.5s;
}

/****************** Siderbar ******************/
#accordionSidebar {
	top: 150px !important;
}
#accordionSidebar .sidebar-arrow {
	top:3px !important;
}

/****************** Siderbar Not Header ******************/
#accordionSidebarNotHeader .sidebar-arrow {
	top:0 !important;
}

/****************** containerFluid ******************/
#containerFluid .fluid-header {
	top:144px !important;
}
#containerFluid .fluid-content {
	top:140px !important;
}

/****************** containerFluid Not Header ******************/
#containerFluidNotHeader .fluid-header {
	top:0 !important;
}
#containerFluidNotHeader .fluid-content {
	top:0 !important;
}
#sidebarHeader {
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  text-align: center;
  z-index: 9;
}

/****************** Herramientas ******************/
.tools-img {
	position: relative;
	max-width: 120px;
	min-width: 80px;
	width: 100px;
	height: auto;
}

/****************** Colecciones ******************/
.collection-btn-col {
	position:fixed !important; 
	right:1vw !important; 
	top:58% !important; 
	z-index: 99999 !important;
}

/****************** Imágenes Acerca de ******************/
.indexImgFoto {
	position:relative;
	text-align:center;
    max-width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
}

/****************** Cookies ******************/
.cookie-content {
	bottom: 1%;
	position: fixed;
	right: 1%;
	border-radius: 4px;
	z-index: 2147483647;
	background-color:#000; 
	opacity: 0.8;
}

/****************** Banner ******************/
.banner-logo {
	position:relative; 
	margin-top: -20px;
	width: 45px;
	height: 45px;
}

/****************** Fondo filtro ******************/
#fondo_filterLoad {
	width: 100%;
	height:100%;
	display: none;
    background: #000000;
	position:fixed;
	opacity:0.7;
	z-index:999999;
}
#fondo_filterLoad #loading_filter {
	position: absolute;
	top: 50%; /* Buscamos el centro horizontal (relativo) del navegador */
	left: 50%; /* Buscamos el centro vertical (relativo) del navegador */
	width: 50px; /* Definimos el ancho del objeto a centrar */
	height: 50px; /* Definimos el alto del objeto a centrar */
	margin-top: -25px; /* Restamos la mitad de la altura del objeto con un margin-top */
	margin-left: -25px; /* Restamos la mitad de la anchura del objeto con un margin-left */
}
#fondo_filterLoad #loading_filter .imgLoad {
	position: relative;
	width:50px;
	height:50px;
}

/****************** Form Alert ******************/
.form-alert {
	position: absolute; 
	top: 0; 
	right: 0; 
	cursor: pointer;
	-webkit-transition: all 0.5s;
  	-moz-transition: all 0.5s;
  	-ms-transition: all 0.5s;
  	-o-transition: all 0.5s;
  	transition: all 0.5s;
}
.form-alert:hover {
	opacity: 0.6;
}

/****************** Fotos ejemplares ******************/
.imgSp .imgMin {
	position: relative; 
	width: 53px;
	height: 80px;
}
.imgSp .imgMax {
	position: relative; 
	width: 100px;
	height: 150px;
}

/****************** Paginación ******************/
#divPagination #totalDatos {
	width: 80px;
}

#divPagination #noDatos {
	width: 80px;
}

#divPagination #pagPrimero {
	width: 40px;
}

#divPagination #pagAnterior {
	width: 40px;
}

#divPagination #pag {
	width: 80px;
}

#divPagination #totalPags {
	width: 80px;
}

#divPagination #pagSiguiente {
	width: 40px;
}

#divPagination #pagUltimo {
	width: 40px;
}

#divPagination #dropdown_showFields {
	position: relative; 
	height: 160px;
}

#divPagination #dropdown_viewtax {
	position: relative; 
	height: 160px;
}

#divPagination .capture_btn {
	display: none;
}

/****************** Modal ******************/
.modal {
    pointer-events: none;
}

.modal .btn-modal-close {
    position: absolute; 
    top: 8px; 
    right: 15px;
}

.modal #dropdown_elemControlFields {
	position: relative; 
	height: 160px;
}

/****************** Notes ******************/
.dropdown_notes { 
	width: 250px !important;
}

/****************** Form ******************/
.loadFormDataModal .form-group {
	position: relative !important;
	display: inline-block;
	width: 46%;
	padding: 0 !important;
	margin: 0 !important;
}
.loadFormDataModal .form_elemSub {
	position: relative !important;
	display: inline-block;
	width: 100%;
	padding: 0 !important;
	margin: 0 !important;
}
.loadFormDataModal .form-group h5 {
	padding: 0 !important;
	margin: 0 !important;
}
.loadFormDataModal .form-group h4 {
	font-size: 17px !important;
	padding: 3px 0 3px 0 !important;
	margin: 3px 0 3px 0 !important;
}
.loadFormDataModal .form-group .accordion .card-header h2 {
	font-size: 17px !important;
	padding: 0 !important;
}
.loadFormDataModal .form-group label {
	font-size: 14px !important;
	padding: 0 !important;
	margin: 0 !important;
}
.loadFormDataModal .form-group input, .loadFormDataModal .form-group select {
	font-size: 14px !important;
	height: 28px !important;
	padding: 2px 4px 2px 4px;
}

/****************** Siderbar ******************/
#accordionSidebar {
  padding-top: 10px !important;
}
#accordionSidebar .submenu_icons_content {
  position: relative;
  width: 100%;
  text-align: center;
}
#accordionSidebar .submenu_icons_content .submenu_icon {
  position: relative;
  max-width:100%;
  height:auto;
  max-height: 50px;
  display: inline-block; 
  padding-left: 10px 0 10px 10px;
  left: 0;
  top: 17.5px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  outline: none;
}
#accordionSidebar .submenu_icons_content .submenu_icon:hover {
  opacity: 0.6;
}

/****************** Siderbar Not Header ******************/
#accordionSidebarNotHeader .submenu_icons_content {
  position: relative;
  width: 100%;
  text-align: center;
}
#accordionSidebarNotHeader .submenu_icons_content .submenu_icon {
  position: relative;
  max-width:100%;
  height:auto;
  max-height: 50px;
  display: inline-block; 
  padding-left: 10px 0 10px 10px;
  left: 0;
  top: 17.5px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  outline: none;
}
#accordionSidebarNotHeader .submenu_icons_content .submenu_icon:hover {
  opacity: 0.6;
}

/****************** Multifiltro ******************/
/*
#content_multifilter .form-group .form-control {
	width: 100% !important;
	display: table-cell !important;
}
*/

/****************** Bootstrap Table ******************/
.myTable thead > tr > th.detail,
.myTable tbody > tr:not(.detail-view) > td:first-of-type {
  display: none;
}

.myTable thead > tr > th:nth-child(2),
.myTable tbody > tr:not(.detail-view) > td:nth-child(2) {
  border-left: none!important;
}

/****************** Dropdown Menú Paginación ******************/
.dropdown-wh-auto {
  max-height: 200px !important; 
  width: 250px !important; 
  overflow-y: auto !important;
}

/****************** Footer ******************/
#sidebarFooter {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 80px;
  text-align: center;
  z-index: 9;
}

/* Google Maps Input Filters */ 
.map_autocomplete::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #3b3b3b !important;
	opacity: 1; /* Firefox */
}
.map_autocomplete:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #3b3b3b !important;
}
.map_autocomplete::-ms-input-placeholder { /* Microsoft Edge */
	color: #3b3b3b !important;
}

/* Diseño móvil: 480 px e inferior. */
@media only screen and (max-width: 481px) {

	/****************** Header ******************/
	.header_logo {
		width:auto;
		max-height:40px;
		height:auto;
		margin-top: 5px;
	}
	.header_logo_submenu {
		width:auto;
		max-height:40px;
		height:auto;
		margin-top: 0;
	}

	/****************** Footer ******************/
	.footer_logo {
		width:auto;
		max-height:15px;
		height:auto;
	}

	/****************** Presentación de intro a la página ******************/
	#imgPresentacionIntro {
		position:fixed;
		width:100%;
		height:100%;
		background:#eeeeee;
		background-size: 100% 100%; 
		z-index:2147483647;
	}
	#imgPresentacionIntroImg {
		position: absolute;
		top: 50%; /* Buscamos el centro horizontal (relativo) del navegador */
		left: 50%; /* Buscamos el centro vertical (relativo) del navegador */
		width: 100%; /* Definimos el ancho del objeto a centrar */
		height: 250px; /* Definimos el alto del objeto a centrar */
		margin-top: -125px; /* Restamos la mitad de la altura del objeto con un margin-top */
		margin-left: -50%; /* Restamos la mitad de la anchura del objeto con un margin-left */
	}
	#imgPresentacionIntroImg #logoIntro{
		width: 250px;
		height: 250px;
	}
	#imgPresentacionIntroImg #carga{
		position:relative;
		width: 40px;
		height: 40px;
	}

	/****************** Header ******************/
	.form-header-content {
		width: 100%;
	}
	.form-header-content a.form-header-url {
		text-decoration: none;
		outline: none;
	}
	.form-header-content a.form-header-url .form-header-img {
		position: relative;
		display: inline-block;
		width:auto;
		max-height:25px;
		height:auto;
		padding: 0 10px 0 10px;
		-webkit-transition: all 0.5s;
	  	-moz-transition: all 0.5s;
	  	-ms-transition: all 0.5s;
	  	-o-transition: all 0.5s;
	  	transition: all 0.5s;
		cursor:pointer;
		text-decoration: none;
		outline: none;
	}
	.form-header-content a.form-header-url .form-header-img:hover {
		opacity: 0.4;
	}

	/********************************* JQuery Autocompletar ********************************************/
	.ui-autocomplete {
		text-align: left;
		direction: rtl;
		max-height: 150px;
		overflow-y: auto;
		/* prevent horizontal scrollbar */
		overflow-x: hidden;
		/* add padding to account for vertical scrollbar */
		padding-right: 20px;
		z-index: 999999999 !important;
	}
	/* IE 6 doesn't support max-height
	 * we use height instead, but this forces the menu to always be this tall
	 */
	* html .ui-autocomplete {
		text-align: left;
		direction: rtl;
		height: 150px;
		z-index: 999999999 !important;
	}
	.ui-menu-item {
	  padding-bottom: 3px !important;
	  padding-top: 3px !important;
	}

	.ui-menu-item > a.ui-corner-all {
	  display: block;
	  clear: both;
	  font-weight: normal;
	  line-height: 25px;
	  color: #0a0a0a;
	  white-space: nowrap;
	  text-decoration: none;
	}

	.ui-state-hover,
	.ui-state-active {
	  color: #ffffff;
	  text-decoration: none;
	  background-color: #969696;
	  border-radius: 0px;
	  -webkit-border-radius: 0px;
	  -moz-border-radius: 0px;
	  background-image: none;
	}

	.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
	    background: #969696 !important;
	    font-weight: bold !important;
	    color: #ffffff !important;
	    border: none !important;
	}

	.ui-state-highlight a {
	  font-weight: bold;
	  color: #5a5c69 !important;
	}

	.ui-state-highlight {
	  font-weight: bold;
	  color: #5a5c69 !important;
	}
	.ui-widget, .ui-autocomplete.ui-widget {
	  font-family:'Open Sans Condensed', sans-serif;
	  font-size: 16px;
	}

	/****************** Google Map ******************/
	#map_outerdiv {
		width: 100%; 
		height: 85%; 
		position:relative; 
		text-align:center; 
	}
	#map {
		width: 100%;
		height: 100%; 
		aspect-ratio: 16 / 9;
	}
	/*
	#map {
		width: 100%; 
		height: 100%; 
		margin:0; 
		display:inline-block
	}
	*/

	/****************** Filtros ******************/
	#filter_content {
		width: 100%; 
		position:relative; 
		text-align:center; 
		margin: 155px 0 0 0; 
		padding: 0 10px 0 10px; 
		box-sizing: border-box;
	}

	/****************** Google Maps Labels ******************/
	#map_outerdiv #map_label_content {
		position: relative; 
		top: 0; 
		right: 0; 
		background-color: #000; 
		padding: 2px; 
		height: 50px; 
		width: 100px; 
		z-index: 50; 
		margin: 6px 6px 0 0; 
		opacity: 0.7; 
		border-radius: 4px;
	}
	#map_outerdiv #map_label_text {
		position: relative; 
		top: 3px; 
		right: 0; 
		padding: 2px; 
		height: auto; 
		width: 100px; 
		z-index: 52; 
		margin: 2px 16px 0 0; 
		text-align: right; 
		vertical-align: middle;
	}
	.presence_dot_blue {
		position: relative; 
		display: inline-block; 
		height: 20px; 
		width: 20px; 
		background-color: blue; 
		border-radius: 50%; 
		border:1px solid black; 
		opacity: 0.6;
	}
	.presence_dot_red {
		position: relative; 
		display: inline-block; 
		height: 20px; 
		width: 20px; 
		background-color: red; 
		border-radius: 50%; 
		border:1px solid black; 
		opacity: 0.6;
	}
	.presence_dot_yellow {
		position: relative; 
		display: inline-block; 
		height: 20px; 
		width: 20px; 
		background-color: yellow; 
		border-radius: 50%; 
		border:1px solid black; 
		opacity: 0.6;
	}
	#map_outerdiv #map_label_text .presence_dot_txt {
		position: relative; 
		display: inline-block; 
		margin-right: 2px; 
		color: #fff; 
		font-size: 14px;
	}

}

/* Diseño tableta: de 481 px a 768 px. Hereda estilos de: Diseño móvil. */
@media only screen and (min-width: 481px) {

	/****************** Header ******************/
	.header_logo {
		width:auto;
		max-height:45px;
		height:auto;
		margin-top: 5px;
	}
	.header_logo_submenu {
		width:auto;
		max-height:40px;
		height:auto;
		margin-top: 0;
	}

	/****************** Footer ******************/
	.footer_logo {
		width:auto;
		max-height:18px;
		height:auto;
	}

	/****************** Presentación de intro a la página ******************/
	#imgPresentacionIntro {
		position:fixed;
		width:100%;
		height:100%;
		background:#eeeeee;
		background-size: 100% 100%; 
		z-index:2147483647;
	}
	#imgPresentacionIntroImg {
		position: absolute;
		top: 50%; /* Buscamos el centro horizontal (relativo) del navegador */
		left: 50%; /* Buscamos el centro vertical (relativo) del navegador */
		width: 100%; /* Definimos el ancho del objeto a centrar */
		height: 300px; /* Definimos el alto del objeto a centrar */
		margin-top: -150px; /* Restamos la mitad de la altura del objeto con un margin-top */
		margin-left: -50%; /* Restamos la mitad de la anchura del objeto con un margin-left */
	}
	#imgPresentacionIntroImg #logoIntro{
		width: 300px;
		height: 300px;
	}
	#imgPresentacionIntroImg #carga{
		width: 40px;
		height: 40px;
	}

	/****************** Header ******************/
	.form-header-content {
		width: 100%;
	}
	.form-header-content a.form-header-url {
		text-decoration: none;
		outline: none;
	}
	.form-header-content a.form-header-url .form-header-img {
		position: relative;
		display: inline-block;
		width:auto;
		max-height:30px;
		height:auto;
		padding: 0 20px 0 20px;
		-webkit-transition: all 0.5s;
	  	-moz-transition: all 0.5s;
	  	-ms-transition: all 0.5s;
	  	-o-transition: all 0.5s;
	  	transition: all 0.5s;
		cursor:pointer;
		text-decoration: none;
		outline: none;
	}
	.form-header-content a.form-header-url .form-header-img:hover {
		opacity: 0.4;
	}

	/********************************* JQuery Autocompletar ********************************************/
	.ui-autocomplete {
		text-align: left;
		direction: rtl;
		max-height: 200px;
		overflow-y: auto;
		/* prevent horizontal scrollbar */
		overflow-x: hidden;
		/* add padding to account for vertical scrollbar */
		padding-right: 20px;
		z-index: 999999999 !important;
	}
	/* IE 6 doesn't support max-height
	 * we use height instead, but this forces the menu to always be this tall
	 */
	* html .ui-autocomplete {
		text-align: left;
		direction: rtl;
		height: 200px;
		z-index: 999999999 !important;
	}
	.ui-menu-item {
	  padding-bottom: 3px !important;
	  padding-top: 3px !important;
	}

	.ui-menu-item > a.ui-corner-all {
	  display: block;
	  clear: both;
	  font-weight: normal;
	  line-height: 25px;
	  color: #0a0a0a;
	  white-space: nowrap;
	  text-decoration: none;
	}

	.ui-state-hover,
	.ui-state-active {
	  color: #ffffff;
	  text-decoration: none;
	  background-color: #969696;
	  border-radius: 0px;
	  -webkit-border-radius: 0px;
	  -moz-border-radius: 0px;
	  background-image: none;
	}

	.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
	    background: #969696 !important;
	    font-weight: bold !important;
	    color: #ffffff !important;
	    border: none !important;
	}

	.ui-state-highlight a {
	  font-weight: bold;
	  color: #5a5c69 !important;
	}

	.ui-state-highlight {
	  font-weight: bold;
	  color: #5a5c69 !important;
	}
	.ui-widget, .ui-autocomplete.ui-widget {
	  font-family:'Open Sans Condensed', sans-serif;
	  font-size: 18px;
	}

	/****************** Google Map ******************/
	#map_outerdiv {
		width: 100%; 
		height: 80%; 
		position:relative; 
		text-align:center; 
	}
	#map {
		width: 100%;
		height: 100%; 
		aspect-ratio: 16 / 9;
	}
	/*
	#map {
		width: 100%; 
		height: 100%; 
		margin:0; 
		display:inline-block
	}
	*/

	/****************** Filtros ******************/
	#filter_content {
		width: 100%; 
		position:relative; 
		text-align:center; 
		margin: 160px 0 0 0; 
		padding: 0 10px 0 10px; 
		box-sizing: border-box;
	}

	/****************** Google Maps Labels ******************/
	#map_outerdiv #map_label_content {
		position: relative; 
		top: 0; 
		right: 0; 
		background-color: #000; 
		padding: 4px; 
		height: 60px; 
		width: 120px; 
		z-index: 50; 
		margin: 8px 8px 0 0; 
		opacity: 0.7; 
		border-radius: 4px;
	}
	#map_outerdiv #map_label_text {
		position: relative; 
		top: 3px; 
		right: 0; 
		padding: 4px; 
		height: auto; 
		width: 120px; 
		z-index: 52; 
		margin: 8px 20px 0 0; 
		text-align: right; 
		vertical-align: middle;
	}
	.presence_dot_blue {
		position: relative; 
		display: inline-block; 
		height: 22px; 
		width: 22px; 
		background-color: blue; 
		border-radius: 50%; 
		border:1px solid black; 
		opacity: 0.6;
	}
	.presence_dot_red {
		position: relative; 
		display: inline-block; 
		height: 22px; 
		width: 22px; 
		background-color: red; 
		border-radius: 50%; 
		border:1px solid black; 
		opacity: 0.6;
	}
	.presence_dot_yellow {
		position: relative; 
		display: inline-block; 
		height: 22px; 
		width: 22px; 
		background-color: yellow; 
		border-radius: 50%; 
		border:1px solid black; 
		opacity: 0.6;
	}
	#map_outerdiv #map_label_text .presence_dot_txt {
		position: relative; 
		display: inline-block; 
		margin-right: 4px; 
		color: #fff; 
		font-size: 16px;
	}

}

/* Diseño escritorio: de 769 px hasta un máximo de 1232 px.  Hereda estilos de: Diseño móvil y Diseño tableta. */
@media only screen and (min-width: 769px) {

	/****************** Header ******************/
	.header_logo {
		width:auto;
		max-height:45px;
		height:auto;
		margin-top: 5px;
	}
	.header_logo_submenu {
		width:auto;
		max-height:50px;
		height:auto;
		margin-top: 0;
	}

	/****************** Footer ******************/
	.footer_logo {
		width:auto;
		max-height:20px;
		height:auto;
	}

	/****************** Presentación de intro a la página ******************/
	#imgPresentacionIntro {
		position:fixed;
		width:100%;
		height:100%;
		background:#eeeeee;
		background-size: 100% 100%; 
		z-index:2147483647;
	}
	#imgPresentacionIntroImg {
		position: absolute;
		top: 50%; /* Buscamos el centro horizontal (relativo) del navegador */
		left: 50%; /* Buscamos el centro vertical (relativo) del navegador */
		width: 100%; /* Definimos el ancho del objeto a centrar */
		height: 350px; /* Definimos el alto del objeto a centrar */
		margin-top: -175px; /* Restamos la mitad de la altura del objeto con un margin-top */
		margin-left: -50%; /* Restamos la mitad de la anchura del objeto con un margin-left */
	}
	#imgPresentacionIntroImg #logoIntro{
		width: 350px;
		height: 350px;
	}
	#imgPresentacionIntroImg #carga{
		width: 50px;
		height: 50px;
	}

	/****************** Header ******************/
	.form-header-content {
		width: 100%;
	}
	.form-header-content a.form-header-url {
		text-decoration: none;
		outline: none;
	}
	.form-header-content a.form-header-url .form-header-img {
		position: relative;
		display: inline-block;
		width:auto;
		max-height:35px;
		height:auto;
		padding: 0 30px 0 30px;
		-webkit-transition: all 0.5s;
	  	-moz-transition: all 0.5s;
	  	-ms-transition: all 0.5s;
	  	-o-transition: all 0.5s;
	  	transition: all 0.5s;
		cursor:pointer;
		text-decoration: none;
		outline: none;
	}
	.form-header-content a.form-header-url .form-header-img:hover {
		opacity: 0.4;
	}

	/********************************* JQuery Autocompletar ********************************************/
	.ui-autocomplete {
		text-align: left;
		direction: rtl;
		max-height: 300px;
		overflow-y: auto;
		/* prevent horizontal scrollbar */
		overflow-x: hidden;
		/* add padding to account for vertical scrollbar */
		padding-right: 20px;
		z-index: 999999999 !important;
	}
	/* IE 6 doesn't support max-height
	 * we use height instead, but this forces the menu to always be this tall
	 */
	* html .ui-autocomplete {
		text-align: left;
		direction: rtl;
		height: 300px;
		z-index: 999999999 !important;
	}
	.ui-menu-item {
	  padding-bottom: 3px !important;
	  padding-top: 3px !important;
	}

	.ui-menu-item > a.ui-corner-all {
	  display: block;
	  clear: both;
	  font-weight: normal;
	  line-height: 25px;
	  color: #0a0a0a;
	  white-space: nowrap;
	  text-decoration: none;
	}

	.ui-state-hover,
	.ui-state-active {
	  color: #ffffff;
	  text-decoration: none;
	  background-color: #969696;
	  border-radius: 0px;
	  -webkit-border-radius: 0px;
	  -moz-border-radius: 0px;
	  background-image: none;
	}

	.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
	    background: #969696 !important;
	    font-weight: bold !important;
	    color: #ffffff !important;
	    border: none !important;
	}

	.ui-state-highlight a {
	  font-weight: bold;
	  color: #5a5c69 !important;
	}

	.ui-state-highlight {
	  font-weight: bold;
	  color: #5a5c69 !important;
	}
	.ui-widget, .ui-autocomplete.ui-widget {
	  font-family:'Open Sans Condensed', sans-serif;
	  font-size: 18px;
	}

	/****************** Google Map ******************/
	#map_outerdiv {
		width: 100%; 
		height: 80%; 
		position:relative; 
		text-align:center; 
	}
	#map {
		width: 100%;
		max-width: 1920px;
		height: 100%; 
		aspect-ratio: 16 / 9;
	}
	/*
	#map {
		width: 100%; 
		height: 100%; 
		margin:0; 
		display:inline-block
	}
	*/

	/****************** Filtros ******************/
	#filter_content {
		width: 100%; 
		position:relative; 
		text-align:center; 
		margin: 150px 0 0 0; 
		padding: 0 10px 0 10px; 
		box-sizing: border-box;
	}

	/****************** Google Maps Labels ******************/
	#map_outerdiv #map_label_content {
		position: relative; 
		top: 0; 
		right: 0; 
		background-color: #000; 
		padding: 5px; 
		height: 70px; 
		width: 140px; 
		z-index: 50; 
		margin: 10px 10px 0 0; 
		opacity: 0.7; 
		border-radius: 4px;
	}
	#map_outerdiv #map_label_text {
		position: relative; 
		top: 3px; 
		right: 0; 
		padding: 5px; 
		height: auto; 
		width: 140px; 
		z-index: 52; 
		margin: 10px 30px 0 0; 
		text-align: right; 
		vertical-align: middle;
	}
	.presence_dot_blue {
		position: relative; 
		display: inline-block; 
		height: 25px; 
		width: 25px; 
		background-color: blue; 
		border-radius: 50%; 
		border:1px solid black; 
		opacity: 0.6;
	}
	.presence_dot_red {
		position: relative; 
		display: inline-block; 
		height: 25px; 
		width: 25px; 
		background-color: red; 
		border-radius: 50%; 
		border:1px solid black; 
		opacity: 0.6;
	}
	.presence_dot_yellow {
		position: relative; 
		display: inline-block; 
		height: 25px; 
		width: 25px; 
		background-color: yellow; 
		border-radius: 50%; 
		border:1px solid black; 
		opacity: 0.6;
	}
	#map_outerdiv #map_label_text .presence_dot_txt {
		position: relative; 
		display: inline-block; 
		margin-right: 6px; 
		color: #fff; 
		font-size: 18px;
	}

}

/****************** Timeline ******************/
.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}
.timeline:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  margin-left: -1.5px;
  content: "";
  background-color: #e9ecef;
}
.timeline > li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
}
.timeline > li:after, .timeline > li:before {
  display: table;
  content: " ";
}
.timeline > li:after {
  clear: both;
}
.timeline > li .timeline-panel {
  position: relative;
  float: right;
  width: 100%;
  padding: 0 20px 0 100px;
  text-align: left;
}
.timeline > li .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
.timeline > li .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
.timeline > li .timeline-image {
  position: absolute;
  z-index: 100;
  left: 0;
  width: 80px;
  height: 80px;
  margin-left: 0;
  text-align: center;
  color: white;
  border: 7px solid #e9ecef;
  border-radius: 100%;
  background-color: #386122;
}
.timeline > li .timeline-image h4 {
  font-size: 10px;
  line-height: 14px;
  margin-top: 12px;
}
.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
  padding: 0 20px 0 100px;
  text-align: left;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
.timeline > li:last-child {
  margin-bottom: 0;
}
.timeline .timeline-heading h4 {
  margin-top: 0;
  color: inherit;
}
.timeline .timeline-heading h4.subheading {
  text-transform: none;
}
.timeline .timeline-body > ul,
.timeline .timeline-body > p {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline:before {
    left: 50%;
  }
  .timeline > li {
    min-height: 100px;
    margin-bottom: 100px;
  }
  .timeline > li .timeline-panel {
    float: left;
    width: 41%;
    padding: 0 20px 20px 30px;
    text-align: right;
  }
  .timeline > li .timeline-image {
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
  }
  .timeline > li .timeline-image h4 {
    font-size: 13px;
    line-height: 18px;
    margin-top: 16px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    float: right;
    padding: 0 30px 20px 20px;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .timeline > li {
    min-height: 150px;
  }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px;
  }
  .timeline > li .timeline-image {
    width: 150px;
    height: 150px;
    margin-left: -75px;
  }
  .timeline > li .timeline-image h4 {
    font-size: 18px;
    line-height: 26px;
    margin-top: 30px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 20px 20px;
  }
}
@media (min-width: 1200px) {
  .timeline > li {
    min-height: 170px;
  }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px 100px;
  }
  .timeline > li .timeline-image {
    width: 170px;
    height: 170px;
    margin-left: -85px;
  }
  .timeline > li .timeline-image h4 {
    margin-top: 40px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 100px 20px 20px;
  }
}

/****************** Banner ******************/
#banner {
  position: relative;
  background-color: black;
  height: 45vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

#banner iframe {
  position:fixed;
  width:100%;
  height:100%;
  min-width:1920px;
  min-height:1080px;
  z-index:0;
  top:-120px;
  background:url(../images/img_banner.jpg) no-repeat;
  opacity:0.3;
}

#banner .container {
  position: relative;
  z-index: 2;
}

#banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}

@media (pointer: coarse) and (hover: none) {
  #banner iframe {
    display: none;
  }
}

/* Diseño móvil: 480 px e inferior. */
@media only screen and (max-width: 481px) {

	/****************** Siderbar Not Header ******************/
	#accordionSidebarNotHeader {
		width: 100% !important;
		top: 150px !important;
		padding-top: 10px !important;
		z-index: 5;
	}
	#submenu-icon, 
	.filter-txt-btn {
		display: inline !important;		
	}

}

/* Diseño tableta: de 481 px a 768 px. Hereda estilos de: Diseño móvil. */
@media only screen and (min-width: 481px) and (max-width: 768px) {

	/****************** Siderbar Not Header ******************/
	#accordionSidebarNotHeader {
		width: 140px !important;
		top: 150px !important;
		padding-top: 10px !important;
		z-index: 4;
	}
	#submenu-icon, 
	.filter-txt-btn {
		display: none !important;		
	}

}

/* Diseño Web: de 768 px. a 1200 */
@media only screen and (min-width: 769px) and (max-width: 1200px) {

	/****************** Siderbar Not Header ******************/
	#accordionSidebarNotHeader {
		width: 300px !important;
		top: 150px !important;
		padding-top: 10px !important;
		z-index: 4;
	}
	#submenu-icon, 
	.filter-txt-btn {
		display: none !important;		
	}

}

/* Diseño Web: de 1200 px. a 1400 px */
@media only screen and (min-width: 1201px) and (max-width: 1400px) {

	/****************** Siderbar Not Header ******************/
	#accordionSidebarNotHeader {
		width: 380px !important;
		top: 150px !important;
		padding-top: 10px !important;
		z-index: 4;
	}
	#submenu-icon, 
	.filter-txt-btn {
		display: none !important;		
	}

}

/* Diseño Web: de 1400 px. a 1920 px */
@media only screen and (min-width: 1401px) and (max-width: 1919px) {

	/****************** Siderbar Not Header ******************/
	#accordionSidebarNotHeader {
		width: 420px !important;
		top: 150px !important;
		padding-top: 10px !important;
		z-index: 4;
	}
	#submenu-icon {
		display: none !important;		
	}
	.filter-txt-btn {
		display: inline !important;		
	}

}

/* Diseño Web: Más de 1920 px */
@media only screen and (min-width: 1920px) {

	/****************** Siderbar Not Header ******************/
	#accordionSidebarNotHeader {
		width: 480px !important;
		top: 150px !important;
		padding-top: 10px !important;
		z-index: 4;
	}
	#submenu-icon {
		display: none !important;		
	} 
	.filter-txt-btn {
		display: inline !important;		
	}

}








































