﻿@media print {
  body * {
    visibility: hidden
  }

  #printRoot {
    display:  block;
    position: fixed;
    left: 0;
    top: 0;
    visibility: visible;
  }

  #printRoot * {
    visibility: visible;
  }

  /* Hides bootstrap containers for printing to prevent multiple (blank) print pages */
  .row {
    display: none;
  }
}
