
/**
 * @file
 * Print styling
 *
 */
@page {
    size: A4;
    /* auto is the initial value */
    /* this affects the margin in the printer settings */
    margin: 10mm 20mm 25mm 20mm;
}

@media print {

    /**
   * DEFAULTS
   *
   */
    /* size of DIN A4 */
    html, body {
        width: 210mm;
        height: 297mm;
    }

    /**
   * GRID
   *
   */
    .grid-container {
        padding-top: 20mm;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .content-toggle {
        opacity: 1 !important;
        max-height: 10000px !important;
    }
    /**
     * LINKS
     *
     */
    /* clear bootstrap-default to avoid printing hrefs everywhere */
    a[href]:after {
        content: "";
    }
    .grid-box-wp_html a[href]:after,
    .external-link-new-window[href]:after {
        content: " (URL:<" attr(href) ">)";
        font-size: 11px;
        color: inherit;
    }

    .grid-box-readmore-link {
        display: none;
    }


    /**
    REMOVE ELEMENTS
     */
    .edit-link,
    .social-media-links-wrapper,
    .site-footer,
    .site-sitemap-footer {
        display:none;
    }

    .site-header-wrapper {
        position: relative;
    }

    .slideshow-container {
        display:none;
    }

    /**
    MODIFIED ELEMENTS
     */
    .grid-container {
        margin:0 auto 10px;
    }

    /**
   * IMAGES
   *
   */
    .ph-license__wrapper .ph-license {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        display: block;
        line-height: 13px;
    }

}