/**
* Impresion de nota
**/
#logoimpresion {
    display: none;
  }
@media print {  
    @page {
      margin: 1cm;
    }
    body {
      height: auto !important;
      font-size: 16px;
      color: #000 !important;
      min-height: unset;
    }
    html {
      height: auto !important;
    }
    .page-footer , .page-header ,.print-button, .d-none, #Embed, iframe{ display: none ;}
   
    .titulo-print{
        font-size: 2rem;
        text-align: center;
        color: #000 !important;
        text-shadow: none;
        padding: 0 !important;
        margin: 0 !important;
    }

    .datos-compra-print{
  
      padding: 0 !important;
      margin: 0 !important;
     
  }
    .contenedor-print
    {
        width: 100%;
    }

  
    .datos-cliente-print 
    {
      display: flex;
     }
    .datos-cliente-print .w-30
    {
      width: 30% !important;
     }
     .datos-cliente-print .w-30 p
    {
      margin: 0px;
     }

     .estatus-pago-print > h4
     {
       font-size: 1.2rem;
     }

     .contenedor-print .datos-print
    {
        padding: 0 !important;
        margin: 0 !important;
        width: 100%;
        
    }
    .datos-print h4
    {
        font-size: 1rem;
    }
    .datos-print .datos-cliente-print
    {
        display: flex;
    }
    
   
    
    #logoimpresion {
      display:block;
      margin-bottom: 1rem;
    }

    script {display: none!important}

    .titulos-tabla-print
    {
      color: #000; 
    }
    .titulos-tabla-print tr>th , .tabla-cuerpo tr>td
    {
      text-align: center;
    }
    .totales-print
    {
      width: 100%;
      border-top: 1px solid #000; 
      margin-top:25px;
      margin-left: 0px;
      page-break-inside: avoid;
     
    }
    .totales-print > .totales
    {
      width: 95%;
    }

    .table-print
    {
      width: 100%;
      /*page-break-inside: avoid;*/
     
    }

    .table-print table
    {
      border: 1px solid;
    }
    .print-right
    {
      text-align: right;
    }

/* PARA RESPETAR EL COLOR
    background-color: #1a4567;
    -webkit-print-color-adjust: exact;

    */
    
  }