/* LVIS Print CSS
 - See LVIS Template Print Page
 - Styles sticky header and footer with fixed heights.
*/

.print-header {
  height: 100px;
}

.print-header-space {
  height: 0px;
}

.print-footer {
  height: 50px;
}

.print-footer-space {
  height: 0px;
}

.print-footer {
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
  gap: 16px;
  bottom: 0;
  width: 100%;
  border-top: 1px solid black;
  background: #fff;
}

.print-footer-filler {
  flex-grow: 1;
}

.print-footer-right {
  text-align: right;
}

.print-header {
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-right: 12px;
  gap: 16px;
  top: 0mm;
  width: 100%;
  border-bottom: 1px solid black;
  background: #fff;
}

.print-header-filler {
  flex-grow: 1;
}

#print-idoe-seal {
  display: block;
  max-width: 80px;
  max-height: 80px;
  width: auto;
  height: auto;
}

@page {
  margin: 5mm;
}

@media print {
  #privateModeText,
  #print-button {
    display: none;
  }

  .print-header-space {
    height: 100px;
  }

  .print-footer-space {
    height: 50px;
  }

  #print-content thead {
    display: table-header-group;
  }

  #print-content tfoot {
    display: table-footer-group;
  }

  * {
    color: #000 !important;
    -webkit-text-shadow: none !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-color: #000 !important;
  }

  body {
    width: auto;
    border: 0;
    margin: 0;
    padding: 0;
    float: none !important;
  }

  tr {
    page-break-inside: initial;
  }
}
