/*
* AW Print styles based on BS
*/
@media print {
  body {
    font-family: sans-serif !important;
    font-size: 18px;
    margin: 0;
    font-weight: normal;
  }
  section {
    /* Absolute units are great for print stylesheets */
    margin-bottom: 1.25cm;
    /* Section always get their own page */
  }
  /* avoid splitting of ul elements */
  ul {
    page-break-inside: avoid;
  }
  /* Print at least 2 lines on the current page and 4 lines on the next page */
  p {
    widows: 4;
    orphans: 2;
  }
  /* Display targets of links */
  a[href^="http"]:not([href*="codepen.io"]):after {
    content: none;
  }
  /* Display expansions of abbreviations */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* Don't display maps,...*/
  .map iframe {
    display: none;
  }
  /* page specific styles */
  @page {
    margin: 2cm;
  }
  a[href]:after {
    content: none;
  }
  .main {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1cm;
    border: solid 1px silver;
  }
  table {
    width: 90%;
  }
  table th,
  table td {
    padding: 0.5cm;
    border: solid 1px silver;
  }
  blockquote::before {
    content: open-quote;
  }
  blockquote::after {
    content: close-quote;
  }
  .breadcrumb-wrapper {
    font-size: 14px;
    margin: 0 0 0.25cm 0;
  }
  .auto-height {
    height: auto !important;
  }
  [class*="bg-"] {
    border: dotted 1px silver;
    background-color: lightgray;
    padding: 0.5cm;
  }
  .pager .previous > a,
  .pager .previous > span,
  .pager .next > a,
  .pager .next > span {
    float: none;
  }
  footer,
  .aside {
    display: none;
  }
  .header__wrapper,
  .footer__wrapper,
  .skip-links,
  .nav,
  .modal,
  #modal-dialog-access-config {
    display: none;
  }
  img[src$=".svg"],
  .content-share-tools {
    display: none;
  }
  .owl-carousel *,
  .owl-carousel [class*="owl-"] {
    display: block;
    width: auto !important;
    height: auto !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    background-image: none !important;
    background-color: lightgray;
  }
  .owl-item.cloned {
    display: none;
  }
  .owl-nav,
  .owl-dots {
    display: none;
  }
}

/*# sourceMappingURL=print.css.map */
