/* print styles */

@media print {
  :root {
    --bs-body-font-size: 10vw;
    --footer-background-image: none;
  }
  html {
    background-color: transparent !important;
  }
  body {
/*    padding: 10em 3em;*/
    --bs-body-font-size: 1.3rem;
  } 
  header,
  header * {
    display: none;
  }

  footer {
    visibility: hidden;
  }

  h1, h2, h3, h4, h5 {
    page-break-after: avoid;
  }

  p {
    break-inside: avoid;
  } 
  h1:first-of-type {
/*    position: absolute;*/
    font-size: 1.6em;
    margin-top: -7em;

    margin-left: -100vw;
/*    margin-right: -100vw;*/
    width: 300vw;
    padding: 1em 100vw;
    padding-top: 9em;
/*    padding-bottom:3em;*/
    background-color: var(--theme-color);
  }
  body {
    margin-left: 10mm;
  }
  @page {
    size: A4 portrait;
    margin: 0mm 0mm 20mm 0mm;
/*    background-color: transparent !important;*/
     padding: 3em 0em; 

    @bottom-left-corner { content:none; }
    @bottom-left   { content: none; }
    @bottom-center { content: none; }
    @bottom-right  { content: none; }


  }

  @page :first  {
/*    visibility: visible; */
    padding-top: 0em;

/*    @bottom-left { 
      content: initial; 
      background-image: var(--footer-background-image);
    }*/
  }

  @page :not(:first) header { 
/*    display: none;*/
  }
}