/* ==========================================================================
   print.css — strips the interface down to the job sheet alone
   ========================================================================== */

@media print {

  .topbar,
  .rail,
  aside,
  .actions,
  header.masthead p,
  .review,
  .callout,
  .doclink,
  details.prices {
    display: none !important;
  }

  /* the logo is white artwork; background images are dropped when printing,
     so invert it to dark ink to keep it visible on the job sheet */
  .brand img {
    filter: invert(1);
    height: 34px;
  }

  /* every step is shown when printing, so the sheet is never hidden */
  .step {
    display: block;
  }

  /* flatten the Bootstrap grid so the sheet prints full width */
  .container,
  .wrap {
    max-width: none;
    width: auto;
    padding: 0;
    margin: 0;
  }

  .row {
    display: block;
    margin: 0;
  }

  .panel {
    border: 0;
    padding: 0;
    width: 100%;
    max-width: none;
  }

  .sheet {
    margin-top: 0;
  }
}
