/*=========================================*/
/*=== CSS SCREEN (inicio) ===*/
/*=========================================*/

/* ===== SETEOS GENERALES ===== */

@media screen{

body{
	font-size: 14px;
	font-family: 'Poppins', sans-serif!important;
  background: url(img/back.jpg) repeat-y;
  background-position: center;
}

.pagina_fija{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif!important;
}

b,
strong{
	font-weight: 700;
}

i,
em{
	font-style: italic;
}

a{
	outline: none;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

a:hover{
	cursor: pointer;
	text-decoration: none;
}

.fa{
  font-style: normal !important;
}

input{
	border-radius: 0 !important;
}

.embed-responsive {
  position: relative;
  display: block;
  /*width: 100%;*/
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}
.embed-responsive-16by9::before {
  padding-top: 56.25%;
}
.embed-responsive-4by3::before {
  padding-top: 75%;
}
.embed-responsive-1by1::before {
  padding-top: 100%;
}

.grayscale_filter{
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.panel{
	border:0 solid transparent;
}

.p-x-0{
	padding-left: 0;
	padding-right: 0;
}
.p-r-0{
	padding-right: 0;
}
.p-l-0{
	padding-left: 0;
}
.m-t-15{
	margin-top: 15px;
}
.m-b-0{
	margin-bottom: 0;
}

.btn{
  display: inline-block;
  padding: 0 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 0px;
}

/* ===== ALERTS ===== */

.alert{
  padding: 15px 15px;
  border-radius: 0;
  background: #fff;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
}

.alert-success{
  color: #4ba54c;
  border-color: #4ba54c;
}

.alert-danger{
  color: #ba3533;
  border-color: #ba3533;
}

textarea,
input[type="text"],
input[type="button"],
input[type="submit"],
input[type="password"]{
  -webkit-appearance: none;
  border-radius: 0;
}

/* ===== HOVERS ===== */

/* Grow */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

/* Bounce In */
.hvr-bounce-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-in:hover,
.hvr-bounce-in:focus,
.hvr-bounce-in:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #000;
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before,
.hvr-underline-from-left:focus:before,
.hvr-underline-from-left:active:before {
  right: 0;
}

/* ===== BOTON IR ARRIBA ===== */

.go-up{
	position: fixed;
	bottom: 30px;
	right: 30px;
}
.go-up-hide{
	display: none;
}
.go-up-show{
	display: block;
}
.go-up-btn{
  color: #000;
  background: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	padding-top: 10px;
	margin: 0 0;
	cursor: pointer;
	display: block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.go-up-btn .fa{
	font-size: 21px;
	line-height: 1;
	font-weight: 400;
}

/* ===== LOADING ===== */

.sk-circle {
	margin: 0 auto 30px auto;
	width: 40px;
	height: 40px;
	position: relative;
}

.form_news_home .sk-circle{
	margin: 0 auto;
	width: 30px;
	height: 30px;
}

.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
          animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg); }
.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg); }
.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }
.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg); }
.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg); }
.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }
.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg); }
.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg); }
.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg); }
.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg); }
.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg); }
.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; }
.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; }
.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; }
.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; }
.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s; }
.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s; }
.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s; }
.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s; }
.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s; }
.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s; }
.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s; }

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* ===== FAQ ===== */

.contenido .editorial .fck .faqs {
	padding: 0 50px;
}

.contenido .editorial .fck .faqs a{
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #209dd8;
  margin-top: 30px;
  text-decoration: none;
  margin-bottom: 15px;
  display: block;
}

.contenido .editorial .fck .faqs .text{
  font-size: 17px;
  line-height: 1.7;
  color: #000;
  text-align: left;
}

.contenido .editorial .fck .faqs .panel{
  box-shadow: none;
}


/* ===== TITULOS ===== */

.titulo{
  text-transform: uppercase;
  text-align: center;
  font-size: 21px;
}

.noticias-destacadas .titulo,
.plugin-instagram .titulo,
.listado_subsecciones .titulo,
.publicaciones-destacadas .titulo{
  font-size: 29px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: uppercase;
  color: #565656;
  text-align: left;
}

.noticias-destacadas .titulo img,
.videos-destacados .titulo img,
.plugin-instagram .titulo img,
.publicaciones-destacadas .titulo img{
  margin-right: 15px;
}

.listado .subseccion .titulo img{
  margin-right: 8px;
}


/* ===== NOTICIAS DESTACADAS ===== */

.noticias-destacadas,
.publicaciones-destacadas,
.plugin-instagram,
.videos-destacados{
  position: relative;
}

.noticias-destacadas .soporte-titulo,
.videos-destacados .soporte-titulo,
.plugin-instagram .soporte-titulo,
.publicaciones-destacadas .soporte-titulo,
.listado .subseccion .soporte-titulo,
.listado_subsecciones .soporte-titulo,
.listado.buscar .soporte-titulo{
  position: relative;
  height: 23px;
  margin-bottom: 25px;
}

.listado_subsecciones .soporte-titulo{
  margin-top: 35px;
}

.videos-destacados .soporte-titulo{
  margin-top: 25px;
}

.publicaciones-destacadas .soporte-titulo{
  margin-bottom: 8px;
}

.noticias-destacadas .linea,
.videos-destacados .linea,
.plugin-instagram .linea,
.publicaciones-destacadas .linea,
.listado .subseccion .soporte-titulo .linea,
.listado_subsecciones .soporte-titulo .linea,
.listado.buscar .soporte-titulo .linea{
  width: 100%;
  height: 5px;
  background: #99c35a;
}

.plugin-instagram .linea,
.publicaciones-destacadas .linea{
  background: #e42184;
}

.videos-destacados .linea{
  background: #00a5e3;
}

.noticias-destacadas .soporte-titulo .titulo,
.listado .subseccion .soporte-titulo .titulo,
.listado_subsecciones .soporte-titulo .titulo,
.videos-destacados .soporte-titulo .titulo,
.plugin-instagram .soporte-titulo .titulo,
.publicaciones-destacadas .soporte-titulo .titulo,
.listado .subsecciones .modulo .texto h1.titulo,
.listado.buscar .soporte-titulo .titulo {
  position: absolute;
  left: 35px;
  top: -12px;
  background: #fff;
  padding: 0 18px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;  
}
.listado_subsecciones .soporte-titulo a:hover .titulo{
  color: #005372;
}
.listado .subseccion .soporte-titulo .titulo{
  top: -20px;
}
.publicaciones-destacadas .soporte-titulo .titulo {
  top: -13px;
}
.videos-destacados .soporte-titulo .titulo {
  top: -15px;
}

.noticias-destacadas .soporte-titulo .linea-noticias,
.listado.buscar .soporte-titulo .linea-noticias,
.listado_subsecciones .soporte-titulo .linea-noticias,
.listado .subseccion .soporte-titulo .linea-noticias{
  position: absolute;
  right: 5px;
  top: -26px;
}

.publicaciones-destacadas .soporte-titulo .linea-publicaciones{
  position: absolute;
  top: -24px;
  left: 344px;
}

.videos-destacados .soporte-titulo .linea-videos{
  position: absolute;
  right: 20px;
  top: -22px;
}

.plugin-instagram .soporte-titulo .linea-instagram{
  position: absolute;
  left: 495px;
  top: 4px;
}

.plugin-instagram .soporte-titulo .linea-instagram2{
  position: absolute;
  right: 0;
  top: -26px;
}

.noticias-destacadas .modulo figure{
  position: relative;
  overflow: hidden;
}

.noticias-destacadas .modulo .texto a h1{
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: #8c8c8c;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;  
}
.noticias-destacadas .modulo:hover .texto a h1{
  color: #00a5e3;
}

.noticias-destacadas .modulo-grande .texto a h1{
  font-size: 38px;
}

.noticias-destacadas .modulo-grande .texto{
  margin-top: 15px;
  padding-left: 10px;
}

.noticias-destacadas .modulo-chico .texto{
  margin-top: 5px;
}

.noticias-destacadas .modulo-chico .m-c-texto{
  margin-bottom: 25px;
}

.noticias-destacadas .modulo-grande .texto h1{
  font-size: 38px;
}

.noticias-destacadas .sop-modulos-noticias{
  padding-bottom: 70px;
}

/* ===== PUBLICACIONES DESTACADAS ===== */

.home .publicaciones-destacadas .modulo{
  margin-bottom: 30px;
}

.home .publicaciones-destacadas .modulo article {
  background: #ebeded;
  border-bottom: 2px solid #3f8eab;
  padding: 15px;
}

.home .publicaciones-destacadas .modulo article .texto h1{
  font-size: 24px;
  line-height: 1.166666666666667;
  letter-spacing: 0;
  color: #005372;
  font-weight: 400;
  text-align: left;
  text-transform: none;
  margin-top: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;  
}

.home .publicaciones-destacadas .modulo:hover article .texto h1{
  color: #00a5e3;
}

.home .publicaciones-destacadas .modulo article .texto p{
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
  color: #282828;
  margin-bottom: 15px;
}

/* ===== VIDEOS DESTACADOS ===== */

.videos-destacados{
  margin-bottom: 25px;
}

.videos-destacados .video-dest{
  position: relative;
}

.videos-destacados .video-dest .titulo-video{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 0;
  background: rgba(0,0,0,0.75);
}

.videos-destacados .video-dest .titulo-video .marcador,
.thumb_videos_destacados .modulo .texto .marcador{
  position: absolute;
  bottom: 0;
  left: 0;
  background: #00a5e3;
  width: 15px;
  height: 100%;
  border-right: 3px solid #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;  
}

.videos-destacados .video-dest:hover .titulo-video .marcador,
.thumb_videos_destacados .modulo:hover .texto .marcador{
  background: #e42184;
}

.videos-destacados .video-dest .titulo-video .titulo{
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  text-transform: none;
  text-align: left;
  font-weight: 900;
  margin-left: 30px;
}

.videos-destacados .col-pers-g{
  width: 79%;
  float: left;
  padding: 0 15px;
}

.videos-destacados .col-pers-c{
  width: 20%;
  float: left;
  padding: 0 15px 0 0;
}

.thumb_videos_destacados .modulo article{
  position: relative;
  margin-bottom: 3px;
} 

.thumb_videos_destacados .texto{
  background: rgba(0,0,0,0.75);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 0;
}

.thumb_videos_destacados .texto h2{
  font-size: 12px;
  line-height: 1.166666666666667;
  letter-spacing: 0;
  font-weight: 300;
  color: #fff;
  text-align: left;
  margin-left: 25px;
}

/* ===== PLUGIN INSTAGRAM ===== */

.plugin-instagram{
  margin-top: 55px;
}

.plugin-instagram .soporte-titulo{
  margin-bottom: 20px;
}

/* ===== AGENDA ===== */

.modulo-agenda{
  margin-top: 40px;
}

.modulo-agenda .modulo.newsletter{
  padding-left: 25px;
}

.modulo-agenda .newsletter .soporte-titulo .linea{
  background: #00a5e3;
  height: 4px;
  width: 100%;
  margin: 17px 0;
}

.modulo-agenda .newsletter .soporte-titulo .titulo{
  font-size: 29px;
  line-height: 1;
  text-align: left;
  color: #00a5e3;
  background: #e9edee;
  padding: 5px;
  position: absolute;
  top: 10px;
  left: 15px;
}

.modulo-agenda .btn#submit{
  background: transparent;
  position: relative;
}

.modulo-agenda .btn#submit .linea{
  background: #00a5e3;
  height: 4px;
  width: 100%;
}

.modulo-agenda .btn#submit .titulo {
  position: absolute;
  color: #00a5e3;
  font-size: 29px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  right: 30px;
  top: 0px;
  background: #e9edee;
  z-index: 999;
  padding: 0 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;  
}

.modulo-agenda .btn#submit:hover .titulo{
  color: #3f8eab;
}

/* ===== MATERIALES ===== */

.soporte_materiales{
  position: relative;
}

.soporte_materiales .separacion{
  width: 100%;
  height: 8px;
  background: #74cbc5;
  margin: 15px auto 45px;
}

.soporte_materiales .soporte-titulo .titulo{
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  background: #209dd8;
  padding: 17px 92px;
  display: table;
  margin: 0 auto 5px;
}

.listado .editorial .soporte_materiales .subtitulo{
  color: #000;
  line-height: 1.4;
  margin-top: 25px;
  text-align: left;
}

.listado .editorial .soporte_materiales .modulo .texto h1{
  font-size: 31px;
  line-height: 1;
  letter-spacing: 0;
  color: #209dd8;
  margin-top: 30px;
  margin-bottom: 7px;
}

.listado .editorial .soporte_materiales .modulo{
  margin-bottom: 0;
  position: relative;
}

.listado .editorial .soporte_materiales .modulo article{
  background: transparent;
  border: 0;
  padding: 0;
}

.listado .editorial .soporte_materiales .modulo .texto .descargas{
  font-size: 17px;
  line-height: 1;
  color: #000;
}

.listado .editorial .soporte_materiales .modulo .texto .descargas a{
  color: #000;
  float: none;
  display: block;
  line-height: 1.4;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;  
}

.listado .editorial .soporte_materiales .modulo .texto .descargas a:hover{
  color: #e42184;
}

/* ===== REDES ===== */

#header .redes{
  float: left;
  background: rgba(255,255,255,0.78);
  padding: 10px;
  border-bottom: 1px solid #8c8c8c;
  margin-right: 12px;
}
#footer .redes{
  text-align: left;
  padding-top: 10px;
}
#header .redes,
#footer .redes{
  position: relative;
}
.redes .btn.social{}
#header .redes .btn.social{
  margin: 0 6px;
}
#footer .redes .btn.social {
  background: #5d5d5f;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  padding-top: 4px;
  margin-right: 10px;
}


/* ===== ACCESO SERVICIO ===== */
#header .sistema_acceso{
  float: left;
  background: rgba(255,255,255,0.78);
  padding: 10px;
  border-bottom: 1px solid #8c8c8c;
  margin-right: 15px;
}

.btn_acceso:nth-child(1){
  margin-right: 15px;
}
.btn_acceso{
  padding:10px;
  color: #fff;
  background: #8c8c8c;
  font-size: 12px;
  letter-spacing: 0.07em;
  float: left;
  min-width: 142px;
  text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn_acceso a{
  color: #fff;
}
.btn_acceso:hover{
  background: #00a5e3;
}

/* ===== BUSQUEDA ===== */

#header .btn.buscador{
  float: right;
}
#bck_black_search{
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6) !important;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1030;
  display: none;
}
.panel_busqueda {
  padding: 0 0;
  margin: 0 0;
  color: #000;
  float: right;
  position: relative; /* Stay in place */
  z-index: 1057; /* Stay on top */
  background-color: transparent;
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.panel_busqueda .texto{
  background: transparent;
  border: 0;
  font-size: 15px;
  line-height: 1;
  font-weight: 200;
  outline: none !important;
  width: 78%;
  padding: 0 0 0 10px;
  margin: 0 0;
  height: 57px;
  color: #000;
  float: left;
  border-bottom: 1px solid #8c8c8c;
}
.panel_busqueda .botones{
  width: 21%;
  float: left;
  background: #fff;
  opacity: 0.78;
  text-align: center;
  border-bottom: 1px solid #8c8c8c;
  margin-left: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;  
}
.panel_busqueda .botones:hover{
  opacity: 1;
}
.panel_busqueda .botones a{
  display: block;
  padding-top: 15px;
  padding-bottom: 16px;
}

.panel_busqueda input#str::-webkit-input-placeholder {
   color: #000;
}
.panel_busqueda input#str:-moz-placeholder { /* Firefox 18- */
   color: #000;  
}
.panel_busqueda input#str::-moz-placeholder {  /* Firefox 19+ */
   color: #000;  
}
.panel_busqueda input#str:-ms-input-placeholder {  
   color: #000;
}

.soporte{
  background: #fff;
  padding: 0 60px;
}

.listado .soporte .subseccion{
  margin-top: 35px;
}

.sop-contacto {
  padding: 0;
}

.bck-header{
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 9999;
}

/* ===== HEADER ===== */

#header,
#header.header_slim,
#header .logo a img,
#header .logo a img.logo_slim{
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

#header{
  position: relative;
  background: #fff;
}

.sop-header{
  padding: 0 60px;
}

#header .container{
  position: relative;
}
#header .logo{
  margin-top: 10px;
  float: left;
  position: relative;
}

#header .logo img{
  width: 139px;
}
#header .logo a{
  display: inline-block;
}

#header .herramientas{
  position: absolute;
  right: 0;
  top: 12px;
  z-index: 9999;
}

/* ===== HEADER FIXED ===== */

#header_fixed{
  background: #fff;
	position: fixed;
	width: 100%!important;
	padding: 0 20px;
	left: 0;
	height: 60px;
	z-index: 1020;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#header_fixed .logo{
	float: left;
}
#header_fixed .logo a img{
  height: 60px;
}
.header_fixed_oculto{
  opacity: 0;
	top: -65px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.header_fixed_visible{
  opacity: 1;
	top: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* ===== FOOTER ===== */

#prefooter{
  padding-top: 1px;
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
  color: #505153;
}

.home #prefooter hr,
.listado #prefooter hr,
.contenido #prefooter hr{
  border-top: 1px solid #5d5d5f;
  margin:0 45px 20px;
}

.sop-contacto #prefooter hr{
  display: none;
}

.sop-contacto #prefooter .soporte{
  padding-top: 50px;
}

#prefooter .soporte,
#footer .soporte{
  padding: 0 55px;
}

#prefooter .titulo{
  font-size: 19px;
  line-height: 1.5;
  color: #505153;
  text-align: left;
  font-weight: 600;
}

#prefooter .fila1{
  border-bottom: 1px solid #5d5d5f;
  padding-bottom: 15px;
  margin: 0;
  margin-bottom: 15px;
}

#prefooter .fila2{
  border-bottom: 1px solid #5d5d5f;
  padding-bottom: 25px;
  margin: 0;
}

#footer{
  background: #fff;
  padding: 0 0 35px;
}
#footer .btn-consulta a{
  color: #fff;
  background: #505153;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 25px;
  text-align: center;
  display: inline-block;
  margin-left: 70px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;  
}
#footer .btn-consulta a:hover{
  background: #84c848;
}
#footer .sponsors{
  text-align: center;
  padding: 15px 0 5px;
  margin: 45px auto 0;
  display: block;
  border-bottom: 1px solid #5d5d5f;
}

#footer .sponsors img{
  display: inline-block;
  margin: 0 15px;
}
#footer .texto{
	font-size: 12px;
	line-height: 1;
}
#footer .texto h6{
  font-size: 12px;
  line-height: 1; 
  text-transform: none;
}
#footer .texto,
#footer .texto h6{
  color: #ffffff;
	font-weight: 400;
}
#footer .firma .dinamic{
	font-size: 9px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin: 0 0;
	padding-top: 0;
	padding-left: 0;
	text-decoration: none;
	float: right;
}
#footer .firma .dinamic a{
  color: #777;
	display: block;
	text-decoration: none;
}
#footer .firma .dinamic a:hover,
#footer .firma .dinamic a:focus{
  color: #fff;
}

/* ===== MENU PRINCIPAL ===== */

nav{
  display: inline-block;
}
.menu{
  position: relative;
	margin: 63px auto 0;
}
.menu > ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu > ul:after{
  clear: both;
}
.menu > ul > li{
  display: block;
  position: relative;
  float: left;
}
.menu > ul > li > a{
  font-size: 12px;
  line-height: 1;
	font-weight: 400;
  text-transform: uppercase;
  color: #565656;
  padding: 12px 10px 12px 5px;
  margin: 0 2px;
  background: #e1e2e3;
}
.menu > ul > li > a:hover,
.menu > ul > li > a:focus {
  text-decoration: none;
  background: #00a5e3;
  color: #fff!important;
}
.menu > ul > li.active > a,
.menu > ul > li.active > a:hover,
.menu > ul > li.active > a:focus{
	font-weight: 400;
	background: #00a5e3;
  color: #fff;
}
.menu > ul .open > a,
.menu > ul .open > a:hover,
.menu > ul .open > a:focus {
  background: #209dd8 !important;
  border-color: none;
}
.menu > ul > li .dropdown-menu{
  background: #00a5e3;
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  text-align: center;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 1000;
  display: none;
  float: left;
  min-width: 765px; 
  /*width: 100% !important;*/
  padding: 0 0;
  margin: 0 0;
  font-size: 12px;
  line-height: 1;
  list-style: none;
  border: none !important;
  border-radius: 0;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.menu > ul .open .dropdown-menu{
  display: block;
}
.menu > ul .open .hvr-colores{
  opacity: 1;
}
.menu > ul > li:first-child .dropdown-menu{
  left: 2px;
  right: auto;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}
.menu > ul > li:last-child .dropdown-menu{
  right: 2px;
  left: auto;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}
.menu > ul > li .dropdown-menu.temas{
  left: -245px;
  right: auto;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}
.menu > ul > li .dropdown-menu.marco-legal{
  right: -217px;
  left: auto;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}
.menu > ul > li .dropdown-menu.materiales{
  left: -313px;
  right: auto;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}
.menu > ul > li .dropdown-menu.novedades{
  right: -105px;
  left: auto;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}
.menu > ul > li .dropdown-menu:after {
  bottom: 122%;
	left: 0;
	border: solid transparent;
	height: 0;
	width: auto;
	position: absolute;
	pointer-events: none;
	margin-left: -5px;
}

.menu > ul > li:first-child .dropdown-menu:after{
  right: auto;
  left: 0;
}

.menu > ul > li:last-child .dropdown-menu:after{
	left: auto;
	right: 20%;
}
.menu > ul > li > .dropdown-menu > li{
  display: inline-block;
  float: left;
}
.menu > ul > li > .dropdown-menu > li > a {
  color: #fff;
  font-size: 11px;
	display: block;
	padding: 7px 13px;
	clear: both;
	font-weight: 300;
	line-height: 1.428571429;
	white-space: nowrap;
	text-align: center;
	text-transform: none;
	filter:none !important;
	background-image: none !important; 
}
.menu > ul > li > .dropdown-menu > li:last-child{
	display: none;
}
.menu > ul > li > .dropdown-menu > li > a:hover,
.menu > ul > li > .dropdown-menu > li > a:focus{
  color: #fff;
  text-decoration: none;
  background: #e42184;
}
.menu > ul > li > .dropdown-menu > .active > a,
.menu > ul > li > .dropdown-menu > .active > a:hover,
.menu > ul > li > .dropdown-menu > .active > a:focus {
  font-weight: 400;
  text-decoration: none;
  outline: 0;
}	
.menu > ul > li > .dropdown-menu .divider {
  background-color: #fff;
  height: 18px;
  width: 1px;
  line-height: 1;
  margin: 5px 0;
  overflow: hidden;
}

.menu > ul > li:hover .hvr-colores{
  opacity: 1;
}

.hvr-colores {
  position: relative;
  padding: 0 2px;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  opacity: 0;
}

.triangle-right {
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-left: 67px solid #99c35a;
  border-bottom: 7px solid transparent;
  position: absolute;
  top: 0;
  left: 2px;
}

.rectangle-pink{
  width: 100%;
  height: 10px;
  background: #e42184;
}
.logo_defen{
  margin-left: 10px;
  display: inline-block;
  margin-top: 15px;
}
.logo_defen a{
  display: inline-block;
}
/* .logo_defen img{
  width: 140px;
} */

/* ===== MENU PRINCIPAL Y SUBMENU MOVIL ===== */

a.hamburguer{
  position: absolute;
  right: 15px;
  top: 135px;
  display: inline-block;
  padding: 0 0;
  margin: 0;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; 
}
a.hamburguer:hover,
a.hamburguer:focus {
  text-decoration: none !important;
}
.navbar-toggle{
  overflow: hidden;
}
.navbar-toggle .icon-bar{
  background: #000;
  border-radius: 0 !important;
  -webkit-transition: opacity, -webkit-transform;
  transition: opacity, -webkit-transform;
  transition: opacity, transform;
  transition: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0, 0.7);
          transition-timing-function: cubic-bezier(0.7, 0, 0, 0.7);
}
.navbar-toggle:not(.collapsed) .icon-bar:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
}
.navbar-toggle:not(.collapsed) .icon-bar:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.navbar-toggle:not(.collapsed) .icon-bar:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
}

#collapseMenu nav{
  width: 100%;
}
.menu_mobile ul{
  margin: 0;
  padding: 0;
  text-align: center;
}
.menu_mobile ul li{
  background: #f2f2f2;
  margin: 0 0;
  padding: 0 0;
  list-style: none;
  border-bottom: 1px solid;
  border-color: #e7e7e7;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
.menu_mobile > ul>.active,
.menu_mobile > ul>.active>a,
.menu_mobile > ul>.active>a:hover,
.menu_mobile > ul>.active>a:focus{
  background: #00a5e3;
  color: #fff;
}

.menu_mobile ul li a{
  color: #000;
  display: block;
  margin: 0 0;
  padding: 30px 0;
  list-style: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.menu_mobile ul li.hasSubs > a{
  position: relative;
}

.menu_mobile ul li.hasSubs > a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  display: inline-block;
  color: inherit;
  position: absolute;
  right: 15px;
  top: 31px;
  margin: 0;
  text-align: center;
  color: #b2b2b2;
}

.menu_mobile ul>.active.hasSubs > a:after{
  
}

.menu_mobile ul li.hasSubs > a.collapsed:after{
  content: "\f107";
}

.menu_mobile ul li a:hover,
.menu_mobile ul li a:focus {
  color: #000;
  text-decoration: none;
}
.submenu_mobile ul{
  margin: 0 0;
  padding: 0 0;
  text-align: center;
}
.submenu_mobile ul li{
  background: #fff;
  margin: 0 0;
  padding: 0 0;
  list-style: none;
  border-bottom: 1px solid #f1f1f1;
}

.submenu_mobile ul li:first-child{
  border-top: 1px solid #f1f1f1;
}

.submenu_mobile ul li:last-child{
  border-bottom: 0px;
}

.submenu_mobile ul>.active{
}
.submenu_mobile ul>.active>a,
.submenu_mobile ul>.active>a:hover,
.submenu_mobile ul>.active>a:focus{
  color: #fff;
  font-weight: 400;
  background: #84c848;
}
.submenu_mobile ul li a{
  color: #000;
  margin: 0;
  padding: 20px 0;
  list-style: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}
.submenu_mobile ul li a:hover,
.submenu_mobile ul li a:focus {
  color: #676767;
  text-decoration: none;
}

/* ===== SUBMENU (WEB) ===== */

.submenu ul >li+li{
	margin-left: 0;
}
.submenu ul > li:last-child > a{
	border-right: 0;
}
.submenu ul > li > a{
  color: #000;
  background: #e4e4e4;
	border-right: 1px solid;
  border-color: #fff;
	border-radius: 0 !important;
	padding: 20px 0 !important;
	margin: 0 0;
	font-size: 12px;
	line-height: 1;
	font-weight: 400;
	text-transform: uppercase;
}
.submenu ul > li > a:hover,
.submenu ul > li > a:focus {
  color: #fff;
  text-decoration: none;
}
.submenu ul > li.active > a,
.submenu ul > li.active > a:hover,
.submenu ul > li.active > a:focus{
  color: #000;
  background: #ccc;
	font-weight: 700;
	cursor: default;
}

/* ====== MENU SIDEBAR ====== */

html,
body,
.st-container,
.st-pusher,
.st-content {
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

.st-content{
  overflow-y: scroll;
}

.st-content,
.st-content-inner {
  position: relative;
}

.st-container {
  position: relative;
  overflow: hidden;
}

.st-pusher {
  position: relative;
  left: 0;
  z-index: 99;
  height: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}

.st-pusher::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background: rgba(0,0,0,0.2);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

.st-menu-open .st-pusher::after {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.st-menu {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  overflow-y:auto;
  width: 300px;
  height: 100%;
  background: #48a770;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.st-menu::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  content: '';
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.st-menu-open .st-menu::after {
  width: 0;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

/* content style */

.st-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.st-menu h2 {
  margin: 0;
  padding: 1em;
  color: rgba(0,0,0,0.4);
  text-shadow: 0 0 1px rgba(0,0,0,0.1);
  font-weight: 300;
  font-size: 2em;
}

.st-menu ul li a {
  display: block;
  padding: 1em 1em 1em 1.2em;
  outline: none;
  box-shadow: inset 0 -1px rgba(0,0,0,0.2);
  color: #f3efe0;
  text-transform: uppercase;
  text-shadow: 0 0 1px rgba(255,255,255,0.1);
  letter-spacing: 1px;
  font-weight: 400;
  -webkit-transition: background 0.3s, box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s;
}

.st-menu ul li:first-child a {
  box-shadow: inset 0 -1px rgba(0,0,0,0.2), inset 0 1px rgba(0,0,0,0.2);
}

.st-menu ul li a:hover {
  background: rgba(0,0,0,0.2);
  box-shadow: inset 0 -1px rgba(0,0,0,0);
  color: #fff;
}

.st-effect-3.st-menu-open .st-pusher {
  -webkit-transform: translate3d(300px, 0, 0);
  transform: translate3d(300px, 0, 0);
}

.st-effect-3.st-menu {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.st-effect-3.st-menu-open .st-effect-3.st-menu {
  visibility: visible;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}

.st-effect-3.st-menu::after {
  display: none;
}

/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
.no-csstransforms3d .st-pusher,
.no-js .st-pusher {
  padding-left: 300px;
}

/* ===== MENU FOOTER ===== */

.menu_footer{
  background-color: #555555; 
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
	position: relative;
}
.menu_footer ul{
	margin: 0 30px;
	padding: 0;
}
.menu_footer ul li{
	list-style: none;
	display: inline;
}
.menu_footer ul li a{
  color: #fff;
	font-size: 12px;
	line-height: 1;
	font-weight: 400;
	text-transform: uppercase;
	text-decoration: none;
	margin-right: 15px;
	margin-left: 15px;
}
.menu_footer ul li a:hover{
  color: #c6c6c6;
}
.menu_footer ul li.active a{
	font-weight: 700;
}

/* ===== SLIDE CAROUSEL  ===== */

.home .carousel.slide .carousel-indicators,
.galeria_de_imagenes_slide .carousel.slide .carousel-indicators {
  position: absolute;
  bottom: 15px;
  right: 50%;
  margin-left: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 15;
  width: 50%;
  padding-left: 0;
  text-align: center;
  list-style: none;
}

.home .carousel.slide .carousel-indicators li,
.galeria_de_imagenes_slide .carousel.slide .carousel-indicators li{
  background-color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0);
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  text-indent: -999px;
  cursor: pointer;
  border: 1px solid;
  border-color: #fff;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; 
}

.home .carousel.slide .carousel-indicators li:hover,
.galeria_de_imagenes_slide .carousel.slide .carousel-indicators li:hover{
  background-color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; 
}

.home .carousel.slide .carousel-indicators .active,
.home .carousel.slide .carousel-indicators .active:hover,
.galeria_de_imagenes_slide .carousel.slide .carousel-indicators .active,
.galeria_de_imagenes_slide .carousel.slide .carousel-indicators .active:hover {
  background-color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border: 1px solid;
  border-color: #fff;
  cursor: default;
}

.home .carousel.slide .carousel-img,
.galeria_de_imagenes_slide .carousel.slide .carousel-img{
	text-align: center;
}
.home .carousel.slide .carousel-img img,
.galeria_de_imagenes_slide .carousel.slide .carousel-img img{
	display: inline-block;
}

.home .carousel.slide .carousel-caption{
  color: #fff;
	position: absolute;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	left: 50%;
	width: 100%;
	z-index: 10;
  padding: 30px 250px 70px;
	text-align: center;
	text-shadow: none !important;
}	

.home .carousel.slide .carousel-caption,
.home .carousel.slide .carousel-caption-xs{
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.6);
}

.home .carousel.slide .carousel-caption-xs{
  text-align: center;
  padding: 30px 30px 35px 30px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.home .carousel.slide .carousel-caption h2{
  color: #fff;
	text-transform: uppercase;
	font-size: 32px;
	line-height: 1.125;
	font-weight: 700;
	margin: 0 0;
	padding: 0 0;
}

.home .carousel.slide .carousel-caption p{
	font-size: 13px;
	line-height: 1.384615384615385;
	font-weight: 400;
	padding: 0 15px;
	margin: 15px 0 0;
}

.home .carousel.slide .carousel-caption-xs h2{
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none !important;
}
.home .carousel.slide .carousel-caption-xs p{
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  padding: 0 0 0 0;
  margin: 15px 0 0 0;
}

.home .carousel.slide .carousel_control{
	position: absolute;
	top: 0;
	height:100%;
	width: 150px;
	display: block;
	z-index: 15;
}

.home .carousel.slide .carousel_control.left{
	left: 0;
	opacity: 0;
	background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.0001)));
	background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.2) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
	background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.0001) 100%);
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.0001) 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}

.home .carousel.slide .carousel_control.right {
	right: 0;
	opacity: 0;
	background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.2)));
	background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.2) 100%));
	background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.2) 100%);
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.2) 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.home .carousel.slide:hover .carousel_control{
  opacity: 1;
}

.home .carousel.slide .carousel_control i{
  color: #fff;
  font-size: 32px;
}

.home .carousel.slide .carousel_control img,
.home .carousel.slide .carousel_control i{
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.home .carousel.slide .carousel_control.left img,
.home .carousel.slide .carousel_control.left i{
  left: 30px;
}

.home .carousel.slide .carousel_control.right img,
.home .carousel.slide .carousel_control.right i{
  right: 30px;
}

.home .carousel.slide .carousel_control_mobile{
	width: 100%;
}
.home .carousel.slide .carousel_control_mobile a{
  color: #fff;
  background: #ccc;
	display: inline-block;
	width: 50%;
	padding: 10px;
	text-align: center;
	text-decoration: none;
}
.home .carousel.slide .carousel_control_mobile a:hover{
  color: #fff;
}
.home .carousel.slide .carousel_control_mobile .right{
	border-left: 1px solid;
  border-color: #fff;
}

.home .carousel.slide .carousel-caption-box{
  border: 1px solid #fff;
  position: absolute;
  top: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  color: #fff;
  background: transparent;
  padding: 30px 0;
  z-index: 20;
}

/* ====== LISTADOS ====== */

.home .destacados{
  padding: 0 0 0;
}
.home .carousel_multiple,
.listado .editorial,
.listado .especial,
.listado .subsecciones,
.listado .busqueda,
.listado .galerias,
.contenido .relacionados{
  position: relative;
  margin-bottom: 70px;
}
.listado .busqueda{
  min-height: 250px;
}
.listado .busqueda .alert{
  margin-top: 70px;
}
.home .destacados{
  position: relative;
}

.listado .editorial .modulo,
.listado .especial .modulo,
.listado .subsecciones .modulo,
.listado .busqueda .modulo,
.contenido .relacionados .modulo{
  margin-bottom: 25px;
}
.home .destacados .modulo{
  margin-bottom: 50px;
}
.listado .editorial .modulo article,
.listado.buscar .modulo article,
.listado_subsecciones .subsecciones .modulo article,
.contenido .relacionados .modulo article {
  background: #ebeded;
  border-bottom: 2px solid #3f8eab;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.listado .editorial .modulo figure,
.home .destacados .modulo figure{
  position: relative;
  overflow: hidden;
}
.home .carousel_multiple .modulo .texto,
.listado .editorial .modulo .texto,
.listado .especial .modulo .texto,
.listado .subsecciones .modulo .texto,
.listado .busqueda .modulo .texto,
.contenido .relacionados .modulo .texto{
  position: relative;
  top: auto;
  left: auto;
  text-align: left;
  transform: none;
  -ms-transform: none;
  -webkit-transform: none;
}
.home .destacados .modulo .texto{
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  width: 100%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%); /* IE 9 */
  -webkit-transform: translateY(-50%); /* Safari */  
}
.home .carousel_multiple .modulo .texto h1,
.listado .editorial .modulo .texto h1,
.listado .especial .modulo .texto h1,
.listado .busqueda .modulo .texto h1,
.listado_subsecciones .subsecciones .modulo .texto h1,
.contenido .relacionados .modulo .texto h1{
  color: #005372;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: none;
  text-align: left;
  margin-top: 25px;
}
.home .destacados .modulo .texto h1{
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 200;
  text-transform: uppercase;
  text-align: center;
  margin-top: 15px;
}
.home .destacados .modulo .texto a,
.home .carousel_multiple .modulo .texto a,
.listado .editorial .modulo .texto a,
.listado .especial .modulo .texto a,
.listado .subsecciones .modulo .texto a,
.listado .busqueda .modulo .texto a,
.contenido .relacionados .modulo .texto a{
  display: inline-block;
  float: left;
}
.home .destacados .modulo .texto a h1,
.home .carousel_multiple .modulo .texto a h1,
.listado .editorial .modulo .texto a h1,
.listado .especial .modulo .texto a h1,
.listado .subsecciones .modulo .texto a h1,
.listado .busqueda .modulo .texto a h1,
.contenido .relacionados .modulo .texto a h1{
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.home .carousel_multiple .modulo .texto p,
.listado .editorial .modulo .texto p,
.listado .especial .modulo .texto p,
.listado .subsecciones .modulo .texto p,
.listado .busqueda .modulo .texto p,
.contenido .relacionados .modulo .texto p{
  font-size: 16px;
  line-height: 1.1875;
  letter-spacing: 0;
  font-weight: 400;
  color: #282828;
  text-align: left;
  margin-bottom: 15px;
}
.home .destacados .modulo .texto p{
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
.home .destacados .modulo .default,
.home .noticias-destacadas .modulo .default,
.home .publicaciones-destacadas .modulo .default,
.home .carousel_multiple .modulo .default,
.listado .editorial .modulo .default,
.listado .especial .modulo .default,
.listado .subsecciones .modulo .default,
.listado .busqueda .modulo .default,
.contenido .relacionados .modulo .default,
.contenido .galeria_de_imagenes .default,
.contenido .galeria_de_imagenes_slide .default{
    position: relative;
    width: 100%;
    height: auto;
}
.home .destacados .modulo .default .logo,
.home .noticias-destacadas .modulo .default .logo,
.home .publicaciones-destacadas .modulo .default .logo,
.home .carousel_multiple .modulo .default .logo,
.listado .editorial .modulo .default .logo,
.listado .especial .modulo .default .logo,
.listado .subsecciones .modulo .default .logo,
.listado .busqueda .modulo .default .logo,
.contenido .relacionados .modulo .default .logo,
.contenido .galeria_de_imagenes .default .logo,
.contenido .galeria_de_imagenes_slide .default .logo{
    display: inline-block;
    position: absolute;
    width: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    right: auto;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.2;
}

.contenido .galeria_de_imagenes_slide .default .logo{
  width: 20%;
}

/* ===== HIGHLIGHTED TYPE 3 ACCESOS RAPIDOS/ICONOS  ===== */

.home .accesos_rapidos{
	position: relative;
	text-align: center;
}
.home .accesos_rapidos .icono{
	display: inline-block;
	vertical-align: top;
	margin: 0 0px;
	position: relative;
}
.home .accesos_rapidos .icono a{
	text-decoration: none !important;
	position: relative;
}
.home .accesos_rapidos .icono figure img{
	width: 120px;
}
.home .accesos_rapidos .icono h4{
	font-size: 18px;
	line-height: 1;
	font-weight: 400;
	padding: 0 0;	
}

/* ====== HIGHLIGHTED TYPE 6 TEXTO ====== */

.home .texto_destacado{
  color: #fff;
  background-color: #282828;
	position: relative;
	padding: 0 0;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	text-align: center;
}
.home .texto_destacado p{
  color: #fff;
  margin: 0 0;
  padding: 0 0;
  font-size: 14px;
  line-height: 1.5;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.home .texto_destacado .fck img{
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* ====== HIGHLIGHTED TYPE 7 DATOS DE CONTACTO ====== */

.info_contacto{
	position: relative;
}

/* ====== HIGHLIGHTED TYPE 8 VIDEO ====== */

.home .video{
  color: #fff;
  background-color: transparent; 
	position: relative;
	padding: 0 0;
	text-align: center;
}
.home .video a.btn{
  color: #333;
  background-color: #282828;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 0 !important;
	font-size: 12px;
	line-height: 1;
	padding: 0 0;
	margin: 0 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* ====== HIGHLIGHTED TYPE 10 IMAGEN (PUEDE SER CON TEXTO) ====== */

.home .imagen_destacada{
  color: #fff;
  height: 600px;
  margin: 0 0;
  text-align: center;
  position: relative;
  background-color: #000;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* ====== CONTENIDOS ====== */

.contenido .editorial,
.contenido .contacto{
  position: relative;
}

.contenido .contacto{
  text-align: center;
}

.contenido .contacto article{
  padding: 0;
}

.contenido .editorial figure.principal img{
  display: inline-block !important;
}
.contenido .editorial figure.secundaria img{
  display: inline-block !important;
}

.contenido .editorial .titulo{
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  color: #fff;
  background: #209dd8;
  margin: 50px auto 55px;
  display: table;
  text-transform: none;
  padding: 20px 75px;
}

.listado .subseccion .titulo,
.listado.buscar .titulo,
.contenido .editorial .subseccion .titulo{
  font-size: 29px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  color: #565656;
  text-transform: uppercase;
  text-align: left;
}

.contenido .editorial header .titulo{
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  color: #fff;
  background: #209dd8;
  margin:50px auto 55px;
  display: table;
  text-transform: none;
  padding: 20px 75px;
}

.contenido .editorial .sumario{
  margin: 0 0 45px;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 400;
  color: #000;
  text-align: left;
  padding: 0 125px;
}
.contenido .contacto .sumario{
  font-size: 42px;
  line-height:1.19047619047619;
  letter-spacing: 0;
  font-weight: 600;
  text-transform: uppercase;
  color: #595a5a;
  text-align: left;
}
.contenido .editorial .principal{
  text-align: center;
  margin-bottom: 60px;
}

.contenido .contacto .principal{
  position: relative;
}

.contenido .contacto .principal header{
  position: absolute;
  top: 50%;
  right: 50%;
  width: 100%;
  transform: translate(50%,-50%);
  -ms-transform: translate(50%,-50%); /* IE 9 */
  -webkit-transform: translate(50%,-50%); /* Safari */  
}

.contenido .contacto .principal header img{
  margin-right: 90px;
}

.contenido .contacto .principal header h1 {
  font-size: 116px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}

.contenido .contacto .principal header.no-ph{
  position: relative;
  top: auto;
  left: auto;
  transform:none;
}

.contenido .contacto .principal header h1.no-ph{
  color: #00a5e3;
}

.contenido .contacto .info-contacto{
  padding: 40px 25px 90px;
  background: #ebeaeb;
}

.contenido .editorial .autor{}

.contenido .editorial .date,
.contenido .editorial .fck p{
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 400;
  color: #000;
  text-align: left;
  padding: 0 125px;
}

.contenido .editorial .date{
  font-style: italic;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  margin: 0 0 30px;
}

.contenido .contacto .fck p{
  font-size: 21px;
  line-height: 1.19047619047619;
  letter-spacing: 0;
  font-weight: 600;
  color: #595a5a;
  text-align: left;
  text-transform: uppercase;  
}

.contenido .editorial .fck,
.contenido .contacto .fck{
  margin-bottom: 50px;
}

.contenido .editorial .fck img,
.contenido .contacto .fck img{
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.contenido .editorial .fck a,
.contenido .contacto .fck a{
  text-decoration: underline;
}

.contenido .editorial .fck ul,
.contenido .contacto .fck ul{
  list-style: none;
  padding: 0 0;
  margin: 0 0;
}

.contenido .editorial .fck ul li::before,
.contenido .contacto .fck ul li::before{
  content: "\2022";
  margin-right: 7px;
  font-weight: 700;
}

.contenido .editorial .alert-success{}
.contenido .editorial .alert-danger{}

.contenido .editorial .video{
  margin-bottom: 55px;
}

.contenido .editorial .google_maps,
.contenido .editorial .street_view,
.contenido .contacto .google_maps,
.contenido .contacto .street_view{
  position: relative;
}

.contenido .editorial .descargas a,
.contenido .contacto .descargas a{
  color: #000;
  display: inline-block;
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 400;
  color: #000;
  text-align: left;
  padding: 0 125px;
}

.contenido .editorial .herramientas{
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #e7e7e7;
  padding: 35px 0;
  text-align: center;
}

.contenido .editorial .herramientas > .btn{
  background: #ccc;
  display: inline-block;
  width: 32px;
  height: 32px;
  padding: 0 0;
  margin: 0 5px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out; 
  transition: all 0.2s ease-in-out;
}

.contenido .editorial .herramientas > .btn,
.contenido .editorial .herramientas > .btn a{
  color: #fff;
}

.contenido .editorial .herramientas > .btn.imprimir a,
.contenido .editorial .herramientas > .btn.facebook a,
.contenido .editorial .herramientas > .btn.twitter a,
.contenido .editorial .herramientas > .btn.whatsapp a,
.contenido .editorial .herramientas > .btn.consultar{
  padding-top: 5px;
  display: inline-block;
}

/* FCK STYLES */

.fck_h3{
  color: #000;
  font-size: 21px;
  line-height: 1.142857142857143;
  font-weight: 400;
}

.fck_h4{
  color: #000;
  font-size: 18px;
  line-height: 1.222222222222222;
  font-weight: 400;
}

.fck_h5{
  color: #000;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
}

.fck_h6{
  color: #000;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.fck_h3 b,
.fck_h3 strong,
.fck_h4 b,
.fck_h4 strong,
.fck_h5 b,
.fck_h5 strong,
.fck_h6 b,
.fck_h6 strong{
  font-weight: 700;
}

.fck_h3 u,
.fck_h4 u,
.fck_h5 u,
.fck_h6 u{
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 5px;
}

.box_00{
  border: 1px solid;
  border-color: #000000;
  padding: 30px;
}

.box_01{
  border: 1px dashed;
  border-color: #000000;
  padding: 30px;
}

.box_02{
  color: #fff;
  background: #000;
  padding: 30px;
}

.box_03{
  color: #000;
  background: #e4e4e4;
  border: 1px solid;
  border-color: #b5b5b5; 
  padding: 30px;
}

/* PLUGINS REDES SOCIALES */
.plugins{
  display: inline-block;
  margin: 0 0 15px;
  line-height: 1.3;
  text-align: left;
  padding: 0 125px;
}
.plugins .plugin{
  float: left;
}
.plugins .face{
  margin:0px 5px 0 5px !important;
}


/* ====== FCK TEMPLATES ====== */

.fck_template{
  margin: 0 0 30px;
}

.fck_template figure figcaption{
  color: #fff;
  background: #000;
	text-align: center;
	padding: 10px 10px 12px;
	font-size: 10px;
	line-height: 1.2;
	font-weight: 400;
}

.fck_template .col p{
	padding: 0 0;
}

.fck_template .col-text-left{
	text-align: left;
}

.fck_template .col-text-right{
	text-align: right;
}

.quote{
	position: relative;
}

.quote .fa-quote-left{
	position: absolute;
	top: 10px;
	left: 0;
}

.quote .fa-quote-right{
	position: absolute;
	bottom: 10px;
	right: 0;
}

.quote .fa{
  color: #c6c6c6;
	font-size: 42px;
}

.quote p{
	font-size: 21px;
	line-height: 1.428571428571429;
	font-weight: 300;
	font-style: italic;
	padding: 0 40px !important;
}

/* ====== GALERIA DE IMAGENES (RELACIONADA) ====== */

.galeria_de_imagenes{
  text-align: center;
  padding: 0 45px;
}

.galeria_de_imagenes .titulo{
  margin-top: 0!important;
}

.galeria_de_imagenes header{
	position: relative;
}

.galeria_de_imagenes .modulo{
	position: relative;
  margin:0;
  margin-bottom: 70px;
}

.galeria_de_imagenes .modulo .col{
	position: relative;
  padding: 0 0;
}

.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-prev,
.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-next{
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  background: #209dd8;
  outline: none;
  border:0;
  width: 30px;
  height: 30px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-prev{
  left: 0;
  padding: 0;
}

.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-next{
  right: 0;
  padding: 0;
}

.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-prev i,
.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-next i{
  font-size: 21px;
  color: #fff;
}

.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-prev.disabled,
.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-next.disabled{
  opacity: 0.3;
}

/* ====== PAGINADOR ====== */

#paginador_contenedor{
	margin:20px 0 50px;
	padding:0 0;
	position: relative;
	text-align: center;
}
#paginador_contenedor span,
#paginador_contenedor a{
	display: inline-block;
	font-weight: 400;
	font-size:18px;
	line-height: 1;
	color: #ccc;
	padding: 0 10px;
}
#paginador_contenedor a{
  color: #3f8eab;
}
#paginador_contenedor .numero{
  color: #005372;
	padding: 0 10px;
	font-weight: 700;
	font-size:14px;
	line-height: 1.285714285714286;
}

/* ====== FORMULARIOS ====== */

.formulario.contact_form label{
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 600;
  color: #595a5a;
  text-transform: uppercase;
  text-align: left;
  float: left;
  margin-bottom: 10px;
}

.formulario .form-control{
  color: #676767;
  background: #fff;
  display: block;
  width: 100%;
  height: 100%;
  padding: 11px;
  font-size: 15px;
  line-height: 1.428571429;
  vertical-align: middle;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 00);
          box-shadow: inset 0 0 0 rgba(0, 0, 0, 00);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
          transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out; 
  transition: all 0.2s ease-in-out;
}

.formulario.contact_form .form-control{
  background: #f7f7f7;
  height: 59px;
}

.formulario.contact_form .form-group{
  margin-bottom: 30px;
}

.formulario.contact_form .form-group textarea{
  height: 240px;
}

.modulo-agenda .formulario .form-control{
  padding: 10px 5px;
  border-bottom: 1px solid #3f8eab;
  margin-bottom: 2px;
}

.formulario .form-control:hover{
  border-color: #d3d3d3;
  background-color: #e4e4e4;
}

.formulario .form-control:focus {
  color: #fff;
  outline: 0;
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0);
}

.formulario .form-control:-moz-placeholder {color: #000;}
.formulario .form-control::-moz-placeholder {color: #000;}
.formulario .form-control:-ms-input-placeholder {color: #000;}
.formulario .form-control::-webkit-input-placeholder {color: #000;}
.formulario .form-control:hover:-moz-placeholder {color: #000;}
.formulario .form-control:hover::-moz-placeholder {color: #000;}
.formulario .form-control:hover:-ms-input-placeholder {color: #000;}
.formulario .form-control:hover::-webkit-input-placeholder {color: #000;}
.formulario .form-control:focus:-moz-placeholder {color: #ffffff;}
.formulario .form-control:focus::-moz-placeholder {color: #ffffff;}
.formulario .form-control:focus:-ms-input-placeholder {color: #ffffff;}
.formulario .form-control:focus::-webkit-input-placeholder {color: #ffffff;}

input:-webkit-autofill{
  -webkit-box-shadow:0 0 0 50px #fff inset!important;
  -webkit-text-fill-color: #676767;
}

input:-webkit-autofill:hover{
  -webkit-box-shadow:0 0 0 50px #e4e4e4 inset!important;
  -webkit-text-fill-color: #676767;
}

input:-webkit-autofill:focus,
input:-webkit-autofill:active{
  -webkit-text-fill-color: #fff;
}

.formulario .btn{
  color: #8a8a8a;
  background: #e4e4e4;
  text-transform: uppercase;
  border-radius: 0;
  padding: 20px 30px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out; 
  transition: all 0.2s ease-in-out;
}

.formulario .btn:hover{
  color: #fff;
}

.formulario.contact_form .btn {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #00a5e3;
  margin: 0;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;  
}

.formulario.contact_form .btn:hover{
  background: #3f8eab;
}

.formulario .captcha{
  border-top: 1px dashed;
  border-color: #d3d3d3;
  margin: 15px 0 30px; 
  padding: 30px 0 0;
  text-align: center;
}

.formulario.consulta .captcha{
  margin: 30px 0;
}

.formulario .captcha a{
	display: block;
  border: 1px solid #d3d3d3;
}

.formulario .captcha img{
	display: inline-block;
}

.formulario .captcha input{
  margin-top: 15px;
}

/* ====== FORMULARIOS / NEWSLETTER HOME ====== */

.modulo.newsletter{
  background-color: #e9edee;
  
}

.formulario.newsletter_bottom{
  color: #00a5e3;
  background-color: #e9edee;
  position: relative;
  padding: 10px 15px 0;
}

.form-group.text-center.m-b-0{
  padding-top: 100px;
}

.formulario.newsletter_bottom #form-captcha a{
  background: #fff;
  display: block;
  border-bottom: 1px solid #3f8eab;
}

.formulario.newsletter_bottom #form-captcha img{
  height: 50px;
}

.formulario.newsletter_bottom .col01{
	text-align: right;
}

.formulario.newsletter_bottom .col02{
	padding-right: 0;
}

.formulario.newsletter_bottom .col03{
	padding-left: 0;
}

.formulario.newsletter_bottom h3{
  color: #fff;
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 18px 0 0;
}

.formulario.newsletter_bottom .form_input{
	border-left: 0;
  border-top: 0;
  border-bottom: 0;
  border-right: 0;
	font-size: 15px;
	line-height: 1;
	font-weight: 400;
	width: 100%;
	height: 45px;
	padding: 0 0 0 5px;
  margin-bottom: 2px;
  border-bottom: 1px solid #3f8eab;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.formulario.newsletter_bottom .form_input2{
	margin-top: 2px;
	border-right: 0;
	border-radius: 0; 
	-moz-border-radius: 0; 
	-webkit-border-radius: 0; 
}

.formulario.newsletter_bottom .form_input:hover{
  background: #e4e4e4;
}

.formulario.newsletter_bottom .form_input:focus {
  background: #e4e4e4;
	outline: 0;
	-webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0);
	 	box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0);
}

.formulario.newsletter_bottom .captcha{
	text-align: right;
}

.formulario.newsletter_bottom .captcha a{
	margin-top: 15px;
	display: inline-block;
}

.formulario.newsletter_bottom .captcha a img{
	height: 50px;
}

.formulario.newsletter_bottom .btn{
  color: #fff;
  background: #ccc;
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0 0;
	margin: 0 0;
	display: block;
	width: 100%;
	height: 30px;
	outline: none !important;
	border-radius: 0 0 0 0; 
	-moz-border-radius: 0 0 0 0; 
	-webkit-border-radius: 0 0 0 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.formulario.newsletter_bottom .btn:hover{
  background: #ccc;
}

.formulario.newsletter_bottom .sk-circle .sk-child:before{
  background: #fff;
}

.formulario.contact_form #form-captcha{
  margin-top: 0;
}

.formulario.contact_form .captcha img{
  height: 59px;
}

.formulario.contact_form .captcha a{
  border: 0;
  background: #fff;
}

.formulario.contact_form .captcha input{
  margin-top: 0;
}

/* ====== CAROUSEL MULTIPLE (el resto de los estilos esta con los LISTADOS)  ====== */

.home .carousel_multiple{
  background: #fff;
	position: relative;
}

.home .carousel_multiple .carousel_control_2 {
  color: #000;
  margin: 0 0;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home .carousel_multiple .carousel_control_2:hover{
  color: #999999;
}

.carousel-inner.onebyone-carosel { margin: auto; width: 100%; }
.onebyone-carosel .active.left { left: -50%; }
.onebyone-carosel .active.right { left: 50%; }
.onebyone-carosel .next { left: 50%; }
.onebyone-carosel .prev { left: -50%; }

/* ====== BREADCRUMB ====== */

.breadcrumb {
    padding: 8px 0;
    margin-bottom: 20px;
    list-style: none;
    background-color: transparent;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 11px;
}

/* ================ MODALS ================ */

.modal{
  z-index: 1054;
}

.modal-header .close{
  margin-top: 0;
  position: absolute;
  right: 30px;
}

.contenido .editorial .modal-content{
  text-align: center;
  border-bottom: 15px solid; 
}

.contenido .editorial .modal-content .modal-header{
  color: #fff;
  border-bottom: 0;
  text-transform: uppercase;
  padding: 20px 15px 20px 25px;
}

.contenido .editorial .modal-content .modal-header h4{
  font-size: 16px;
}

.contenido .editorial .modal-content .modal-body{
  padding: 30px;
}

.contenido .editorial .modal-content .modal-body h5{
  font-size: 14px;
  margin-bottom: 30px;
}

/*=========================================*/
/*=== CUSTOM SELECTS ===*/
/*=========================================*/

/* The container must be positioned relative: */
.custom-select {
  position: relative;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: DodgerBlue;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/* SIDEBAR-MENU */

.btn-openSideBarMenu{
  display: inline-block;
}

#sidebar-menu{
  height: 100%; /* 100% Full-height */
  width: 320px; /* 0 width - change this with JavaScript */
  padding: 30px;
  position: fixed; /* Stay in place */
  z-index: 1057; /* Stay on top */
  top: 0;
  left: -350px;
  background-color: #fff; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -moz-box-shadow:    0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow:     0 3px 9px rgba(0, 0, 0, 0.5);
}

#sidebar-menu-overlay{
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6) !important;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 1031;
  display: none;
}



}

/*=========================================*/
/*=== CSS SCREEN (termina) ===*/
/*=========================================*/



/* ======

Alto de la pagina para que el footer quede fijo abajo cuando hay poco contenido
- Restarle a 100vh (alto del viewport) el tamaño del footer en px para cada version

 ====== */

@media screen and (min-width: 1200px) {
  #soporte_pagina > .soporte{
    min-height: calc(100vh - 24px); 
  }
  /* Row with equal height columns */
  .row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #soporte_pagina > .soporte{
    min-height: calc(100vh - 24px);
  }   
  /* Row with equal height columns */
  .row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
  } 
}
@media screen and (min-width: 992px) {
  #soporte_pagina > .soporte{
    padding-top: 0px;/* En base al alto del header*/
  }
}/* termina @media screen and (min-width: 992px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
  #soporte_pagina > .soporte{
    min-height: calc(100vh - 55px);
  }    
}
@media screen and (max-width: 767px) {
  #soporte_pagina > .soporte{
    min-height: calc(100vh - 55px);
  }
}

/* ====== SETEOS RESPONSIVE ====== */

@media screen and (min-width: 1200px) and (max-width: 1260px) {
  .home .carousel.slide .carousel_control.left,
  .home .carousel.slide .carousel_control.right{
    display: none !important;
  }
}/* termina @media screen and (min-width: 1200px) and (max-width: 1260px) */

@media screen and (min-width: 992px) and (max-width: 1070px) {
  .home .carousel.slide .carousel_control.left,
  .home .carousel.slide .carousel_control.right{
    display: none !important;
  }
}/* termina @media screen and (min-width: 992px) and (max-width: 1070px) */

/* MEDIA LG */
@media screen and (min-width: 1200px) {
  .popup_prehome .modal-dialog{
    width: 920px !important;
  }
  .home .carousel.slide .carousel-caption-box{
    width: 1140px;
  }
} /* termina @media screen and (min-width: 1200px) */

@media screen and (min-width: 992px){
  #header{
    padding: 60px 0 25px;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
  }
  #header.header_slim{
    padding: 0 0;
  }
  .go-up-btn:hover{
    color: #fff;
  }
  .navbar-toggle {
    display: none; /*- Modificar (min-width: 992px) para cambiar la medida a la que se muestra o no el botón del menú móvil-*/
  }
} /* termina @media screen and (min-width: 992px) */

/* MEDIA MD */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .popup_prehome .modal-dialog{
    width: 800px !important;
  }
  .soporte {
    padding: 0 15px;
  }
  #header .logo a img{
    width: 138px;
  }
  .menu > ul > li > a{
    font-size: 10px;
    padding: 12px 5px 12px 5px;
  }
  .triangle-right{
    border-left: 60px solid #99c35a;
  }
  .home .carousel.slide .carousel-caption{
    padding-left: 150px;
    padding-right: 150px;
  }
  .home .texto_destacado,
  .home .imagen_destacada{
    background-attachment: scroll;
  }
  .home .carousel.slide .carousel-caption-box{
    width: 940px;
  }
  .sop-header {
    padding: 0 15px;
  }
  .sop-contacto {
    padding: 0;
  }
  .noticias-destacadas .modulo-grande .texto a h1 {
    font-size: 32px;
  }
  .home .publicaciones-destacadas .modulo article .texto h1{
    font-size: 22px;
  }
  .thumb_videos_destacados .texto h2{
    font-size: 11px;
  }
  .home .carousel_multiple .modulo .texto h1, 
  .listado .editorial .modulo .texto h1, 
  .listado .especial .modulo .texto h1, 
  .listado .subsecciones .modulo .texto h1, 
  .listado .busqueda .modulo .texto h1, 
  .contenido .relacionados .modulo .texto h1{
    font-size: 18px;
  }
  .home .carousel_multiple .modulo .texto p, 
  .listado .editorial .modulo .texto p, 
  .listado .especial .modulo .texto p, 
  .listado .subsecciones .modulo .texto p, 
  .listado .busqueda .modulo .texto p, 
  .contenido .relacionados .modulo .texto p{
    font-size: 14px;
    margin-top: 10px;
  }
  .contenido .contacto .principal header h1{
    font-size: 75px;
  }
  .contenido .contacto .principal header img {
    margin-right: 50px;
    width: 135px;
  }
  .contenido .editorial .sumario, 
  .contenido .editorial .fck p,
  .contenido .editorial .date{
    padding: 0 70px;
	margin-left: 60px;
    margin-right: 60px;
  }
  .soporte_materiales .soporte-titulo .titulo{
    font-size: 38px;
  }
  .listado .editorial .soporte_materiales .modulo .texto h1{
    font-size: 28px;
  }
  #prefooter{
    font-size: 12px;
  }
  #prefooter .titulo{
    font-size: 16px;
  }
  #footer .btn-consulta a{
    margin: 0;
  }
} /* termina @media screen and (min-width: 992px) and (max-width: 1199px) */

/* MEDIA SM */
@media screen and (min-width: 768px) and (max-width: 991px) {

  .logo_defen img{
    height: 135px;
    margin: 0 35px;
  }

  .panel_busqueda {
    float: none;
  }
  a.hamburguer{
    top:95px;
  }
  .popup_prehome .modal-dialog{
    width: 600px !important;
  }
  .soporte {
    padding: 0 15px;
  }
  .sop-contacto{
    padding: 0;
  }
  #header{
    padding: 85px 0 25px
  }
  #header .logo a img{
    width: 175px;
  }
  .home .destacados .modulo .texto .icono{
    width: 70px;
  }
  .home .destacados .modulo .texto h1, 
  .home .carousel_multiple .modulo .texto h1, 
  .listado .editorial .modulo .texto h1, 
  .listado .especial .modulo .texto h1, 
  .listado .subsecciones .modulo .texto h1, 
  .listado .busqueda .modulo .texto h1, 
  .contenido .relacionados .modulo .texto h1{
    font-size: 18px;
  }
  .home .noticias-destacadas .modulo-grande{
    margin-bottom: 25px;
  }
  .home .texto_destacado,
  .home .imagen_destacada{
    background-attachment: scroll;
  }
  .home .carousel.slide .carousel-caption-box{
    width: 720px;
  }
  .home .publicaciones-destacadas .modulo article .texto h1{
    font-size: 16px;
    margin-top: 15px;
  }
  .home .publicaciones-destacadas .modulo article .texto p{
    font-size: 13px;
  }
  .formulario.newsletter_bottom h3{
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.1em;
  }
  .contenido .contacto .principal header h1 {
    font-size: 50px;
  }
  .contenido .contacto .principal header img {
    margin-right: 45px;
    width: 105px;
  }
  .thumb_videos_destacados .texto h2{
    font-size: 9px;
  }
  .home .carousel_multiple .modulo .texto p, 
  .listado .editorial .modulo .texto p, 
  .listado .especial .modulo .texto p, 
  .listado .subsecciones .modulo .texto p, 
  .listado .busqueda .modulo .texto p, 
  .contenido .relacionados .modulo .texto p{
    font-size: 14px;
    margin-top: 10px;
  }
  .contenido .editorial header .titulo,
  .contenido .editorial .titulo{
    font-size: 30px;
    margin: 45px auto 35px;
  }
  .contenido .editorial .sumario, 
  .contenido .editorial .fck p, 
  .contenido .contacto .fck p,
  .contenido .editorial .descargas a,
  .contenido .contacto .descargas a,
  .plugins{
    padding: 0;
    font-size: 20px;
  }
  .contenido .editorial .date{
    margin-top: 30px;
    padding: 0;
  }
  .contenido .contacto .sumario{
    font-size: 30px;
  }
  .contenido .editorial .principal, 
  .contenido .contacto .principal {
    text-align: center;
    margin-bottom: 0px;
  }
  .soporte_materiales .soporte-titulo .titulo{
    font-size: 30px;
  }
  .listado .editorial .soporte_materiales .modulo .texto h1{
    font-size: 25px;
  }
  #prefooter{
    font-size: 12px;
  }
  #prefooter hr{
    margin-right: 15px;
    margin-left: 15px;
  }
  #prefooter .titulo{
    font-size: 16px;
  }
  #prefooter .soporte, #footer .soporte {
    padding: 0 15px;
  }
  #footer .btn-consulta a{
    margin-left: 0;
    font-size: 15px;
  }
  #footer .sponsors{
    margin-top: 25px;
  }
} /* termina @media screen and (min-width: 768px) and (max-width: 991px) */

/* MEDIA XS */
@media screen and (max-width: 767px) {
  .popup_prehome .modal-dialog{
    width: 100% !important;
  }
  .popup_prehome .modal-body{
    padding: 10px;
  }
  .soporte{
    padding: 0 15px;
  }
  #header .herramientas {
    position: relative;
    right: auto;
    top: auto;
  }
  #header{
    padding: 25px 0;
  }
  #header .logo a img{
    width: 150px;
  }
  .logo_defen {
    margin-left: 15px;
  }
  .logo_defen img{
    height: 110px;
  }
  .sop-header {
    padding: 0 15px;
  }
  .sop-contacto{
    padding: 0;
  }
  .panel_busqueda{
    padding: 0px 0 25px;
    float: none;
  }
  a.hamburguer{
    top: 190px;
  }
  #header .redes{
    display: none;
  }
  .home .destacados .modulo .texto .icono {
    width: 50px;
  }
  .home .carousel_multiple .modulo .texto h1, 
  .listado .editorial .modulo .texto h1, 
  .listado .especial .modulo .texto h1, 
  .listado .subsecciones .modulo .texto h1, 
  .listado .busqueda .modulo .texto h1, 
  .contenido .relacionados .modulo .texto h1{
    font-size: 21px;
    margin-bottom: 10px;
  }
  .home .destacados .modulo .texto h1{
    font-size: 14px;
    margin-top: 10px;
  }
  .home .destacados .modulo, 
  .listado .editorial .modulo, 
  .listado .especial .modulo, 
  .listado .subsecciones .modulo, 
  .listado .busqueda .modulo, 
  .contenido .relacionados .modulo {
    margin-bottom: 15px;
  }
  .home .texto_destacado,
  .home .imagen_destacada{
    background-attachment: scroll;
  }
  .home .carousel.slide .carousel-caption-box{
    width: 100%;
  }
  .home .noticias-destacadas{
    margin-top: 25px;
  }
  .home .noticias-destacadas .soporte-titulo{
    margin-bottom: 20px;
  }
  .home .noticias-destacadas .soporte-titulo .titulo{
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%); /* IE 9 */
    -webkit-transform: translateX(-50%); /* Safari */  
    width: 156px;
  }
  .home .noticias-destacadas .soporte-titulo .linea-noticias,
  .listado.buscar .soporte-titulo .linea-noticias,
  .videos-destacados .soporte-titulo .linea-videos{
    display: none;
  }
  .home .noticias-destacadas .titulo,
  .home .publicaciones-destacadas .titulo,
  .home .videos-destacados .titulo,
  .home .plugin-instagram .soporte-titulo .titulo{
    font-size: 19px;
  }
  .listado.buscar .soporte-titulo .titulo{
    font-size: 17px;
    left: 22px;
    top: -7px;
  }
  .home .publicaciones-destacadas .titulo {
    font-size: 19px;
    left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%); /* IE 9 */
    -webkit-transform: translateX(-50%); /* Safari */  
    width: 224px;
  }
  .home .noticias-destacadas .titulo img{
    width: 20px;
    vertical-align: text-bottom;
  }
  .home .noticias-destacadas .modulo .texto{
    margin-bottom: 25px;
  }
  .home .noticias-destacadas .modulo .texto a h1{
    font-size: 16px;
  }
  .home .publicaciones-destacadas .titulo img{
    width: 30px;
  }
  .publicaciones-destacadas .soporte-titulo .linea-publicaciones{
    display: none;
  }
  .home .publicaciones-destacadas .modulo article .texto h1{
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 5px;  
  }
  .home .publicaciones-destacadas .modulo article .texto p{
    font-size: 14px;
  }
  .noticias-destacadas .sop-modulos-noticias {
    padding-bottom: 20px;
  }
  .videos-destacados .col-pers-g {
    width: 100%;
    float: none;
    padding: 0 15px;
    margin-bottom: 10px;
  }
  .videos-destacados .col-pers-c {
    width: 100%;
    float: none;
    padding: 0 15px;
  }
  .videos-destacados .titulo img{
    width: 35px;
  }
  .videos-destacados .soporte-titulo .titulo {
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%); /* IE 9 */
    -webkit-transform: translateX(-50%); /* Safari */  
    width: 153px;
  }
  .videos-destacados .soporte-titulo{
    margin-bottom: 10px;
  }
  .videos-destacados .video-dest .titulo-video .titulo{
    font-size: 14px;
  }
  .embed-responsive-16by9::before {
    padding-top: 75%;
  }
  .plugin-instagram .soporte-titulo .linea-instagram2,
  .plugin-instagram .soporte-titulo .linea-instagram{
    display: none;
  }
  .home .plugin-instagram .soporte-titulo .titulo img{
    width: 30px;
  }
  .home .plugin-instagram .soporte-titulo .titulo{
    font-size: 15px;
    left: 50%;
    top: -12px;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%); /* IE 9 */
    -webkit-transform: translateX(-50%); /* Safari */  
    width: 246px;
    padding: 0 10px;
  }
  .plugin-instagram .soporte-titulo {
    margin-bottom: 5px;
  }
  .modulo-agenda .newsletter .soporte-titulo .titulo{
    font-size: 20px;
    top: 17px;
  }
  .modulo-agenda .btn#submit .titulo{
    font-size: 20px;
    top: 13px;
  }
  .modulo-agenda .modulo.newsletter{
    padding: 0px;
  }
  .formulario.newsletter_bottom{
    padding: 15px 15px 0;
  }
  .formulario.newsletter_bottom .col01{
    text-align: center;
  } 
  .formulario.newsletter_bottom .col02{
    padding-right: 15px;
  }
  .formulario.newsletter_bottom .col03{
    padding-left: 15px;
  }
  .formulario.newsletter_bottom h3{
    padding: 0 0 0 0;
    font-size: 14px;
    line-height: 1.285714285714286;
    margin-bottom: 15px;
  }
  .formulario.newsletter_bottom .form_input{
    padding: 0 0 0 15px;
    border-radius: 0 0 0 0; 
    -moz-border-radius: 0 0 0 0; 
    -webkit-border-radius: 0 0 0 0; 
  }
  .formulario.newsletter_bottom .form_input2{
    padding: 0 0 0 15px;
    border-radius: 0 0 0 0; 
    -moz-border-radius: 0 0 0 0; 
    -webkit-border-radius: 0 0 0 0; 
  }
  .formulario.newsletter_bottom .btn{
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0 0 0 0;
    margin: 0;
    display: block;
    width: 100%;
    height: 50px;
    outline: none !important;
    border-radius: 0 0 0 0; 
    -moz-border-radius: 0 0 0 0; 
    -webkit-border-radius: 0 0 0 0;
  }
  .formulario.newsletter_bottom .captcha a img{
    height: auto;
  }
  .formulario.newsletter_bottom .sk-circle{
    margin: 0 auto 15px auto;
    width: 30px;
    height: 30px;
  }
  .formulario.contact_form .form-group.captcha{
    padding-top: 15px;
  }
  .formulario.contact_form .captcha input{
    font-size: 12px;
  }
  .contenido .contacto article {
    padding: 0 0px;
  }
  .galeria_de_imagenes .modulo{
    padding: 0 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .fdi-Carousel .item .modulo{
    display: none;
  } 
  .fdi-Carousel .item .modulo:first-child{
    display: block;
  }
  .carousel-inner.onebyone-carosel { margin: auto; width: 100%; }
  .onebyone-carosel .active.left { left: -100%; }
  .onebyone-carosel .active.right { left: 100%; }
  .onebyone-carosel .next { left: 100%; }
  .onebyone-carosel .prev { left: -100%; }
  
  .plugins .whatsapp{
    position: relative;
    top: -1px;
    margin-right: 5px;
    display: inline-block;
  }
  .listado .subseccion .soporte-titulo .linea-noticias,
  .listado_subsecciones .subsecciones .texto .soporte-titulo .linea-noticias{
    display: none;
  }
  .listado .subseccion .titulo img {
    width: 25px;
  }
  .listado .subseccion .titulo, 
  .contenido .editorial .subseccion .titulo{
    font-size: 24px;
  }
  .listado_subsecciones .titulo{
    font-size: 24px;
  }
  .noticias-destacadas .soporte-titulo .titulo, 
  .listado .subseccion .soporte-titulo .titulo, 
  .videos-destacados .soporte-titulo .titulo, 
  .plugin-instagram .soporte-titulo .titulo, 
  .publicaciones-destacadas .soporte-titulo .titulo{
    top: -15px;
  }
  .listado .editorial{
    margin-bottom: 20px;
  }
  .contenido .editorial header .titulo,
  .contenido .editorial .titulo{
    font-size: 18px;
    padding: 20px;
    margin: 25px auto;
  }
  .contenido .editorial .sumario, 
  .contenido .editorial .fck p,
  .contenido .editorial .descargas a,
  .contenido .contacto .descargas a,
  .plugins{
    font-size: 12px;
    padding: 0;
    margin-bottom: 20px;
  }
  .contenido .editorial .date{
    padding: 0;
    font-size: 11px;
    margin-top: 30px;
  }
  .contenido .contacto .sumario{
    font-size: 17px;
  }
  .contenido .contacto .fck p{
    font-size: 14px;
  }
  .contenido .contacto .fck {
    margin-bottom: 30px;
  }
  	.contenido .editorial .fck .faqs {
		padding: 0 0;
	}  
  .contenido .editorial .principal{
    text-align: center;
    margin-bottom: 20px;
  }
  .contenido .contacto .principal {
    margin-bottom: 0;
  }
  .contenido .contacto .info-contacto {
    padding: 25px 15px 30px;
    background: #ebeaeb;
  }
  .formulario.contact_form .form-group {
    margin-bottom: 15px;
  }
  .formulario.contact_form .form-group textarea {
    height: 80px;
  }
  .formulario.contact_form .form-control {
    height: 40px;
  }
  .formulario.contact_form label{
    font-size: 12px;
  }
  .formulario.contact_form .btn{
    font-size: 12px;
    padding: 12px 25px;
  }
  .galeria_de_imagenes{
    padding: 0;
  }
  .contenido .contacto .principal header img {
    margin-right: 10px;
    width: 45px;
  }
  .contenido .contacto .principal header h1{
    font-size: 25px;
  }
  .soporte_materiales .soporte-titulo .titulo{
    font-size: 20px;
    padding: 17px 45px;
  }
  .listado .subseccion{
    margin-top: 35px;
  }
  .listado .editorial .soporte_materiales .modulo .texto h1{
    font-size: 20px;
  }
  .listado .editorial .soporte_materiales .modulo .texto .descargas{
    font-size: 14px;
  }
  .soporte_materiales {
    position: relative;
    margin-bottom: 50px;
  }
  #prefooter{
    font-size: 12px;
  }
  #prefooter hr {
    margin: 0 15px 20px;
  }
  .home #prefooter hr, 
  .listado #prefooter hr, 
  .contenido #prefooter hr{
    margin: 0 0 20px;
  }
  #prefooter .titulo{
    font-size: 16px;
  }
  #prefooter .soporte, #footer .soporte {
    padding: 0px ;
  }
  .sop-contacto #prefooter .soporte {
    padding-top: 25px;
  }
  #prefooter .p-x-0{
    margin-bottom: 20px;
  }
  #prefooter .fila1{
    padding-bottom: 0;
  }
  #prefooter .fila2{
    padding-bottom: 0;
  }
  .sop-contacto #prefooter,
  .sop-contacto #footer{
    padding: 0 15px;
  }
  #footer .btn-consulta a {
    font-size: 15px;
    padding: 12px 25px;
    display: block;
    margin-left: 0;
    margin-top: 20px;
  }
  #footer .sponsors img {
    height: 80px;
    text-align: center;
  }
  #footer .sponsors{
    margin: 0 auto;
  }
} /* termina @media screen and (max-width: 767px) */

/* ====== DESHABILITAR RESPONSIVE ====== */

@media screen and (max-width: 767px) {
  /*--- HABILITAR SI EL SITIO NO ES RESPOSIVE
  body{
  max-width: 1170px;
  width: 1170px;
  }
  .container{
  max-width: 1170px;
  width: 1170px;
  }
  ---*/
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  /*--- HABILITAR SI EL SITIO NO ES RESPOSIVE
  body{
  max-width: 1170px;
  width: 1170px;
  }
  .container{
  max-width: 1170px;
  width: 1170px;
  }
  ---*/
}


@media screen and (max-width: 500px) {
  /* a.hamburguer {
    top: 260px;
  } */
  .logo_defen img{
    margin: 0px 10px;
  }


  #header .logo a img{
    width: 110px;
  }
  .logo_defen img{
    height: 80px;
  }
  a.hamburguer {
    top: 200px;
  }


  .herramientas{
    display: flex;
    flex-direction: column-reverse;
    justify-content: stretch; 
    margin-bottom: 25px;
  }
  #header .sistema_acceso {
    padding: 0px 0px 0px 0px;
    border-bottom: none;
    text-align: center;
    display: flex;
    margin-right: 0px;
  }
  .btn_acceso:nth-child(1) {
    margin-right: 10px;
  }
  .btn_acceso{
    align-items: flex-end;
    float: left;
    width: 50%;
    min-width: 140px;
  }
  .panel_busqueda {
    padding: 0px 0 25px;
    /* float: none; */
  }
}

@media screen and (max-width: 400px) {
  .plugins{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .plugin.twit,
  .plugin.face,
  .plugin.whatsapp{
    float: left;
    margin: 0px 0px 10px 0px !important;
  }
}

@media screen and (max-width: 360px) {
  /* #header .logo a img{
    width: 110px;
  }
  .logo_defen img{
    height: 80px;
  }
  a.hamburguer {
    top: 200px;
  } */
}

/*=========================================*/
/*=== CSS SCREEN (termina) ===*/
/*=========================================*/


/*=========================================*/
/*=== CSS IMPRESION (inicio) ===*/
/*=========================================*/

/* ====== IMPRIMIR ====== */

@media print{
	body{
		font-size: 11pt;
		line-height: 1.454545454545455;
		font-family: Arial, sans-serif !important;
		color: #000;
	}

	@page {
		size: A4;
		margin: 2cm 1.5cm;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
	  page-break-after: avoid;
	}

	h1{
		font-size: 24pt;
		line-height: 1.333333333333333;
		margin: 0;
	}
	h2{
		font-size: 21pt;
		line-height: 1.333333333333333;
		margin: 0;
	}
	h3{
		font-size: 18pt;
		line-height: 1.333333333333333;
		margin: 0;
	}
	h4{
		font-size: 16pt;
		line-height: 1.3125;
		margin: 0;
	}
	h5{
		font-size: 14pt;
		line-height: 1.285714285714286;
		margin: 0;
	}
	h6{
		font-size: 14pt;
		line-height: 1.285714285714286;
		margin: 0;
	}

	.print .titulo{
		margin-bottom: 1cm;
		font-size: 21pt;
		line-height: 1.333333333333333;
		margin: 0;
	}

	.print .texto{
		font-size: 11pt;
		line-height: 1.454545454545455;
		font-weight: 400;
		margin: 0 0 1cm 0;
	}

	.print .img{
		margin: 0 0 1cm 0;
	}

	table,
	figure {
	  page-break-inside: avoid;
	}

	img {
	   max-width: 50% !important;
	}

	.print .logo_print{
		border-bottom: 0.5pt solid #ccc;
		margin:0 0 1cm 0 !important;
		padding:0 0 1cm 0 !important;
	}

	.print .logo_print img{
		width: 3.35cm !important;
		height: 2.43cm !important;
	}

	.btn_panel,
	.panel_adminfront,
	.admin_quick_edit{
		display: none;
	}

	.footer_print{
		font-size: 10pt;
		line-height: 1.6;
		border-top: 0.5pt solid #ccc;
		margin: 1.5cm 0 0 0;
		padding: 1cm 0 0 0;
	}

	.fck_h3{
		font-weight: 400;
	}
	.fck_h4{
		font-weight: 400;
	}
	.fck_h5{
		font-weight: 400;
	}
	.fck_h6{
		font-weight: 400;
	}
	.fck_h3 b,
	.fck_h3 strong,
	.fck_h4 b,
	.fck_h4 strong,
	.fck_h5 b,
	.fck_h5 strong,
	.fck_h6 b,
	.fck_h6 strong{
		font-weight: 700;
	}
	.fck_h3 u,
	.fck_h4 u,
	.fck_h5 u,
	.fck_h6 u{
		text-decoration: none;
		border-bottom: 1px solid #000;
		padding-bottom: 5px;
	}
	.box_00{
		border: 1px solid #000;
		padding: 30px;
	}
	.box_01{
		border: 1px dashed #000;
		padding: 30px;
	}
	.box_02{
		border: 1px solid #ccc;
		color: #000;
		padding: 30px;
	}
	.box_03{
		background: #dcdcdc;
		border: 1px solid #b6b6b6;
		color: #000;
		padding: 30px;
	}
}

/*=========================================*/
/*=== CSS IMPRESION (termina) ===*/
/*=========================================*/


/*=========================================*/
/*=== CSS OWL CAROUSEL (empieza) ===*/

@media screen and (min-width: 768px) {
  .galeria_de_imagenes .owl-carousel-por-carpeta .owl-stage-outer{
    max-height: 200px !important;/* Alto del soporte, debe ser igual al alto de la imagen */
  }
  .galeria_de_imagenes .owl-carousel-por-carpeta .img-por-carpeta{
    width: auto !important;
    height: 200px !important; /* Alto de la imagen, debe ser igual al alto del soporte */
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .galeria_de_imagenes .img-por-carpeta:hover{
    opacity: 0.8 !important;
  }
} /* termina @media screen and (min-width: 768px) */

@media screen and (max-width: 767px) {
  .galeria_de_imagenes .owl-carousel-por-carpeta .img-por-carpeta{
    max-width: 100% !important;
    height: auto !important;
    display: inline-block;
  }
}/* termina @media screen and (max-width: 767px) */

/*=== CSS OWL CAROUSEL (termina) ===*/
/*=========================================*/
