/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: 'HelveticaME';
  src: url('/bootstrap/assets/fonts/HelveticaLTStd-Light.otf');
}

@font-face {
  font-family: 'Fedra';
  src: url('/bootstrap/assets/fonts/FeSaCdStd Bold.otf');
}

@font-face {
  font-family: 'ITC';
  src: url('/bootstrap/assets/fonts/ITCAvantGardeStd-Demi.otf');
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
  font-family: "HelveticaME", sans-serif;
  color: #444444;
  box-shadow: 1px 2px 15px 0px rgba(0, 0, 0, 0.2);
}

a {
  color: #184ca8;
  text-decoration: none;
}

a:hover {
  color: #97e0f8;;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fedra", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #184ca8;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Whatsapp button
--------------------------------------------------------------*/
.whatsapp {
  position: fixed;
  visibility: visible;
  opacity: 1;
  right: 15px !important;
  bottom: 15px !important;
  z-index: 996;
  background: #00da2d;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  transition: all 0.7s;
}
.whatsapp i {
  font-size: 56px;
  color: #fff;
  line-height: 0;
}
.whatsapp:hover {
  background: #00d522;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #184ca8;
  height: 130px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}
#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}
#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #97e0f8;
  transition: all 0.5s;
  z-index: 997;
  height: 50px;
  border-bottom:4px solid #6ba0b4;
}
#header.fixed-top {
  height: 50px;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "ITC", sans-serif;
}
#header .logo a {
  color: #222222;
}
#header .logo a span {
  color: #184ca8;
}
#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

#header .social-links a {
  color: rgba(255, 255, 255, 1);
  line-height: 0;
  transition: 0.3s;
  margin-right: 20px;
  background-color:#184ca8;
  padding:4px;
  border:2px solid #fff;
  border-radius: 100%;
}
#header .social-links a:hover {
  color: white;
}

@media (max-width: 768px) {
  #header .social-links i{
    vertical-align: sub;
  }
}

/*--------------------------------------------------------------
# Login box
--------------------------------------------------------------*/
#login-box h4{
	margin:6px 0;
}

#login-box h4 span{
	font-family: "Helvetica" !important;
	font-size:1rem;
	margin:0 5px;
}

#login-box h4.hola{
	padding-left:40px;
	background-image: url('/img/iconos/hola.png');
	background-repeat: no-repeat;
	background-position:left top;
	line-height:35px;
}

#login-box input[type=submit]{
	height:30px;
	display:inline;
	vertical-align:bottom;
}

#login-box .submit.login{
	line-height:18px;
	height:27px;
}

#login-box a.btn{
	line-height:22px;
	height:31px;
}

#login-box.mobile .btn{
	height:31px;
	line-height:13px;
	display:inline;
	vertical-align:bottom;
	border:none;
	color:#FFF;
	font-size: 1rem;
	font-family: "Helvetica" !important;
	font-weight:normal;
}

#login-box.mobile h4{
	background-image: none;
	padding-left:5px;
}

#login-box input[type=text], #login-box input[type=password]{
	margin-right:5px;
	width:100px;
}

@media (max-width: 500px) {
	#login-box h4 span{
		display:block;
		margin-left:0;
	} 
	#login-box label{
		display:block;
		margin-top:10px;
	}
	#login-box input[type=text], #login-box input[type=password]{
		width:200px
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 14px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #184ca8;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #184ca8;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 250px;
}
.navbar .dropdown ul a {
  padding: 5px 20px;
  font-weight: 400;
  font-size:13px;
}
.navbar .dropdown ul a:hover{
	background-color:#cff1fc;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #184ca8;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }

@media (min-width: 500px) {
	.navbar .dropdown ul.reduce {
		min-width: 650px;
	}
	.navbar .dropdown ul.reduce li {
		float:left;
		min-width:325px;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #184ca8;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #184ca8;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Image Bar Section
--------------------------------------------------------------*/
#image-bar {
  width: 100%;
  position: relative;
}
#image-bar:before {
  content: "";
  background: rgba(255, 255, 255, 0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#image-bar .container {
  position: relative;
}
#image-bar .slide-text{
	bottom: 0 !important;
	top: 22.5% !important;
	right: 5% !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	text-align:right;
}
#image-bar h1 {
  margin: 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #FFF;
  font-family: "ITC", sans-serif;
  opacity:0.85;
}
#image-bar h1 span {
  color: #FFF;
  background-color:#184ca8;
  padding:10px 10px 0 10px;
}
#image-bar h2 {
  color: #FFF;
  margin: 20px 0;
  font-size: 24px;
  line-height:35px;
  font-weight: 400;
  font-family: "ITC", sans-serif;
  opacity:0.85;
}
#image-bar h2 span {
  color: #FFF;
  background-color:#184ca8;
  padding:10px 10px 5px 10px;
}

#image-bar h1 a, #image-bar h2 a{
	color: #97e0f8 !important;
}

#image-bar h1 a:hover, #image-bar h2 a:hover{
	text-decoration: underline !important;
}

#image-bar .carousel-control-next, #image-bar .carousel-control-prev{
	width: 5% !important;
}

@media (max-width: 768px) {
  #image-bar {

  }
  #image-bar h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #image-bar h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #image-bar .slide-text{
  	text-align:center;
	margin-left:auto;
	margin-right:auto;
  }
  #image-bar .slide-text h2 span{
	  display:inline-block;
  }
}
@media (max-width: 320px) {
  #image-bar {
    display:none
  }
}


/*--------------------------------------------------------------
# Offers section
--------------------------------------------------------------*/
#offers-bar {
  font-size: 24px;
  line-height:36px;
  font-weight:600;
  transition: all 0.5s;
  color: #000;
  padding: 0;
	background-image: url('/img/fondos/ofertas.png');
	background-repeat: repeat;
	background-position:left top;
}

#offers-bar .section-title h3{
	color:#184ca8;
	width:auto;
}

#offers-bar .offers-details > div{	
	border: 7px solid #d2d3d4;
	border-radius:15px;
	background-color:#FFF;
}

#offers-bar .offers-details h4{
	font-family: "Helvetica" !important;
	font-size:32px;
	margin-bottom:5rem;
}

#offers-bar .offers-details .price{
	font-family: "ITC" !important;
	color:#4093c9;
	font-size:96px;
	font-weight:bolder;
}

#offers-bar .offers-details .price span{
	font-size:52px;
}

#offers-bar .offers-details .contents{
	background-color:#cbeffb;
	border-radius:12px;
	font-weight:normal;
}

#offers-bar .offers-details .contents span{
	font-family: "Fedra" !important;
	font-size:28px;
	font-weight:bold;
}

#offers-bar .phone {
  font-size: 48px;
  line-height: 70px;
  font-weight:600;
  transition: all 0.5s;
  color: #184ca8;
  padding: 0;
}

#offers-bar .phone a {
	display:inline-block;
	text-align:right;
	width:375px;	
	height:60px;
	margin-left:10px;
    font-size: 48px;
	line-height: 70px;
    font-weight:600;
	color: #184ca8;
	padding-left:50px;
	background-image: url('/img/iconos/whatsapp-grande.png');
	background-repeat: no-repeat;
	background-position:left top;
}

@media (max-width: 768px) {
	#offers-bar{
		padding-top:0 !important;
	}
	
	#offers-bar .phone {
	  font-size: 24px;
	  line-height: 35px;
	}

	#offers-bar .phone a {
		width:200px;	
		height:60px;
		margin-left:10px;
	    font-size: 24px;
		line-height: 35px;
	    font-weight:600;
		padding-left:25px;
		background-image: url('/img/iconos/whatsapp.png');
	}
}


/*--------------------------------------------------------------
# Calculadora section
/*------------------------------------------------------------*/
#calculadora-bar {
    background: #184ca8;;
    color: #FFF;
    font-size: 24px;
    line-height:36px;
    font-weight:600;
	padding-top:100px;
	background-image: url('/img/fondos/calculadora.png');
	background-repeat: no-repeat;
	background-position:center 8vh;
	padding-top:15vh !important;
}

#calculadora-bar .container{
	padding-top:15vh
}

#calculadora-bar .section-title h3{
	width:auto;
}

#calculadora-bar h3, #calculadora-bar h4, #calculadora-bar h5, #calculadora-bar h6{
	width:auto;
}

#calculadora-bar h5{
	font-size:32px;
}

#calculadora-bar h5 span{
	font-size:48px;
	color: #97e0f8;
}

#calculadora-bar h6{
	 font-family: "Helvetica";
	 color: #97e0f8;
}

#calculadora-bar h6.mini{
	 color: #898b8c;
	 font-size:12px;
}

#calculadora-bar .calculadora .pregunta{
	display:none;
}

#calculadora-bar .calculadora #cal-total{
	vertical-align:bottom;
}

#calculadora-bar button{	
	background-color:#1e90ff;
	color:#FFF;
	height:40px;
	float:right;
	background-image: url('/img/iconos/pdf.gif');
	background-repeat: no-repeat;
	background-position:20px center;
}

@media (max-width: 768px) {
	#calculadora-bar {
	    font-size: 16px;
	    line-height:26px;
	}
}

/*--------------------------------------------------------------
# Clase practica section
/*------------------------------------------------------------*/
#clase-practica-bar {
    background: #e8f8fd;;
    color: #595b61;
    font-size: 24px;
    line-height:36px;
    font-weight:600;
}

#clase-practica-bar h3{
	color:#184ca8;
	font-size:48px;
}

#clase-practica-bar h3 span{
	font-family: "ITC";
	color:#595b61;
	font-size:96px;
}

#clase-practica-bar h3 span span{
	font-size:72px;
}

#clase-practica-bar h4{
	font-family: "Helvetica";
	color:#000;
	font-size:32px;
}


/*--------------------------------------------------------------
# Contacto section
/*------------------------------------------------------------*/
#contacto-bar {
    background: #c6eefc;;
    color: #595b61;
    font-size: 24px;
    line-height:36px;
    font-weight:600;
}

#contacto-bar .box{
	background-color:#FFF;
	color: #000;
	box-shadow: 10px 10px 15px 5px rgba(0, 0, 0, 0.25);
	border-radius:15px;
}

#contacto-bar .section-title h3{
	color:#184ca8;
	width:auto;
	font-size:48px;
}

#contacto-bar .section-title h4{
	font-family: "Helvetica";
	color:#000;
	font-size:32px;
	width:auto;
}

#contacto-bar form label{
	width:25%;
}

#contacto-bar form input[type=text]{
	width:75%;
	padding:2px 4px;
	background-color: #e8f8fd;
	border:1px solid #e8f8fd;
}

#contacto-bar form label span{
	color:red;
}

#contacto-bar form input[type=submit]{
	background-color: #00d66e;
	font-family: "Fedra";
	color:#FFF;
	font-size:32px;
	padding:0 50px;
}

#contacto-bar #gracias{
	color:green;
	padding:0 20px;
}

@media (max-width: 768px) {
	#contacto-bar .section-title h3{
		font-size:32px;
	}

	#contacto-bar .section-title h4{
		font-size:24px;
	}
}

@media (max-width: 991px) {
	#contacto-bar form label,
	#contacto-bar form input[type=text]{
		width:100%;
	}
}

/*--------------------------------------------------------------
# Bullets section
/*------------------------------------------------------------*/
#bullets-bar {
    background: #184ca8;;
    color: #FFF;
    font-size: 24px;
    line-height:36px;
}

#bullets-bar h3{
	font-size:40px;
}

#bullets-bar h4{
	font-size:32px;
}

#bullets-bar h5{

}

#bullets-bar h6{
	font-family: "Helvetica";
	padding:0 7px;
}

#bullets-bar .box{
	color:#000;
	height:15em;
}

#bullets-bar .box.odd{
	background-color:#97e0f8;
}

#bullets-bar .box.even{
	background-color:#cbeffb;
}

@media (max-width: 768px) {
	#bullets-bar .box{
		height:17em;
	}
	#bullets-bar h3{
		font-size:32px;
	}

	#bullets-bar h4{
		font-size:24px;
	}
}


/*--------------------------------------------------------------
# Location Header Section
--------------------------------------------------------------*/
#location-header {
  width: 100%;
  height: 55vh;
  position: relative;
}
#location-header:before {
  content: "";
  background: rgba(255, 255, 255, 0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#location-header .container {
  position: relative;
}
#location-header .icono{
    background-color:#184ca8;
	padding-top:9vh;
	padding-bottom:5vh;
}
#location-header h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 56px;
  color: #FFF;
  font-family: "ITC", sans-serif;
  padding-top:1vh;
  padding-left:0.4vw;
}

@media (max-width: 768px) {
  #location-header {
	  height: 35vh;
  }
  #location-header h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #location-header .icono{
  	padding-top:4vh;
  	padding-bottom:2vh;	  
  }
  #location-header .icono img{
	  height: 60% !important;
  }
}
@media (max-width: 320px) {
  #location-header {
    display:none
  }
}

#location-bar {
  font-size: 24px;
  line-height:36px;
  font-weight:600;
  transition: all 0.5s;
  color: #000;
  padding: 0;
}

#location-bar .section-title h2{
	color:#184ca8;
	width:auto;
}

#location-bar ul{
	list-style-type:none;
}

#location-bar li{
	background-repeat: no-repeat;
	background-position:left top;
}

#location-bar li.direccion{
	background-image: url('/img/iconos/i-direccion.png');
}

#location-bar li.horario{
	background-image: url('/img/iconos/i-horario.png');
}

#location-bar li.telefono{
	background-image: url('/img/iconos/i-telefono.png');
}

#location-map .map{
	min-height:500px;
	border:20px solid #98d7f6;
	border-radius: 10px;
}

#location-bar h3{
	font-family: "Helvetica";
	line-height:30px;
}

#location-bar table th, #location-bar table td{
	font-size: 1em;
	border: 2px solid #184ca8;
}

#location-bar table th{
	background-color: #97e0f8;
	font-weight:bold;
}

@media (max-width: 768px) {
	#location-map .map{
		min-height:300px;
	}
}

/*--------------------------------------------------------------
# Lookup section
--------------------------------------------------------------*/
#lookup-bar {
  font-size: 24px;
  line-height:36px;
  font-weight:600;
  transition: all 0.5s;
  color: #000;
  padding: 0;
}

#lookup-bar .section-title h3{
	color:#184ca8;
	width:auto;
}

#lookup-bar .mapa{
	height:500px;
}

#lookup-bar #map {
  height: 100%;
}

#lookup-bar #description {
  font-family: "Fedra", sans-serif;
  font-size: 15px;
  font-weight: 300;
}

#lookup-bar #infowindow-content .title {
  font-weight: bold;
}

#lookup-bar #infowindow-content {
  display: none;
}

#lookup-bar #map #infowindow-content {
  display: inline;
}

#lookup-bar .pac-card {
  background-color: #fff;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  margin: 10px;
  padding: 0 0.5em;
  font: 400 18px "Fedra", sans-serif;
  overflow: hidden;
  font-family: "Fedra", sans-serif;
  padding: 0;
}

#lookup-bar #pac-container {
  padding-bottom: 12px;
  margin-right: 12px;
}

#lookup-bar .pac-controls {
  display: inline-block;
  padding: 5px 11px;
}

#lookup-bar .pac-controls label {
 font-family: "Fedra", sans-serif;
  font-size: 13px;
  font-weight: 300;
}

#lookup-bar #pac-input {
  background-color: #fff;
  font-family: "Fedra", sans-serif;
  font-size: 20px;
  color:#000;
  font-weight: 300;
  padding: 0 11px 0 13px;
  text-overflow: ellipsis;
  width: 50%;
}

#lookup-bar #pac-input:focus {
  border-color: #4d90fe;
}

#lookup-bar #title {
  color: #fff;
  background-color: #4d90fe;
  font-size: 25px;
  font-weight: 500;
  padding: 6px 12px;
}

#lookup-bar #target {
  width: 345px;
}

#lookup-list a.btn{
	width:100%;
    font-family: "Fedra", sans-serif;
    font-size: 20px;
	background-color: #184ca8;
	background-image: url('/img/iconos/triangulo-derecha.png');
	background-repeat: no-repeat;
	background-position:right 10px center;
	outline:none !important;
}

#lookup-list a.btn[aria-expanded="true"]{
	background-image: url('/img/iconos/triangulo-abajo.png');
}

#lookup-list .card-body{
	background-color:#ececed;
	min-height:145px;
}

#lookup-list .card-body a{
	color:#000;
}

#lookup-list .card-body a:hover{
	text-decoration: underline;
}

#lookup-list .card-body p{
	margin:0;
}

#lookup-list .card-body p:nth-child(2){
	margin-bottom:15px;
}

#lookup-list .card-body p span{
	text-transform: uppercase;
	color:#184ca8;
	font-weight:bold;
}

@media (max-width: 768px) {
	#lookup-bar #pac-input {
	  width: 100%;
	}
}

/*--------------------------------------------------------------
# Reciclaje section
--------------------------------------------------------------*/
#reciclaje-header {
  width: 100%;
  height: 70vh;
  position: relative;
}
#reciclaje-header:before {
  content: "";
  background: rgba(255, 255, 255, 0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#reciclaje-header .container {
  position: relative;
}
#reciclaje-header .slide-text{
	margin: 18vh;
	margin-top:27vh;
	text-align:center;
}
#reciclaje-header h1 {
  margin: 20px 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 56px;
  color: #184ca8;
  font-family: "ITC", sans-serif;
  opacity:0.85;
}

#reciclaje-header h1 span {
  background-color:#FFF;
  padding:10px 10px 0 10px;
}

@media (max-width: 768px) {
  #reciclaje-header {

  }
  #reciclaje-header h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #reciclaje-header .slide-text{
  	text-align:center;
	margin-left:auto;
	margin-right:auto;
  }
  #reciclaje-header .slide-text h1 span{
	  display:inline-block;
  }
}
@media (max-width: 320px) {
  #reciclaje-header {
    display:none
  }
}

#reciclaje-bar {
  font-size: 24px;
  line-height:36px;
  font-weight:600;
  transition: all 0.5s;
  color: #000;
  padding: 0;
}

#reciclaje-bar .section-title h3{
	color:#184ca8;
	width:auto;
}

#reciclaje-bar p{
	text-align:justify;
}

#reciclaje-precio-bar {
    background: #e8f8fd;;
    color: #595b61;
    font-size: 24px;
    line-height:36px;
    font-weight:600;
}

#reciclaje-precio-bar h3{
	color:#184ca8;
	font-size:48px;
}

#reciclaje-precio-bar h3 span{
	font-family: "ITC";
	color:#595b61;
	font-size:96px;
}

#reciclaje-precio-bar h3 span span{
	font-size:72px;
}

#reciclaje-precio-bar h4{
	font-family: "Helvetica";
	color:#000;
	font-size:32px;
}


/*--------------------------------------------------------------
# Area personal section
--------------------------------------------------------------*/
#area-personal-bar {
  font-size: 24px;
  line-height:36px;
  font-weight:600;
  transition: all 0.5s;
  color: #000;
  padding: 0;
}

#area-personal-bar .section-title h3{
	color:#184ca8;
	width:auto;
}

#area-personal-bar p{
	text-align:justify;
}

#area-personal-items .item{
	background-color:#98d7f6;
	border-radius:12px;
	font-weight:bold;
	color:#184ca8;
	font-size:24px;
}

#area-personal-items .item a:hover {
	color:#184ca8;
	text-decoration:underline;
}

/*--------------------------------------------------------------
# Reservas section
--------------------------------------------------------------*/
#reservas-bar {
  font-size: 24px;
  line-height:36px;
  font-weight:600;
  transition: all 0.5s;
  color: #000;
  padding: 0;
}

#reservas-bar .section-title h3{
	color:#184ca8;
	width:auto;
}

#reservas-bar p{
	text-align:justify;
}

#reservas-bar p b{
	font-weight:bolder;
} 

#reservas-compra-bar{
	background-color:#e8f8fd;
} 

#reservas-compra-bar .row.back > div{
	padding-left:12rem;
	height:21vh;
	background-image: url('/img/iconos/item-comprar.png');
	background-repeat: no-repeat;
	background-position:left middle;
}

#reservas-compra-bar p{
	margin:0;
	font-size:22px;
	line-height:28px;
}

#reservas-compra-bar a.btn{
	height:34px;
}

#reservas-calendar-bar h6{
	background-color:#326ab4;
	color:#FFF;
	padding:10px 20px;
	margin:0;
	font-size:24px;
}

#reservas-calendar-bar h6 span {
	font-size:40px;
	margin:0 10px;
	vertical-align:baseline;
}

.reservas-select{
	font-family: "Fedra" !important;
	font-size:28px;
	font-weight:bold;
	color:#000;
}

.reservas-select select, .reservas-select select option{
	font-size:25px;
	font-weight:normal;
}

.b_reservas #preloader{ display:none; }
#calendario { border:1px solid #DDD;}
#calendario .wc-grid-timeslot-header, .wc-day-column { vertical-align: top;}
#calendario * { box-sizing: content-box !important; }

@media (max-width: 768px) {
	#reservas-compra-bar .row.back > div{
		padding-left:0;
		background-image: none;
		height:17vh;
	}
}


/*--------------------------------------------------------------
# Compras section
--------------------------------------------------------------*/
#compras-bar {
  font-size: 24px;
  line-height:36px;
  font-weight:600;
  transition: all 0.5s;
  color: #000;
  padding: 0;
}

#compras-bar .section-title h3{
	color:#184ca8;
	width:auto;
}

#compras-bar p{
	text-align:justify;
}

#compras-form-bar{
	border-radius:12px;
	font-weight:bold;
	font-size:24px;
}

#compras-form-bar .container .row.back{
	background-color:#d1edfb;
	border-radius:15px;
	color:#000;
}

#compras-form-bar .container .row span{
	font-size:30px;
	margin:0 3px;
	color:#184ca8;
	font-weight:bolder;
}

#compras-form-bar .container .row.error{
	color:red;
	background-color: #ffe6e6;
}

#compras-form-bar a.btn{
	font-size:24px;
}

#compras-form-bar a.btn.pendiente{
	opacity: .3;
	cursor: not-allowed;
}

#compra-info-bar{
	background-color:#d1ebfa;
} 

#compra-info-bar .row.back > div{
	padding-left:9rem;
	background-image: url('/img/iconos/escudo.png');
	background-repeat: no-repeat;
	background-position:left middle;
}

#compra-info-bar h4{
	text-transform:uppercase;
}

#compra-info-bar h4 span{
	font-size:40px;
	margin:0 3px;
}

#compra-info-bar p{
	margin:0;
	font-size:22px;
	line-height:28px;
	text-align:justify;
}

#compra-info-bar a.btn{
	height:34px;
}

@media (max-width: 768px) {
	#compras-bar, #compras-form-bar, #compra-info-bar {
	  font-size: 16px !important;
	  line-height:24px !important;
	}
	#compras-form-bar span{
		font-size:22px !important;
	}
	#compra-info-bar .row.back > div{
		padding-left:0;
		background-image:none;
	}
	#compra-info-bar p{
  	  	font-size: 16px !important;
  	  	line-height:24px !important;		
	}
	#compras-form-bar a.btn{
		font-size:16px;
	}
	#compra-info-bar h4{
		text-align:center;
	}
}

#confirmacion-tpv-tabla-bar button{	
	background-color:#1e90ff;
	color:#FFF;
	height:40px;
	float:right;
	background-image: url('/img/iconos/pdf.gif');
	background-repeat: no-repeat;
	background-position:20px center;
}


/*--------------------------------------------------------------
# Tasas section
--------------------------------------------------------------*/
#tasas-bar {
  font-size: 24px;
  line-height:36px;
  font-weight:600;
  transition: all 0.5s;
  color: #000;
  padding: 0;
}

#tasas-bar .section-title h3{
	color:#184ca8;
	width:auto;
}

#tasas-bar p{
	text-align:justify;
}

#tasas-form-bar{
	border-radius:12px;
	font-weight:bold;
	font-size:24px;
}

#tasas-form-bar .container .row.back{
	background-color:#d1edfb;
	border-radius:15px;
	color:#000;
}

#tasas-form-bar .container .row span{
	font-size:30px;
	margin:0 3px;
	color:#184ca8;
}

#tasas-form-bar .container .row.error{
	color:red;
	background-color: #ffe6e6;
}

#tasas-form-bar a.btn{
	font-size:24px;
}

#tasas-form-bar a.btn.pendiente{
	opacity: .3;
	cursor: not-allowed;
}

#tasas-info-bar{
	background-color:#d1ebfa;
} 

#tasas-info-bar .row.back > div{
	padding-left:9rem;
	background-image: url('/img/iconos/escudo.png');
	background-repeat: no-repeat;
	background-position:left middle;
}

#tasas-info-bar h4{
	text-transform:uppercase;
}

#tasas-info-bar h4 span{
	font-size:40px;
	margin:0 3px;
}

#tasas-info-bar p{
	margin:0;
	font-size:22px;
	line-height:28px;
	text-align:justify;
}

#tasas-info-bar a.btn{
	height:34px;
}

@media (max-width: 768px) {
	#tasas-bar, #tasas-form-bar, #tasas-info-bar {
	  font-size: 16px !important;
	  line-height:24px !important;
	}
	#tasas-form-bar span{
		font-size:22px !important;
	}
	#tasas-info-bar .row.back > div{
		padding-left:0;
		background-image:none;
	}
	#tasas-info-bar p{
  	  	font-size: 16px !important;
  	  	line-height:24px !important;		
	}
	#tasas-form-bar a.btn{
		font-size:16px;
	}
	#tasas-info-bar h4{
		text-align:center;
	}
}


/*--------------------------------------------------------------
# Gestión section
--------------------------------------------------------------*/
#gastos-bar {
  font-size: 24px;
  line-height:36px;
  font-weight:600;
  transition: all 0.5s;
  color: #000;
  padding: 0;
}

#gastos-bar .section-title h3{
	color:#184ca8;
	width:auto;
}

#gastos-bar p{
	text-align:justify;
}

#gastos-form-bar{
	border-radius:12px;
	font-weight:bold;
	font-size:24px;
}

#gastos-form-bar .container .row.back{
	background-color:#d1edfb;
	border-radius:15px;
	color:#000;
}

#gastos-form-bar .container .row span{
	font-size:30px;
	margin:0 3px;
	color:#184ca8;
}

#gastos-form-bar .container .row.error{
	color:red;
	background-color: #ffe6e6;
}

#gastos-form-bar a.btn{
	font-size:24px;
}

#gastos-form-bar a.btn.pendiente{
	opacity: .3;
	cursor: not-allowed;
}

#gastos-info-bar{
	background-color:#d1ebfa;
} 

#gastos-info-bar .row.back > div{
	padding-left:9rem;
	background-image: url('/img/iconos/escudo.png');
	background-repeat: no-repeat;
	background-position:left middle;
}

#gastos-info-bar h4{
	text-transform:uppercase;
}

#gastos-info-bar h4 span{
	font-size:40px;
	margin:0 3px;
}

#gastos-info-bar p{
	margin:0;
	font-size:22px;
	line-height:28px;
	text-align:justify;
}

#gastos-info-bar a.btn{
	height:34px;
}

@media (max-width: 768px) {
	#gastos-bar, #gastos-form-bar, #gastos-info-bar {
	  font-size: 16px !important;
	  line-height:24px !important;
	}
	#gastos-form-bar span{
		font-size:22px !important;
	}
	#gastos-info-bar .row.back > div{
		padding-left:0;
		background-image:none;
	}
	#gastos-info-bar p{
  	  	font-size: 16px !important;
  	  	line-height:24px !important;		
	}
	#gastos-form-bar a.btn{
		font-size:16px;
	}
	#gastos-info-bar h4{
		text-align:center;
	}
}


/*--------------------------------------------------------------
# Confirmacion section
--------------------------------------------------------------*/
#confirmacion-bar {
  font-size: 24px;
  line-height:36px;
  font-weight:600;
  transition: all 0.5s;
  color: #000;
  padding: 0;
}

#confirmacion-bar .section-title h3{
	color:#184ca8;
	width:auto;
}

#confirmacion-bar p{
	text-align:justify;
}

#confirmacion-info-bar{
	background-color:#d1ebfa;
} 

#confirmacion-info-bar .row.back > div{
	padding-left:9rem;
	background-image: url('/img/iconos/escudo.png');
	background-repeat: no-repeat;
	background-position:left middle;
}

#confirmacion-info-bar h4{
	text-transform:uppercase;
}

#confirmacion-info-bar h4 span{
	font-size:40px;
	margin:0 3px;
}

#confirmacion-info-bar p{
	margin:0;
	font-size:22px;
	line-height:28px;
	text-align:justify;
}

#confirmacion-info-bar a.btn{
	height:34px;
}

#confirmacion-tpv-bar {
  font-size: 24px;
  line-height:36px;
  font-weight:600;
  transition: all 0.5s;
  color: #000;
  padding: 0;
}

#confirmacion-tpv-bar .section-title h3{
	color:#184ca8;
	width:auto;
}

#confirmacion-tpv-bar p{
	text-align:justify;
}

@media (max-width: 768px) {
	#confirmacion-bar, #confirmacion-info-bar, #confirmacion-tpv-bar {
	  font-size: 16px !important;
	  line-height:24px !important;
	}
	#confirmacion-info-bar .row.back > div{
		padding-left:0;
		background-image:none;
	}
	#confirmacion-info-bar p{
  	  	font-size: 16px !important;
  	  	line-height:24px !important;		
	}
	#confirmacion-info-bar h4{
		text-align:center;
	}
	#confirmacion-tabla-bar td{
		font-size:12px;
	}
}


/*--------------------------------------------------------------
# 404 section
--------------------------------------------------------------*/
#p404-header {
  font-size: 24px;
  line-height:36px;
  font-weight:600;
  transition: all 0.5s;
  color: #000;
  padding: 0;
}

#p404-header .section-title h3{
	color:#184ca8;
	width:auto;
}


/*--------------------------------------------------------------
# Terminos section
--------------------------------------------------------------*/
#terminos-bar p{
	text-align:justify;
}

#terminos-bar h2, #terminos-bar h3{
	margin:30px 0;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #184ca8;;
  padding: 0 0 30px 0;
  color: #FFF;
  font-size: 14px;
  height:175px;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #184ca8;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
  color: #184ca8;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #184ca8;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #184ca8;
}
#footer .footer-top .social-links a {
  font-size: 30px;
  display: inline-block;
  background: #184ca8;
  color: #fff;
  padding: 0;
  margin-right: 10px;
  border-radius: 25px;
  line-height:1.75;
  text-align: center;
  width: 50px;
  height: 50px;
  transition: 0.3s;
  border:3px solid #FFF;
}
#footer .footer-top .social-links a:hover {
  background: #97e0f8;;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits{
	margin:0 auto;
}
#footer .credits, #footer .credits a {
  text-align: center;
  font-size: 11px;
  color: #FFF !important;
}
@media (max-width: 768px) {
  #footer .social-links {
    float: none;
    text-align: center;
    padding: 2px 0;
	margin:0 auto;
  }
}


/* Basic styling */

[type=checkbox] {
  width: 2rem;
  height: 2rem;
  color: dodgerblue;
  vertical-align: middle;
  -webkit-appearance: none;
  background: none;
  border: 0;
  outline: 0;
  flex-grow: 0;
  border-radius: 50%;
  background-color: #FFFFFF;
  transition: background 300ms;
  cursor: pointer;
}


/* Pseudo element for check styling */

[type=checkbox]::before {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}


/* Checked */

[type=checkbox]:checked {
  background-color: currentcolor;
}

[type=checkbox]:checked::before {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}


/* Disabled */

[type=checkbox]:disabled {
  background-color: #CCD3D8;
  opacity: 0.84;
  cursor: not-allowed;
}


/* IE */

[type=checkbox]::-ms-check {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}

[type=checkbox]:checked::-ms-check {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}

@media (max-width: 768px) {
	[type=checkbox] {
	  width: 1.25rem;
	  height: 1.25rem;
}