/** MEDIA CSS DOCUMENT **/

@media print {
  @page {
    /*size: landscape;*/
    margin: 3mm;
  }
  body {
    background: white;
  }
  .no-print {
    display: none !important;
  }

  .content {
    box-shadow: none !important;
  }
  .table {
    box-shadow: none !important;
  }
  .table thead tr th,
  .table tfoot tr th {
    font-weight: bold !important;
    color: black;
  }
  .table thead tr th {
    border-bottom: 1px solid black;
  }
  .table tfoot tr th {
    border-top: 1px solid black;
  }
  .table thead tr,
  .table tfoot tr {
    background: none;
  }

  .date-print {
    display: block;
    text-align: center;
  }

}