*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
   font-family: 'Avenir Next', sans-serif !important;

  
   
  
}
:root{
  --light:#F5F6FA;
  --concrete:#F2F2F2;
  --gray:#D6D5D5;
  --dark:#343A40;
  --Gray-Dark:#333333;
  --black:#212121;
  --Primary-Blue:#5380C1;
  --Blue-Opacity40:#5381c166;
  --Blue-Opacity20:#5381c133;
  --Secondary:#6C757D;
  --Disco:#99195E;
  --Disco-Opacity20:#99195E3D;
  --Light-Purple:#6855A2;
  --Steel-Gray:#231D35;
  --Purple:#221C34;
  --Black:#212121;
  --Btn:#fcd672;
  --NewDisco:#8E3B65;
  --NewBlack:#211C32;
  --NewBlue:#0055B8;
  --NewLight:#6DB3DA;
  --textGlobal:#221C34;
  --ApecLightPurple:#F4F2F8;
  --ApecMagenta:#9A3367;
  --ApecLight:#6DB3DA;
 
}
.section-empezar{
    margin: 50px auto;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.title-empezar{
    color: var(--dark);
    font-size: 36px;
    line-height: 40px;
    font-family: Helvetica, Arial, sans-serif;
    text-align: center;

}

.img-empezar{
    object-fit: contain;
    max-width: 340px;
    width: 80%;
    margin: 60px auto;
}

.cards-empezar{
    margin: 20px auto;
    width: 90%;
    display: flex;
    gap: 24px;
}

@media (min-width: 768px) and (max-width: 1024px) {

}

@media (max-width: 768px) {
  
 .cards-empezar{
    flex-direction: column;
 }

}.card-select {
  display: flex;
  border: none;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  border-radius: 20px;
  gap: 20px;
}

/* .card-select.opcion-test {
  background: linear-gradient(90deg, var(--NewLight) 0%, var(--NewBlue) 100%);
}

.card-select.opcion-sintomas {
  background: linear-gradient(90deg, var(--NewLight) 0%, var(--NewBlue) 100%); */

.card-empezar {
  text-decoration: none;
  background-color: var(--ApecLight);
  border-radius: 20px;
}

.title-card {
  font-size: 28px;
  color: var(--light);
}

.container-description {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.container-description .parag {
  line-height: 24px;
  color: var(--textGlobal);
  font-size: 20px;
}

.btn-ir {
  line-height: 24px;
  color: var(--light);
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .card-select {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .title-card {
    font-size: 24px;
  }

  .container-description .parag {
    font-size: 16px;
    line-height: normal;
  }

  .card-select {
    padding: 20px;
  }
}
.btn {
  margin: 60px 20% 0;
  width: 207px;
  height: 60px;
  background: var(--Btn);
  padding: 2px;
  border-radius: 999px;
}

/* ✅ Fondo del botón interno */
.btn-inner {
  background: --Btn;
  border-radius: 9px;
  /*padding: 16px 17px;*/
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ✅ Cuando tiene clase degradado, el fondo es gradiente */
/* .btn.degradado .btn-inner {
  background: linear-gradient(89deg,
      var(--Primary-Blue) 0%,
      var(--Purple) 100%);
} */

/* ✅ El texto no tiene background, es independiente */
.text {
  font-weight: 600;
  font-size: 28px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.circle-arrow{
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ✅ Por defecto: texto con gradiente */
.btn:not(.degradado) .text {
 color: var(--dark);
}

/* ✅ Con clase degradado: texto blanco/claro */
.btn.degradado .text {
  color: var(--dark);
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* Estilos solo para tablets */
}

@media (max-width: 768px) {
  .text {
    font-weight: 600;
  }
}.section-home {
  width: 100%;
  height: 100vh;
  background-image: url("./Banner-Header.png");
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.container-info {
  width: 50%;
  color: var(--concrete);
}

h1 {
  font-size: 56px;
  color: var(--concrete);
  font-family:  Helvetica, Arial, sans-serif;
  margin: 0;
}

h2 {
  font-size: 36px;
  color: var(--concrete);
  font-family:  Helvetica, Arial, sans-serif;
  margin: 0;
}

.paragrah {
  font-size: 24px;
  font-weight: 500;
  font-family:  Helvetica, Arial, sans-serif;
  color: var(--concrete);
  line-height: 28px;
  margin: 15px 0 0 0;
 width: 70%;
}

.paragrah.uno {
  margin: 40px 0 0 0;
}

.link {
  text-decoration: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .section-home {
    background-position: 41%;
  }
   h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 22px;
  }
  .paragrah {
    width: 95%;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .section-home {
    background-position: 19%;
  }

  .container-info {
    margin: 0 auto;
    width: 90%;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 24px;
  }

  .paragrah {
    width: 100%;

    font-size: 18px;
  }

  .paragrah.uno {
  margin: 60% 0 0 0;
}
}
.containerCard{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    align-items: center;
    margin: 10px;
    padding: 0 15px;
}

.imgCard{
    width: 71px;
}

.titleCard{
    font-size: 20px;
    font-weight: bold;
    color: var(--dar);

}

.descriptionCard{
    font-size: 20px;
    font-weight: 400;
    color: var(--dar);
    width: 80%;
}


@media (min-width: 768px) and (max-width: 1024px){
.containerCard{
     margin: 5px;
     padding: 0 8px;
}

.descriptionCard{

    width: 99%;
}
}

@media (max-width: 768px) {
    .titleCard{
        font-size: 16px;
    }

    .descriptionCard{
        font-size: 14px;
    }
}.subtitleSection {
  font-size: 36px;
  line-height: 40px;
  font-weight: bold;
  font-family: "Catamaran", sans-serif;
  width: 50%;
  color: var(--textGlobal);
  margin: 0 auto 40px;
 text-align: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .subtitleSection {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .subtitleSection {
    width: 87%;
    font-size: 28px;
  }
}
.tilteSection {
  font-family: "Catamaran", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--Disco);
  text-transform:uppercase;
  border-radius: 12px;
  padding: 10px;
  width: fit-content;
  margin: 30px auto;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .tilteSection {
  }
}

@media (max-width: 768px) {
  .tilteSection {
    font-size: 14px;
  }
}
.section-why {
  max-width: 1400px;
  margin: 70px auto;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) and (max-width: 1024px) {
}

@media (max-width: 768px) {

  .container {
    flex-direction: column;
  }
}
.health-slider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Lato', sans-serif;
  position: relative;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.card {
  background: var(--ApecLightPurple);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover,
.card.hovered {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.card.active {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.card.active.hovered {
  transform: scale(1.05);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  padding: 16px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.card-content {
  padding: 24px;
  color: var(--Purple);
}


.card-description {
  font-size: 20px;
  line-height: 24px;
  margin: 0;
 color:var(--Purple);
}

/* ✅ Negritas en description */
.card-description strong {
  font-weight: 700;
  color:var(--Purple);
}

/* Flechas de navegación (ocultas en desktop) */
.navigation-arrows {
  display: none;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var( --Primary-Blue);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover {
  background: var( --Primary-Blue);
}

/* ✅ Dot activo cambia de color al hacer click */
.dot.active {
  background: var(--Disco);
  width: 32px;
  border-radius: 6px;
}



/* ✅ Mobile: solo 1 card visible con flechas */
@media (max-width: 768px) {
  .health-slider {
    padding: 40px 20px;
    width: 98%;
  }

  .cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
  }

  /* Ocultar todas las cards excepto la activa */
  .card {
    display: none;
    transform: scale(1);
  }

  .card.active {
    display: block;
    transform: scale(1);
  }

  .card-description{
    font-size: 14px;
  }
  /* Mostrar flechas en mobile */
  .navigation-arrows {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .arrow-btn {
    background: var( --Primary-Blue);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .arrow-btn:hover {
    background: var(--Disco);
  }

  .arrow-btn:active {
    transform: scale(0.95);
  }
}.sectionRecommendations {
  max-width: 1400px;
  margin: 0px auto 100px;
}

.paragraph-section {
  font-size: 20px;
  color: var(--dark);
  margin: 0 auto;
  width: 64%;
}

.container-img {
  margin: 50px auto;
  max-width: 1029px;
  height: 646px;
  width: 95%;
  background-image: url("./banner_body.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
}
.link {
  display: contents;
}
.leyenda {
  font-size: 16px;
  font-style: italic;
  color: var(--concrete);
  width: 76%;
  margin-bottom: 40px;
}

@media (min-width: 768px) and (max-width: 1024px) {
   
}

@media (max-width: 768px) {
    .container-img {
      height: 450px;
        gap: 20px;
    }
  .paragraph-section {
    width: 85%;
    font-size: 16px;
  }

  .leyenda {
    font-size: 8px;
    width: 96%;
    margin-bottom: 20px;
    line-height: 9px;
  }
}
.section-colaboraciones {
  max-width: 1400px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
}

.section-colaboraciones-paragraph {
  font-size: 20px;
  color: var(--dark);
  margin: 0 auto;
  width: 43%;
}

.btn-clinicas {
  color: var(--Disco);
  font-weight: 600;
  text-decoration: underline;
}

.img-clinicas {
  max-width: 609px;
  height: 412px;
  width: 95%;
  object-fit: contain;
  margin: 50px auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
}

@media (max-width: 768px) {
  .section-colaboraciones-paragraph {
    font-size: 16px;
    line-height: 20px;
    width: 78%;
  }

  .img-clinicas {
  margin: 0px auto;

}
}
.dropdown {
  border: none;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dropdown-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var( --ApecLightPurple);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.icon{
    background: var(--ApecMagenta);
    border-radius: 8px;
    color: var(--concrete);
    width: 30px;
    height: 30px;
}

/* .dropdown-header:hover {
  background: #f9fafb;
}

.dropdown-header.active {
  background: #f3f4f6;
} */

.dropdown-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var( --Purple);
  text-align: left;
  width: 90%;
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background:var( --ApecLightPurple);
}

.dropdown-content.open {
  max-height: 500px; /* Ajusta según necesites */
  padding: 20px 24px;
}

.dropdown-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--Purple);
}

@media (max-width: 768px) {
  .dropdown-header {
    padding: 16px 20px;
  }

  .dropdown-header h3 {
    font-size: 16px;
  }

  .dropdown-content.open {
    padding: 16px 20px;
  }

  .dropdown-content p {
    font-size: 14px;
  }
}.faq-section{
    max-width: 1400px;
  margin: 80px auto;
}


.dropdowns-container {
    margin: 0 auto;
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 95% ;
        align-items: start;
 
}

@media (min-width: 768px) and (max-width: 1024px) {
   
}

@media (max-width: 768px) {
  .dropdowns-container {
  
    grid-template-columns: 1fr;
    gap: 20px;
  
 
}
}.section-info {
  max-width: 1400px;
  margin: 0px auto 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-section-info {
  max-width: 731px;
  width: 95%;
  object-fit: contain;
}

.section-info-paragraph {
  color: var(--dark);
  font-size: 20px;
  margin: 28px auto 0;
  width: 52%;
  line-height: normal;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .section-info-paragraph {
    width: 75%;
  }
}

@media (max-width: 768px) {
  .section-info-paragraph {
    color: var(--dark);
    font-size: 16px;
    margin: 20px auto 0;
    width: 80%;
  }
}
.footer {
  margin: 80px auto;
}

.footer .section {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  color: var(--dark);
  padding: 40px;
  border-bottom: 1px solid var(--gray);
  text-align: center;
}

.contacto{
  color: var(--dark);
  text-decoration: none;
}
.redes-sociales {
  display: flex;
  margin: 30px auto;
  align-items: center;
  justify-content: space-evenly;
  width: 30%;
}

.img-footer {
  width: 32px;
  height: 32px;
}

@media (min-width: 768px) and (max-width: 1024px) {
}

@media (max-width: 768px) {
  .footer .section {
    font-size: 16px;
  }

  .redes-sociales {
  width: 70%;
}

.img-footer {
  width: 24px;
  height: 24px;
}
}
.container-test {
  max-width: 380px;
  width: 90%;
  border-radius: 20px;
  background:  var(--ApecLight) ;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* text-align: center; */
  padding: 24px;
  gap: 24px;
  margin: 0 auto;
  height: 100%;
}

.title-tilte {
  font-size: 28px;
  line-height: 32px;
  color: var(--light);
  text-align: center;
}

.title-tilte.sintomas {
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}

.test-img {
  object-fit: contain;
  width: 22%;
}

.test-description {
  font-size: 16px;
  line-height: 20px;
  color: var(--textGlobal);
  flex-grow: 1;
}

.btn-test {
  font-size: 20px;
  line-height: 26px;
  background: var(--Btn);
  margin: 0;
  width: 95%;
  border-radius: 999px;
  color: var(--NewBlack);
  display: flex;
  text-align: center;
  align-items: center;
  /* margin: 10px auto; */
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--Btn);
  padding: 6px;
  font-weight: 600;
  margin-top: auto;
}
.circle-arrow{

}
@media (min-width: 768px) and (max-width: 1024px) {
 
}

@media (max-width: 768px) {
  .title-tilte {
   font-size: 24px;
  }

 .test-description{
    font-size: 14px;
 }

 .btn-test.sintomas{
  font-size: 14px;
 }
}
.section-sintomas{
    margin: 50px auto;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.title-text {
  color: var(--dark);
  font-size: 36px;
  line-height: 40px;
  font-family: "Catamaran", sans-serif;
  text-align: center;
}

.img-sintomas{
    object-fit: contain;
    width: 95%;
    max-width: 385px;
}

.description-sintomas{
    font-size: 24px;
    line-height: 28px;
    text-align: center;
     color: var(--dark);
     font-weight: 600;
     margin: 40px auto;
}

.container-sintomas{
display: grid; /* ✅ Esto faltaba */
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
  width: 95%;
  margin: 30px auto;
  align-items: stretch;
}


.tests-link {
  text-decoration: none;
  width: 100%;
  height: 100%; /* ✅ Importante */
  display: flex;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .container-sintomas {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container-sintomas {
    grid-template-columns: 1fr;
  }

  .description-sintomas{
    font-size: 18px;
    line-height: 20px;
    width: 73%;
    margin: 10px auto;
    
  }

}.section-tests {
  margin: 50px auto;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.title-text {
  color: var(--dark);
  font-size: 36px;
  line-height: 40px;
  font-family: "Catamaran", sans-serif;
  text-align: center;
}

.container-tests {
  display: grid; /* ✅ Esto faltaba */
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
  width: 95%;
  margin: 30px auto;
  align-items: stretch;
}

.tests-link {
  text-decoration: none;
  width: 100%;
  height: 100%; /* ✅ Importante */
  display: flex;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .container-tests {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container-tests {
    grid-template-columns: 1fr;
  }

  .title-text {
    font-size: 28px;
  }
}
/* Card de clínica */
.card-clinica {
  background: var(--Disco-Opacity20);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 560px;
  width: 100%;
}

.card-clinica:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-clinica-header {
  display: flex;
  gap: 20px;
  padding: 24px;
  align-items: center;
  position: relative;
  flex-direction: column;
  justify-content: center;
}

.card-clinica-header h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--Disco);
  margin-top: 20px;
}

.clinica-img {
  width: 368px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.clinica-info-basic {
  flex: 1;
}

.clinica-info-basic h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--Disco);
  margin: 0 0 16px 0;
}

.info-item {
  display: flex;
  margin-bottom: 12px;
  color: var(--Purple);
  font-size: 14px;
  align-items: flex-start;
  flex-direction: column;
}

.info-item h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--Purple);
}

.info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item p {
  margin: 0;
  line-height: 1.5;
}

.info-item div p {
  margin: 0;
}

.toggle-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0px;
  border-radius: 50%;
  transition: background 0.3s ease;
  color: var(--Disco);
  flex-shrink: 0;
}

.toggle-button:hover {
  background: rgba(0, 0, 0, 0.1);
}

.toggle-button:active {
  transform: scale(0.95);
}

/* Servicios desplegables */
.servicios-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;

}

.servicios-container.open {
  max-height: 500px;
  padding: 0 24px 24px;
  border: none;
}

.servicios-container h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--Purple);

}

.servicios-container ul {
  list-style: disc;
  margin: 0;
  padding-left: 20px;

}

.servicios-container li {
  color: var(--Purple);
  font-size: 14px;
  padding: 0px 0px;
  border-radius: 8px;
}

/* Badge de distancia */
.distance-badge {
  display: inline-block;
  background: #6DB3DA;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.75rem 0;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  animation: fadeInBadge 0.3s ease-out;
}

@keyframes fadeInBadge {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card destacada (las 3 más cercanas) */
.card-clinica.highlighted {
  border: 2px solid #6DB3DA;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
  position: relative;
}

.card-clinica.highlighted::before {
  content: "⭐ Recomendada";
  position: absolute;
  top: 8px;
  left: 20px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Variantes de color según distancia */
.distance-badge.very-close {
  background: linear-gradient(135deg, #10b981, #059669);
}

.distance-badge.close {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.distance-badge.moderate {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.distance-badge.far {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}

/* Responsive */
@media (max-width: 768px) {
  .card-clinica {
    width: 100%;
  }

  /* .title-clinicas {
    font-size: 28px;
  }

  .card-clinica-header {
    flex-direction: column;
    gap: 16px;
  }

  .clinica-img {
    width: 80px;
    height: 80px;
  }

  .servicios-container ul {
    grid-template-columns: 1fr;
  }

  .toggle-button {
    position: absolute;
    top: 20px;
    right: 20px;
  } */
}/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}
.section-clinicas {
  margin: 50px auto;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 95%;
}

.title-clinicas {
  color: var(--dark);
  font-size: 36px;
  line-height: 40px;
  font-family: "Catamaran", sans-serif;
  text-align: center;
  letter-spacing: 0;
}

.subtitle-clinicas {
  color: var(--dark);
  font-size: 36px;
  line-height: 40px;
  font-family: "Catamaran", sans-serif;
  text-align: center;
  letter-spacing: 0;
}

.description-clinicas {
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: var(--dark);
  font-weight: 600;
  margin: 20px auto;
}

.clinicas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
  width: 95%;
  margin: 30px auto;
  align-items: center;
  justify-content: center;
}

/*POSTALCODE*/
.cp-wrapper {
  display: inline-block;
  padding: 2px;
}

.cp-container {
  padding: 10px 12px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 6px;

}

/* La etiqueta "Ingresa tu C.P" */
.cp-label {
  font-family: sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
  margin-left: 2px;
}

.cp-field {
  width: 100%;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 16px;
  color: #4b5563;
  outline: none;
  box-sizing: border-box;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cp-field::placeholder {
  color: #9ca3af;
}


.not-found-message {
  background-color: #fefce8;
  border: 1px solid #fde047;
  color: #854d0e;
  padding: 1rem;
  margin: 1rem auto;
  border-radius: 8px;
  max-width: 600px;
  text-align: center;
  font-size: 0.95rem;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*MEDIA QUERY*/
@media (min-width: 768px) and (max-width: 1024px) {
  .clinicas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .clinicas-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .title-clinicas {
    font-size: 28px;
    line-height: normal;
  }

  .subtitle-clinicas {
    font-size: 20px;
    line-height: normal;
    color: var(--dark)
  }

  .description-clinicas {
    font-size: 18px;
    line-height: normal;
    width: 93%;
  }

}.navbar {
  display: flex;
  padding: 20px 40px;
  justify-content: flex-end;
  margin-right: 0;
  position: relative;
  width: 100%;
  margin: 10px;
}

.navbar-logo {
  height: 60px;
  width: auto;
}

/* Botón hamburguesa (visible por defecto) */
.menu-hamburguesa {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
  color: var(--Black);
  transition: color 0.3s ease;
}

.menu-hamburguesa:hover {
  color: var(--Primary-Blue);
}
.icon-x {
  color: var(--concrete);
  font-weight: bold;
}
.navbar-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 230px;
  height: auto;
  background: var(--Purple);
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 60px 30px 30px;
  list-style: none;
  margin: 0;
  transition: right 0.3s ease;
  z-index: 999;
}

/* Menú abierto */
.navbar-menu.open {
  right: 0;
  color: var(--concrete);
}

.menu-opcion {
  text-decoration: none;
  width: 100%;
}

.navbar-menu li {
  padding: 15px 0;
  font-size: 20px;
  font-weight: 200;
  color: var(--concrete);
  font-weight: 700;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.navbar-menu li:hover {
  /* color: var(--Primary-Blue); */
  /* padding-left: 10px; */
}

.navbar-menu.open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.back-button-mobile {
  display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* .navbar {
    margin: 0;
  } */
}

@media (max-width: 768px) {
  .navbar {
    width: 98%;
    padding: 20px 20px;
    margin: 0;
    display: flex;
    justify-content: space-between;
  }
  .navbar-logo {
    display: none;
  }
  .redirect {
    display: none;
  }

  .back-button-mobile {
    display: block;
    background: none;
    border: none;
  }
}
.test-container {
  max-width: 450px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.test-container.color {
  max-width: 502px;
}

/* section instrucciones */
.test-instrucciones {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--dark);
  letter-spacing: normal;
}

.instruccion-card {
  margin: 30px 0;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.instruccion-card img {
  max-width: 248px;
  margin-bottom: 20px;
}

.instruccion-card p {
  font-size: 24px;
  line-height: 30px;
  color: var(--dark);
}

/* ✅ Botón con flecha */
.btn-flecha {
  background: var(--Light-Purple);
  color: var(--concrete);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 30px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-flecha:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  background-color: var(--Disco);
}

.btn-flecha:active {
  transform: scale(0.95);
  background-color: var(--Disco);
}

/* Si es la última instrucción, mostrar texto */
.btn-flecha span {
  font-size: 16px;
  font-weight: 600;
  padding: 0 20px;
}

.btn-flecha:has(span) {
  width: auto;
  border-radius: 30px;
  padding: 15px 30px;
}

/* ✅ Dots de progreso */
.dots-progreso {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray); /* Gris claro por defecto */
  transition: all 0.3s ease;
}

/* Dot activo (instrucción actual) */
.dot.active {
  background: var(--Disco); /* Azul */
  width: 24px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Dots completados */
.dot.completado {
  background: var(--Primary-Blue); /* Morado para completados */
}/* seccion de elegir ojo */
.seleccion-ojo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.seleccion-ojo p {
  color: var(--dark);
  font-size: 24px;
  line-height: 30px;
}

.seleccion-ojo p:first-child {
  font-weight: 600;
}

.botones-ojo {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.btn-ojo {
  background: var(--Light-Purple);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  padding: 10px;
  width: 44%;
  color: var(--concrete);
  border: none;
}

.btn-ojo:hover {
  background: var(--Disco);
}/* .test-container {
  max-width: 450px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
} */

.test-container.color {
  max-width: 502px;
}

.test-container.miopia {
  max-width: 1000px;
}

.test-container.results {
  max-width: 561px;
}
.pregunta-texto.miopia {
  width: 55%;
}

.botones-ojo.miopia {
  width: 75%;
}

/* section instrucciones */
/* .test-instrucciones {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--dark);
  letter-spacing: normal;
}

.instruccion-card {
  margin: 30px 0;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.instruccion-card img {
  max-width: 248px;
  margin-bottom: 20px;
}

.instruccion-card p {
  font-size: 24px;
  line-height: 30px;
  color: var(--dark);
}

/* ✅ Botón con flecha */
.btn-flecha {
  background: var(--NewBlack);
  color: var(--concrete);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 30px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-flecha:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  background-color: var(--NewDisco);
}

.btn-flecha:active {
  transform: scale(0.95);
  background-color: var(--NewDisco);
}

/* Si es la última instrucción, mostrar texto */
.btn-flecha span {
  font-size: 16px;
  font-weight: 600;
  padding: 0 20px;
}

.btn-flecha:has(span) {
  width: auto;
  border-radius: 30px;
  padding: 15px 30px;
}

/* ✅ Dots de progreso */
.dots-progreso {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray); /* Gris claro por defecto */
  transition: all 0.3s ease;
}

/* Dot activo (instrucción actual) */
.dot.active {
  background: var(--Disco); /* Azul */
  width: 24px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Dots completados */
.dot.completado {
  background: var(--Primary-Blue); /* Morado para completados */
}
*/ .img-seleccion-ojo {
  margin: 0 auto 60px;
}

/* seccion de elegir ojo */
.seleccion-ojo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.seleccion-ojo p {
  color: var(--dark);
  font-size: 24px;
  line-height: 30px;
}

.seleccion-ojo p:first-child {
  font-weight: 600;
}

.botones-ojo {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.btn-ojo {
  background: var(--NewBlack);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  padding: 10px;
  width: 44%;
  color: var(--concrete);
  border: none;
}


.btn-ojo:hover {
  background: var(--NewDisco);
}

/* section preguntas */
.test-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--dark);
  letter-spacing: normal;
}

.test-title.miopia {
  width: 66%;
  line-height: normal;
  margin: 0 auto 30px;
}
.pregunta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.texto-pregunta-card {
  max-width: 440px;
  width: 102%;
  height: auto;
  background: var(--concrete);
  border: 2px solid var(--Secondary);
  border-radius: 12px;
  padding: 50px 11px;
  margin-bottom: 80px;
}

.container-text-pregunta {
  font-weight: 500;
  margin: 0 auto;
}

.pregunta-imagen {
  height: 70px;
  margin: 180px auto;
}

.pregunta-imagen.color {
  height: auto;
  margin: 0 auto 40px;
  width: 90%;
}

.pregunta-imagen.color img{
  object-fit: contain;
  width: 100%;
}

.pregunta-texto {
  color: var(--dark);
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  margin: 30px auto;
}

.pregunta-texto.color {
  margin: 15px auto 50px;
}

/* test 3 */

.instruccion-img {
  font-size: 24px;
  font-weight: 500;
  margin: 26px auto;
}

.imagen-pag{
  width: 90%;
  margin: 0 auto;
}

.imagen-pag img{
  object-fit: contain;
  width: 100%;
}


.btn-continuar {
  width: 95%;
  background: var(--NewBlack);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  padding: 10px;
  color: var(--concrete);
  margin: 40px auto;
  border: none;
}

.btn-continuar:hover{
  background: var(--NewDisco);
  
}
/* test 4 */
/* Contenedor de opciones checkbox */

.pregunta-texto-checkbox {
  color: var(--dark);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}
.opciones-checkbox {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  justify-content: center;
  margin-top: 0px;
}

/* Opción checkbox */
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 19px;
  background: var(--Blue-Opacity20);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 120px;
  margin-bottom: 40px;
}

/* ELIMINADO: .checkbox-option.checked - ya no cambia el fondo del div */

/* Caja del checkbox */
.checkbox-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transition: all 0.3s ease;
}

/* Solo el checkbox cambia a rojo cuando está seleccionado */
.checkbox-option.checked .checkbox-box {
  background: var(--Disco);
  border-color: var(--Disco);
}

/* Label del checkbox - mantiene el color oscuro */
.checkbox-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--Primary-Blue);
}

/* ELIMINADO: .checkbox-option.checked .checkbox-label - el texto mantiene su color */

/* Responsive */
@media (max-width: 768px) {
  .pregunta-texto-checkbox {
    font-size: 16px;
  }
  .opciones-checkbox {
    gap: 16px;
  }

  .checkbox-option {
    padding: 3px 20px;
  }

  .checkbox-box {
    width: 16px;
    height: 16px;
  }

  .checkbox-label {
    font-size: 12px;
  }
}
/* text 4 */

.leyenda-result {
  font-style: italic;
  font-size: 16px;
  font-size: 16px !important;
  font-weight: 500;
  line-height: normal !important;
  width: 68%;
  margin: 30px auto;
  color: var(--Disco) !important;
  background: var(--Disco-Opacity20);
  padding: 11px 3px;
  border-radius: 8px;
}
.opciones-imagenes {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 28px;
  align-items: center;
  justify-content: space-around;
}

.opcion-imagen {
    width: 60px !important;
    height: 60px !important;
    border-radius: 999px;
    background: var(--NewBlack);
    display: flex;
    /* padding: 17px; */
    align-items: center;
    justify-content: center;
    border: none;
}

.num-opcion {
  font-size: 36px;
  font-weight: 600;
  color: var(--concrete);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.opcion-imagen:hover {
  background: var(--NewDisco);
}

.opcion-imagen:active {
  background: var(--NewDisco);
}

/* secction result */

.container-result {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.container-result p {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
}

.contenedor-result {
  margin: 10px auto;
  width: 80%;
}

.texto-importante {
  font-style: italic;
  margin-bottom: 30px;
  font-size: 20px;
}
.container-result .consejos {
  color: var(--Primary-Blue);
  background: none;
  text-decoration: underline;
  font-size: 18px;
  font-weight: bold;
  border: none;
}

.imgResult {
  width: 180px;
  object-fit: contain;
}

.container-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  justify-content: center;
  margin: 30px auto;
}

.btn-other {
  background: var(--NewBlack);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  padding: 10px;
  color: var(--concrete);
  width: 44%;
  border: none;
}

.btn-other:hover{
  background: var(--NewDisco);
}


.change-clinicas {
  background: none;
  border: none;
  color: var(--Disco);
  font-weight: bold;
  font-size: 20px;
  text-decoration: underline;
  cursor: pointer;
  margin: 0 4px;
}
@media (max-width: 768px) {
  .test-instrucciones {
    font-size: 28px;
  }

  .instruccion-card {
    padding: 30px 20px;
  }

  .instruccion-card p {
    font-size: 18px;
  }

  .btn-flecha {
    width: 50px;
    height: 50px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 24px;
  }
}

/* 6 */
/* Contenedor de imágenes de comparación */
.imagenes-comparacion {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  width: 100%;
}

.imagen-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagen-comparacion {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

@media (min-width: 768px) and (max-width: 1024px) {
}

@media (max-width: 768px) {
  .test-instrucciones,
  .test-title {
    font-size: 28px;
    letter-spacing: normal;
    line-height: normal;
  }

  .test-title.color {
    font-size: 24px;
  }

  .instruccion-card p,
  .pregunta-texto {
    font-size: 20px;
    line-height: normal;
  }

  .opcion-imagen {
    padding: 10px;
  }

  .num-opcion {
    font-size: 24px;
  }

  .imagen-rotate-options {
    width: 20px;
    height: 20px;
  }

  .seleccion-ojo p,
  .change-clinicas,
  .container-result p,
  .container-result .consejos {
    font-size: 18px;
    line-height: normal;
  }

  .instruccion-img {
    font-size: 20px;
  }

  .leyenda-result {
    width: 75%;
    font-size: 14px !important;
    padding: 5px 3px;
  }

  .contenedor-result {
    width: 90%;
  }
  .texto-importante {
    font-size: 14px;
  }
  .test-title.miopia {
    width: 90%;
  }
  .imagenes-comparacion {
    flex-direction: column;
    gap: 15px;
  }

  .imagen-comparacion {
    max-width: 95%;
  }

  .pregunta-texto.miopia {
    width: 95%;
    font-size: 16px;
  }

  .botones-ojo.miopia {
    width: 100%;
  }
}
