/**
 * @file
 * All the styles for printers.
 */

@media print {
  /* Override Bootstrap default. */
  .navbar {
    display: flex;
  }
  /* Add a line before content begins. */
  header#page-header {
    border-bottom: 5px solid #083252;
    margin-bottom: 20px;
  }

  /* Remove underline on header title links. */
  a.navbar-brand.site-text {
    text-decoration: none;
  }

  /* Hide things we don't need. */
  header .region--header-right,
  .region--navigation.d-md-block,
  .region--breadcrumb,
  .btn.btn-print,
  .col-sidebar,
  #block-sociallinks,
  #block-ccsf-ttx-footer,
  .back-to-top,
  footer .footer--logo {
    display: none !important;
  }

  /* Reset any narrow columns. */
  main .container--narrow {
    max-width: 100%;
  }

  /* Reset the footer. */
  footer {
    background: transparent;
    border-top: 5px solid #083252;
    padding: 20px 0;
  }

  footer .footer--title {
    color: #083252;
  }

  /* Show Accordion as expanded in Print. */
  .collapse:not(.show) {
    display: block !important;
  }
}
