/*******************************************************************************
 *
 * General
 *
 ******************************************************************************/

@media only print {

  /* Hide body background */
  body::before {
    display: none;
  }

  /* Hide hovering buttons */
  #hovering-upload,
  #hovering-backtotop {
    display: none;
  }

  /* Hide close modal */  
  .close-modal-container .close-modal {
    display: none;
  }

  /* Hide footer section */
  footer {
    display: none;
  }

  /* Remove page padding (because of the removed footer) */
  footer {
    padding-bottom: 0;
  }
  
  /* Clear some Bootstrap rules */
  .table td, 
  .table th {
    background-color: unset ! important;
  }  
  table {
    border-collapse: unset ! important;
  }  

}

/*******************************************************************************
 *
 * ASSMT
 *
 ******************************************************************************/

@media only print {

  /* Hide buttons section */
  body.assmt-tool section.buttons {
    display: none;
  }

  /* Expand all exclusion explanations */
  body.assmt-tool [id^='exclusion-explanation'] {
    display: block;
  }
  body.assmt-tool [data-target^='#exclusion-explanation'] {
    display: none;
  }

}