@charset "UTF-8";
/*
Theme Name:   Desafío Mujer Rural
Theme URI:    https://www.desafiomujerrural.com/
Description:  Tema de la web Desafío Mujer Rural 
Author:       The Three Axis Digital Productions S.L.
Author URI:   https://www.thethreeaxis.com
Version:      1.0.1
*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@600&display=swap");
body {
  font-family: "Open Sans", sans-serif;
}

header {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #882c87;
  background-color: white;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  z-index: 9999;
}
header .topHeader {
  position: relative;
}
header .topHeader .searchform {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  border-bottom: 1px solid #717171;
  line-height: 100%;
  font-size: 1.5rem;
  opacity: 0;
  z-index: 3;
  transition: 0.2s all;
}
header .topHeader .searchform input[name=s] {
  border: none;
  width: 99%;
  background-color: #f7f7f7;
  font-size: 0.5em;
}
header .topHeader .searchform input[name=s]:focus-visible {
  outline: none !important;
}
header .topHeader .searchform #cerrarBusqueda {
  cursor: pointer;
  text-indent: -10000px;
}
header .topHeader .searchform.opened {
  top: 0;
  opacity: 1;
}

.label_buscador {
  color: #882c87;
  font-size: 0.8em;
  margin-bottom: 2px;
}

.texto_icono_header {
  display: none;
}

#openMenuMobile {
  position: absolute;
  font-size: 1.4rem;
  top: 0;
  bottom: 0px;
  right: 0;
  margin: auto 10px;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 2;
}
#openMenuMobile .fa-bars {
  display: block;
}
#openMenuMobile .fa-times {
  display: none;
}

.breadcrumbs {
  font-weight: 100;
  color: white;
}
.breadcrumbs a {
  color: white;
  font-weight: 600;
  white-space: unset;
}
.breadcrumbs a:hover {
  color: #f9f9f9;
}

/*
@media screen and (max-width: 992px){
    header{
        left: -300px;
        box-shadow: none;
        border: 2px solid $grisOscuro;
        transition: $transition;
        #openMenuMobile{
            display: inline-flex;
        }
        &.opened{
            left: 0px;               
            #openMenuMobile{
                .fa-bars{
                    display: none;
                }
                .fa-times{
                    display: block;
                }
            }
        }
    }
}*/
/* ===========================================
    MENÚ
=========================================== */
.nav .menu {
  width: 100%;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 0 0;
}
.nav .menu > .menu-item {
  display: inline-flex;
  flex: 0 0 auto;
  width: auto;
  max-width: 220px;
  padding: 15px 0;
  text-align: center;
  align-items: center;
  position: relative;
}
.nav .menu > .menu-item.largeItem {
  max-width: 220px;
}
.nav .menu > .menu-item a {
  padding: 0 40px;
  color: black;
  text-decoration: none;
  display: block;
  width: 100%;
  letter-spacing: -0.8px;
  position: relative;
}
.nav .menu > .menu-item a::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0%;
  height: 3px;
  background-color: #882c87;
  transition: 0.2s all;
}
.nav .menu > .menu-item a:hover {
  text-decoration: none;
  /*color: $main-color;*/
}
.nav .menu > .menu-item a:hover::after {
  width: 75%;
}
.nav .menu > .menu-item.current-menu-item > a, .nav .menu > .menu-item.current-menu-ancestor > a {
  font-weight: 600;
  color: #882c87;
}
.nav .menu > .menu-item.current-menu-item > a::after, .nav .menu > .menu-item.current-menu-ancestor > a::after {
  width: 75%;
}
.nav .menu .menu-item:not(.menu-item-has-children) .flechita {
  display: none;
}
.nav .menu .menu-item.menu-item-has-children.firstParent {
  position: relative;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .flechita {
  position: absolute;
  right: -5px;
  top: 0;
  bottom: 2px;
  width: 30px;
  height: 30px;
  padding-top: 4px;
  margin: auto 0;
  text-align: center;
  cursor: pointer;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu {
  position: absolute;
  width: 300px;
  top: calc(100% + 2px);
  left: 0;
  list-style: none;
  padding: 0;
  background-color: white;
  border: 1px solid #717171;
  display: none;
  z-index: 2;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item {
  padding: 0;
  display: block;
  max-width: 100%;
  text-align: left;
  border-bottom: 1px solid #882c87;
  transition: 0.2s all;
  position: relative;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item a {
  padding: 15px 30px 15px 15px;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item .flechita {
  top: 0;
  height: 54px;
  padding-top: 17px;
  bottom: auto;
  margin: 0;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item a:hover {
  text-decoration: underline;
  color: #882c87;
  text-decoration-color: #f49523;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item a:hover::after {
  width: 0%;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item.current-menu-item, .nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item.current-menu-ancestor {
  background-color: #882c87;
  color: white;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item.current-menu-item > a, .nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item.current-menu-ancestor > a {
  color: white;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item:last-of-type {
  border-bottom: none;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item.secondParent .sub-menu {
  position: relative;
  width: 100%;
  top: 0;
  left: auto;
  background-color: #e0e0e0;
  border: none;
  overflow: hidden;
  display: none;
  z-index: 2;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item.secondParent .sub-menu .menu-item a {
  padding-left: 45px !important;
  font-size: 0.8em !important;
  background-color: #f5eff5 !important;
  color: black;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item.secondParent .sub-menu .menu-item a:hover {
  color: #882c87;
  text-decoration: underline;
  color: black;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item.secondParent .sub-menu .menu-item a:hover::after {
  width: 0%;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item.secondParent .sub-menu .menu-item.current-menu-item {
  background-color: #4b4b4b;
  color: white !important;
}
.nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item.secondParent .sub-menu .menu-item.current-menu-item > a {
  /*color: white !important;*/
}

@media screen and (max-width: 1400px) {
  .nav .menu .menu-item.largeItem {
    max-width: 190px;
  }
  .nav .menu .menu-item a {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1200px) {
  .nav .menu .menu-item.largeItem {
    max-width: 180px;
  }
  .nav .menu .menu-item a {
    padding: 0 20px;
  }
}
@media screen and (max-width: 992px) {
  main {
    margin-top: 50px;
  }
  header {
    position: fixed;
    background-color: white;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
  header .topHeader .searchform {
    width: calc(100% - 22px);
    margin-left: 11px;
  }
  header #openMenuMobile {
    display: flex;
  }
  header .nav {
    position: fixed;
    width: 300px;
    right: -300px;
    z-index: 2;
    background-color: white;
    box-shadow: 0 9px 15px rgba(0, 0, 0, 0.5);
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.2s all;
    overflow-y: auto;
  }
  header .nav .menu {
    display: block;
  }
  header .nav .menu > .menu-item {
    display: block;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
    width: 100%;
    max-width: 100% !important;
  }
  header .nav .menu > .menu-item > a:hover {
    text-decoration: underline;
  }
  header .nav .menu > .menu-item.current-menu-item, header .nav .menu > .menu-item.current-menu-ancestor {
    background-color: #882c87;
    color: #000000;
  }
  header .nav .menu > .menu-item.current-menu-item > a, header .nav .menu > .menu-item.current-menu-ancestor > a {
    color: #000000;
  }
  header .nav .menu > .menu-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    /*                        top: 0;
                            left: 0;*/
  }
  header .nav .menu .menu-item a::after {
    display: none !important;
  }
  header .nav .menu a {
    padding: 10px 40px 10px 15px !important;
  }
  header .nav .menu .flechita {
    top: 7px !important;
    bottom: auto !important;
    margin: 0 !important;
    right: 0px !important;
  }
  header .nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item {
    color: black;
  }
  header .nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item.current-menu-item, header .nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item.menu-item.current-menu-ancestor {
    color: black;
    background-color: #a3db9d;
  }
  header .nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item.current-menu-item a, header .nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .menu-item.menu-item.current-menu-ancestor a {
    color: black;
  }
  header .nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu a {
    padding-left: 30px !important;
    font-size: 0.9rem !important;
    background-color: #eaf4ea !important;
    color: black !important;
  }
  header .nav .menu .menu-item.menu-item-has-children.firstParent .sub-menu .flechita {
    padding-top: 0px !important;
  }
  header.opened .nav {
    right: 0;
  }
  header.opened #openMenuMobile .fa-bars {
    display: none;
  }
  header.opened #openMenuMobile .fa-times {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  header .nav {
    /*        height: calc(100% - 140px);
            top: 140px;*/
  }
}
@media screen and (max-width: 576px) {
  header {
    /*        .nav{
                height: calc(100% - 100px);
                top: 100px;
            }*/
  }
  header #openMenuMobile {
    top: 70px;
  }
  header .topHeader .searchform .align-items-center {
    padding: 0 15px;
  }
}
.ultimasNoticias {
  position: relative;
  padding: 0 50px;
  /*    #carruselUltimasNoticias{
          position: relative;
          width: calc(100% + 300px);
          .owl-stage-outer{
                          position: relative;
                          top: 70px;
          }
          .owl-nav{
              position: absolute;
              width: 100px;
              bottom: 0;
              left: 0;
              right: 320px;
              margin: 0 auto;
              button {
                  font-size: 4.5rem;
                  line-height: 3rem;
                  margin: 0 13px;
                  color: $main-color;
                  &:hover{
                      color: $main-color-light;
                  }
              }
          }
      }*/
}
.ultimasNoticias .botonCarrusel {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #882c87;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ultimasNoticias .botonCarrusel i {
  font-size: 2rem;
}
.ultimasNoticias .botonCarrusel.prev {
  left: -7px;
  padding-right: 3px;
}
.ultimasNoticias .botonCarrusel.next {
  right: -7px;
  padding-left: 6px;
}
.ultimasNoticias .card {
  text-decoration: none !important;
  background-color: transparent;
  border-radius: 0;
  border: none;
  /*border-bottom: 3px solid $main-color;*/
  transition: 0.2s all;
  position: relative;
  /*        &:before{
              content: '';
              position: absolute;
              right: -15px;
              top: 0;
              width: 1px;
              height: 100%;
              background-color: $main-color-light;
          }*/
}
.ultimasNoticias .card .card-body {
  background-color: white;
  border-top: none;
  border-radius: 0;
}
.ultimasNoticias .card .card-body .imagenDestacada {
  height: 200px;
  background-size: cover;
  background-position: center center;
  display: block;
  position: relative;
}
.ultimasNoticias .card .card-body .imagenDestacada .fecha {
  position: absolute;
  background-color: #882c87;
  padding: 2px;
  top: 0;
  right: 5px;
}
.ultimasNoticias .card .card-body .imagenDestacada .fecha p {
  color: white;
  margin-bottom: 0;
  text-align: center;
  padding: 4px 5px;
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
}
.ultimasNoticias .card .card-body .imagenDestacada .fecha p.small {
  font-size: 14px;
  line-height: 14px;
}
.ultimasNoticias .card .card-body .imagenDestacada .fecha hr {
  background-color: white;
  margin: 0 5px;
  height: 2px;
}
.ultimasNoticias .card .card-body .contenido h2 {
  font-size: 1.1rem;
  font-weight: 600;
}
.ultimasNoticias .card .card-body .contenido p {
  font-size: 0.95rem;
  line-height: 1.15rem;
}

.listadoActualidad .categoriaPost {
  display: inline-block;
  color: #717171;
  margin-bottom: 10px;
}
.listadoActualidad .fechaPost {
  display: inline-block;
  color: #717171;
  font-size: 13px;
  margin-left: 7px;
  padding-left: 7px;
  border-left: 1px solid #717171;
}
.listadoActualidad .vc_grid-filter.vc_grid-filter-size-lg .vc_grid-filter-item {
  margin-left: 5px !important;
}
.listadoActualidad .vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_dark > li > a {
  min-height: 32px;
  min-width: 32px;
  padding: 6px 13px;
  font-size: 1rem;
}

.contenedorNoticia .imagenDestacada {
  height: 200px;
  background-size: cover;
  background-position: center center;
}
.contenedorNoticia h1 {
  color: #882c87;
  text-align: center;
  margin: 45px 0 !important;
  font-size: 2.2rem;
}

.categoriasPost {
  padding: 5px 10px;
  display: inline-block;
  background-color: #882c87;
  color: white;
  margin: 5px 5px 0 0;
  border: 2px solid transparent;
  transition: 0.2s all;
}
.categoriasPost:hover {
  background-color: white;
  color: #882c87;
  border: 2px solid #882c87;
}

.botonPrevNext {
  background-color: #f9f9f9;
}

.noticia_home_texto {
  font-size: 0.9rem;
  font-weight: normal;
}

@media screen and (max-width: 1200px) {
  .ultimasNoticias .card .imagenDestacada {
    height: 125px;
  }
}
@media screen and (max-width: 992px) {
  /*    .ultimasNoticias{
          margin-right: 0;
          padding: 60px 0 50px 0;
          #carruselUltimasNoticias{
              width: 100%;
              .owl-nav{
                  right: 20px;
              }
          }
      }*/
}
.container #dmr_mapa_container {
  position: relative;
  display: block;
  overflow: hidden;
}
.container #dmr_mapa_espana {
  width: 100%;
  height: 600px;
}
.container .leaflet-popup-content-wrapper, .container .leaflet-popup-tip {
  background: #882c87;
  color: #f9f9f9;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}
.container .leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: unset;
}
.container .leaflet-popup-content {
  margin: 16px 19px;
  line-height: 1.4;
  padding: 0 10px 15px;
  font-size: 15px;
  text-transform: uppercase;
  /*font-family: "Roboto", Arial;*/
  font-weight: bold;
}
.container #contenedorAsociacionesProvincia, .container #contenedorAsociacionesAutonomia {
  position: absolute;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: #f9f9f9;
  z-index: 401;
  overflow-y: auto;
  transition: 0.2s all;
}
.container #contenedorAsociacionesProvincia #closeAsociacionesProvincia, .container #contenedorAsociacionesProvincia #closeAsociacionesAutonomia, .container #contenedorAsociacionesAutonomia #closeAsociacionesProvincia, .container #contenedorAsociacionesAutonomia #closeAsociacionesAutonomia {
  font-size: 1.6rem;
  color: #882c87;
}
.container #contenedorAsociacionesProvincia #listadoAsociacionesProvincia ul, .container #contenedorAsociacionesProvincia #listadoAsociacionesAutonomia ul, .container #contenedorAsociacionesAutonomia #listadoAsociacionesProvincia ul, .container #contenedorAsociacionesAutonomia #listadoAsociacionesAutonomia ul {
  list-style: none;
  padding-left: 1rem;
}
.container #contenedorAsociacionesProvincia #listadoAsociacionesProvincia ul li, .container #contenedorAsociacionesProvincia #listadoAsociacionesProvincia ul li a, .container #contenedorAsociacionesProvincia #listadoAsociacionesAutonomia ul li, .container #contenedorAsociacionesProvincia #listadoAsociacionesAutonomia ul li a, .container #contenedorAsociacionesAutonomia #listadoAsociacionesProvincia ul li, .container #contenedorAsociacionesAutonomia #listadoAsociacionesProvincia ul li a, .container #contenedorAsociacionesAutonomia #listadoAsociacionesAutonomia ul li, .container #contenedorAsociacionesAutonomia #listadoAsociacionesAutonomia ul li a {
  font-weight: 400;
  color: #717171;
  font-size: 0.9rem;
  line-break: anywhere;
}
.container #contenedorAsociacionesProvincia #listadoAsociacionesProvincia ul li i, .container #contenedorAsociacionesProvincia #listadoAsociacionesProvincia ul li a i, .container #contenedorAsociacionesProvincia #listadoAsociacionesAutonomia ul li i, .container #contenedorAsociacionesProvincia #listadoAsociacionesAutonomia ul li a i, .container #contenedorAsociacionesAutonomia #listadoAsociacionesProvincia ul li i, .container #contenedorAsociacionesAutonomia #listadoAsociacionesProvincia ul li a i, .container #contenedorAsociacionesAutonomia #listadoAsociacionesAutonomia ul li i, .container #contenedorAsociacionesAutonomia #listadoAsociacionesAutonomia ul li a i {
  color: #BF7FBF;
  margin-right: 10px;
  width: 17px;
  text-align: center;
}
.container #contenedorAsociacionesProvincia #listadoAsociacionesProvincia ul li a:hover, .container #contenedorAsociacionesProvincia #listadoAsociacionesAutonomia ul li a:hover, .container #contenedorAsociacionesAutonomia #listadoAsociacionesProvincia ul li a:hover, .container #contenedorAsociacionesAutonomia #listadoAsociacionesAutonomia ul li a:hover {
  color: black;
}
.container #contenedorAsociacionesProvincia.opened, .container #contenedorAsociacionesAutonomia.opened {
  right: 0;
}

.modalMapa .ult_modal-content {
  border-style: none !important;
}

#tabPildoras .vc_tta-color-purple a {
  border-color: #882c87 !important;
  color: #882c87 !important;
}
#tabPildoras .vc_tta-color-purple a:hover {
  background-color: #882c87 !important;
  color: white !important;
}
#tabPildoras .vc_tta-color-purple .vc_active a {
  background-color: #882c87 !important;
  color: white !important;
}
#tabPildoras .vc_tta-panel-body {
  padding: 50px 0 30px 0;
}
#tabPildoras .vc_tta-panels, #tabPildoras .vc_tta-panel, #tabPildoras .vc_tta-panel-body, #tabPildoras .vc_tta-panel-heading, #tabPildoras .vc_tta-tabs-container, #tabPildoras .vc_tta-tabs-list {
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  border-left: none !important;
}
#tabPildoras .vc_tta.vc_general .vc_tta-tab > a::before, #tabPildoras .vc_tta.vc_general .vc_tta-tab > a::after, #tabPildoras .vc_tta.vc_general .vc_tta-tab > a::before, #tabPildoras .vc_tta.vc_general .vc_tta-tab > a::after {
  display: none !important;
}

.wpcf7 label {
  margin: -20px 0 -20px 0;
  display: block;
  text-align: left;
}
.wpcf7 .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
  /*margin-bottom: -20px;*/
}
.wpcf7 .wpcf7-form-control-wrap .wpcf7-form-control:not(.wpcf7-acceptance) {
  padding: 5px 10px;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #212529;
  margin-bottom: 10px;
}
.wpcf7 .wpcf7-form-control-wrap [name=provincia] {
  /*margin-bottom: 25px;*/
}
.wpcf7 .wpcf7-form-control-wrap textarea {
  height: 269px;
  resize: none;
}
.wpcf7 .wpcf7-form-control-wrap .wpcf7-list-item {
  margin: 10px 0 30px 0;
}

#situaciones_persona {
  background: none;
  border: 0 none;
}
#situaciones_persona .wpcf7-list-item {
  display: block !important;
  margin-left: 15px;
}

#listadoDesafio {
  border: 2px solid #882c87;
  padding: 3rem 0 0 0;
}
#listadoDesafio .rounded-circle {
  border: 3px solid #882c87;
}
#listadoDesafio .rounded-circle.icon {
  border-color: transparent;
  margin-bottom: 6px;
}
#listadoDesafio a {
  color: #882c87;
  word-break: break-word;
  font-size: 0.9rem;
}
#listadoDesafio a:hover {
  color: #882c87;
}
#listadoDesafio .texto {
  color: #717171;
  font-size: 0.95rem;
  line-height: 1.2rem;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
#listadoDesafio .texto::before {
  content: "“";
  font-family: "Source Serif 4", sans-serif;
  font-size: 80px;
  color: #edc6ec;
  position: absolute;
  left: 0;
  top: 10px;
  z-index: -1;
}
#listadoDesafio .texto::after {
  content: "”";
  font-family: "Source Serif 4", sans-serif;
  font-size: 80px;
  color: #edc6ec;
  position: absolute;
  right: 0;
  bottom: -20px;
  z-index: -1;
}

#listadoPodcasts {
  /*    .contenerdorAudio{
          width: 100%;
          height: 100%;
          height: 200px;
          display: flex;
          align-items: center;
          justify-content: center;
          background-size: cover;
          background-position: center center;
      }*/
}
#listadoPodcasts audio {
  width: 100% !important;
}

.listadoEmprendedoras h3 {
  color: #882c87;
}

.searchList .icono {
  background-size: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid #717171;
  background-color: #f9f9f9;
}
.searchList .icono.cover {
  background-size: cover;
}
.searchList h4 {
  font-size: 1.1rem;
  font-weight: bolder;
}
.searchList p {
  font-size: 0.9rem;
}

/* Wrapper */
.sl-wrapper a {
  border-bottom: 0 !important;
  text-decoration: none !important;
}

.sl-button {
  padding: 0.375em 0.625em;
  font-size: 1em;
  line-height: 1;
  font-weight: normal;
}

/* Colors */
a.liked {
  color: #da1b1b;
}

a.liked:hover,
a.liked:active,
a.liked:focus {
  color: #666666;
}

a.liked span.sl-count,
.sl-count {
  color: #666666;
}

/* Icon */
.sl-icon {
  margin-right: 0.3125em;
  font-family: "Arial Unicode MS", Arial, sans-serif;
  vertical-align: middle;
}

.sl-icon svg {
  fill: currentColor;
  width: 1em;
  height: 1em;
}

.sl-icon svg:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Count */
.sl-count {
  font-size: 0.625em;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  text-transform: uppercase;
  vertical-align: middle;
}

/* Loader */
.loader,
.loader:before,
.loader:after {
  background: rgba(0, 0, 0, 0.2);
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 0.2em;
  height: 0.6em;
}

.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: "";
}

.loader:before {
  left: -0.375em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader {
  text-indent: -9999em;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  font-size: 1em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:after {
  left: 0.375em;
}

@-webkit-keyframes load1 {
  0%, 80%, 100% {
    box-shadow: 0 0 rgba(0, 0, 0, 0.2);
    height: 0.6em;
  }
  40% {
    box-shadow: 0 -0.3em rgba(0, 0, 0, 0.2);
    height: 1em;
  }
}
@keyframes load1 {
  0%, 80%, 100% {
    box-shadow: 0 0 rgba(0, 0, 0, 0.2);
    height: 0.6em;
  }
  40% {
    box-shadow: 0 -0.3em rgba(0, 0, 0, 0.2);
    height: 1em;
  }
}
.pagination {
  justify-content: center;
}
.pagination .page-numbers {
  padding: 0.5rem 0.75rem;
  border: 1px solid #e0e0e0;
  border-left: none;
  color: #4b4b4b;
  font-weight: 400;
  cursor: pointer;
}
.pagination .page-numbers:first-child {
  border-left: 1px solid #e0e0e0;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.pagination .page-numbers:last-child {
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.pagination .page-numbers:hover {
  background-color: #f9f9f9;
}
.pagination .page-numbers.current {
  background-color: #BF7FBF;
  border-color: #BF7FBF;
  color: black;
  cursor: initial;
  font-weight: bold;
}
.pagination .page-numbers.dots {
  cursor: initial;
}

.enlace_salto a {
  line-break: anywhere;
}

/* Capa oculta en mobile */
.oculta_en_mobile {
  display: none;
}

/* Botón 100% ancho en mobile */
.bt_100_ancho_mobile, .bt_100_ancho_mobile a {
  width: 100%;
  text-align: center !important;
}

@media screen and (min-width: 768px) {
  .oculta_en_mobile {
    display: block !important;
  }
  /* Capa oculta en desktop */
  .oculta_en_desktop {
    display: none !important;
  }
  .bt_100_ancho_mobile, .bt_100_ancho_mobile a {
    width: auto;
  }
}
.menu_ear {
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
}

.menu_actualidad {
  text-align: center;
}

*:focus-visible {
  outline: 4px dashed #931857 !important;
}

@media screen and (max-width: 992px) {
  .menu_actualidad {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 5px;
    grid-auto-flow: row dense;
    justify-content: space-between;
    align-content: space-between;
    align-items: flex-end;
  }
}
@media screen and (max-width: 800px) {
  .topHeader.container {
    max-width: 680px;
  }
}
@media screen and (max-width: 768px) {
  .programa_imagen_sesgos {
    width: 40% !important;
  }
  .programa_texto_sesgos {
    width: 60% !important;
  }
  #bt_form_servicios_asesoramiento {
    width: 100%;
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 576px) {
  .topHeader.container {
    margin-left: 0px;
  }
  .menu_actualidad, .menu_ear {
    font-size: 0.9rem;
  }
}
#searchNormativa {
  position: relative;
}
#searchNormativa i {
  position: absolute;
  top: 10px;
  right: 6px;
  font-size: 1.1rem;
  color: #717171;
}
#searchNormativa input {
  padding-right: 30px;
}

.contenedorFiltro .cabecera {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
}
.contenedorFiltro .cabecera .botonDesplegar {
  cursor: pointer;
}

#listadoCursos .curso, #listadoCursos .encuentro, #listadoEncuentros .curso, #listadoEncuentros .encuentro {
  position: relative;
  overflow: hidden;
  border: 1px solid black;
  width: 100%;
}
#listadoCursos .curso .ribbon, #listadoCursos .encuentro .ribbon, #listadoEncuentros .curso .ribbon, #listadoEncuentros .encuentro .ribbon {
  position: absolute;
  top: -30px;
  right: -60px;
  background-color: #882c87;
  transform-origin: 0 50%;
  transform: rotate(45deg);
  width: 160px;
  color: white;
  text-align: center;
  font-size: 90%;
  padding: 5px 10px;
  z-index: 2;
}

a {
  font-weight: 600;
  color: #882c87;
  /*text-decoration: none;*/
  white-space: pre-line;
  text-decoration-color: #f49523;
  text-decoration-thickness: 2px;
}
a:hover {
  color: #BF7FBF;
}

main a {
  line-break: auto;
}
main a.enlace_salto {
  line-break: anywhere;
}

/*body strong{
    color: $main-color;
}*/
header, main, footer {
  /*    border-left: 1px solid $grisMuyClaro;
      border-right: 1px solid $grisMuyClaro;*/
}

body {
  overflow-x: hidden;
  background-color: #ffffff;
}
body main, body footer {
  background-color: #ffffff;
}
body main .vc_section, body footer .vc_section {
  margin: 0 0 0 0 !important;
}
body header a {
  text-decoration: none;
}
body footer a {
  color: #882c87;
  font-weight: normal;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px dashed;
  padding-bottom: 1px;
}
body footer a:hover {
  color: #BF7FBF;
}
body #homeEnlacesRRSS a {
  font-size: 1rem;
  line-height: 2rem;
  border-bottom: 2px dashed #f49523;
}

.uvc-sub-heading {
  line-height: inherit;
}

.backgroundFixed {
  background-attachment: fixed;
}

h1, h2 {
  font-weight: 600;
  color: #882c87;
}

h2 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #882c87;
}
h2.tituloNoticiasList {
  font-size: 1.2rem;
}
h2.tituloNoticiasList a {
  color: #882c87;
}
h2.tituloNoticiasList a:hover {
  color: #882c87;
}
h2.desafio_imagenes {
  color: #882c87;
  font-weight: 400;
  font-size: 1.2em;
  margin-bottom: 5px !important;
}

h3 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #882c87;
}
h3.tituloNoticiasList {
  font-size: 1.1rem;
}
h3.tituloNoticiasList a {
  color: #882c87;
}
h3.tituloNoticiasList a:hover {
  color: #882c87;
}

h4 {
  font-weight: 600;
  color: #882c87;
}

hr.grisMuyClaro {
  border-color: #f9f9f9;
}

footer {
  border-top: 2px solid #882c87;
}

#saltar_a_contenido_principal {
  display: none;
}

.logos {
  height: 65px;
  width: auto;
}

.logos_footer {
  height: 65px;
}

.rrssLinks {
  cursor: pointer;
  border: 2px solid #717171;
  border-radius: 50%;
  color: #717171;
  font-size: 1.15rem;
  width: 35px;
  height: 35px;
  margin: 0 0 0 5px;
  transition: 0.2s all;
}
.rrssLinks:hover {
  background-color: #717171;
  color: white;
}
.rrssLinks#searchBtn {
  border-color: #882c87;
  background-color: #882c87;
  color: white;
}
.rrssLinks#searchBtn:hover {
  background-color: white;
  color: #882c87;
}

.textoColorBlanco {
  color: white;
}

.textoColorNegro {
  color: #212529;
}

.textoColorGrisClaro {
  color: #e0e0e0;
}

.textoColorGrisMedio {
  color: #717171;
}

.textoColorGrisOscuro {
  color: #4b4b4b;
}

.textoColorPrincipal {
  color: #882c87;
}

.fondoColorPrincipal {
  background-color: #882c87;
}

.bordecitoDerecha {
  position: relative;
}
.bordecitoDerecha::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  width: 1px;
  height: 60%;
  background-color: #e0e0e0;
}

.bordeGris {
  border: 1px solid #4b4b4b;
}

.cuadrosHome {
  min-height: 400px !important;
  /*    iframe{
          width: 100%;
          height: 400px !important;
      }*/
}

.bloqueHomePadding {
  padding: 30px 60px;
}

.cabeceraPagina {
  padding-top: 200px !important;
}
.cabeceraPagina .textoCabeceraPagina {
  background-color: rgba(136, 44, 135, 0.9);
  color: white;
  /*padding: 30px 30px 0 30px;*/
}
.cabeceraPagina h2 {
  color: #ffffff;
}

.titulo_apartado_n1 h1 {
  color: #f49523;
}

.vc_btn3.vc_btn3-size-md {
  min-width: 180px;
}

.vc_btn3.vc_btn3-size-xs {
  min-width: 120px;
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat, .vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern {
  border-color: #882c87 !important;
  background-color: #882c87 !important;
}
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat:hover, .vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern:hover {
  border-color: #BF7FBF !important;
  background-color: #BF7FBF !important;
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline {
  border-color: #882c87 !important;
  color: #882c87 !important;
}
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline:hover {
  background-color: #882c87 !important;
  color: white !important;
}
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline.activo {
  background-color: #882c87 !important;
  color: white !important;
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline {
  background-color: rgba(136, 44, 135, 0.85) !important;
}
.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline:hover {
  background-color: white !important;
}
.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline:focus {
  color: white !important;
}

.vc_separator .vc_sep_holder {
  height: 3px !important;
}

.vc_separator.vc_sep_color_green .vc_sep_line {
  border-color: #882c87 !important;
}

.vc_btn3.vc_btn3-color-green, .vc_btn3.vc_btn3-color-green.vc_btn3-style-flat {
  color: #fff;
  background-color: rgb(4, 137, 4) !important;
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat:focus, .vc_btn3.vc_btn3-color-green.vc_btn3-style-flat:hover, .vc_btn3.vc_btn3-color-green:focus, .vc_btn3.vc_btn3-color-green:hover {
  color: #f7f7f7;
  background-color: #3aa13b !important;
}

.linksSubrayados a {
  border-bottom: 2px solid rgba(136, 44, 135, 0.9);
  color: #717171;
  text-decoration: none;
}
.linksSubrayados a:hover {
  color: #882c87;
}
.linksSubrayados.filtroActualidad a {
  margin: 0 10px;
}

.submenu_en_pagina a {
  color: #4b4b4b;
}

.ulFlecha ul {
  list-style-type: none;
  padding-left: 0;
}
.ulFlecha ul li {
  margin: 3px 0 15px 35px;
  position: relative;
}
.ulFlecha ul li i {
  position: absolute;
  left: -30px;
  color: #BF7FBF;
  font-size: 1.5rem;
}
.ulFlecha ul li i.fa-link {
  font-size: 1.3rem;
  top: 4px;
}

.centradosHomeDesafio {
  width: 200px;
  margin: 0 auto;
}

.botonBordeAbajo a {
  border: none !important;
  border-bottom: 2px solid !important;
  padding: 0 30px 4px 0 !important;
  padding-bottom: 3px !important;
  font-size: 1.7rem !important;
}
.botonBordeAbajo a:hover {
  background-color: transparent !important;
  color: #882c87 !important;
  border-color: #882c87 !important;
}

/*.botonContornoAbajo a {
    border: none !important;
    border-bottom: 2px solid !important;
    padding: 0 0 4px 0 !important;
    &:hover{
        background-color: transparent !important;
        color: $main-color !important;
        border-color: $main-color !important;
    }
}*/
.badge.bg-primary {
  background-color: #BF7FBF !important;
}

.wpb_column {
  overflow: hidden;
}

.vc_separator.vc_sep_color_grey .vc_sep_line {
  border-color: #f9f9f9;
}

.vc_separator.vc_sep_color_purple .vc_sep_line {
  border-color: #882c87;
}

.lighter {
  font-weight: 100 !important;
}

.bolder {
  font-weight: 600 !important;
}

.home_banner_subtitulo {
  font-size: 0.8rem;
  font-weight: bold;
  color: #882c87;
  margin: 0px 0px 10px;
  padding: 0;
  display: inline-block;
}

.home_banner_titulo {
  color: #444;
  font-size: 1.4rem;
  margin-top: -10px;
  font-weight: bold;
}

.caja_centrado_centrado {
  align-items: center;
  display: flex;
  justify-content: center;
}

.caja_centrado_centrado .wpb_text_column {
  margin-bottom: 0px;
}

.centrado_vertical > .vc_column-inner {
  justify-content: center;
}

.programa_texto_sesgos p {
  word-wrap: normal;
}

#bt_form_servicios_asesoramiento {
  margin-left: 50px;
}

a.botonNormativa {
  border-color: #882c87 !important;
  color: #882c87 !important;
  background-color: #ffffff;
}
a.botonNormativa:focus {
  background-color: #882c87 !important;
  color: white !important;
}

#RN_ListadoEstudios p {
  font-size: 0.85rem;
}
#RN_ListadoEstudios a {
  font-size: 1rem;
}

.img_hover_zoom {
  transition: all 200ms linear;
  transform: scale(0.95);
  opacity: 1;
}
.img_hover_zoom:hover {
  transform: scale(1);
  opacity: 0.9;
}

#seccion_cursos_formacion strong,
#seccion_encuentros_tematicos strong {
  color: #882c87;
}

@media screen and (max-width: 1200px) {
  .logos_footer {
    height: 60px;
  }
}
@media screen and (max-width: 992px) {
  main {
    padding-top: 80px;
  }
  .bloqueHomePadding {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 90px;
  }
  .vc_col-has-fill > .vc_column-inner {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .logos {
    height: 45px;
  }
  .logos_footer {
    height: 60px;
  }
}/*# sourceMappingURL=style.css.map */