.f-900 {
  font-weight: 900;
}

.f-800 {
  font-weight: 800;
}

.f-700 {
  font-weight: 700;
}

.f-600 {
  font-weight: 600;
}

.f-500 {
  font-weight: 500;
}

.f-400 {
  font-weight: 400;
}

.t-200 {
  font-size: 2rem;
}

.t-175 {
  font-size: 1.75rem;
}

.t-170 {
  font-size: 1.7rem;
}

.t-150 {
  font-size: 1.5rem;
}

.t-130 {
  font-size: 1.3rem;
}

.t-120 {
  font-size: 1.2rem;
}

.t-110 {
  font-size: 1.1rem;
}

.t-100 {
  font-size: 1rem;
}

.t-090 {
  font-size: 0.9rem;
}

.t-085 {
  font-size: 0.85rem;
}

.t-080 {
  font-size: 0.8rem;
}

.t-075 {
  font-size: 0.75rem;
}

.t-070 {
  font-size: 0.7rem;
}

@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  10% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  20% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(1);
  }
}
body {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  color: #2D2926;
  font-size: 14px;
}
@media (max-width: 768px) {
  body {
    overflow-y: auto;
    position: relative;
    height: 100vh;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
  }
}

.boton-amarillo {
  background-color: #FFE11D;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 16px;
}
.boton-amarillo:hover {
  color: rgba(45, 41, 38, 0.7176470588);
}
.boton-amarillo.mini {
  padding: 8px 16px;
  flex: 0 0 auto;
}

.boton-azul {
  background-color: #006699;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 16px;
  color: white;
}

.boton-texto {
  color: #006699;
  font-weight: 500;
  font-size: 12px;
  padding: 6px 16px;
  margin-top: 0.5rem;
}
.boton-texto i {
  margin-right: 8px;
}

.slider-filtro {
  position: absolute;
  left: 0rem;
  top: 0rem;
  bottom: 0rem;
  background-color: white;
  width: 345px;
  overflow-y: scroll;
  z-index: 10;
}
.slider-filtro::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.slider-filtro::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  background-color: #F5F5F5;
}
.slider-filtro::-webkit-scrollbar-thumb {
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #c7c7c7;
}
@media (max-width: 768px) {
  .slider-filtro {
    width: 100%;
    position: absolute;
    left: 0rem;
    bottom: auto;
    top: calc(100% - 30%);
    overflow: hidden;
    height: fit-content;
    border-radius: 10px 10px 0px 0px;
  }
}

.slider-filtro-contenido {
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 1rem 1rem;
}

.titulo-ree {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #006699;
}

.texto-ayuda {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: #BABABA;
}

.card-categoria {
  cursor: pointer;
  margin: 16px 0px 0px 0px;
  height: 44px;
  background-color: white;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.card-categoria.activo {
  background-color: #f2f2f2;
}
.card-categoria :hover {
  background-color: #f2f2f2;
}
.card-categoria.inactivo {
  opacity: 0.7;
}
.card-categoria.inactivo:hover {
  opacity: 0.9;
}
.card-categoria .left {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}
.card-categoria .barra-color {
  height: 100%;
  flex: 0 0 4px;
  background-color: #000000;
  margin-right: 8px;
}
.card-categoria .barra-color.dentro {
  height: auto;
}
.card-categoria .titulo-categoria {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #2D2926;
}
.card-categoria .icono {
  flex: 0 0 44px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}
.card-categoria .icono img {
  width: 35px;
  height: 35px;
}
.card-categoria.categoria-1 .barra-color {
  background-color: #FDC942;
}
.card-categoria.categoria-2 .barra-color {
  background-color: #F39640;
}
.card-categoria.categoria-3 .barra-color {
  background-color: #FF6B6B;
}
.card-categoria.categoria-4 .barra-color {
  background-color: #ED82A9;
}
.card-categoria.categoria-5 .barra-color {
  background-color: #7962D3;
}
.card-categoria.categoria-6 .barra-color {
  background-color: #70C4FE;
}
.card-categoria.categoria-7 .barra-color {
  background-color: #273F95;
}
.card-categoria.categoria-8 .barra-color {
  background-color: #79C267;
}
.card-categoria.categoria-9 .barra-color {
  background-color: #4D953B;
}
.card-categoria.categoria-10 .barra-color {
  background-color: #E0763B;
}
.card-categoria.categoria-tecnologias .barra-color {
  background-color: #006699;
}

.card-collapse {
  display: flex;
  margin: 0px 0px 0px 0px;
  background-color: white;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: #f2f2f2;
}
.card-collapse .barra-color {
  height: 100%;
  flex: 0 0 4px;
  background-color: #000000;
  margin-right: 8px;
}
.card-collapse .barra-color.dentro {
  height: auto;
}
.card-collapse .collapse-categoria {
  display: flex;
  flex-direction: column;
  padding: 8px 16px 0 0;
}
.card-collapse .descripcion-categoria {
  text-align: left;
  font-size: 12px;
  line-height: 16px;
  color: #4D4D4D;
}
.card-collapse .titulo-proyectos {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #2D2926;
}
.card-collapse .card-proyecto {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 4px;
  margin-bottom: 8px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  flex: 0 0 48%;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  text-align: center;
  color: #000000;
  border: 1px solid #000000;
}
.card-collapse .card-proyecto:hover {
  cursor: pointer;
  color: #f2f2f2 !important;
  background-color: #000;
}
.card-collapse .card-proyecto.fake-hover {
  color: #f2f2f2 !important;
  background-color: #000;
}
.card-collapse.categoria-1 .barra-color {
  background-color: #FDC942;
}
.card-collapse.categoria-1 .card-proyecto {
  color: #FDC942;
  border: 1px solid #FDC942;
}
.card-collapse.categoria-1 .card-proyecto:hover {
  background-color: #FDC942;
}
.card-collapse.categoria-1 .card-proyecto.fake-hover {
  background-color: #FDC942;
}
.card-collapse.categoria-2 .barra-color {
  background-color: #F39640;
}
.card-collapse.categoria-2 .card-proyecto {
  color: #F39640;
  border: 1px solid #F39640;
}
.card-collapse.categoria-2 .card-proyecto:hover {
  background-color: #F39640;
}
.card-collapse.categoria-2 .card-proyecto.fake-hover {
  background-color: #F39640;
}
.card-collapse.categoria-3 .barra-color {
  background-color: #FF6B6B;
}
.card-collapse.categoria-3 .card-proyecto {
  color: #FF6B6B;
  border: 1px solid #FF6B6B;
}
.card-collapse.categoria-3 .card-proyecto:hover {
  background-color: #FF6B6B;
}
.card-collapse.categoria-3 .card-proyecto.fake-hover {
  background-color: #FF6B6B;
}
.card-collapse.categoria-4 .barra-color {
  background-color: #ED82A9;
}
.card-collapse.categoria-4 .card-proyecto {
  color: #ED82A9;
  border: 1px solid #ED82A9;
}
.card-collapse.categoria-4 .card-proyecto:hover {
  background-color: #ED82A9;
}
.card-collapse.categoria-4 .card-proyecto.fake-hover {
  background-color: #ED82A9;
}
.card-collapse.categoria-5 .barra-color {
  background-color: #7962D3;
}
.card-collapse.categoria-5 .card-proyecto {
  color: #7962D3;
  border: 1px solid #7962D3;
}
.card-collapse.categoria-5 .card-proyecto:hover {
  background-color: #7962D3;
}
.card-collapse.categoria-5 .card-proyecto.fake-hover {
  background-color: #7962D3;
}
.card-collapse.categoria-6 .barra-color {
  background-color: #70C4FE;
}
.card-collapse.categoria-6 .card-proyecto {
  color: #70C4FE;
  border: 1px solid #70C4FE;
}
.card-collapse.categoria-6 .card-proyecto:hover {
  background-color: #70C4FE;
}
.card-collapse.categoria-6 .card-proyecto.fake-hover {
  background-color: #70C4FE;
}
.card-collapse.categoria-7 .barra-color {
  background-color: #273F95;
}
.card-collapse.categoria-7 .card-proyecto {
  color: #273F95;
  border: 1px solid #273F95;
}
.card-collapse.categoria-7 .card-proyecto:hover {
  background-color: #273F95;
}
.card-collapse.categoria-7 .card-proyecto.fake-hover {
  background-color: #273F95;
}
.card-collapse.categoria-8 .barra-color {
  background-color: #79C267;
}
.card-collapse.categoria-8 .card-proyecto {
  color: #79C267;
  border: 1px solid #79C267;
}
.card-collapse.categoria-8 .card-proyecto:hover {
  background-color: #79C267;
}
.card-collapse.categoria-8 .card-proyecto.fake-hover {
  background-color: #79C267;
}
.card-collapse.categoria-9 .barra-color {
  background-color: #4D953B;
}
.card-collapse.categoria-9 .card-proyecto {
  color: #4D953B;
  border: 1px solid #4D953B;
}
.card-collapse.categoria-9 .card-proyecto:hover {
  background-color: #4D953B;
}
.card-collapse.categoria-9 .card-proyecto.fake-hover {
  background-color: #4D953B;
}
.card-collapse.categoria-10 .barra-color {
  background-color: #E0763B;
}
.card-collapse.categoria-10 .card-proyecto {
  color: #E0763B;
  border: 1px solid #E0763B;
}
.card-collapse.categoria-10 .card-proyecto:hover {
  background-color: #E0763B;
}
.card-collapse.categoria-10 .card-proyecto.fake-hover {
  background-color: #E0763B;
}
.card-collapse.categoria-tecnologias .barra-color {
  background-color: #006699;
}
.card-collapse.categoria-tecnologias .card-proyecto {
  color: #006699;
  border: 1px solid #006699;
}
.card-collapse.categoria-tecnologias .card-proyecto:hover {
  background-color: #006699;
}
.card-collapse.categoria-tecnologias .card-proyecto.fake-hover {
  background-color: #006699;
}

.filtro-opcion {
  border-radius: 10px;
  padding: 0.5rem;
}
.filtro-opcion :hover {
  cursor: pointer;
}
.filtro-opcion img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 0.5rem;
  border-radius: 5px;
}
.filtro-opcion.color-1 {
  background-color: #cc0000;
  box-shadow: 4px 4px 4px rgba(204, 0, 0, 0.3333333333);
}
.filtro-opcion.color-1:hover {
  background-color: rgba(204, 0, 0, 0.9333333333);
}
.filtro-opcion.color-2 {
  background-color: #015E8D;
  box-shadow: 4px 4px 4px rgba(1, 94, 141, 0.3333333333);
}
.filtro-opcion.color-2:hover {
  background-color: rgba(1, 94, 141, 0.9333333333);
}

.boton-menu {
  position: fixed;
  right: 1rem;
  top: 1rem;
  background-color: #006699;
  width: 32px;
  height: 32px;
  z-index: 15;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1rem;
  border-radius: 50%;
  cursor: pointer;
}

.boton-cerrar-menu {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background-color: #006699;
  width: 32px;
  height: 32px;
  z-index: 15;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1rem;
  border-radius: 50%;
  cursor: pointer;
}

.slider-menu {
  display: none;
  position: absolute;
  right: 0rem;
  top: 0rem;
  bottom: 0rem;
  background-color: hsl(0, 0%, 100%);
  width: 330px;
  overflow-y: hidden;
  z-index: 20;
}
.slider-menu::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.slider-menu::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  background-color: #F5F5F5;
}
.slider-menu::-webkit-scrollbar-thumb {
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #c7c7c7;
}
@media (max-width: 768px) {
  .slider-menu {
    width: 90%;
  }
}
.slider-menu .zona-links {
  position: absolute;
  top: 7rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.slider-menu .zona-links .links {
  font-size: 14px;
  line-height: 18px;
  color: #2D2926;
  margin-bottom: 1rem;
}
.slider-menu .zona-abajo-menu {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
}
.slider-menu .zona-abajo-menu .descarga-dossier {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 1rem;
  background-color: #FBF6E6;
}
.slider-menu .zona-abajo-menu .simbolos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: #006699;
}
.slider-menu .zona-abajo-menu .simbolos .logos {
  height: 38px;
}
.slider-menu .zona-abajo-menu .simbolos .logos-ree {
  height: 17px;
}

.slider-ficha {
  display: none;
  position: absolute;
  left: 1rem;
  top: 1rem;
  bottom: 0rem;
  background-color: white;
  border-radius: 0px 0px 0 0px;
  width: 800px;
  overflow: hidden;
  z-index: 10;
}
@media (max-width: 1500px) {
  .slider-ficha {
    width: 700px;
  }
}
@media (max-width: 1200px) {
  .slider-ficha {
    width: 600px;
  }
}
@media (max-width: 768px) {
  .slider-ficha {
    width: auto;
    left: 0;
    right: 0;
    top: 50%;
    bottom: auto;
    height: 100%;
    border-radius: 10px 10px 0 0px;
  }
}

.ficha {
  position: absolute;
  left: 0rem;
  top: 0rem;
  bottom: 0rem;
  right: 0rem;
  overflow: hidden;
}
.ficha::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.ficha::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  background-color: #F5F5F5;
}
.ficha::-webkit-scrollbar-thumb {
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #c7c7c7;
}

.linea-ficha {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #FF6B6B;
}

.cabecera-ficha {
  position: absolute;
  top: 0rem;
  right: 0;
  left: 0px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 1rem;
  color: #006699;
}
@media (max-width: 768px) {
  .cabecera-ficha {
    position: relative;
    text-align: right;
    top: auto;
    right: auto;
    padding: 0.5rem 1rem;
    height: 50px;
  }
}
.cabecera-ficha .titulo-cabecera {
  font-size: 14px;
  line-height: 16px;
}
.cabecera-ficha .boton-cerrar {
  font-size: 1.6rem;
}
.cabecera-ficha .boton-cerrar:hover {
  cursor: pointer;
}

.contenido-ficha {
  position: absolute;
  top: 60px;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  padding: 0rem 1rem 1rem 1rem;
  text-align: justify;
}
.contenido-ficha::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.contenido-ficha::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  background-color: #F5F5F5;
}
.contenido-ficha::-webkit-scrollbar-thumb {
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #c7c7c7;
}
@media (max-width: 768px) {
  .contenido-ficha {
    position: relative;
    overflow-y: hidden;
    bottom: auto;
    top: auto;
  }
}
.contenido-ficha .titulo-ficha {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 450px;
}
.contenido-ficha .titulo-ficha .icono {
  width: 35px;
  height: 35px;
  margin-right: 0.5rem;
}
.contenido-ficha .titulo-ficha .titulo {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #2D2926;
  text-align: left;
}

.foto-fichas {
  width: 100%;
  object-fit: cover;
}

.ficha-imagen {
  width: 100%;
  object-fit: cover;
}

.ficha-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.ficha-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ficha-pdf {
  width: 100%;
  height: 100%;
}

.nav-tabs {
  border: none;
}
.nav-tabs .nav-link {
  font-size: 14px;
  color: #006699;
  border: none;
  opacity: 0.5;
  padding: 0.4rem 1.5rem 0.4rem 0rem;
}
.nav-tabs .nav-link.active {
  color: #006699;
  opacity: 1;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .nav-tabs .nav-link {
    font-size: 14px;
    padding: 0.4rem 0.8rem 0.4rem 0rem;
  }
}

.mapa {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.capa-disclaimer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.texto-disclaimer {
  position: fixed;
  left: calc(345px + 30px);
  top: 10%;
  background-color: white;
  z-index: 8;
  padding: 1rem 1rem 1rem 1rem;
}
.texto-disclaimer i {
  font-size: 1.6rem;
  color: #006699;
}
.texto-disclaimer #flecha-izquierda {
  display: block;
}
.texto-disclaimer #flecha-abajo {
  display: none;
}
.texto-disclaimer .titulo {
  font-size: 24px;
  line-height: 32px;
  color: #006699;
}
@media (max-width: 768px) {
  .texto-disclaimer {
    top: auto;
    left: 2em;
    right: 2rem;
    bottom: calc(2rem + 30%);
  }
  .texto-disclaimer #flecha-abajo {
    display: block;
  }
  .texto-disclaimer #flecha-izquierda {
    display: none;
  }
}

.disclaimer-estatico {
  position: fixed;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 4;
  padding: 0.5rem 0.7rem;
  font-size: 12px;
  font-weight: 400;
  color: #BABABA;
  max-width: 400px;
}
@media (max-width: 992px) {
  .disclaimer-estatico {
    max-width: 200px;
  }
}
@media (max-width: 768px) {
  .disclaimer-estatico {
    display: none;
  }
}

.disclaimer-estatico-movil {
  display: none;
}
@media (max-width: 768px) {
  .disclaimer-estatico-movil {
    display: block;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: #BABABA;
  }
}

.zona-leyenda {
  display: none;
  position: fixed;
  left: calc(345px + 30px);
  top: 30px;
  width: 270px;
  background-color: white;
  z-index: 8;
  padding: 1rem 1rem 1rem 1rem;
}
.zona-leyenda .linea {
  display: block;
  width: 30px;
  height: 5px;
  border: 1px dashed #000;
  margin-right: 1rem;
}
.zona-leyenda .linea.categoria-3 {
  border: 1px dashed #FF6B6B;
}
.zona-leyenda .titulo {
  margin-bottom: 0.5rem;
  font-size: 24px;
  line-height: 32px;
  color: #006699;
}
.zona-leyenda .imagen-leyenda {
  height: 30px;
  width: 30px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .zona-leyenda {
    top: 1rem;
    left: 1em;
  }
}
.zona-leyenda .boton-leyenda {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem;
  border-radius: 4px;
  margin-bottom: 8px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  flex: 0 0 48%;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: #000000;
  border: 1px solid #000000;
}
.zona-leyenda .boton-leyenda:hover {
  cursor: pointer;
  color: #f2f2f2 !important;
  background-color: #000;
}
.zona-leyenda .boton-leyenda.fake-hover {
  color: #f2f2f2 !important;
  background-color: #000;
}
.zona-leyenda .boton-leyenda.leyenda-2 {
  color: #F39640;
  border: 1px solid #F39640;
}
.zona-leyenda .boton-leyenda.leyenda-2:hover {
  background-color: #F39640;
}
.zona-leyenda .boton-leyenda.leyenda-2.fake-hover {
  background-color: #F39640;
}
.zona-leyenda .boton-leyenda.leyenda-8 {
  color: #79C267;
  border: 1px solid #79C267;
}
.zona-leyenda .boton-leyenda.leyenda-8:hover {
  background-color: #79C267;
}
.zona-leyenda .boton-leyenda.leyenda-8.fake-hover {
  background-color: #79C267;
}
.zona-leyenda .boton-leyenda.leyenda-10 {
  color: #E0763B;
  border: 1px solid #E0763B;
}
.zona-leyenda .boton-leyenda.leyenda-10:hover {
  background-color: #E0763B;
}
.zona-leyenda .boton-leyenda.leyenda-10.fake-hover {
  background-color: #E0763B;
}

.mapa-canarias {
  position: fixed;
  left: calc(345px - 2px);
  bottom: 0;
  width: 300px;
  height: 150px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mapa-canarias.smaller {
  width: 280px;
  height: 140px;
  left: auto;
  right: 0px;
  pointer-events: none;
}
@media (min-width: 1500px) {
  .mapa-canarias {
    width: 350px;
    height: 175px;
  }
  .mapa-canarias.smaller {
    width: 350px;
    height: 175px;
    left: auto;
    right: 0px;
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .mapa-canarias {
    left: 0;
    bottom: 30%;
  }
}
@media (max-width: 576px) {
  .mapa-canarias {
    width: 200px;
    height: 100px;
  }
}
.mapa-canarias :hover {
  cursor: pointer;
}

.mapa-canarias-disclaimer {
  position: fixed;
  left: calc(345px - 2px);
  bottom: 0;
  width: 300px;
  height: 150px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 1500px) {
  .mapa-canarias-disclaimer {
    width: 350px;
    height: 175px;
  }
}
@media (max-width: 768px) {
  .mapa-canarias-disclaimer {
    left: 0;
    bottom: 30%;
  }
}
@media (max-width: 576px) {
  .mapa-canarias-disclaimer {
    width: 200px;
    height: 100px;
  }
}
.mapa-canarias-disclaimer :hover {
  cursor: pointer;
}

.markers-canarias {
  position: fixed;
  bottom: 0;
  width: 300px;
  height: 150px;
  border-top: 2px solid #5f869e;
  border-right: 2px solid #5f869e;
  border-left: 2px solid #5f869e;
}
.markers-canarias.smaller {
  width: 280px;
  height: 140px;
  pointer-events: none;
}
@media (min-width: 1500px) {
  .markers-canarias {
    width: 350px;
    height: 175px;
  }
  .markers-canarias.smaller {
    width: 350px;
    height: 175px;
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .markers-canarias {
    left: 0;
  }
}
@media (max-width: 576px) {
  .markers-canarias {
    width: 200px;
    height: 100px;
  }
}

.markers-espana {
  position: fixed;
  bottom: 0;
  width: 300px;
  height: 180px;
  border-top: 2px solid #5f869e;
  border-bottom: 2px solid #5f869e;
  border-left: 2px solid #5f869e;
}
@media (min-width: 1500px) {
  .markers-espana {
    width: 350px;
    height: 210px;
  }
}
@media (max-width: 768px) {
  .markers-espana {
    left: 0;
  }
}
@media (max-width: 576px) {
  .markers-espana {
    width: 200px;
    height: 120px;
  }
}

.mapa-espana {
  display: none;
  position: fixed;
  right: 0px;
  top: 0px;
  width: 300px;
  height: 180px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 1500px) {
  .mapa-espana {
    width: 350px;
    height: 210px;
  }
}
@media (max-width: 576px) {
  .mapa-espana {
    width: 200px;
    height: 120px;
  }
}
.mapa-espana :hover {
  cursor: pointer;
}

.mapa-espana-disclaimer {
  position: fixed;
  right: 0px;
  top: 0px;
  width: 300px;
  height: 180px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 1500px) {
  .mapa-espana-disclaimer {
    width: 350px;
    height: 210px;
  }
}
@media (max-width: 576px) {
  .mapa-espana-disclaimer {
    width: 200px;
    height: 120px;
  }
}
.mapa-espana-disclaimer :hover {
  cursor: pointer;
}

.marker {
  width: 20px;
  height: 20px;
  background-size: cover;
  cursor: pointer;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}
@media (max-width: 576px) {
  .marker {
    width: 12px;
    height: 12px;
  }
}
.marker.filtrado {
  width: 24px;
  height: 24px;
  background-size: cover;
  cursor: pointer;
  pointer-events: auto;
}
@media (max-width: 576px) {
  .marker.filtrado {
    width: 16px;
    height: 16px;
  }
}
.marker.filtrado.activado {
  width: 36px;
  height: 36px;
  pointer-events: none;
  transition: width 1s ease-in-out, height 1s ease-in-out;
}
@media (max-width: 576px) {
  .marker.filtrado.activado {
    width: 30px;
    height: 30px;
  }
}
.marker.activado {
  width: 36px;
  height: 36px;
  pointer-events: none;
  transition: width 1s ease-in-out, height 1s ease-in-out;
}
@media (max-width: 576px) {
  .marker.activado {
    width: 30px;
    height: 30px;
  }
}
.marker.hover {
  width: 32px;
  height: 32px;
}

.cluster {
  width: 38px;
  height: 38px;
  background-size: cover;
  cursor: pointer;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}

.boton-tecnologias {
  position: fixed;
  right: 4rem;
  top: 14px;
  background-color: #FFE11D;
  z-index: 15;
  font-size: 14px;
  cursor: pointer;
}
.boton-tecnologias .texto-abierto {
  display: none;
  font-size: 1.2rem;
  padding: 0.5rem 0.8rem;
}
.boton-tecnologias .texto-cerrado {
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.boton-tecnologias.active .texto-abierto {
  display: flex;
  justify-content: center;
  align-items: center;
}
.boton-tecnologias.active .texto-cerrado {
  display: none;
}

.capa-negra-tecnologia {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: hsla(0, 0%, 0%, 0.449);
  z-index: 11;
  display: none;
}

.slider-tecnologias {
  display: flex;
  position: absolute;
  right: -755px;
  top: 0rem;
  height: 100%;
  z-index: 12;
  transition: 0.5s ease-in-out;
}
.slider-tecnologias::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.slider-tecnologias::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  background-color: #F5F5F5;
}
.slider-tecnologias::-webkit-scrollbar-thumb {
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #c7c7c7;
}
@media (max-width: 768px) {
  .slider-tecnologias {
    position: fixed;
    right: -300vw;
    height: 100vh;
  }
}
.slider-tecnologias .primera-columna {
  background-color: #FBF6E6;
  width: 219px;
  height: 100%;
  overflow-y: overlay;
  padding: 10rem 1rem 1rem 1rem;
}
@media (max-width: 768px) {
  .slider-tecnologias .primera-columna {
    width: 100vw;
  }
}
.slider-tecnologias .segunda-columna {
  background-color: #F8F1D5;
  width: 219px;
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .slider-tecnologias .segunda-columna {
    width: 100vw;
  }
}
.slider-tecnologias .tercera-columna {
  background-color: #F5ECC8;
  width: 317px;
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .slider-tecnologias .tercera-columna {
    width: 100vw;
  }
}
.slider-tecnologias .boton-atras-tecnologias {
  display: none;
}
@media (max-width: 768px) {
  .slider-tecnologias .boton-atras-tecnologias {
    display: block;
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1rem;
    padding: 0.5rem 0.5rem;
    color: #006699;
  }
}
.slider-tecnologias .contenido-columna {
  display: none;
  overflow-y: overlay;
  padding: 10rem 1rem 1rem 1rem;
  width: 100%;
  height: 100%;
}
.slider-tecnologias .titulo {
  font-size: 24px;
  line-height: 32px;
  color: #006699;
}
.slider-tecnologias .descripcion {
  font-size: 12px;
  line-height: 16px;
}
.slider-tecnologias .opcion {
  border-left: 4px solid #006699;
  padding: 4px 8px;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 12px;
  height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.slider-tecnologias .opcion.activa {
  background-color: white;
}
.slider-tecnologias .opcion:hover {
  background-color: white;
}
.slider-tecnologias .ver-proyectos {
  color: #006699;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  cursor: pointer;
}
.slider-tecnologias .ver-proyectos i {
  margin-left: 0.5rem;
}
.slider-tecnologias .ver-proyectos:hover {
  text-decoration: underline;
}
.slider-tecnologias .proyectos {
  color: #006699;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
.slider-tecnologias .proyectos:hover {
  text-decoration: underline;
}