.imprimiendo {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
  }
  #imprimiendo_container {
    width: 100%;
    position: absolute;
    display: flex;
    height: 100%;
    z-index: 100;
    background: white;
    flex-wrap: wrap;
    flex: 1 1 auto;
    align-content: center;
  }
  
  @keyframes loader {
    0% {
      transform: translate(0px, 0px);
    }
    50% {
      transform: translate(0px, -26px);
    }
    1000% {
      transform: translate(0px, 0px);
    }
  }
  .circle {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    margin: 3px;
    background: #000;
    animation: loader 0.6s ease-in-out infinite;
  }

  p#NoAutorizacion {
    font-size: 11pt;
  }

  p#TotalLetras {
    font-size: 11pt;
  }
  .circle:nth-child(1) {
    animation-delay: 0.1s;
  }
  .circle:nth-child(2) {
    animation-delay: 0.2s;
  }
  .circle:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  div#vistaImpresionContainer {
    background: #f2f3f8;
  }
  @page  
{ 
    size: auto;   /* auto is the initial value */ 

    /* this affects the margin in the printer settings */ 
    margin: 0;  
} 

  div#vista_impresion {
    display: flex;
    justify-content: space-between;
    float: left;
    /* width: 30%; */
    margin: 0 auto;
    background: #fff;
    box-shadow: -5px 4px 6px #ffffff;
  }

  div#vista_margin {
    width: 322.55px;
  }
  
  div#botones {
    display: flex;
    justify-content: space-between;
    /* width: 30%; */
    margin: 0 auto;
  }
  
  .datos_emisor {
    text-align: center;
    margin: 0.5cm 0px;
  }
  
  .datos_factura {
    margin: 0.5cm 0px;
  }
  
  .datos_cliente {
    margin: 0.5cm 0px;
  }
  
  .datosCertificacionFactura {
    margin: 0.5cm 0px;
    text-align: center;
  }
  .otrosDatos {
    text-align: justify;
  }
  
  @media print {
    #imprimiendo_container {
      display: none !important;
    }
    .v-main {
      display: block;
      padding: 0 !important;
    }
    .paper-size {
      width: 76000mm !important;
  }
  
    .v-toolbar,
    .v-toolbar__content {
      display: none;
    }
  
    .v-card__text {
      padding: 0;
    }
  
    .pa-5 {
      padding: 0 !important;
    }
  
    .container {
      padding: 0px;
      max-width: 100%;
    }
  
    #vista_impresion {
      font-family: "Roboto", Arial, sans-serif;
      font-size: 17pt;
      padding: 5px;
      color: #000;
    }
  
    .print_btn {
      display: none;
    }
  
    .datos_factura {
      padding-bottom: 10px;
    }
  
    .datos_cliente {
      padding-bottom: 10px;
    }
  
    .datos_producto {
      font-size: 17pt;
    }

    .descripction-sx {
      font-size: 16pt !important;
    }

    .descripction-md {
      font-size: 12pt !important;
    }

    .descripction-lg {
      font-size: 10pt !important;
    }

    .unidades {
      font-size: 13pt !important;
    }
  
    .alinear_derecha {
      float: right;
    }
  
    .v-item-group.v-bottom-navigation {
      display: none; /* print width */
    }
  }
  
  .v-application p {
    margin-bottom: -2px !important;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .descripction-sx {
    font-size: 15pt !important;
  }

  .unidades {
    font-size: 13pt !important;
  }

  .descripction-md {
    font-size: 12pt !important;
  }

  .descripction-lg {
    font-size: 11pt !important;
  }