.elementor-5791 .elementor-element.elementor-element-f99d1f6{--display:flex;--border-radius:10px 10px 10px 10px;--padding-top:3em;--padding-bottom:3em;--padding-left:2em;--padding-right:2em;}.elementor-5791 .elementor-element.elementor-element-c4540ca .elementor-heading-title{font-family:"Josefin Sans Variable", Sans-serif;color:var( --e-global-color-primary );}.elementor-5791 .elementor-element.elementor-element-8fb537f{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 10px) 0px;}#elementor-popup-modal-5791{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-5791 .dialog-message{width:900px;height:auto;}#elementor-popup-modal-5791 .dialog-close-button{display:flex;font-size:24px;}#elementor-popup-modal-5791 .dialog-widget-content{border-radius:10px 10px 10px 10px;box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}@media(max-width:1024px){.elementor-5791 .elementor-element.elementor-element-f99d1f6{--padding-top:2em;--padding-bottom:1em;--padding-left:2em;--padding-right:2em;}#elementor-popup-modal-5791 .dialog-message{width:90vw;}}@media(max-width:767px){.elementor-5791 .elementor-element.elementor-element-f99d1f6{--padding-top:2em;--padding-bottom:1em;--padding-left:1em;--padding-right:1em;}.elementor-5791 .elementor-element.elementor-element-c4540ca .elementor-heading-title{font-size:22px;}#elementor-popup-modal-5791 .dialog-message{width:85vw;}#elementor-popup-modal-5791{justify-content:center;}}/* Start custom CSS for shortcode, class: .elementor-element-8fb537f *//* Tabla ajustes tarifa */
.gdn-ajustes-tarifa__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #BBBBBB;
  border-radius: 10px;
  overflow: hidden;
}

/* Encabezado */
.gdn-ajustes-tarifa__table thead th{
  background: #1D252B;
  color: #009AA8;
  font-size: 16px;
  font-weight: 700;
  padding: 8px;
  text-align: left;
  border-right: 1px solid #BBBBBB;
}

.gdn-ajustes-tarifa__table thead th:last-child{
  border-right: 0;
}

/* Celdas */
.gdn-ajustes-tarifa__table td{
  padding: 15px;
  font-size: 15px;
  font-weight: 400;
  color: #151B1F;
  border-top: 1px solid #BBBBBB;
  border-right: 1px solid #BBBBBB;
  vertical-align: top;
}

.gdn-ajustes-tarifa__table td:last-child{
  border-right: 0;
}

/* Filas alternas */
.gdn-ajustes-tarifa__table tbody tr:nth-child(odd) td{
  background: #EAEAEA;
}

.gdn-ajustes-tarifa__table tbody tr:nth-child(even) td{
  background: #FFFFFF;
}

/*Notas*/
.gdn-ajustes-tarifa__notes{
  margin-top: 12px;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  color: #1D252B;
  line-height: 1.45;
}

.gdn-ajustes-tarifa__notes p{
  margin: 0 0 6px 0;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.gdn-ajustes-tarifa__notes p:last-child{
  margin-bottom: 0;
}

.gdn-ajustes-tarifa__notes-bullet{
  flex: 0 0 auto;
  font-style: normal; /* el asterisco mejor “normal” aunque el texto sea italic */
  font-weight: 700;   /* refuerza visualmente el * */
  line-height: 1;
  margin-top: 1px;    /* ajuste fino vertical */
}
/*Aqui ocultar tooltip*/
.gdn-ajustes-tarifa__tt{
    display:none;
}
/* Ocultar columna 3 completa */
.gdn-ajustes-tarifa__table th:nth-child(3),
.gdn-ajustes-tarifa__table td:nth-child(3){
  display: none;
}

@media (max-width: 767px){

  /* El contenedor del shortcode será el viewport del carrusel */
  .gdn-ajustes-tarifa{
    overflow: hidden; /* recorta lo que sobresalga */
  }

  /* El “track” swipeable */
  .gdn-ajustes-tarifa .gdn-ajustes-tarifa__table{
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 0 8px 0;
    margin: 0;

    /* aire solo al final para que no se corte la última */
    scroll-padding-right: 12px;
    scroll-padding-left: 0;
  }

  /* quitamos el marco general */
  .gdn-ajustes-tarifa__table{
    border: 0;
    border-radius: 0;
  }

  .gdn-ajustes-tarifa__table thead{
    display:none;
  }

  /* Convertimos TBODY en fila horizontal */
  .gdn-ajustes-tarifa .gdn-ajustes-tarifa__table tbody{
    display: flex;
    gap: 12px;

    /* ✅ 1) sin padding a la izquierda = primera card sin “margin left” */
    padding: 0 12px 0 0; /* top right bottom left */
    margin: 0;
  }

  /* Cada fila como tarjeta */
  .gdn-ajustes-tarifa .gdn-ajustes-tarifa__table tbody tr{
    flex: 0 0 88%;
    scroll-snap-align: start;
    margin: 0;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    box-sizing: border-box;
  }

  /* Celdas verticales, sin bordes internos */
  .gdn-ajustes-tarifa .gdn-ajustes-tarifa__table tbody td{
    display:block;
    padding: 8px 0;              /* un pelín más de aire */
    border: 0 !important;
    background: transparent !important;
  }

  /* Labels: mantener estilos, pero texto desde data-label (traducible) */
    .gdn-ajustes-tarifa__table tbody td::before{
      content: attr(data-label);
      display:block;
      font-size: 15px;
      margin-bottom: 2px;
      color: #009AA8;
      font-weight: 700;
    }


  /* ✅ 2) Separador también en el 2º bloque (y mantenemos el 3º) */
  .gdn-ajustes-tarifa__table tbody td:nth-child(2),
  .gdn-ajustes-tarifa__table tbody td:nth-child(3){
    padding-top: 10px;
    margin-top: 8px;
    border-top: 1px solid #eef0f2 !important;
  }
  .gdn-ajustes-tarifa__table tbody td:nth-child(1),
  .gdn-ajustes-tarifa__table tbody td:nth-child(2),
  .gdn-ajustes-tarifa__table tbody td:nth-child(3){
    font-weight: 600;
  }
  /* Notas un pelín más compactas */
  .gdn-ajustes-tarifa__notes{ font-size: 12px; font-weight: 400; }
  /* Ocultar 3ª columna también en modo "cards" (gana a display:block) */
  .gdn-ajustes-tarifa .gdn-ajustes-tarifa__table th:nth-child(3),
  .gdn-ajustes-tarifa .gdn-ajustes-tarifa__table td:nth-child(3){
    display: none !important;
  }
  
}/* End custom CSS */