
*{
    box-sizing: border-box;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
  
}

body , html {
    margin-left: auto;
    margin-right: auto;
    width: 7.5cm;
    min-width: 7.5cm;
    height: auto;
    background-color: whitesmoke;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    }

.oculto-impresion {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.impresion {
    border-radius: 5px;
    width: 120px;
    padding: 10px;
    text-align: center;
    background-color: green;
    font-size: 1.5em;
    color: whitesmoke;
}

.terminar {
    border-radius: 5px;
    width: 120px;
    padding: 10px;
    text-align: center;
    background-color: red;
    font-size: 1.5em;
    color: whitesmoke;
}


.t_logo {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.t_imagen {
    width: 100px;
    height: auto;
}

.razon {
    width: 100%;
    text-align: center;
}

.t_cabecera {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.t_des_cli {
    text-align: justify;
    letter-spacing: 3px ;
}

.t_cableft {
    text-align: left;
}

.t_cabright {
    text-align: right;
}

/* Poductos */

.t_tit_columnas {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.t_titleft {
    width: 120px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: left;
}

.t_cant {
    width: 40px;
    margin-right: 5px;
}



.t_titright {
    width: calc(100% - 120px);
    display: flex;
    flex-wrap: nowrap;
    justify-content: right;
}

.t_precio {
    width: 70px;
    text-align: right;
}

.t_desprod {
    width: 100%;
    margin-bottom: 5px;

}

.t_total {
    width: 50px;
    margin-left: 11px;   
    text-align: right;
}

.linea {
    width: 100%;
    margin-top: 3px;
    margin-bottom: 3px;
    height: 1px;
    border-width: 1px;
    border-style:dashed;
    border-color: black;
  }


  .t_valores {
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: right;
    display: flex;
    flex-wrap: nowrap;
    justify-content: right;
  }

  .t_valright {
    width: 50px;
  }

  .saludo {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }

@page 
    {
        size:  auto;   /* auto es el valor inicial */
        margin: 3mm;  /* afecta el margen en la configuración de impresión */
        page-break-after: auto;
    }

    @media print {
        .oculto-impresion {
          display: none;
        }
      }