@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;600;800&amp;family=Roboto:wght@100;400;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;600;800&amp;family=Roboto:wght@100;400;900&amp;display=swap');


:root{
  --accent: #0b9c95;
  --accent-2: #5cecdc;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --card: #ffffff;
  --bg: #f8fafc;
}

* {
    -webkit-tap-highlight-color: transparent; /* Prefijo WebKit (iOS/Safari) */
    /* tap-highlight-color: transparent; <-- El validador no lo reconoce, pero es el estándar futuro. */
}

/* Para corregir la advertencia de 'vendorPrefix' en user-select, 
   debemos añadir las versiones prefijadas y la estándar: */

/* ESTADO INICIAL LIMPIO */
#datos_pedido { 
  visibility: hidden; 
  display: none; 
}
#personalizador { 
  visibility: visible; 
  display: block;
}

/* Mantener aceleración y estilos de fondo */
#datos_pedido { 
  will-change: transform; 
  transform: translateZ(0);
  -webkit-transform: translateZ(0); 
  
  /* background:#fff;       */
  min-height:100vh;    
}



#colores_texto_arquero,
#colores_texto_arquero *[id^="color_text_arq_"] {
  visibility: visible !important;
}

/* .color_text_arq_14 {
  visibility: visible !important;
}
.color_text_arq_4 {
  visibility: visible !important;
} */

button {
  background: none;
  border: none;
  cursor: pointer;
}

.content-form {
  display: flex;
}

.content-form div {
  margin-right: 10px;
}

.form-floating>label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity .1s ease-in-out, transform .1s ease-in-out;
}

.form-floating>.form-control {
  padding: 1rem 0.75rem;
}

.form-floating>.form-control,
.form-floating>.form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}

.form-control {
  display: block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  width: -moz-available;
  /* WebKit-based browsers will ignore this. */
  width: -webkit-fill-available;
  /* Mozilla-based browsers will ignore this. */
  width: fill-available;
}

.form-control:focus,
input[type]:focus {
  border-color: black;
  box-shadow: 0 1px 1px rgba(229, 103, 23, 0.075)inset, 0 0 8px black;
  outline: 0 none;
}




.form-select {
  display: block;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  /* -webkit-appearance: none; */
  /* -moz-appearance: none; */
  /* appearance: none; */
  width: -moz-available;
  /* WebKit-based browsers will ignore this. */
  width: -webkit-fill-available;
  /* Mozilla-based browsers will ignore this. */
  width: fill-available;
  -webkit-appearance: menulist-button;
  -moz-appearance: menulist-button;
  appearance: menulist-button;
}

.form-select:focus,
input[type]:focus {
  border-color: black;
  box-shadow: 0 1px 1px rgba(229, 103, 23, 0.075)inset, 0 0 8px rgba(24, 17, 9, 0.6);
  outline: 0 none;
}

/* --------- FORMULARIO 2DA PARTE ----------- */
/* Título del paso */
.datos-pedido-pasos{
  width: min(920px, 92%);
  margin: 48px auto 14px;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--ink);
  font-size: clamp(1rem, 2.1vw, 1.35rem);
}

/* Badge delante del texto (opcional: si te molesta, borrá este bloque) */
.datos-pedido-pasos span{
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #052e2b;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}

/* Card del formulario */
.datos-pedido-form{
  position: relative;
  width: min(920px, 92%);
  margin: 0 auto 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(2,6,23,.07), 0 2px 8px rgba(2,6,23,.05);

  /* layout */
  display: grid;
  gap: 16px;
}

/* barra sutil superior en degradé */
.datos-pedido-form::after{
  content: "";
  position: absolute;
  left: 16px; right: 16px; top: -2px;
  height: 4px; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

@media (min-width: 768px){
  .datos-pedido-form{ grid-template-columns: 1fr 1fr; padding: 26px; gap: 18px; }
}

/* Labels + Inputs */
.datos-pedido-form label{
  display: block;
  font-size: .9rem;
  color: black;
  margin: 10px 0 6px;
  font-weight: 600;
}

.datos-pedido-form .form-control{
  width: 100%;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: none;
  transition: border-color .2s, box-shadow .2s, transform .06s;
}

.datos-pedido-form .form-control:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(11,156,149,.15);
  outline: none;
}

.datos-pedido-form .mb-3{ margin-bottom: 12px !important; }
.datos-pedido-form textarea.form-control{ min-height: 120px; resize: vertical; }

/* Fieldsets como cards */
.dp-fieldset{
  width: min(920px, 92%);
  margin: 12px auto;
  background: var(--card);
  border: 1px dashed var(--line) !important;
  border-radius: 14px;
  padding: 14px 16px !important;
  box-shadow: 0 10px 28px rgba(2,6,23,.07), 0 2px 8px rgba(2,6,23,.05);
  position: relative;
}

/* barra/acento superior sutil */
.dp-fieldset::after{
  content:"";
  position:absolute; left:16px; right:16px; top:-25px; height:4px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* Leyenda más pro */
.dp-fieldset legend,
.legend-title{
  font-weight: 800; color: var(--ink);
  padding: 0 .5rem; letter-spacing:.2px;
  font-size: .95rem;
  padding-bottom: 2rem;
}

/* Oculto por defecto (lo mostrás con tu JS) */
.is-hidden{ display:none; }

/* Contenedor de acciones (botonera) */
.datos-pedido-acciones{
  width: min(920px, 92%);
  margin: 16px auto 6px;
  display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: center;
}

/* Estilo solo a los botones dentro de esta sección para no romper otras pantallas */
.datos-pedido-acciones .btn-iniciado{
  appearance: none;
  border: 1px solid var(--line);
  background: #0f172a;  /* secundario oscuro */
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform .06s ease, box-shadow .2s ease, border-color .2s ease, opacity .2s;
  box-shadow: 0 8px 20px rgba(2,6,23,.18);
  cursor: pointer;
}
.datos-pedido-acciones .btn-iniciado:hover{
  border-color: var(--accent);
  box-shadow: 0 12px 24px rgba(11,156,149,.18);
}
.datos-pedido-acciones .btn-iniciado:active{
  transform: translateY(1px);
}

/* Variante “ghost” clara opcional (si querés diferenciar uno de los 3) */
.datos-pedido-acciones .btn-iniciado.btn-ghost{
  background: #fff; color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 8px 18px rgba(2,6,23,.08);
}
.datos-pedido-acciones .btn-iniciado.btn-ghost:hover{
  border-color: var(--accent);
}

/* Responsive pequeño ajuste */
@media (max-width: 540px){
  .datos-pedido-acciones{ gap: 8px; }
}

/* Card contenedora */
.dp-price-wrap{
  width: min(920px, 92%);
  margin: 40px auto 12px;
  background: var(--card);
  border: 1px solid var(--line);
  /* border-radius: 16px; */
  box-shadow: 0 10px 28px rgba(2,6,23,.07), 0 2px 8px rgba(2,6,23,.05);
  overflow: hidden;                 /* para que el radio recorte bien */
}

/* Tabla base */
.dp-table{
  width: 100%;
  border-collapse: collapse;        /* soluciona “cortes” de fondo */
  table-layout: auto;
  margin: 0;
  background: transparent;
}

/* Header FULL-bleed: overlay cubre todo el thead */
.dp-table thead{
  position: relative;
  z-index: 0;
}
.dp-table thead::before{
  content:"";
  position:absolute;
  inset:0;
  background:#0f172a;               /* sólido; si querés gradiente, reemplazá por linear-gradient(...) */
  z-index: 0;
}
.dp-table thead tr{ position: relative; z-index: 1; }
.dp-table thead th,
.dp-table thead td{
  color:#fff;
  font-weight:800;
  text-transform: uppercase;
  letter-spacing:.03em;
  font-size:.8rem;
  padding:14px 16px;
  border:0 !important;              /* pisa cualquier borde bootstrap */
  background: transparent !important;
}

/* Cuerpo */
.dp-table tbody td{
  padding:14px 16px;
  border-top:1px solid var(--line);
  background:#fff;                  /* asegura fondo parejo */
  vertical-align: middle;
}
.dp-table tbody tr:nth-child(even) td{
  background:#fbfdff;               /* zebra suave */
}
.dp-table tbody tr:hover td{
  background:#f3faf9;               /* hover leve */
}

/* Total */
.dp-table tfoot td{
  padding:14px 16px;
  border-top:2px solid var(--line);
  background:#f9fbfb;
}
.dp-total-row td:first-child{
  color: var(--ink);
}
.dp-total-row td:nth-child(2){
  font-weight:800;
}

/* Precio destacado */
.dp-price{
  font-weight:800;
  font-size:1.06rem;
  color:#111;
  font-variant-numeric: tabular-nums;
}

/* Notas debajo */
.dp-notes{
  width: min(920px, 92%);
  margin: 8px auto 40px;
  text-align:center;
}
.dp-notes p{ margin:6px 0; }

/* Helpers */
.ta-right{ text-align:right; }

/* Responsive: compacidad en móviles y scroll horizontal si hace falta */
@media (max-width: 560px){
  .dp-table thead th,
  .dp-table thead td{ font-size:.72rem; padding:10px 12px; }
  .dp-table tbody td{ padding:10px 12px; }
}
.dp-price-wrap{ overflow-x:auto; }


/* TABLA DE PRECIOS */


 /* style="width: 90%; border: 1px solid #ccc; padding: 10px; margin: 10px auto; margin-top: 50px;" */



.btn-xxl {
  font-size: 23px;
}

.btn-trash {
  color: #ccc;
}

.btn-trash:hover {
  color: #ff5b1e;
}


/* switch */
.switch {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 31px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(149, 59, 59);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 2px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: green;
}

input:focus+.slider {
  /* box-shadow: 0 0 1px #2196F3; */
  border-color: rgb(255, 144, 0);
  box-shadow: 0 1px 1px rgba(229, 103, 23, 0.075)inset, 0 0 8px rgba(255, 144, 0, 0.6);
  outline: 0 none;
}

input:checked+.slider:before {
  -webkit-transform: translateX(40px);
  -ms-transform: translateX(40px);
  transform: translateX(40px);
}



/* Rounded sliders */
.slider.round {
  border-radius: 15px;
}

.slider.round:before {
  border-radius: 50%;
}

.add_images {
  display: flex;
  width: 90%;
  justify-content: space-between;
  margin: 20px auto;
}

.add_images_box {
  width: 45%;
}

/* MOBILE VIEW */
@media (max-width: 767px) {

  .content-form {
    display: block;
    border-bottom: 1px solid #ccc;
    padding: 15px;
  }

  .content-form div {
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .legend-title {
    width: 35%
  }

  .add_images {
    display: block;
  }

  .add_images_box {
    width: 100%;
    border: 1px solid rgb(204, 204, 204);
    padding: 20px;
    margin-top: 30px;
  }

  .title-mobile {
    font-size: 20px !important;
  }

}

.banner-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  height: 300px;
  /* Ajusta esta altura según lo que desees */
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Hace que la imagen se ajuste al contenedor, cortando si es necesario */
  display: block;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  /* Fondo semitransparente para mejorar la legibilidad */
}

@media (max-width: 768px) {
  .banner-container {
    height: 200px;
    /* Altura reducida para dispositivos móviles */
  }

  .banner-text {
    font-size: 18px;
  }
}



/* 
    ::: GUIA CSS :::
    
    1) UTILITIES
    TABS 

    
    
    
    
    
    */


/* UTILITIES */
.ocultar {
  display: none !important;
}

.viewMobile {
  display: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

.btn-active {
  color: white;
  font-weight: bold;
  background-color: #198754;
}

.header-top-tit {
  background: rgb(51, 50, 50);
  color: #2ab474;
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 600;
  padding: 12px;
  text-align: center;
}

.footer-top-tit {
  background: rgb(51, 50, 50);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: bold;
  padding: 8px 30px 8px 8px;
  text-align: right;
}

.footer-top-tit:hover {
  text-decoration: underline;
}

.container-disenador {
  display: flex;
}

.container-btn-products {
  display: grid;
  background: rgb(36, 37, 38);
  width: 9%;
}

.container-btn-products button {
  margin: 0px auto;
}

.container-main {
  display: flex;
  height: 100%;
}

.container-products {
  display: flex;
  width: 70%;
  justify-content: center;
  position: relative;
}

.container-btn-camisetas {
  display: none;
  width: 100%;
}

.container-grilla {
  margin: 20px;
}

.container-grilla div {
  margin: 0px;
}

.container-tabs {
  width: 30%;
  background: #fff;
  position: relative;
}











.btn-pruducts {
  padding: 10px;
  text-align: center;
  width: 120px;
  background: none;
  border-bottom: 1px solid #ffffff50 !important;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #ffffff;
  opacity: 0.9;
}

.btn-pruducts p {
  font-weight: 400 !important;
  font-size: 10px !important;
}

.btn-pruducts:hover {
  opacity: 1;
}

.btn-pruducts:last-child {
  border-bottom: none !important;
}


.header-tit-products {
  padding: 10px;
  text-align: center;
  background: rgb(36, 37, 38);
  color: #FFF;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  width: initial;
  min-height: 20px;
}

.container-img-product {
  width: 50%;
}

.container-img-product:first-child {
  border-right: 1px solid #f0f0f0;
}



/* TABS */
.btn-tab {
  color: #fff;
  padding: 10px;
  text-align: center;
  background: none;
  border-right: 1px solid #b5b7b8;
}

.btn-tab:last-child {
  border-right: none;
}

.btn-tab:hover {
  color: #2ab474;
}

.btn-tab-active {
  color: #2ab474;
}

.grilla-modelo {
  display: flex;
  justify-content: center;
}

.grilla-modelo button {
  margin: 20px 0px 20px 11px;
  padding: auto 15px;
}

.paginado {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 15px auto;
}

.btn-paginado {
  background: #b5b7b8;
  color: #666;
  border-radius: 3px;
  padding: 3px 5px;
  font-weight: 600;
  margin-right: 8px;
}

.btn-paginado:hover {
  background: #2ab474;
  color: #ffffff;
}

.btn-paginado-active {
  background: #2ab474;
  color: #ffffff;
  border-radius: 3px;
  padding: 3px 5px;
  font-weight: 800;
  margin-right: 8px;
}

.footer-products {
  background: #d7411c;
  padding: 10px 0px;
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #ffffff;
}


.desktop {
  display: flex;
}

@media (max-width: 1000px) {
  .img-responsive {
    width: 100%;
    height: auto;
  }
}


/* MOBILE VIEW */
@media (max-width: 767px) {
  .desktop {
    display: none;
  }

  .container-disenador {
    display: block;
  }

  .container-main {
    display: block;
  }

  .container-btn-products {
    display: flex;
    width: 100%;
  }

  .container-products {
    display: block;
    width: 100%;
  }

  .container-img-product {
    width: 100%;
  }

  .container-btn-camisetas {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
    margin-top: 30px;
  }

  .link-remeras {
    color: #1d262c !important;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
  }

  /* .ocultarMobile{
            display: none;
        } */
  .viewMobile {
    display: block
  }

  .btn-pruducts {
    padding: 10px;
    text-align: center;
    width: 72px;
    border-right: 1px solid #ffffff50 !important;
  }

  .btn-pruducts:last-child {
    border-bottom: 1px solid #ffffff50 !important;
  }

  .btn-pruducts p {
    /* display: none; */
  }

  .container-tabs {
    width: 100%;
  }

  .container-img-product:first-child {
    border-right: none;
  }




  /* ::::: CARROUSEL MODELOS ::::: */
  #carrusel {
    display: block;
    float: left;
    width: 100%;
    overflow: hidden;
    height: 95px;
    position: relative;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  #carrusel .left-arrow {
    position: absolute;
    left: 3px;
    z-index: 1;
    top: 50%;
    margin-top: -9px;
  }

  #carrusel .right-arrow {
    position: absolute;
    right: 3px;
    z-index: 1;
    top: 50%;
    margin-top: -9px;
  }

  .carrusel {
    width: 4000px;
    left: 0px;
    position: absolute;
    z-index: 0;
  }

  .carrusel>div {
    float: left;
    height: 95px;
    margin-right: -5px;
    width: 122px;
    text-align: center;
  }

  .carrusel img {
    cursor: pointer;
  }

  .image-responsive {
    width: 100%;
    height: auto;
  }

  .header-top-tit {
    font-size: 14px;
    font-weight: 800;
  }

  .btn-mobile {
    padding: 10px !important;
    font-weight: 800 !important;
  }
}

/* end mobile VIEW */

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

#listado_conjuntos {
  border: 1px solid lightblue;
  padding-left: 10px;
  padding-right: 5px;
}

#listado_camisetas {
  border: 1px solid lightgreen;
  padding-left: 10px;
  padding-right: 5px;
}

#listado_shorts {
  border: 1px solid lightgrey;
  padding-left: 10px;
  padding-right: 5px;
}

legend {
  float: none;
  padding: inherit;
  width: 10%;
  margin-left: 2%;
}

.btn-iniciado {
  color: white !important;
  background-color: #198754 !important;
  border-color: #198754 !important;
}

.btn-iniciado:hover {
  color: #198754 !important;
  background-color: transparent !important;
  border: 1px solid #198754 !important;
}

.btn-volver {
  color: white !important;
  background-color: black !important;
  border: 1px solid black !important;
}

.btn-volver:hover {
  color: black !important;
  background-color: transparent !important;
  border: 1px solid black !important;
  cursor: pointer;
}

.btn-ver-talles {
  color: #fff !important;
  /* background-color: #fff !important; */
  border-color: #fff !important;
}

.btn-ver-talles:hover {
  color: #fff !important;
  background-color: #438959 !important;
  border-color: #fff !important;
  cursor: pointer;
}

#content_center {
  border: 1px solid #aaa;
  border-radius: 12px;
  padding: 5px;
}

.switch_text {
  font-family: 'Montserrat';
  font-size: 15px;
  font-weight: bold;
  opacity: 0.5;
}

.img_numero {
  width: 100% !important;
  max-width: 100% !important;
}

/* #btn-capturar {
  width: 20px;
} */
.btn-final-container {
  display: flex;
  margin-left: 5rem;
  gap: 20px;
}

.btn-capturar {
  color: white;
  font-family: 'Montserrat';
  font-size: 12px;
  font-weight: 600;
  background-color: #198754;
  border: 1px solid #198754;
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 31px !important;
}

.btn-capturar:hover {
  color: #198754 !important;
  background-color: transparent !important;
  border: 1px solid #198754 !important;
}


@media (max-width: 767px) {
  .img_base {
    z-index: 1;
    position: absolute;
    width: 100%;
  }

  .img_principal {
    z-index: 2;
    position: absolute;
    width: 100%;
  }

  .img_logo {
    z-index: 9999;
    position: absolute;
    width: 100%;
  }

  .img_secundaria {
    z-index: 3;
    position: absolute;
    width: 100%;
  }

}

.img_base {
  z-index: 1;
  position: absolute;
}

.img_principal {
  z-index: 2;
  position: absolute;
}

.img_logo {
  z-index: 9999;
  position: absolute;
}

.img_secundaria {
  z-index: 3;
  position: absolute;
}

.img_base_short {
  z-index: 1;
  position: absolute;
}

.img_principal_short {
  z-index: 2;
  position: absolute;
}

.img_secundaria_short {
  z-index: 3;
  position: absolute;
}

.img_base_short_arquero {
  z-index: 1;
  position: absolute;
}

.img_principal_short_arquero {
  z-index: 2;
  position: absolute;
}

.img_secundaria_short_arquero {
  z-index: 3;
  position: absolute;
}

.formato_nro_back {
  position: relative;
  /* top: -50%;
    left: 8%; */
  z-index: 999999;
}

.formato_nro_back_arquero {
  position: relative;
  /* top: -50%;
    left: 8%; */
  z-index: 999999;
}

.list_box {
  width: 320px;
  height: auto;
  display: inline-block;
  list-style-type: none;
}

.list_box li {
  list-style-type: none;
  width: 89px;
  height: 83px;
  border: 1px solid #cccccc;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  float: left;
  margin: 0 5px 5px 0;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  text-align: center;
  font-size: 50px;
  padding-bottom: 13px;
  cursor: pointer;
  box-sizing: border-box;
}

.list_box li img {
  width: 100%;
}

.options {
  width: 366px;
  margin-top: 20px;
}

.options li {
  width: 94px;
  float: left;
  border: 2px solid #959595;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  text-align: center;
  padding: 2px;
  margin: 0 8px 28px 0;
  cursor: pointer;
}

.options li img {
  max-width: 74px;
  max-height: 86px;
}

.options ul {
  list-style-type: none;
}

#options_diseno {
  width: 366px;
  margin-top: 20px;
}

#options_diseno .sel_diseno_page_2,
#options_diseno .sel_diseno_page_3,
#options_diseno .sel_diseno_page_4 {
  display: none;
}

#options_diseno li {
  width: 94px;
  float: left;
  border: 2px solid #959595;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  text-align: center;
  padding: 2px;
  margin: 0 8px 28px 0;
  cursor: pointer;
}

#options_diseno li img {
  max-width: 74px;
  max-height: 86px;
}

#options_diseno ul {
  list-style-type: none;
}

#options_diseno_arquero {
  width: 366px;
  margin-top: 20px;
}

#options_diseno_arquero .sel_diseno_page_arquero_2,
#options_diseno_arquero .sel_diseno_page_arquero_3,
#options_diseno_arquero .sel_diseno_page_arquero_4 {
  display: none;
}

#options_diseno_arquero li {
  width: 94px;
  float: left;
  border: 2px solid #959595;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  text-align: center;
  padding: 2px;
  margin: 0 8px 28px 0;
  cursor: pointer;
}

#options_diseno_arquero li img {
  max-width: 74px;
  max-height: 86px;
}

#options_diseno_arquero ul {
  list-style-type: none;
}


#options_diseno_short {
  width: 366px;
  margin-top: 20px;
}

#options_diseno_short li {
  width: 94px;
  float: left;
  border: 2px solid #959595;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  text-align: center;
  padding: 2px;
  margin: 0 8px 8px 0;
  cursor: pointer;
}

#options_diseno_short li img {
  max-width: 74px;
  max-height: 86px;
}

#options_diseno_short_arquero {
  width: 366px;
  margin-top: 20px;
}

#options_diseno_short_arquero li {
  width: 94px;
  float: left;
  border: 2px solid #959595;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  text-align: center;
  padding: 2px;
  margin: 0 8px 8px 0;
  cursor: pointer;
}

#options_doptions_diseno_short_arqueroiseno_short li img {
  max-width: 74px;
  max-height: 86px;
}

#paginador_diseno {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

#paginador_diseno span {
  cursor: pointer;
  margin: 0 !important;
  width: 25px;
  padding-top: 5px;
  /* height: 20px; */
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

#paginador_diseno #btn_pg_prev,
#paginador_diseno_arquero #btn_pg_prev_arquero,
#paginador_diseno #btn_pg_next {
  font-size: 12px;
  text-transform: none;
  width: 80px;
}

#paginador_diseno .selected_page {
  color: #ffffff;
  background: #d93d3d;
}

#paginador_diseno_arquero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

#paginador_diseno_arquero span {
  cursor: pointer;
  margin: 0 !important;
  width: 25px;
  padding-top: 5px;
  /* height: 20px; */
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

#paginador_diseno_arquero #btn_pg_prev,
#paginador_diseno_arquero #btn_pg_next_arquero {
  font-size: 12px;
  text-transform: none;
  width: 80px;
}

#paginador_diseno_arquero .selected_page {
  color: #ffffff;
  background: #d93d3d;
}

.colores_list {
  width: 310px;
  margin-bottom: 11px;
  display: inline-block;
}

.colores_list li {
  list-style-type: none;
  float: left;
  margin: 0 5px 5px 0;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  cursor: pointer;
}

.color_1 {
  background: #dacd4a;
}

.color_2 {
  background: #293e7a;
}

.color_3 {
  background: #1e263f;
}

.color_4 {
  background: #ffffff;
  border: 1px solid #c2c2c2;
  width: 22px;
  height: 22px;
}

.color_5 {
  background: #6d0b1c;
}

.color_6 {
  background: #6b96a6;
}

.color_7 {
  background: #4d8fcc;
}

.color_8 {
  background: #f392cc;
}

.color_9 {
  background: #909195;
}

.color_10 {
  background: #58585a;
}

.color_11 {
  background: #786092;
}

.color_12 {
  background: #62472d;
}

.color_13 {
  background: #d56326;
}

.color_14 {
  background: #000000;
}

.color_15 {
  background: #c72424;
}

.color_16 {
  background: #e00086;
}

.color_17 {
  background: #54988c;
}

.color_18 {
  background: #468146;
}

.color_19 {
  background: #6b96a6;
}

.color_20 {
  background: #874997;
}

/* Paleta Colores shorts */

.color_1_short {
  background-color: #e9d6ad;
}

.color_2_short {
  background-color: #58585a;
}

.color_3_short {
  background-color: #000000;
}

.color_4_short {
  background-color: #a688ad;
}

.color_5_short {
  background-color: #874997;
}

.color_6_short {
  background-color: #d56326;
}

.color_7_short {
  background-color: #c72424;
}

.color_8_short {
  background-color: #263e32;
}

.color_9_short {
  background-color: #468146;
}

.color_10_short {
  background-color: #1e263f;
}

.color_11_short {
  background-color: #62472d;
}

.color_12_short {
  background-color: #909195;
}

.color_13_short {
  background-color: #f392cc;
}

.color_14_short {
  background-color: #e00086;
}

.color_15_short {
  background-color: #dacd4a;
}

.color_16_short {
  background-color: #6d0b1c;
}

.color_17_short {
  background-color: #00be5f;
}

.color_18_short {
  background: #ffffff;
  border: 1px solid #c2c2c2;
  width: 22px;
  height: 22px;
}

.color_19_short {
  background-color: #00d4fd;
}

.color_20_short {
  background-color: #4453ef;
}

.preview_front,
.preview_back,
.preview_front_arquero,
.preview_back_arquero,
.preview_content_short_content,
.preview_content_short_arquero_content,
.preview_content_medias_content {
  height: 530px !important;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  /* padding: 5px; */
  float: left;
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  position: relative;
}

@media (max-width: 767px) {

  .preview_front,
  .preview_back,
  .preview_front_arquero,
  .preview_back_arquero,
  .preview_content_short_content,
  .preview_content_short_arquero_content,
  .preview_content_medias_content {
    height: 275px !important;
    padding-top: 100px !important;
    padding-bottom: 70px !important;
    /* padding: 5px; */
    float: none;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    position: relative;
  }

  .img_base {
    max-height: 300px;
    max-width: 250px !important;
  }

  .img_principal {
    max-height: 300px;
    max-width: 250px !important;
  }

  .img_logo {
    max-height: 300px;
    max-width: 250px !important;
  }

  .img_secundaria {
    max-height: 300px;
    max-width: 250px !important;
  }

  .img_base_short {
    max-height: 300px;
    max-width: 250px !important;
  }

  .img_medias {
    max-height: 300px;
    max-width: 250px !important;
  }

  .img_principal_short {
    max-height: 300px;
    max-width: 250px !important;
  }

  .img_secundaria_short {
    max-height: 300px;
    max-width: 250px !important;
  }

  .img_base_short_arquero {
    max-height: 300px;
    max-width: 250px !important;
  }

  .img_principal_short_arquero {
    max-height: 300px;
    max-width: 250px !important;
  }

  .img_secundaria_short_arquero {
    max-height: 300px;
    max-width: 250px !important;
  }

  .img_numero {
    max-height: 300px;
    max-width: 250px !important;
  }

  .switch_text {
    font-size: 8px;
  }
}

#options_colores {
  text-align: center;
}

#options_colores_short {
  text-align: center;
}

#options_colores_short_arquero {
  text-align: center;
}

#options_colores_medias {
  text-align: center;
}

#options_texto {
  text-align: center;
}

.sel_formato {
  padding: 10px;
  background: #f6f6f6;
  border-radius: 4px;
  border: 1px solid #999999;
}

.sel_formato:hover {
  border: 1px solid #ff5b1e;
}

.selected {
  border: 1px solid #2ab474 !important;
}

.sel_diseno,
.sel_diseno_arquero,
.sel_diseno_short,
.sel_diseno_short_arquero {
  list-style-type: none;
  width: 89px;
  height: 95px;
  border: 1px solid #cccccc;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  float: left;
  margin: 0 5px 5px 0;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  text-align: center;
  font-size: 0px;
  padding-bottom: 13px;
  cursor: pointer;
  box-sizing: border-box;
}

.transparente {
  opacity: 0.5;
}


@media (max-width: 568px) {
  .btn-capturar {
    /* font-size: 10px; */
    /* padding-top: 2px !important;
    padding-bottom: 2px !important; */
    font-size: 13px !important;
    transform: scale(.8);
  }
}


/* --- FIX iOS: capa azul/overlay --- */
#datos_pedido{
  /* mantené tus defaults de visibilidad como estaban */
  background:#fff;           /* asegura fondo blanco al mostrar */
  min-height:100vh;
  /* anula la aceleración que rompe en iOS */
  -webkit-transform: none !important;
  transform: none !important;
  will-change: auto !important;
}

/* En iOS, el pseudo-elemento del thead suele ser el "azul" que tapa todo */
@supports (-webkit-touch-callout: none) {
  .dp-table thead::before{ display: none !important; }
  .dp-table thead{ background:#0f172a !important; }
}





