/** Shopify CDN: Minification failed

Line 45:15 Expected ":"
Line 73:15 Expected ":"

**/
.customer-rank-lookup {
  padding: 2rem 0;
}

.crl-container {
  max-width: 1440px;
  margin: 0 auto;
}

.crl-title {
    font-size: 2.4rem;
    margin: 2rem 0 .75rem;
    text-align: center;
    color: #fff;
    background: #545054;
    padding: 8px 0;
    border-radius: 5px;
}
#crl-ecom-body tr td{
    text-align: center;
}
.crl-form {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  margin-bottom: 1rem;
  align-content: stretch;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.crl-subblock {
    width: 50%;
}
.crl-field label {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  margin-bottom 1rem;
  font-weight: 500;
}


.crl-field input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
}

/* Oculta el estado cuando no tiene contenido */
.crl-status:empty {
  display: none;
}

/* (opcional) estilos cuando sí hay mensaje */
.crl-status:not(:empty) {
  display: block;     /* garantiza que aparezca */
  margin-top: 12px;
  font-size: 14px;
}

.crl-doc label {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  margin-bottom 1rem;
}

.crl-btn {
    height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    border: 2px solid #00606d;
    background: #00606d;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s, background-color .2s, border-color .2s;
}

.crl-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.crl-status {
  margin: 0.5rem 0 1rem;
  font-size: 0.95rem;
}

.crl-summary {
  display: none;
  /* background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem; */
}

.crl-blocks {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.crl-subblock h3 {
  margin: 0.25rem 0 0.5rem;
}

.crl-table-wrap {
  overflow-x: auto;
}

.crl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.35;
  background: #fff;
  border: 1px solid #e7ecef;
  border-radius: 8px;
}

.crl-table thead th {
  background: var(--c-primary, #0ea5b4); /* color de la segunda imagen */
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 12px 14px;
  border-right: 1px solid rgba(255,255,255,.25);
}

.crl-table thead th:last-child { border-right: 0; }

/* Celdas */
.crl-table tbody td {
  padding: 12px 14px;
  border-top: 1px solid #e7ecef;
  color: #333;
}

/* Zebra (opcional) */
.crl-table tbody tr:nth-child(even):not(.highlight) td {
  background: #fbfdfe;
}


/* 🔹 Fila del usuario buscado */
.crl-table tbody tr.highlight td {
  background: #11b7c5 !important;    /* azul destacado */
  color: #fff !important;
  font-weight: 700;
}

/* Número de posición con forma tipo "#4" si quieres */
.crl-table tbody td:first-child::before {
  /* descomenta si te gusta el formato con # 
  content: '#';
  margin-right: 2px;
  color: inherit;
  */
}

/* Alineación: cantidades a la derecha */
.crl-table tbody td:last-child,
.crl-table thead th:last-child { text-align: right; }

.crl-table th,
.crl-table td {
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.crl-table tbody tr.highlight {
  background: #fffbe6;
  font-weight: 600;
}

.crl-banner { 
  display: block;
  width: 100vw;       /* viewport completo */
  margin-left: calc(50% - 50vw); /* saca el banner de los márgenes del contenedor */
  margin-right: calc(50% - 50vw);
  line-height: 0;
  margin-bottom: 30px;
}
.crl-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
.crl-banner-link {
  text-decoration: none;
  display: block;
}

.customer-rank-lookup {
  margin-top: 0 !important; /* elimina espacio superior */
  padding-top: 0 !important;
}

.ctaWrap {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.ctaButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  border: 2px solid #00606d;
  background: #00606d;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s, background-color .2s, border-color .2s;
}

.ctaButton:hover {
  background: #fff;
  color: #545054;
}

/* Ocultar la barra de scroll, pero mantener el scroll funcional */
.mp-snapList {
  scrollbar-width: none;           /* Firefox */
}
.mp-snapList::-webkit-scrollbar {  /* WebKit */
  display: none;
}

/* Mejora flechas: estado disabled + posicionamiento */
.mp-pcArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 36px; width: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  z-index: 2;
}
.mp-pcPrev { left: -8px; }
.mp-pcNext { right: -8px; }

.mp-pcArrow.is-disabled,
.mp-pcArrow:disabled {
  opacity: .4;
  pointer-events: none;
}

#shopify-section-template--17511982760032__main{
  display:none;
}
.mp-productsTitle{
  text-align: center;
    font-size: 2.4rem;
    color: #00606d;
    margin: 30px 0 16px;
}

.crl-tittle-ecom,
.crl-tittle-tiendas {
    font-size: 1.85rem;
    color: #fff;
    background: #545054;
    border-radius: 4px;
    padding: 2px 0 0 10px;
}

#crl-lastname, #crl-doc {
  width: 100%;
  height: 40px;
  padding: 0 14px 0;
  font-size: 16px;
  color: #4e4a4c;
  background: #fff;
  border: 2px solid #a8cfd9;
  border-radius: 12px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

/* Efecto al enfocar */
#crl-lastname:focus,
#crl-doc:focus {
  border-color: var(--c-primary, #0ea5b4);
  box-shadow: 0 0 0 3px rgba(14, 165, 180, 0.2);
}

/* Placeholder */
#crl-lastname::placeholder,
#crl-doc::placeholder {
  color: #a9a9a9;
  font-size:13px;
}

.crl-status {
      margin: 12px auto;
    padding: 14px 16px;
    color:  #545054;
    font-weight: 600;
    text-align: center;
    background: rgba(168, 207, 217, .12);
    border: 1px solid rgba(168, 207, 217, .55);
    border-radius: 12px;
    font-size: 14px;
}

.crl-result:empty {
  display: none;
}

.crl-result {
  margin-top: 3rem;
}

/* Asegura que el contenedor recorte el overflow (para que las flechas floten encima) */
.mp-productsCarousel {
  position: relative;
  overflow: hidden;
  padding-inline:16px;
}

.mp-productsCarousel .mp-snapList {
  overflow-x: auto;
  display: grid;
  grid-auto-flow: column;
  gap: 16px;                           /* tu gap entre cards */
  padding-inline: 0 !important;        /* clave: sin padding en el track */
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0 !important;   /* que el snap arranque en 0 */
}

.mp-productsCarousel .mp-card {
  scroll-snap-align: start;
}

/* 🔹 Botón estilo "Ver producto" en cards del carrusel */
.mp-productCTA {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  margin-top: 8px;
  border-radius: 12px;
  border: 2px solid #00606d;
  background: #00606d;
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s, background-color .2s, border-color .2s;
}


/* Carrusel con snap (por si no lo tenías ya) */
.mp-snapList {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1px;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 10px; /* un poco de respiro inferior */
}
.mp-card { scroll-snap-align: start; }

#crl-ecom-total,
#crl-store-total
{
  display:none;
}

@media (min-width: 992px) {
  .mp-snapList { scroll-snap-type: x proximity; }
  /* Durante la animación, quita el snap para que no “tire” */
  .mp-snapList.is-animating { scroll-snap-type: none; }
}

@media (max-width: 720px) {
  .crl-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
    align-content: flex-end;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
}

  .crl-blocks {
    display: grid;              /* en vez de flex row */
    grid-template-columns: 1fr; /* una columna */
    gap: 14px;
  }
  .crl-subblock {
    width: 100%;                /* full width cada tabla */
  }

  .crl-table-wrap {
    overflow: visible;          /* sin scroll horizontal del wrapper */
  }

  .crl-table {
    width: 100%;
    table-layout: fixed;        /* celdas ajustan contenido */
  }

  .crl-table thead th,
  .crl-table tbody td {
    padding: 10px 8px;
    word-break: break-word;     /* evita desbordes por palabras largas */
  }
}


  .mp-faqSection { padding: 1rem 0 2rem; }
  .mp-faqTitle {
    text-align: center;
    font-size: 2.4rem;
    margin: 30px 0 20px;
    color: #00606d;
  }

  .mp-faqGrid {
    display: grid;
    gap: 14px;
  }
  @media (min-width: 992px) {
    .mp-faqGrid.cols-2 { grid-template-columns: 1fr 1fr; gap: 16px 18px; }
  }

  /* Item */
  .mp-faqItem {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;
    background: #fff;
    padding: .25rem .75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: border-color .2s, box-shadow .2s, background-color .2s;
    overflow: hidden;
  }
  .mp-faqItem[open] {
    border-color: rgba(0,0,0,.12);
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
  }

  /* Summary / pregunta */
  .mp-faqQuestion {
    list-style: none;              /* quita el triángulo nativo */
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr auto; /* texto + icono */
    align-items: center;
    gap: .5rem;
    padding: .8rem .5rem;
    border-radius: 10px;
    font-weight: 700;
    position: relative;
  }
  /* Icono + / − con CSS puro */
  .mp-faqQuestion::after {
    content: '+';
    display: inline-grid;
    place-items: center;
    width: 28px; height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,.12);
    font-weight: 700;
    line-height: 1;
  }
  details[open] > .mp-faqQuestion::after { content: '−'; }

  /* Quita focus feo del summary y agrega uno accesible */
  .mp-faqQuestion::-webkit-details-marker { display: none; }
  .mp-faqQuestion:focus { outline: none; }
  .mp-faqQuestion:focus-visible {
    outline: 2px solid var(--c-primary, #0ea5b4);
    outline-offset: 2px;
    border-radius: 8px;
  }

  /* Respuesta */
  .mp-faqAnswer {
    color: #333;
    padding: 0 0 .9rem .5rem;
    margin-top: -.25rem;
    animation: mp-fade .22s ease-out;
  }
  .mp-faqAnswer p { margin: .4rem 0; }
  .mp-faqAnswer ul { margin: .4rem 0 .2rem 1.1rem; }
  .mp-faqAnswer a { color: var(--c-primary, #0ea5b4); text-decoration: underline; }

  @keyframes mp-fade { from { opacity: .6 } to { opacity: 1 } }

  /* Asegura que todas las cards midan lo mismo en la fila */
.mp-productsCarousel .mp-snapList { align-items: stretch; }

/* Estructura de card en columna */
.mp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Si tienes un contenedor de texto en la card, usa esa clase; si no, aplica al bloque que agrupa título/precio/link */
.mp-card .mp-content,
.mp-card .product-meta,
.mp-card .product-info,
.mp-card .text-zone {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;              /* ocupa el alto disponible */
}

/* El botón (enlace) baja al fondo del card */
.mp-card .product-link,
.mp-card a[href*="products"] {
  margin-top: auto;     /* empuja hacia abajo */
  align-self: flex-start; /* opcional: que no estire a todo el ancho */
}

/* (Opcional) si quieres que ocupe TODO el ancho del card */
.mp-card .product-link.wide { align-self: stretch; }
