@charset "UTF-8";
/*
Author: Alejandro Bernardez Araujo
Para hacer uso de los mixins es tan sencillo como hacer un @include [nombre del breakpoint]{ [estilos css] }

En este ejemplo indicaremos que por defecto las cards tenga un texto alineado al centro pero en resoluciones inferiores a 575.98px se alineará a la izquierda.

.card{
  text-align: center;
  @include xs{
    text-align: right;
  }
}
*/
/*Colores*/
/*Tipografias*/
/*Espaciado cabecera*/
/*Sobreescribir variables material*/
/*Generalidades*/
body {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  color: #212529;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2em;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 2.2rem;
}
@media (max-width: 575.98px) {
  h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  body.home h1 {
    font-size: 4.938rem;
  }
}

@media (max-width: 1199.98px) {
  body.home h1 {
    font-size: 3.8rem;
  }
}

@media (max-width: 767.98px) {
  body.home h1 {
    font-size: 2.5rem;
  }
  body .bloque-home-1 .contenido-texto-bloque h2 {
    font-size: 1.3rem;
  }
}

h2 {
  font-size: 1.7rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p,
ul,
li,
strong {
  font-family: "Montserrat", sans-serif;
}

p {
  line-height: 1.8;
}

ul li {
  margin: 0 5px;
}

a {
  color: #009845;
}
a:hover,
a:focus {
  color: #009845;
}

.card-inner {
  padding: 30px;
}

.notice.notice_success {
  background: rgba(4, 136, 14, 0.29);
  border-left: 5px solid #008800;
  color: #017909;
}

.notice.notice_error {
  background: rgba(136, 0, 0, 0.29);
  border-left: 5px solid #880000;
  color: #790202;
}

.notice_list {
  margin: 15px 0;
  padding: 15px 0 15px 40px;
}

#primary {
  width: 100%;
}

/*Espaciado de la cabecera*/
.espaciado-cabecera {
  height: 95px;
  background-color: #fafafa;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .espaciado-cabecera {
    height: 95px;
    background-color: #fafafa;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .espaciado-cabecera {
    height: 75px;
    background-color: #fafafa;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .espaciado-cabecera {
    height: 75px;
    background-color: #fafafa;
  }
}

@media (max-width: 575px) {
  .espaciado-cabecera {
    height: 75px;
    background-color: #fafafa;
  }
}

/*Botones*/
.btn:not(.btn-raised),
.btn:not(.btn-raised):not(.btn-link) {
  background-color: #009845;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.btn:not(.btn-raised):hover,
.btn:not(.btn-raised):not(.btn-link):hover {
  background-color: #009845;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.2);
}
.btn:not(.btn-raised).btn-blanco,
.btn:not(.btn-raised):not(.btn-link).btn-blanco {
  background-color: #fff;
  color: #009845;
}
.btn:not(.btn-raised).btn-blanco:hover,
.btn:not(.btn-raised):not(.btn-link).btn-blanco:hover {
  background-color: #fff;
  color: #009845;
}

/*Cards y overlays */
a:hover .card,
.card.fake-a:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.23), 0 3px 10px rgba(0, 0, 0, 0.16);
}

body .card,
a .card,
.card.fake-a {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease-in-out;
}

.overlay-item-wrap {
  position: relative;
  cursor: pointer;
}

.overlay-item-wrap:hover .overlay {
  opacity: 1;
}

.overlay {
  background-color: rgba(0, 152, 69, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
}
.overlay img {
  display: block;
  margin: 0 auto 8px auto;
}

.admin-bar #masthead .navbar {
  margin-top: 32px;
}

.modalGrid p {
  margin-bottom: 0;
}

body .ui-jqgrid .loading {
  color: #009845;
}

#cookie-law-info-bar {
  max-width: 50%;
  padding: 15px !important;
  text-align: left !important;
  left: inherit !important;
  right: 0;
}
@media (max-width: 991.98px) {
  #cookie-law-info-bar {
    max-width: 100%;
  }
}
input[type="date"]:focus:not([readonly]),
input[type="datetime-local"]:focus:not([readonly]),
input[type="email"]:focus:not([readonly]),
input[type="number"]:focus:not([readonly]),
input[type="password"]:focus:not([readonly]),
input[type="search-md"]:focus:not([readonly]),
input[type="search"]:focus:not([readonly]),
input[type="tel"]:focus:not([readonly]),
input[type="text"]:focus:not([readonly]),
input[type="time"]:focus:not([readonly]),
input[type="url"]:focus:not([readonly]),
textarea.md-textarea:focus:not([readonly]) {
  border-bottom: 1px solid #009845;
  box-shadow: 0 1px 0 0 #009845;
}

input[type="date"]:focus:not([readonly]) + label,
input[type="datetime-local"]:focus:not([readonly]) + label,
input[type="email"]:focus:not([readonly]) + label,
input[type="number"]:focus:not([readonly]) + label,
input[type="password"]:focus:not([readonly]) + label,
input[type="search-md"]:focus:not([readonly]) + label,
input[type="search"]:focus:not([readonly]) + label,
input[type="tel"]:focus:not([readonly]) + label,
input[type="text"]:focus:not([readonly]) + label,
input[type="time"]:focus:not([readonly]) + label,
input[type="url"]:focus:not([readonly]) + label,
textarea.md-textarea:focus:not([readonly]) + label {
  color: #212529;
}

.logo_contra {
  display: none;
}

#masthead {
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}
#masthead .menu-footer {
  display: none;
}
#masthead .navbar {
  margin: 0;
  background-color: #fff;
}
#masthead .navbar .navbar-nav {
  margin-top: 8px;
}
#masthead .navbar .navbar-toggler {
  background-image: none;
  margin-top: 10px;
}
#masthead .navbar .navbar-toggler span {
  background-image: none;
}
#masthead .navbar .navbar-toggler:before {
  font: normal normal normal 20px/1 FontAwesome;
  content: "\f0c9";
  color: #009845;
}
#masthead .navbar li {
  margin: 0;
}
#masthead .navbar li.active > a,
#masthead .navbar li.current-menu-ancestor > a {
  color: #009845 !important;
}
#masthead .navbar li > a {
  color: #212529;
  font-size: 16px;
  padding: 20px 10px;
  font-weight: 500;
  line-height: 20px;
}
#masthead .navbar li > a:hover,
#masthead .navbar li > a:focus {
  color: #009845 !important;
}
@media (max-width: 1199.98px) {
  #masthead .navbar li > a {
    padding: 10px 8px;
    font-size: 14px;
  }
}
#masthead .navbar li.btn-menu {
  margin-top: 10px;
}
#masthead .navbar li.btn-menu > a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.42857143;
  text-align: center;
  position: relative;
  padding: 10px 30px;
  margin: 0px;
  cursor: pointer;
  border-radius: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  transition: background-color 0.2s ease,
    box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none !important;
  background-color: #009845;
  border: none;
}
#masthead .navbar li.btn-menu > a:hover {
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
  color: #fff;
  border: none;
}
#masthead .navbar li .dropdown-menu {
  border-radius: 0;
}
#masthead .navbar li .dropdown-menu > li.active > a {
  background-color: transparent;
  color: #009845;
}
#masthead .navbar li .dropdown-menu > li > a {
  padding: 10px 15px;
  text-transform: none;
}
#masthead .navbar li .dropdown-menu > li > a:hover {
  background-color: transparent;
}
#masthead .navbar .navbar-brand {
  height: auto;
}
#masthead .navbar .navbar-brand img {
  max-height: 54px;
  width: auto;
}

@media (min-width: 992px) {
  .hide-in-desktop {
    display: none;
  }
}

/*
Configuraciones cuando sale el menu hamburguesa,
cambiar según el BREACKPOINT
*/
@media (min-width: 992px) {
  .home header#masthead .navbar:not(.top-nav-collapse) {
    background-color: transparent !important;
    box-shadow: none;
  }
  .home header#masthead .navbar:not(.top-nav-collapse) li:not(.btn-menu) a {
    color: #fff;
    background-color: transparent;
  }
  .home
    header#masthead
    .navbar:not(.top-nav-collapse)
    li:not(.btn-menu)
    a:hover {
    color: #009845;
  }
  .home
    header#masthead
    .navbar:not(.top-nav-collapse)
    li:not(.btn-menu).active
    > a,
  .home
    header#masthead
    .navbar:not(.top-nav-collapse)
    li:not(.btn-menu).current-menu-ancestor
    > a {
    color: #009845;
  }
  .home header#masthead .navbar:not(.top-nav-collapse) .logo_wrap {
    display: none;
  }
  .home header#masthead .navbar:not(.top-nav-collapse) .logo_contra {
    display: block;
  }
  .home .espaciado-cabecera {
    display: none;
  }
}

@media (max-width: 991px) {
  body #masthead .navbar {
    justify-content: center;
  }
  body #masthead .navbar .navbar-nav {
    height: 100vh !important;
    overflow-y: scroll !important;
    background-color: #fff;
  }
  body #masthead .navbar .navbar-brand {
    align-self: center;
    margin: 0 auto;
  }
  body #masthead .navbar .dropdown-menu {
    position: relative !important;
    margin-top: 0;
    border: none;
    padding-left: 20px;
    top: 0;
  }
  body #masthead .navbar ul {
    text-align: left;
  }
  body #masthead .navbar .navbar-toggler {
    background-image: none;
    margin-top: 10px;
    align-self: flex-end;
    position: absolute;
    left: 10px;
    top: 10px;
  }
}

#btn-flotante-wrap {
  position: fixed;
  right: 15px;
  top: inherit;
  bottom: 5%;
  z-index: 9999;
}
#btn-flotante-wrap a {
  padding: 15px;
  min-width: inherit;
  border-radius: 50%;
  background-color: #009845;
  color: #f7f7f7;
}
#btn-flotante-wrap a:hover i {
  transform: scale(1.1);
  transition: transform 0.5s;
}
#btn-flotante-wrap a i {
  font-size: 20px;
  transition: transform 0.5s;
}

.archive #colophon,
.blog #colophon {
  margin-top: 30px;
}

#colophon {
  padding: 30px 0;
  background-color: #333333;
  margin-top: 0;
  box-shadow: 0px 1px 9px rgba(0, 0, 0, 0.2);
  color: white;
  font-weight: 400;
  font-size: 14px;
}
#colophon .row {
  display: flex;
  align-items: center;
}
#colophon a {
  opacity: 1;
  color: white;
}
#colophon a:hover {
  color: #009845;
}
#colophon h3 {
  font-size: 16px;
  margin-top: 0;
  font-weight: bold;
}
#colophon .pie-col.pie-col2 {
  text-align: center;
}
@media (max-width: 575.98px) {
  #colophon .pie-col.pie-col2 ul {
    text-align: center;
  }
}
#colophon .pie-col.pie-col3 {
  text-align: right;
}
@media (max-width: 767.98px) {
  #colophon .pie-col.pie-col3 p {
    justify-content: center !important;
  }
}
#colophon .pie-col .menu {
  padding: 0;
  list-style-type: none;
  columns: 3;
  text-align: left;
}
@media (min-width: 992px) {
  #colophon .pie-col .menu {
    margin: 57px 0 0 0;
  }
}
@media (max-width: 767.98px) {
  #colophon .pie-col .menu {
    margin: 0;
    columns: 2;
  }
}
#colophon .pie-col .menu li {
  display: inline-block;
  width: 100%;
}
#colophon .pie-col .menu li.menu-no-footer {
  display: none;
}
#colophon .pie-col .menu li.menu-footer {
  display: inline-block;
}
#colophon .pie-col .menu li .sub-menu {
  display: none;
}
#colophon .pie-col .menu li.current_page_item a {
  color: #009845;
}
@media (max-width: 767.98px) {
  #colophon .pie-col .redes_pie {
    justify-content: center;
  }
}
#colophon .pie-col .redes_pie ul {
  width: auto;
  margin: 0;
  flex: 1;
  flex-wrap: nowrap;
  flex-direction: row;
}
#colophon .pie-col .redes_pie i.fa {
  padding: 3px;
  border: none;
  background-color: white;
  color: #333333;
  margin: 0 3px;
  height: 30px;
  width: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  border-radius: 3px;
}
#colophon .pie-col .redes_pie i.fa:hover {
  background-color: #009845;
}
#colophon .pie-col .contacto_item span {
  padding-left: 5px;
}
#colophon .pie-col a {
  transition: all 0.3s ease-in-out;
}
#colophon .pie-col a:hover {
  text-decoration: none;
}
#colophon .pie-col a:hover i {
  color: #fff;
  background-color: #009845;
}

@media (max-width: 767px) {
  .logo-item {
    padding: 10px;
    max-width: 150px;
  }
  .listado-logos {
    flex-wrap: wrap;
  }
  #colophon .row {
    flex-wrap: wrap;
  }
  #colophon .row .pie-col {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
}

.pos-footer {
  background-color: #d5d5d5;
  min-height: 100px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .pos-footer {
    height: 100px;
  }
}
.pos-footer ul {
  list-style: none;
  margin: 0;
}
.pos-footer ul li {
  display: inline-block;
  margin: 0 12px;
}
.pos-footer a {
  color: #333333;
}
.pos-footer a:hover {
  color: #009845;
}

.pos-footer1 img {
  max-height: 64px;
  width: auto !important;
}

.siguenos {
  margin-left: 8px;
  margin-right: 8px;
}
@media (min-width: 992px) {
  .siguenos {
    margin-top: 45px;
  }
}
@media (max-width: 991.98px) {
  .siguenos span {
    display: none;
  }
}
@media (min-width: 992px) {
  .redes_pie {
    margin-left: -8px;
  }
}

.pie-col3 img {
  max-width: 160px;
}

.pie-col3 p {
  margin-bottom: 1em;
}

@media (max-width: 767.98px) {
  #menu-legal {
    padding: 0;
    margin: 1rem !important;
  }
}

/*Slide Master slide */
.ms-slide-info.ms-dir-h {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
  min-height: inherit !important;
  bottom: inherit !important;
}
.ms-slide-info.ms-dir-h .ms-info {
  max-width: 1170px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}
.ms-slide-info.ms-dir-h .ms-info a {
  border: none;
  border-radius: 2px;
  position: relative;
  padding: 12px 40px;
  margin: 10px 1px;
  text-transform: uppercase;
  letter-spacing: 0;
  will-change: box-shadow, transform;
  -webkit-transition: -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),
    background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),
    background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),
    background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: 0;
  cursor: pointer;
  text-decoration: none;
  background-color: #009845;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
  margin-top: 30px;
  display: inline-block;
}
.ms-slide-info.ms-dir-h .ms-info a:hover {
  background-color: #009845;
  color: #fff;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

@media (max-width: 767px) {
  .ms-slide .ms-slide-bgcont img {
    max-width: inherit;
  }
  body .ms-slide-info.ms-dir-h {
    position: relative;
    top: 0 !important;
    bottom: 0 !important;
    background-color: #009845;
    transform: none;
    left: 0;
    right: 0;
    width: auto;
    padding: 20px 15px;
  }
  body .ms-slide-info.ms-dir-h h2 {
    font-size: 20px;
  }
  body .ms-slide-info.ms-dir-h .ms-info a {
    margin-top: 10px;
    margin-bottom: 0;
    background-color: #fff;
    color: #009845;
  }
  body .ms-slide-info.ms-dir-h .ms-info a:hover {
    background-color: #fff;
    color: #009845;
  }
  body .ms-slide-info.ms-dir-h .ms-info img {
    display: none;
  }
  body .ms-slide-info.ms-dir-h .ms-info p {
    margin: 0;
  }
}

/*Bloques home */
.bloque-home {
  padding: 30px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.titulo-home {
  margin-bottom: 20px;
  margin-top: 0;
  text-align: center;
  font-size: 1.563rem;
}

.bloque-home-1 {
  display: flex;
  align-items: center;
  min-height: 100vh;
  color: white;
  background-color: #00000047;
  background-blend-mode: overlay;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .bloque-home-1 {
    height: 100vh;
  }
}
.bloque-home-1 .contenido-texto-bloque h2 {
  font-size: 1.688rem;
}

.bloque-cuatro-iconos {
  text-align: center;
}
.bloque-cuatro-iconos p {
  font-size: 1.125rem;
  font-weight: 400;
  padding-top: 0.8rem;
  line-height: 22px;
}
.bloque-cuatro-iconos img {
  max-width: 115px;
}

.col-wrap-cuatro-iconos {
  max-width: 256px;
}
@media (max-width: 991.98px) {
  .col-wrap-cuatro-iconos {
    margin: 15px 0;
  }
}
/*Bloque noticias*/
.bloque-news {
  padding-bottom: 0;
}
.bloque-news .listado-noticias {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  flex: 1;
  flex-wrap: nowrap;
  padding-bottom: 0;
}
.bloque-news .listado-noticias > div {
  width: 100%;
}
.bloque-news .listado-noticias .noticia-item-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid white;
}
.bloque-news .listado-noticias .noticia-item-wrap .fecha-tag {
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
  /* bottom: 25%; */
  /* left: 27px; */
  line-height: 1em;
  color: white;
  font-weight: bold;
  border-bottom: 2px solid white;
  padding-bottom: 6px;
}
.bloque-news .listado-noticias .noticia-item-wrap.noticia-big-wrap {
  height: 451px;
}
.bloque-news
  .listado-noticias
  .noticia-item-wrap.noticia-big-wrap
  .titulo-noticia-item {
  font-size: 25px;
  line-height: 1em;
  background-color: #00000057;
  padding: 10px 15px;
}
.bloque-news .listado-noticias .noticia-item-wrap a {
  display: block;
  height: 100%;
}
.bloque-news .listado-noticias .noticia-item-wrap .noticia-item {
  height: 100%;
}
.bloque-news
  .listado-noticias
  .noticia-item-wrap
  .noticia-item
  .noticia-item-img {
  background-size: cover;
  transition: all 0.4s ease-in-out;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-filter: grayscale(42%);
  filter: none;
}
.bloque-news
  .listado-noticias
  .noticia-item-wrap
  .noticia-item
  .noticia-item-img:hover {
  mix-blend-mode: multiply;
  transform: scale(1.1);
}
.bloque-news .listado-noticias .noticia-item-wrap .titulo-noticia-item {
  width: 91%;
  position: absolute;
  bottom: 20px;
  left: 15px;
  color: #fff;
  /*text-transform:uppercase;*/
  font-size: 16px;
  transition: all 0.4s ease-in-out;
  line-height: 1em;
  background-color: #00000057;
  padding: 10px 10px;
}
.bloque-news .listado-noticias .noticia-item-wrap:hover .titulo-noticia-item {
  /*color: $color_base;*/
  color: #fff;
  transform: scale(1);
}
.bloque-news
  .listado-noticias
  .noticia-item-wrap:hover
  .noticia-item
  .noticia-item-img {
  transform: scale(1.1);
}
.bloque-news .listado-noticias .wrap-small-news {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.bloque-news .listado-noticias .wrap-small-news > div.noticia-item-wrap {
  height: 50%;
  width: 50%;
}

/*Fin bloque noticias*/
.wrap-fecha-noticias {
  display: flex;
  position: relative;
  max-width: 53px;
  flex-direction: column;
  align-items: center;
  background-color: #00000057;
  color: white;
  padding: 10px 15px;
  margin: 10px 15px;
}
.wrap-fecha-noticias .fecha-dia,
.wrap-fecha-noticias .fecha-mes {
  font-size: 21px;
  line-height: 1;
}
.wrap-fecha-noticias .fecha-anio {
  font-size: 10px;
}

.noticia-big-wrap .fecha-dia,
.noticia-big-wrap .fecha-mes {
  font-size: 28px;
  line-height: 1;
}

@media (min-width: 992px) {
  .menu-legal-container {
    margin-right: -15px;
  }
}

/*Texto-foto-home 3*/
.bg-pos-x-34 {
  background-position-x: 34%;
}
@media (max-width: 1199.98px) {
  .bg-pos-x-34 {
    background-position-x: 50%;
  }
}
.h2-font-1_6 h2 {
  font-size: 1.6rem;
}

/* FIN Texto-foto-home 3*/
/*btn-contra*/
body .btn-wrap .btn-contra {
  background-color: white;
  margin: 0;
  clear: both;
  border-radius: 54px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid #009845;
  padding: 10px 24px;
}

/*FIN btn-contra*/
.bloque-interior .contenido-texto-bloque h2 {
  font-weight: 500;
}

.bloque-interior .contenido-texto-bloque p {
  font-weight: 400;
}

body p {
  font-weight: 400;
}

#aviso-legal-texto .contenido-texto-bloque > ol {
  margin: 0 0 1.5em 1em;
}
#aviso-legal-texto .contenido-texto-bloque > ol li {
  margin-bottom: 0.5em;
}

a#privacidad {
  display: block;
  position: relative;
  top: -150px;
  visibility: hidden;
}

.bloque-certificaciones .col-wrap-cuatro-iconos {
  display: flex;
  align-items: center;
}
.bloque-certificaciones .col-wrap-cuatro-iconos img {
  max-height: 170px;
  width: auto;
}

.bloque-home-1 .btn span {
  font-size: 16px;
}

.wrap_contenido_foto {
  background-position: center;
}
@media (max-width: 767.98px) {
  .wrap_contenido_foto {
    background-image: none !important;
  }
}
@media (max-width: 1199.98px) {
  #texto-foto-1 .wrap_contenido_foto {
    background-position-x: 70%;
  }
}

@media (max-width: 1199.98px) {
  #texto-foto-2 .wrap_contenido_foto {
    background-position-x: 40%;
  }
}

@media (max-width: 1199.98px) {
  #texto-foto-3 .wrap_contenido_foto {
    background-position-x: 50%;
  }
}

@media (max-width: 1300px) {
  .bloque-news .listado-noticias .noticia-item-wrap.noticia-big-wrap {
    height: 600px;
  }
}

@media (max-width: 991px) {
  .bloque-news .listado-noticias {
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
  }
  .bloque-news .listado-noticias .noticia-item-wrap.noticia-big-wrap {
    height: 600px;
  }
  .bloque-news
    .listado-noticias
    .noticia-item-wrap.noticia-big-wrap
    .titulo-noticia-item {
    font-size: 25px;
  }
  .bloque-news .listado-noticias .wrap-small-news {
    height: 600px;
  }
  .bloque-news
    .listado-noticias
    .wrap-small-news
    .noticia-item-wrap
    .titulo-noticia-item {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .bloque-news .listado-noticias .noticia-item-wrap.noticia-big-wrap {
    height: 300px;
  }
  .bloque-news .listado-noticias .wrap-small-news {
    height: 450px;
  }
}

.error_message_container {
  text-align: center;
  text-align: -webkit-center;
}
.error_message_container .error_text {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  font-size: 10px;
  background-color: #fff1f2;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #ce1010;
  font-weight: 600;
  width: 250px;
  padding: 1px;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: center;
  color: #ce1010;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
}
.error_message_container .succesfully_text {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  font-size: 10px;
  background-color: #a7a9a514;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #79b83e;
  font-weight: 600;
  width: 250px;
  padding: 1px;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: center;
  color: #79b83e;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
}

.inputfile + label.fileinputlabel {
  background-color: #fff;
  color: #000;
  padding: 10px 35px;
  margin-top: 8px;
  border: none !important;
}
.inputfile + label.fileinputlabel:hover,
.inputfile + label.fileinputlabel:focus {
  background-color: #fff;
  color: #79b83e;
  border: none;
}

.inputfile:focus + label.fileinputlabel,
inputfile + label.fileinputlabel:focus {
  background-color: #fff;
  color: #79b83e;
  border: none;
  outline-color: white;
}

#load_list1.loading.ui-state-default.ui-state-active {
  border: none;
}

.ui-datepicker {
  width: 290px;
}
.ui-datepicker .ui-datepicker-title {
  text-align: center;
  background: #79b83e;
  font-family: "Montserrat";
}

.ui-widget-header {
  border: 1px solid #79b83e;
  background: #79b83e;
  color: #ffffff;
  font-weight: bold;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #c5dbec;
  background: #dfeffc url(images/ui-bg_glass_85_dfeffc_1x400.png) 50% 50%
    repeat-x;
  font-weight: bold;
  font-family: "Montserrat";
  color: #2e6e9e;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  font-family: "Montserrat";
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker table {
  border: none;
}

.ui-state-default,
.ui-widget-content {
  color: #000;
}
.ui-state-default .ui-state-default,
.ui-widget-content .ui-state-default {
  color: #000;
}

.fecha-destacada {
  background-color: #009845;
  color: #fff;
  font-size: 25px;
  min-height: 70px;
  padding: 17px;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.fecha-destacada span {
  display: block;
}
.fecha-destacada span.year {
  font-size: 15px;
  text-transform: uppercase;
}

.titulo-item {
  font-size: 15px;
  font-weight: 600;
  margin: 8px 0 0 0;
  line-height: 1.3em;
}

.link_ver_todos {
  text-align: center;
  margin-top: 20px;
}
.link_ver_todos .btn-link {
  text-transform: uppercase;
  font-weight: bold;
  color: #009845;
}
.link_ver_todos .btn-link:hover {
  color: #009845;
}

.titulo-item a {
  color: #383838;
}
.titulo-item a:hover {
  text-decoration: none;
  color: #009845;
}

.item-foto-titulo {
  margin-bottom: 30px;
  width: 100%;
}
.item-foto-titulo .imagen-loop-item {
  display: block;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.item-foto-titulo .imagen-loop-item:before {
  content: "";
  display: flex;
  padding-top: 75%;
}
.item-foto-titulo .imagen-loop-item .fecha-destacada {
  position: absolute;
  top: 0;
  left: 0;
}
.item-foto-titulo .item-info {
  padding: 15px;
}
.item-foto-titulo .item-info .titulo-item {
  font-size: 18px;
  font-weight: 400;
}

.item-evento {
  width: 100%;
}
.item-evento .card .contenido-noticia {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.item-evento .card .contenido-noticia .item-info {
  padding: 10px;
}
.item-evento .card .contenido-noticia .item-info .titulo-item {
  font-size: 18px;
}
.item-evento .card .contenido-noticia .item-info .meta-wrap-noticia {
  font-size: 14px;
}

.bloque-foto-texto100 .foto img {
  width: 100%;
}

@media (max-width: 767px) {
  .overlay-item-wrap {
    max-width: 450px;
    margin: 5px auto;
  }
}

/*generalidades*/
.entry-container {
  padding: 15px;
}

/*Cabecera - titulo interiores */
.cabecera-custom {
  padding: 20px 0;
  color: #fff;
  background-color: #fafafa;
  background-size: cover;
}
.cabecera-custom .entry-title {
  margin-top: 0;
  line-height: 1.1;
  font-size: 1.875rem;
  color: #009845;
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .cabecera-custom {
    padding: 30px 0;
  }
}

/*Sidebars */
#secondary {
  margin-top: 30px;
  padding-left: 40px;
}
#secondary .panel {
  box-shadow: none;
}
#secondary .panel > .panel-heading {
  text-transform: uppercase;
  border-bottom: solid 1px;
  margin-bottom: 10px;
  margin-top: 0;
  color: #383838;
  background-color: transparent;
  font-weight: bold;
  padding: 0 0 10px 0;
}
#secondary .panel > .panel-heading h3 {
  font-size: 18px;
  text-transform: uppercase;
  margin: 0;
}
#secondary .panel ul {
  padding: 10px 0;
}

/*Formulario de busqueda*/
.busqueda_resultado {
  margin-bottom: 15px;
}

/*Página de contacto*/
.contenido-contacto .datos_contacto i {
  color: #009845;
  margin-right: 5px;
}

/*Paginacion */
.pag-wrap {
  clear: both;
  text-align: center;
  margin-top: 30px;
  width: 100%;
  float: left;
}
.pag-wrap .wp-pagenavi a:hover,
.pag-wrap .wp-pagenavi span.current {
  background-color: #009845;
  color: #fff;
  border-color: #009845;
  text-decoration: none;
}

/*Página de contacto*/
.infowindow_custom {
  max-width: 300px;
}

/*Sobre Nosotros*/
#bloque-sobre-nosotros-1 {
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
  background-position: center 80%;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #bloque-sobre-nosotros-1 > .container > .row:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
  }
  #bloque-sobre-nosotros-1 .texto-bloque {
    z-index: 3;
  }
}
#bloque-sobre-nosotros-1 h2 {
  position: relative;
  padding-bottom: 10px;
  color: #009845;
}
@media (min-width: 992px) {
  #bloque-sobre-nosotros-1 {
    padding: 184px 0;
  }
}
#bloque-sobre-nosotros-1 .contenido-texto-bloque {
  position: relative;
  color: #fff;
}
#bloque-sobre-nosotros-1 h2,
#bloque-sobre-nosotros-1 p {
  font-weight: 500;
}

#bloque-gestan-contecto-info > .container {
  margin-top: 30px;
}

#bloque-gestan-contecto-info ul {
  columns: 2;
  column-gap: 30px;
}
@media (max-width: 991.98px) {
  #bloque-gestan-contecto-info ul {
    columns: 1;
  }
}
.wrap-icono-before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 26px;
  top: -45px;
  background-color: white;
  border-radius: 50%;
}

#bloque-sobre-nosotros-2 ul {
  padding: 0px;
  padding-left: 15px;
  columns: 2;
  column-gap: 30px;
}
@media (max-width: 991.98px) {
  #bloque-sobre-nosotros-2 ul {
    columns: 1;
  }
}
#bloque-sobre-nosotros-2 h2 {
  position: relative;
  padding-bottom: 10px;
}
#bloque-sobre-nosotros-2 h2:after {
  content: " ";
  height: 1px;
  width: 122px;
  background-color: #009845;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#bloque-sobre-nosotros-2-1 h2 {
  position: relative;
  padding-bottom: 10px;
  margin-top: 30px;
}
#bloque-sobre-nosotros-2-1 h2:after {
  content: " ";
  height: 1px;
  width: 122px;
  background-color: #009845;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#bloque-sobre-nosotros-4 {
  background-position: 80% center !important;
}
@media (max-width: 1199.98px) {
  #bloque-sobre-nosotros-4 {
    background-position: 75% center !important;
  }
}
#bloque-sobre-nosotros-4 ul {
  list-style: none;
}
#bloque-sobre-nosotros-4 ul li {
  padding-bottom: 1.8em;
}
#bloque-sobre-nosotros-4 .contenido-texto-bloque {
  margin: 25px 0px;
}
#bloque-sobre-nosotros-4 ul > li:before {
  content: "\f00c";
  background-color: transparent;
  border-radius: 50%;
  font-family: FontAwesome;
  /* height: 5px; */
  /* width: 5px; */
  color: #79b83e;
  top: -9px;
  display: block;
  position: absolute;
  left: -40px;
  font-size: 26px;
}
#bloque-sobre-nosotros-4 .img-bloque {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: 50%;
}

.bloque-ubicaciones {
  background-color: #fafafa;
  padding: 30px 0px;
}
@media (max-width: 767.98px) {
  .bloque-ubicaciones {
    padding: 15px 0px;
  }
}
.bloque-ubicaciones .wrap-ubicacion {
  height: 340px;
  border-bottom: 10px solid #009845;
  font-size: 18px;
  color: white;
  text-align: center;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .bloque-ubicaciones .wrap-ubicacion {
    margin-bottom: 15px;
  }
}
.bloque-ubicaciones .wrap-ubicacion p {
  margin: 0;
  text-align: center;
}
.bloque-ubicaciones .wrap-ubicacion .nombre-ubicacion {
  font-weight: 600;
  line-height: normal;
}
.bloque-ubicaciones .wrap-ubicacion .descripcion-ubicacion {
  font-weight: 500;
}
.bloque-ubicaciones .fondo-ubica {
  color: black;
  background-color: rgba(255, 255, 255, 0.6);
  min-height: 110px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  width: 100%;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .bloque-ubicaciones .fondo-ubica {
    display: block;
  }
}
#main
  > div.bloque-ubicaciones
  > div
  > div:nth-child(3)
  > div:nth-child(3)
  > a
  > div
  > div
  > p.descripcion-ubicacion {
  margin-bottom: 7px !important;
}

/*FIN Sobre Nosotros*/
/* Ubicaciones */
.wrapper-ubicaciones .bloque-ubicacion:nth-child(even) .background-img,
.wrapper-ubicaciones .bloque-ubicacion:nth-child(even) .flip-container,
.wrapper-ubicaciones .bloque-ubicacion:nth-child(even) .acf-map {
  left: 0;
}

@media (min-width: 992px) {
  .wrapper-ubicaciones .bloque-ubicacion:nth-child(even) .col-ubicacion {
    margin-left: 50%;
  }
}

@media (min-width: 992px) {
  .wrapper-ubicaciones .bloque-ubicacion:nth-child(even) .ubicacion {
    margin-left: 30px;
  }
}

.wrapper-ubicaciones
  .bloque-ubicacion:nth-child(even)
  .titulo-localizacion
  span {
  float: right;
}

.wrapper-ubicaciones .bloque-ubicacion:nth-child(odd) .background-img,
.wrapper-ubicaciones .bloque-ubicacion:nth-child(odd) .flip-container,
.wrapper-ubicaciones .bloque-ubicacion:nth-child(odd) .acf-map {
  right: 0;
}

.wrapper-ubicaciones .bloque-ubicacion:nth-child(odd) .ubicacion {
  margin-right: 30px;
}
@media (max-width: 575.98px) {
  .wrapper-ubicaciones .bloque-ubicacion:nth-child(odd) .ubicacion {
    margin-right: 0px;
  }
}
.bloque-ubicacion {
  min-height: calc(75vh - 92px);
  padding: 60px 0px;
  position: relative;
}
.bloque-ubicacion .anchor {
  display: block;
  position: relative;
  top: -130px;
  visibility: hidden;
}
@media (max-width: 991.98px) {
  .bloque-ubicacion {
    padding: 30px 0px;
  }
}
.bloque-ubicacion .flip-container {
  width: 50%;
}
.bloque-ubicacion .flip-container.active .flipper {
  transform: rotateY(180deg);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .bloque-ubicacion .flip-container.active .flipper {
    transform: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .bloque-ubicacion .front {
    transform: none;
  }
  .bloque-ubicacion .back {
    transform: none;
  }
  .bloque-ubicacion .flip-container.active .front {
    opacity: 0;
  }
  .bloque-ubicacion .flip-container.active .back {
    transform: none;
  }
}
.bloque-ubicacion .flipper {
  transition: 0.6s;
  transform-style: preserve-3d;
}
.bloque-ubicacion .front,
.bloque-ubicacion .back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.bloque-ubicacion .front {
  z-index: 2;
  transform: rotateY(0deg);
}
.bloque-ubicacion .back {
  transform: rotateY(180deg);
}
.bloque-ubicacion .background-img,
.bloque-ubicacion .acf-map,
.bloque-ubicacion .flipper,
.bloque-ubicacion .back,
.bloque-ubicacion .front {
  width: 100%;
}
.bloque-ubicacion .background-img {
  background-size: cover;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.bloque-ubicacion .background-img .titulo-localizacion {
  width: 100%;
  margin: 0px;
  border-bottom: 10px solid #009845;
}
.bloque-ubicacion .background-img .titulo-localizacion span {
  padding: 15px 30px;
  font-size: 72px;
  background-color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  color: #009845;
  display: inline-block;
}
.bloque-ubicacion .acf-map {
  background-color: #f7f7f7;
}
.bloque-ubicacion .background-img,
.bloque-ubicacion .flip-container,
.bloque-ubicacion .acf-map,
.bloque-ubicacion .flipper,
.bloque-ubicacion .back,
.bloque-ubicacion .front {
  position: absolute;
  top: 0;
  bottom: 0;
}
.bloque-ubicacion .caracteristicas {
  padding: 0px;
  margin: 0px;
  margin-bottom: 30px;
  list-style: none;
}
.bloque-ubicacion .caracteristicas li {
  margin: 0px;
  margin-bottom: 30px;
}
.bloque-ubicacion .caracteristicas .wrapper-icono {
  width: 25%;
}
.bloque-ubicacion .caracteristicas .wrapper-caracteristica {
  width: 75%;
}
.bloque-ubicacion .caracteristicas .caracteristica {
  font-weight: 500;
  margin-bottom: 0px;
}
@media (max-width: 767.98px) {
  .bloque-ubicacion .caracteristicas .caracteristica {
    margin-top: 15px;
  }
}
.bloque-ubicacion .informacion {
  padding-top: 30px;
  border-top: 3px solid #707070;
}
.bloque-ubicacion .informacion .listado-informacion {
  padding: 0px;
  margin: 0px;
}
.bloque-ubicacion .informacion .listado-informacion li {
  display: inline-block;
  font-weight: 500;
  padding-right: 15px;
  margin: 0px;
}
.bloque-ubicacion .informacion .listado-informacion li:last-child {
  padding-right: 0px;
}
.bloque-ubicacion .informacion .listado-informacion li:first-child {
  min-width: 140px;
}
@media (max-width: 991.98px) {
  .bloque-ubicacion .informacion .listado-informacion li:first-child {
    display: none;
  }
}
.bloque-ubicacion .informacion .listado-informacion li i {
  margin-right: 5px;
  color: #8e8e8e;
}
.bloque-ubicacion .informacion .listado-informacion li:hover {
  color: #009845;
  cursor: pointer;
}
.bloque-ubicacion .informacion .listado-informacion li:hover i {
  color: #009845;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .bloque-ubicacion .ubicacion {
    text-align: center;
  }
}
.bloque-ubicacion .ubicacion ul {
  text-align: left;
}
@media (max-width: 575.98px) {
  .bloque-ubicacion .ubicacion ul {
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  .bloque-2coltexto .contenido-texto-bloque {
    text-align: center;
  }
}

#sobreNosotrosGrupo {
  background-position: 40% center;
}

#bloque-contenedores-1 {
  padding: 0px;
  color: white;
}
#bloque-contenedores-1 h2 {
  color: #009845;
}
#bloque-contenedores-1 .texto-bloque:first-child .contenido-texto-bloque {
  padding: 30px 0px;
}
@media (max-width: 991.98px) {
  #bloque-contenedores-1 .texto-bloque:first-child .contenido-texto-bloque {
    padding: 15px 0px 0px;
  }
}
#bloque-contenedores-1 .texto-bloque:nth-child(2) h3 {
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
#bloque-contenedores-1 .texto-bloque:nth-child(2) h3:after {
  content: " ";
  background-color: #009845;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
#bloque-contenedores-1 .texto-bloque:nth-child(2) p {
  color: #009845;
}
#bloque-contenedores-1 .texto-bloque:nth-child(2) .contenido-texto-bloque {
  background-color: rgba(12, 11, 11, 0.55);
  height: 100%;
  padding: 30px 30px;
  max-width: 372px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

#bloque-contenedores-2 .img-bloque,
#bloque-contenedores-3 .img-bloque,
#bloque-contenedores-4 .img-bloque {
  background-size: contain;
  background-position-y: center;
  background-repeat: no-repeat;
}

#bloque-contenedores-4 ul {
  padding-left: 18px;
  columns: 2;
  column-gap: 37px;
}
@media (max-width: 1199.98px) {
  #bloque-contenedores-4 ul {
    columns: 1;
  }
}
.formContenedores input {
  background-color: white;
  color: #000;
  width: 100%;
}
.formContenedores input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
  opacity: 1;
  /* Firefox */
}
.formContenedores input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: black;
}
.formContenedores input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: black;
}

.formContenedores input:not([type="submit"]) {
  padding: 5px 0 5px 15px;
}

.formContenedores .btn-wrap {
  display: flex;
  justify-content: center;
}

.formContenedores .contenedor-select {
  margin-bottom: 15px;
  overflow: hidden;
  background-image: url(../images/select.jpg);
  background-repeat: no-repeat;
  background-position-x: right;
  background-color: white;
}
.formContenedores .contenedor-select select {
  width: 130%;
  padding: 10px 0 10px 10px;
  background-color: transparent;
}

.icono-texto-enlace {
  padding: 36px 0;
  background-color: rgba(149, 152, 154, 0.05);
}
@media (max-width: 1199.98px) {
  .icono-texto-enlace .icono-texto {
    text-align: center;
    margin-top: 15px;
  }
}
.icono-texto-enlace .circulo-verde {
  background-color: #009845;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  position: relative;
  margin: 0 auto;
}
.icono-texto-enlace .circulo-verde img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.icono-texto-enlace .enlaces p {
  font-weight: 500;
  position: relative;
}
@media (max-width: 1199.98px) {
  .icono-texto-enlace .enlaces p {
    text-align: center;
  }
}
.icono-texto-enlace .enlaces p:after {
  content: " ";
  background-image: url(../images/f-enlace.png);
  color: #79b83e;
  position: absolute;
  /* right: 0; */
  top: 50%;
  transform: translateY(-50%);
  background-size: auto;
  height: 15px;
  width: 10px;
  background-repeat: no-repeat;
  margin-left: 8px;
}

#biocombustibles-1 {
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
}
@media (min-width: 992px) {
  #biocombustibles-1 {
    padding: 184px 0;
  }
}
#biocombustibles-1 h2 {
  position: relative;
  padding-bottom: 10px;
  color: #009845;
}
#biocombustibles-1 p {
  color: #fff;
}

#biocombustibles-2 .img-bloque,
#biocombustibles-3 .img-bloque,
#biocombustibles-4 .img-bloque {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
}

body .tabla-com {
  padding: 0 0 10px 0;
  background-color: rgba(149, 152, 154, 0.16);
}
body .tabla-com ul > li {
  position: relative;
  margin-left: 8px;
  padding-left: 6px;
}
body .tabla-com ul > li strong {
  font-weight: 500;
}
body .tabla-com ul > li:before {
  content: " ";
  position: absolute;
  background-image: url("../images/lista.png");
  left: -27px;
  top: 2px;
  width: 25px;
  height: 25px;
  background-color: transparent;
}
body .tabla-com .titulo {
  background-color: #dedfe0;
  font-weight: 500;
  padding: 5px 0 5px 22px;
  margin-bottom: 17px;
}

#servicios-1 {
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #servicios-1 > .container > .row:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
  }
  #servicios-1 .texto-bloque {
    z-index: 3;
  }
}
@media (min-width: 992px) {
  #servicios-1 {
    padding: 184px 0;
  }
}
#servicios-1 h2 {
  position: relative;
  padding-bottom: 10px;
  color: #009845;
  font-size: 30px;
  font-weight: 600;
  display: inline;
}
#servicios-1 h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  display: inline;
}
#servicios-1 .contenido-texto-bloque {
  text-align: center;
}

#servicios-3 .img-bloque,
#servicios-4 .img-bloque {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
}

#servicios-2 h2 {
  position: relative;
  padding-bottom: 11px;
}
#servicios-2 h2:after {
  content: " ";
  position: absolute;
  width: 122px;
  height: 1px;
  background-color: #009845;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#servicios-2 .circulo-verde {
  margin: 0 auto;
  background-color: #009845;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  position: relative;
  margin-top: 15px;
}
#servicios-2 .circulo-verde img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#servicios-2 .descripcion-iconos {
  font-weight: 600;
  margin-top: 15px;
  text-align: center;
}

#servicios-2 .iconos-centrar {
  display: flex;
  justify-content: center;
}

/*Contacto*/
.datos_contacto {
  margin-top: 15px;
}

/*Contacto FIN*/
.icono-texto-enlace .col-md-9 > p {
  margin-bottom: 10px;
}

/*reproductos*/
#reproductos-1 {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #reproductos-1 > .container > .row:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
  }
  #reproductos-1 .texto-bloque {
    z-index: 3;
  }
}
#reproductos-1 h2 {
  position: relative;
  padding-bottom: 10px;
  color: #009845;
  /*
    &:after {
      content: " ";
      height: 1px;
      width: 122px;
      background-color: $mainColor;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }
    */
}
@media (min-width: 992px) {
  #reproductos-1 {
    padding: 120px 0;
  }
}
#reproductos-1 .contenido-texto-bloque {
  position: relative;
  color: #fff;
}
#reproductos-1 h2,
#reproductos-1 p {
  font-weight: 500;
}
#reproductos-1 h2 strong,
#reproductos-1 p strong {
  color: #009845;
  font-weight: 500;
}

@media (min-width: 1200px) {
  body #reproductos-2 .img-bloque,
  #reproductos-3 .img-bloque,
  #reproductos-4 .img-bloque,
  #reproductos-5 .img-bloque,
  #reproductos-6 .img-bloque {
    min-height: 650px;
  }
}

/*reproductos FIN*/
/*Ecotips*/
#ecotips-1 {
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  #ecotips-1 {
    padding: 300px 0;
  }
}
/* FIN Ecotips*/
#post-383 {
  margin-bottom: 0;
}

#recent-posts-2 ul {
  list-style: none;
  padding: 0;
}

#recent-posts-2 li {
  padding-left: 1.3em;
  font-weight: 400;
}
#recent-posts-2 li:hover {
  text-decoration: underline;
}

#recent-posts-2 li:before {
  content: "\f00c";
  /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  color: #009845;
  margin-left: -1.6em;
  /* same as padding-left set on li */
  width: 1.3em;
  /* same as padding-left set on li */
}

.img-wrap-ecotip {
  width: 100%;
  height: 350px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0;
}

div.img-wrap-ecotip > img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
}

.ecotip-imagen {
  height: 350px;
  background-repeat: no-repeat;
  background-position: center;
}

.listado-noticias .titulo-noticia-item {
  font-weight: 500;
}

.icon-user {
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  background-size: contain;
  margin-left: 20px;
  margin-top: 7px;
  background-image: url("../images/user.png");
}
.icon-user.logged {
  background-image: url("../images/logged.png");
}

.home .top-nav-collapse .icon-user {
  background-image: url("../images/user.png");
}
.home .top-nav-collapse .icon-user.logged {
  background-image: url("../images/logged.png");
}

.home .icon-user {
  background-image: url("../images/user-b.png");
}
.home .icon-user.logged {
  background-image: url("../images/logged_white.png");
}

body #servicios-3 .img-bloque {
  background-size: contain;
}

#servicios-2 div.row:nth-of-type(1) {
  margin: 15px 0;
}

@media (min-width: 992px) {
  .container.pagina-contacto {
    margin: 25px 0;
  }
  .aviso-legal span {
    margin-left: 0;
  }
  input.wpcf7-form-control.wpcf7-submit.btn.btn-azul {
    margin-left: 0;
    margin-top: 15px;
  }
}

.datos_contacto div {
  margin: 5px 0;
}

/*Responsive IPAD*/
@media (max-width: 1199.98px) {
  #masthead .navbar li > a {
    font-size: 14px;
  }
  .navbar .navbar-brand {
    align-self: center;
  }
  ul#menu-principal li:not(.hide-in-desktop) {
    display: block;
    align-items: center;
  }
  ul#menu-principal li.menu-footer:not(.hide-in-desktop) {
    display: none;
  }
  .icon-pane {
    left: unset !important;
    right: 0;
  }
}

.modal-dialog.modal-dialog-pdf {
  max-width: 100%;
}
.modal-dialog.modal-dialog-pdf .modal-content {
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: none;
  border-radius: 5px;
  color: #f7f7f7;
}
.modal-dialog.modal-dialog-pdf .modal-content .modal-header {
  border: none;
}
.modal-dialog.modal-dialog-pdf .modal-content .modal-header .close {
  padding: 5px 15px;
  color: #f7f7f7;
}

.modal .nav.nav-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.modal .nav-tabs {
  margin: 0px;
}

.modal .nav-tabs .nav-link,
.modal .nav-tabs .nav-link:hover,
.modal .nav-tabs .nav-link.active {
  border: none;
}

.modal .nav-tabs .nav-link {
  font-size: 14px;
  font-weight: 600;
}

#bloque-sobre-nosotros-gestanconteco ul {
  padding-left: 30px;
}
#bloque-sobre-nosotros-gestanconteco ul > li:before {
  content: none;
}
#bloque-sobre-nosotros-gestanconteco ul > li:first-child,
#bloque-sobre-nosotros-gestanconteco ul > li:nth-child(2),
#bloque-sobre-nosotros-gestanconteco ul > li:nth-child(3) {
  padding: 0px;
  padding-left: 30px;
  margin-bottom: 30px;
}
#bloque-sobre-nosotros-gestanconteco ul > li:first-child:after,
#bloque-sobre-nosotros-gestanconteco ul > li:nth-child(2):after,
#bloque-sobre-nosotros-gestanconteco ul > li:nth-child(3):after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  height: 112px;
  width: 87px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
@media (max-width: 575.98px) {
  #bloque-sobre-nosotros-gestanconteco ul > li:first-child:after,
  #bloque-sobre-nosotros-gestanconteco ul > li:nth-child(2):after,
  #bloque-sobre-nosotros-gestanconteco ul > li:nth-child(3):after {
    transform: none;
    top: -10px;
  }
}
#bloque-sobre-nosotros-gestanconteco ul > li:first-child:after {
  background-image: url("../images/letra_R.png");
}
#bloque-sobre-nosotros-gestanconteco ul > li:nth-child(2):after {
  background-image: url("../images/letra_C.png");
}
#bloque-sobre-nosotros-gestanconteco ul > li:nth-child(3):after {
  background-image: url("../images/letra_D.png");
}

.w-certificado {
  display: flex;
  align-items: flex-start;
}
.w-certificado .w-check-certificado {
  margin-right: 15px;
}
.w-certificado .w-info-certificado p:last-child {
  margin-bottom: 0px;
}

.wrapper-cabecera-autorizaciones {
  padding: 30px;
  text-align: left;
}

.wrapper-certificados .w-certificado {
  margin-bottom: 15px;
}
.wrapper-certificados .w-certificado:last-child {
  margin-bottom: 0px;
}

@media (max-width: 991.98px) {
  .w-info-contacto {
    margin-top: 30px;
  }
}

.w-info-contacto p {
  margin-bottom: 5px;
}

.w-info-contacto .btn {
  margin-left: 0px;
}

/*Misc*/
.container_estrecho {
  max-width: 850px;
}

.btn-wrap {
  margin-top: 20px;
}
.btn-wrap .btn {
  margin: 0;
  clear: both;
  border-radius: 54px;
}
.btn-wrap .btn img {
  width: 20px;
  height: auto;
  margin-right: 5px;
}

/*Estructura bloques */
.bloque-interior {
  padding: 30px 0;
  background-repeat: no-repeat;
  position: relative;
}
.bloque-interior h2,
.bloque-interior h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
}
.bloque-interior h1 {
  margin-top: 0;
  margin-bottom: 30px;
}
.bloque-interior ul {
  margin: 0 0 1em 0;
  list-style-type: none;
  padding-left: 40px;
}
.bloque-interior ul > li {
  list-style-type: none;
  margin: 8px 0;
  position: relative;
  margin-top: 0;
}
.bloque-interior ul > li:before {
  content: "";
  background-color: #009845;
  border-radius: 50%;
  height: 5px;
  width: 5px;
  top: 8px;
  display: block;
  position: absolute;
  left: -15px;
}

body .no_padding {
  padding: 0;
}

/*Bloque 100% de texto*/
.bloque-texto100 .container-fluid {
  width: 100%;
  padding: 0;
}
.bloque-texto100 .container-fluid .row {
  margin: 0;
}
.bloque-texto100 .container-fluid .row .texto-bloque {
  padding: 0;
}
.bloque-texto100 .container-fluid .row .texto-bloque p {
  margin: 0;
}

/*Bloque columnas*/
.cols_separador .texto-bloque {
  border-right: solid 1px;
}
.cols_separador .texto-bloque:last-of-type {
  border: none;
}

/*Bloque texto Foto */
.bloque-texto_foto {
  padding: 0;
}
@media (max-width: 991.98px) {
  .bloque-texto_foto {
    background-image: none !important;
  }
}
.bloque-texto_foto .contenido-texto-bloque {
  padding: 30px 0px;
}
@media (max-width: 1199.98px) {
  .bloque-texto_foto .contenido-texto-bloque {
    padding: 15px 0px;
  }
}
.bloque-texto_foto .container {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 1199.98px) {
  .bloque-texto_foto .container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.bloque-texto_foto .container-fluid {
  padding-top: 0;
  padding-bottom: 0;
}
.bloque-texto_foto .container-fluid .texto-bloque {
  padding-right: 30px;
}
.bloque-texto_foto .container-fluid .texto-bloque .contenido-texto-bloque {
  max-width: 525px;
  width: 100%;
  display: block;
  margin: 60px 0px;
}
@media (max-width: 991.98px) {
  .bloque-texto_foto .container-fluid .texto-bloque .contenido-texto-bloque {
    margin: 15px 0px;
  }
}
@media (max-width: 1199.98px) {
  .bloque-texto_foto .container-fluid .texto-bloque .contenido-texto-bloque {
    max-width: initial;
  }
}
@media (max-width: 767.98px) {
  .bloque-texto_foto
    .container-fluid
    .texto-bloque
    .contenido-texto-bloque
    .texto-solo {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .bloque-texto_foto .container-fluid .texto-bloque .contenido-texto-bloque {
    margin: 15px 0px;
  }
}
@media (max-width: 767.98px) {
  .bloque-texto_foto .container-fluid .texto-bloque .btn-wrap {
    text-align: center;
  }
}
.bloque-texto_foto .container-fluid .img-bloque {
  padding: 0;
  background-size: cover;
  min-height: 300px;
}
.bloque-texto_foto .container-fluid .img-bloque img {
  width: 100%;
  display: none;
}
.bloque-texto_foto.bloque_invertir .container-fluid .texto-bloque {
  padding-right: 15px;
  padding-left: 30px;
}
.bloque-texto_foto.bloque_invertir .wrap_contenido_foto .texto-bloque {
  order: 2;
}
.bloque-texto_foto.bloque_invertir .wrap_contenido_foto .img-bloque {
  order: 1;
}

@media (max-width: 991.98px) {
  body:not(.home) .bloque-texto_foto .texto-bloque {
    text-align: center;
  }
}

body:not(.home) .bloque-texto_foto .texto-bloque ul {
  text-align: left;
}

@media (max-width: 991.98px) {
  body:not(.home) .bloque-texto_foto .img-bloque {
    display: none;
  }
}

body.home
  .bloque-texto_foto.bloque_invertir
  .wrap_contenido_foto
  .texto-bloque {
  background-blend-mode: overlay;
}

@media (max-width: 991.98px) {
  .bloque-ubicacion .flipper {
    display: none;
  }
}

.col-mapa-responsive {
  display: none;
}
.col-mapa-responsive .acf-map {
  min-height: 300px;
  position: relative;
  margin-top: 30px;
}
@media (max-width: 991.98px) {
  .col-mapa-responsive {
    display: flex;
  }
}
@media (max-width: 991px) {
  .bloque-interior.bloque-texto_foto {
    justify-content: center;
  }
  .bloque-interior.bloque-texto_foto .img-bloque {
    background-image: none !important;
    text-align: center;
    width: 100%;
    order: 2;
    min-height: inherit;
  }
  .bloque-interior.bloque-texto_foto .img-bloque img {
    display: block;
    margin: 0 auto;
  }
  .bloque-interior.bloque-texto_foto .texto-bloque {
    padding: 15px;
    justify-content: center !important;
  }
  .bloque-interior.bloque-texto_foto .texto-bloque .contenido-texto-bloque {
    padding: 0;
  }
  .bloque-interior.bloque-texto_foto.bloque-interior.bloque_invertir
    .img-bloque {
    order: 2;
  }
  .bloque-interior.bloque-texto_foto.bloque-interior.bloque_invertir
    .texto-bloque {
    order: 3;
    padding: 15px;
  }
}

.w-listado-descargas {
  padding: 60px 0px 30px;
}

.w-categoria-descarga {
  margin-bottom: 60px;
}

.col-descarga:last-child .w-categoria-descarga {
  margin-bottom: 0px;
}

.titulo-categoria-descarga {
  margin-bottom: 30px;
}

.w-descarga {
  margin-bottom: 30px;
}

.form-group textarea.form-control {
  height: 80px;
}

.form-group.is-focused .form-control {
  outline: none;
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#009845),
      to(#009845)
    ),
    -webkit-gradient(linear, left top, left bottom, from(#009845), to(#009845));
  background-image: -webkit-linear-gradient(#009845, #009845),
    -webkit-linear-gradient(#009845, #009845);
  background-image: -o-linear-gradient(#009845, #009845),
    -o-linear-gradient(#009845, #009845);
  background-image: linear-gradient(#009845, #009845),
    linear-gradient(#009845, #009845);
}

body .form-group {
  margin: 0;
}

.form-group.is-focused label,
.form-group.is-focused label.control-label {
  color: #009845;
}

.form-group.label-floating label.control-labe {
  font-size: 14px;
}

body .form-group.label-static label.control-label,
body .form-group.label-floating.is-focused label.control-label,
body .form-group.label-floating:not(.is-empty) label.control-label {
  top: -22px;
}

.form-group .form-control {
  margin: 0;
}

/*Busqueda*/
.search-form {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.search-form label {
  margin: 0;
  top: 1.2rem;
}
.search-form .btn {
  padding: 10px 20px;
  margin: 0px 0px 1rem 0px;
}

/*--------------------------------------------------------------
404
--------------------------------------------------------------*/
.error404 {
  margin-bottom: 30px;
  margin-top: 30px;
}
.error404 #page {
  text-align: center;
}
.error404 #page .article {
  width: 100%;
}
.error404 #page .article header h1 {
  color: #000;
  font-size: 45px;
  text-transform: uppercase;
}
.error404 #page .article header h1 span {
  color: #009845;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
.error404 #page .article header img {
  margin: 0 auto;
}
.error404 #page .article header p {
  font-size: 20px;
  margin-bottom: 0;
}
.error404 #page .article .page-content {
  clear: both;
}
.error404 #page .article .page-content .md-form {
  margin: 0;
}
.error404 #page .article .page-content .caja-busqueda {
  padding: 0;
}
.error404 #page .article .page-content .caja-busqueda input {
  width: 100%;
  color: #a4a4a4;
  border: 1px solid #d8d8d8;
  font-family: inherit;
  border-radius: 0;
  margin: 0;
}
.error404 #page .article .page-content .caja-busqueda label {
  left: 10px;
}
.error404 #page .article .page-content .boton-buscar {
  padding: 0;
}
.error404
  #page
  .article
  .page-content
  .boton-buscar
  .btn:not(.btn-link):not(.btn-flat) {
  margin: 0;
  padding: 9px 40px;
  border-radius: 2px;
}
.error404 #page .article .page-content .items_404 {
  margin-top: 30px;
}
.error404 #page .article .page-content .items_404 div:last-of-type img {
  margin-top: 6px;
}
.error404 #page .article .page-content .items_404 div a {
  color: #000;
  text-align: center;
  font-size: 14px;
}
.error404 #page .article .page-content .items_404 div img {
  margin: 0 auto;
  margin-bottom: 10px;
  display: block;
}
.error404 #page .article p {
  color: #000;
  font-size: 16px;
}

@media (min-width: 768px) {
  .items_404 .bordegris {
    border-right: solid 1px #acacac;
  }
}

body .app-contenedores {
  /* border: 1px solid black; */
  margin-bottom: 40px;
  padding-bottom: 20px;
}
body .app-contenedores h4 {
  font-weight: 600;
}
body .app-contenedores a label {
  text-decoration: underline;
  font-size: 12px;
  text-align: right;
  margin-top: 0;
}
body .app-contenedores label[for="recordarme"] {
  font-size: 12px;
}
body .app-contenedores h2 {
  font-weight: 600;
}
body .app-contenedores hr {
  height: 1px;
}
body .app-contenedores .btn-group-toggle label.btn:not(.btn-raised) {
  font-size: 14px;
  text-transform: none;
  padding: 0.45rem 2rem;
  transform: none;
  display: flex;
  justify-content: center;
  /* background-color: $mainColor; */
  background-color: #aec39b;
}
body .app-contenedores .btn-group-toggle label.btn:not(.btn-raised).active {
  background-color: #009845;
}
body
  .app-contenedores
  .btn-group-toggle
  label.btn:not(.btn-raised).active:hover {
  background-color: #009845 !important;
}
body .app-contenedores input,
body .app-contenedores select {
  width: 100%;
  border-radius: 5px;
  border: 1px solid darkgrey;
  padding: 12px;
  background-color: white;
  box-sizing: border-box;
  height: auto;
}
body .app-contenedores input[type="date"] {
  width: inherit;
  height: 47px;
  box-sizing: border-box;
}
body .app-contenedores label {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}
body .app-contenedores .custom-control label {
  margin-top: 0;
}
body .app-contenedores form {
  margin: 0 0 10px 0;
}
body .app-contenedores p {
  margin-bottom: 0;
}
body .app-contenedores p.peq {
  font-size: 14px;
}
body .app-contenedores .menu-app > div {
  padding: 10px 5px 10px 81px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  body .app-contenedores .menu-app > div {
    padding: 12px 12px !important;
    margin-bottom: 5px;
  }
}
body .app-contenedores .titulo-destacado p {
  background-color: #f4f5f5;
  font-weight: 600;
  padding: 8px 20px;
}
body .app-contenedores .destacado {
  background-color: #f4f5f5;
  padding: 5px 0;
}
body .app-contenedores .una-vez {
  background-color: #f4f5f5;
  padding: 20px 15px;
  font-size: 12px;
}
body .app-contenedores .contenedor-container:last-child {
  margin-bottom: 30px;
  border-bottom: 1px solid black;
}
body .app-contenedores .contenedor-container {
  border: 1px solid black;
  padding: 10px 0;
  border-bottom: 0;
}
body .app-contenedores .contenedor-container select {
  margin-bottom: 0;
}
body .app-contenedores .contenedor-container p {
  font-size: 14px;
  margin-bottom: 0;
  text-align: left;
  margin-right: 5px;
}
body .app-contenedores .contenedor-container .col-md-4:nth-child(-n + 3) {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
body .app-contenedores .contenedor-container .col-md-4:nth-child(2) {
  margin: 30px 0;
}
body .app-contenedores .img-placeholder {
  width: 90px;
  height: 90px;
  border: 1px solid black;
  background: #ccc;
  text-align: center;
}
body .app-contenedores .container-estrecho {
  max-width: 650px;
  margin: 0 auto;
}
body .app-contenedores .datos-pedido-col label {
  display: block;
  font-size: 12px;
  font-weight: 600;
}
body .app-contenedores .datos-pedido-col label:nth-of-type(1) {
  margin-top: 0;
}
body .app-contenedores .btn-group {
  width: 100%;
  display: flex;
  /* justify-content: space-evenly; */
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
body .app-contenedores .fw-6 {
  font-weight: 600;
}

/*css shape menu*/
.pointer {
  width: 200px;
  height: 80px;
  position: relative;
  background: #f4f5f5;
  margin: 0px 3px;
}
.pointer.activo {
  background: #009845;
  color: white;
}
@media (min-width: 576px) {
  .pointer.activo:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 20px solid #009845;
    z-index: 1;
  }
}
.pointer.done {
  background: rgba(121, 184, 62, 0.39);
  color: black;
}
.pointer:first-child:after {
  content: none;
}
.pointer:last-child:before {
  content: none;
}

@media (min-width: 576px) {
  .pointer:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    top: 0;
    border-left: 20px solid #ffffff;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
  }
}

@media (min-width: 576px) {
  .pointer:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid #f4f5f5;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    z-index: 1;
  }
}

.done:before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 20px solid #cbe3b4;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  z-index: 1;
}

/*FIN css shape menu*/
body table {
  margin-top: 20px;
}
body table td {
  padding: 12px 0;
}
body table thead {
  background-color: #f4f5f5;
}
body table thead th {
  font-weight: 600 !important;
}
body table tbody td {
  font-weight: 400 !important;
}
body table tr {
  border-bottom: 2px solid #f4f5f5;
}

body .status-pedido {
  margin-bottom: 0;
}

.container-mi-cuenta {
  max-width: 600px;
  margin: 0 auto;
}
.container-mi-cuenta label {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.container-mi-cuenta div.secciones > div {
  border: 1px solid black;
  margin: 10px 0;
  padding: 10px 15px;
  position: relative;
}
.container-mi-cuenta div.secciones > div label {
  margin-bottom: 0;
  margin-left: 33px;
}
.container-mi-cuenta div.secciones > div:before {
  content: " ";
  position: absolute;
  width: 29px;
  height: 29px;
  background-image: url("../images/placeholder.png");
  top: 7px;
}

.modal-title {
  color: black;
}

[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"] {
  display: none;
  pointer-events: none;
}

.formContenedores {
  width: 100%;
}

body .waves-input-wrapper {
  /* width: 100% ; */
  justify-self: flex-end;
  overflow: initial;
}

.bloque-app > div:not(.titulo-destacado) {
  padding: 0 20px;
}

/*Iconos menú*/
.pointer span {
  font-size: 15px;
}
@media (max-width: 575.98px) {
  .pointer span {
    font-size: 12px;
  }
}
.pointer span:before {
  left: 30px;
  bottom: 17px;
}
@media (min-width: 576px) {
  .pointer span:before {
    position: absolute;
  }
}
@media (max-width: 575.98px) {
  .pointer span:before {
    float: left;
    /*
      content: " ";
      background: url(../images/menu/2.png);
      width: 30px;
      height: 30px;
      background-size: contain;
      background-repeat: no-repeat;
      */
  }
}
.pointer:nth-of-type(1) {
  padding: 10px 0px 10px 53px !important;
}
.pointer:nth-of-type(1) span:before {
  left: 13px !important;
  content: url("../images/menu/1.png");
}

body .pointer:nth-of-type(2) {
  padding: 10px 5px 10px 90px !important;
}
body .pointer:nth-of-type(2) span:before {
  content: url("../images/menu/2.png");
}

.pointer:nth-of-type(3) span:before {
  content: url("../images/menu/3.png");
}

.pointer:nth-of-type(4) span:before {
  content: url("../images/menu/4.png");
}

.pointer:nth-of-type(5) span:before {
  content: url("../images/menu/5.png");
}

/*Iconos menú fin*/
/*Icono calendario input date*/
input[type="date"]::-webkit-inner-spin-button {
  opacity: 0;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  background: url("../images/calendar.png") center/80% no-repeat;
  color: rgba(0, 0, 0, 0);
  opacity: 0.8;
  font-size: 1.4rem;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  background: url("../images/calendar.png") center/80% no-repeat;
  opacity: 1;
}

/*Icono calendario input date fin*/
.foto-contenedores {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media (max-width: 767.98px) {
  .foto-contenedores {
    min-height: 110px;
  }
}
#myModal .modal-dialog {
  max-width: 610px;
}

#div-productor label.active {
  color: black;
}

body .btn-volver {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  /* margin-top: 10px; */
}
body .btn-volver:hover {
  text-decoration: underline !important;
  color: #009845 !important;
}

/*Zona de usuario*/
.icon-user {
  position: relative;
}

.icon-pane {
  /* display: none; */
  /* opacity: 0; */
  width: 150px;
  height: auto;
  border: 1px solid lightgrey;
  position: absolute;
  top: 40px;
  left: 0;
  background-color: white;
  padding: 10px;
}
.icon-pane a {
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  display: inline-block;
  user-select: none;
}
.icon-pane a:hover {
  color: #009845 !important;
  text-decoration: underline !important;
}

.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
  font-size: 1.25em;
  font-weight: 700;
  color: white;
  background-color: rgba(0, 152, 69, 0.8);
  display: inline-block;
  padding: 15px 35px;
}

.inputfile:focus + label,
.inputfile + label:hover {
  background-color: #009845;
}

.inputfile + label {
  cursor: pointer;
  /* "hand" cursor */
}

.inputfile:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label * {
  pointer-events: none;
}

body .form-registrarse p {
  font-size: 13px;
  line-height: 1rem;
  margin-top: 6px;
}
body .form-registrarse p:last-of-type {
  margin-bottom: 10px;
}

.presupuesto-row .waves-input-wrapper {
  width: 100%;
}

body .aviso-wrong {
  padding: 0px 0 2px 0;
  font-size: 11px !important;
  display: block;
  margin-top: 6px !important;
}

.pedido {
  border: 1px solid black;
  margin: 10px 0;
  padding: 10px 15px;
}

.container-mi-cuenta .titulo-destacado {
  border-bottom: 2px solid transparent;
}
.container-mi-cuenta .titulo-destacado p {
  color: #212529 !important;
}
.container-mi-cuenta .titulo-destacado:hover {
  border-bottom: 2px solid #212529;
}

/* 
.btn-group-toggle{
  .btn:not(.btn-raised), .btn:not(.btn-raised):not(.btn-link) {
    background-color: #aec39b;
  }
}
*/
div.card-header .btn-link.collapsed:before {
  content: "\f054";
  font-family: FontAwesome;
  display: inline;
}

div.card-header .btn-link:before {
  content: "\f078";
  font-family: FontAwesome;
  display: inline;
}

.ui-jqgrid .ui-jqgrid-hdiv .form-control {
  margin: 0;
}

body .ui-jqgrid .ui-jqgrid-view input,
.ui-jqgrid .ui-jqgrid-view select,
.ui-jqgrid .ui-jqgrid-view textarea,
.ui-jqgrid .ui-jqgrid-view button {
  font-size: 13px !important;
}

.ui-jqgrid {
  border: none !important;
}
.ui-jqgrid select {
  padding: 0 !important;
}
.ui-jqgrid tr {
  border: none !important;
}
.ui-jqgrid #search_list1 {
  display: none !important;
}
.ui-jqgrid .ui-search-input * {
  font-family: RobotoDraft, Roboto, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
}

.link-verde {
  color: #009845;
  font-weight: 600;
}
.link-verde:hover {
  text-decoration: underline;
}

body .ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background: transparent;
}

.ui-jqgrid-titlebar {
  background-color: white !important;
}

span.ui-jqgrid-title {
  font-family: MontSerrat;
}

#mensaje .modal-body span {
  font-weight: 500;
}

body .ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  background: #f7f7f7;
  font-weight: bold;
  color: black;
}

body .ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #fad42e;
  background: #e7e7e7;
  color: #363636;
}

.loader {
  border: 10px solid #f3f3f3;
  /* Light grey */
  border-top: 10px solid #009845;
  /* Blue */
  border-radius: 50%;
  width: 45px;
  height: 45px;
  animation: spin 2s linear infinite;
}

.loader-xs {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #79b83e;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn-modificar-pedido {
  color: #79b83e !important;
  text-transform: uppercase;
  margin-left: 19px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.btn-modificar-pedido:hover {
  text-decoration: underline !important;
}

.pedido-wrap .card-header {
  flex: 1;
}

div#modificar-modal .selectize-control input {
  color: black !important;
  font-size: 16px;
}
div#modificar-modal .selectize-control input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
  opacity: 1;
  /* Firefox */
}

body .selectize-input {
  padding: 12px;
  border: 1px solid darkgrey;
  border-radius: 5px;
}

.ajax-status {
  color: #79b83e !important;
  font-weight: 500;
  text-align: center;
}

.pedido-cerrado {
  margin-left: 19px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  min-width: 84px;
}

body .md-form textarea {
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
}

label[for="docTasas"] {
  border-radius: 5px;
  text-transform: uppercase;
}

.btn-pagar > div {
  width: 100%;
}

.btn-pagar .btn {
  width: auto;
  padding: 12px 130px;
}
@media (max-width: 767.98px) {
  .btn-pagar .btn {
    width: 95%;
    padding: 12px;
  }
}
body .mdi {
  font-size: 18px;
}

select:invalid {
  box-shadow: none;
}

.historial-pedidos div.card-header.collapsed:before {
  content: "\f054";
  font-family: FontAwesome;
  display: inline;
}

.historial-pedidos div.card-header:before {
  content: "\f078";
  font-family: FontAwesome;
  display: inline;
}

body:not(.home):not(.page-id-782) a:hover {
  text-decoration: underline;
}

.disabled-like {
  color: rgba(0, 0, 0, 0.46);
  border-bottom: 1px dotted rgba(0, 0, 0, 0.46);
  background-color: transparent;
}

body.page-id-371 .formContenedores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.seccion-flip .card-flip {
  perspective: 5000px;
  margin: 10px 5px;
}
.seccion-flip .card-flip:hover .flip,
.seccion-flip .card-flip.hover .flip {
  transform: rotateY(180deg);
}

.seccion-flip .card-flip,
.seccion-flip .front,
.seccion-flip .back {
  width: 100%;
  height: 480px;
}

.seccion-flip .flip {
  transition: 0.8s;
  transform-style: preserve-3d;
  position: relative;
}

.seccion-flip .front,
.seccion-flip .back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.seccion-flip .front {
  z-index: 2;
  transform: rotateY(0deg);
}

.seccion-flip .back {
  transform: rotateY(180deg);
}

.seccion-flip .card {
  width: 100%;
  min-height: 400px;
  height: 100%;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
}
.seccion-flip .card .card-title {
  color: white;
  font-size: 40px;
}
.seccion-flip .card.fondo-front {
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: overlay;
  padding: 30px 30px;
  display: flex;
  justify-content: center;
}
.seccion-flip .card.fondo-back {
  padding: 30px 30px;
  text-align: center;
  display: flex;
  justify-content: center;
}

/******************* Accordion Demo - 5 *****************/
/*#accordion5 p{
  margin-bottom: 0;
  text-align: left;
}

#accordion5 .panel{
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0 0 15px 50px;
}
#accordion5 .panel-title a{
  display: block;
  padding: 10px 20px 10px 60px;
  background: $mainColor;
  border-radius: 30px;
  border: 2px solid $mainColor;
  font-size: 20px;
  font-weight:400;
  color: #fff;
  position: relative;
}
#accordion5 .panel-title a.collapsed{
  border: 2px solid #333333;
  background: #fff;
  color: #333333;
}
#accordion5 .panel-title a:before,
#accordion5 .panel-title a.collapsed:before{
  content: "\f068";
  font-family: "FontAwesome";

  font-weight: 900;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: $mainColor;
  font-size: 18px;
  color: #fff;
  text-align: center;
  border-right: 3px solid #fff;
  position: absolute;
  top: -10px;
  left: -30px;
  z-index: 1;
  transition: all 0.3s ease 0s;
}
#accordion5 .panel-title a.collapsed:before{
  content: "\f067";
  background: #333333;
  border: none;
}
#accordion5 .panel-body{
  padding: 10px 15px 0;
  margin: 0 0 0 30px;
  border: none;
  font-size: 14px;
  color: #333;
  line-height: 28px;
  position: relative;
}
#accordion5 .panel-body:before{
  content: "";
  display: block;
  width: 5px;
  height: 90%;
  background: $mainColor;
  position: absolute;
  top: 0;
  left: -30px;
}
#accordion5 .panel-body:after{
  content: "";
  border-top: 20px solid $mainColor;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  position: absolute;
  bottom: 0;
  left: -48px;
}*/
/******************* Accordion Demo - 1 *****************/
#accordion .fondo-verde {
  position: absolute;
  background-color: #009845;
  width: 55px;
  height: 100%;
  right: 0;
  bottom: 0;
  z-index: 0;
}

#accordion p {
  margin-bottom: 0;
  text-align: left;
}

#accordion .panel {
  border: none;
  border-radius: 3px;
  box-shadow: none;
  margin-bottom: 15px;
}

#accordion .panel-heading {
  padding: 0;
  border: none;
  border-radius: 3px;
}

#accordion .panel-title a {
  display: block;
  padding: 12px 15px;
  background: #fff;
  font-size: 18px;
  font-weight: 400;
  color: #009845;
  /*border: 1px solid #ececec;*/
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.5s ease 0s;
  box-shadow: 0 1px 2px rgba(43, 59, 93, 0.3);
}

#accordion .panel-title a.collapsed {
  box-shadow: none;
  color: #676767;
  box-shadow: 0 1px 2px rgba(43, 59, 93, 0.3);
}

#accordion .panel-title a:before,
#accordion .panel-title a.collapsed:before {
  content: "\f067";
  font-family: "FontAwesome";
  width: 25px;
  height: 25px;
  line-height: 28px;
  font-size: 15px;
  font-weight: 900;
  color: white;
  text-align: center;
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 15px;
  transform: rotate(135deg);
  transition: all 0.3s ease 0s;
}

#accordion .panel-title a.collapsed:before {
  color: white;
  transform: rotate(0);
}

#accordion .panel-title a:after {
  content: "";
  width: 1px;
  height: 100%;
  background: #ececec;
  position: absolute;
  top: 0;
  right: 55px;
}

#accordion .panel-body {
  padding: 0px 15px;
  border: none;
  font-size: 15px;
  color: #615f5f;
  line-height: 27px;
}

/*
.styled-checkbox {
  position: absolute; // take it out of document flow
  opacity: 0; // hide it

  & + label {
    position: relative;
    cursor: pointer;
    padding: 0;



  }

  // Box.

  & + label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: white;
  }

  // Box hover
  &:hover + label:before {
    background: #f35429;
  }

  // Box focus
  &:focus + label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
  }

  // Box checked
  &:checked + label:before {
    background: #f35429;
  }

  // Disabled state label.
  &:disabled + label {
    color: #b8b8b8;
    cursor: auto;
  }

  // Disabled box.
  &:disabled + label:before {
    box-shadow: none;
    background: #ddd;
  }

  // Checkmark. Could be replaced with an image
  &:checked + label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow:
            2px 0 0 white,
            4px 0 0 white,
            4px -2px 0 white,
            4px -4px 0 white,
            4px -6px 0 white,
            4px -8px 0 white;
    transform: rotate(45deg);
  }
}

// Demo-only styles
// --------------

html {
  background: lightgray;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
}

.unstyled {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

li {
  margin: 20px 0;
}

.centered {
  width: 300px;
  margin: auto;
}

.title {
  text-align: center;
  color: rgb(69, 113, 236);
}*/
@-ms-viewport {
  width: device-width;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

/*body {
  margin: 0; // 1
  font-family: $font-family-base;
  font-size: $font-size-base;
  font-weight: $font-weight-base;
  line-height: $line-height-base;
  color: $body-color;
  text-align: left; // 3
  background-color: $body-bg; // 2
}*/
[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

p {
  margin-top: 0;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

table {
  border-collapse: collapse;
}

caption {
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  /* 1. Add the correct box sizing in IE 10- */
  padding: 0;
  /*  2. Remove the padding in IE 10- */
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

#moove_gdpr_cookie_info_bar
  .moove-gdpr-info-bar-container
  .moove-gdpr-info-bar-content {
  min-height: 25vh;
  flex-direction: column;
  justify-content: center;
  justify-content: space-evenly;
  text-align: center;
}

.hidden {
  display: none;
}

.navbar {
  position: absolute;
  margin-top: 35px !important;
}

.top-header {
  position: fixed;
  z-index: 9999;
  background: #009845;
  color: white;
  text-align: center;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 10px;
}

.top-header p {
  margin: 0;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .top-header {
    height: auto;
    min-height: 40px;
    font-size: 14px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar {
    margin-top: 50px !important;
  }

  .top-header p {
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }
}

.hentry {
  margin: 40px 0px 30px !important;
}
