@media print {
    /* hide elements */
    .breadcrumb {
        display: none;
    }

    .d-print-none {
        display: none;
    }

    .cookie-bar {
        display: none;
    }

    /*.footer-spacing:first-child:last-child {*/
    /*    display: none;*/
    /*}*/

    /* page breaks */
    h1,
    h2,
    h3,
    h4{
        page-break-after: avoid;
    }

    tr,
    img,
    .teaser,
    .content-block,
    footer {
        page-break-inside: avoid;
    }

    /* reset bootstrap default stuff */
    a[href]:after,
    abbr[title]:after,
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }


    /* reset mobile grid */
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666667%;
    }
    .col-md-10 {
        width: 83.33333333%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666667%;
    }
    .col-md-7 {
        width: 58.33333333%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666667%;
    }
    .col-md-4 {
        width: 33.33333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.66666667%;
    }
    .col-md-1 {
        width: 8.33333333%;
    }


    /*show elements*/
    .tab-pane{
        display: block !important;
        opacity: 1 !important;
    }

    /*different stylings*/
    h1,
    h2,
    h3,
    h4{
        color: var(--color-primary);
    }

    .hero-image__min-height {
        background-color: white;
    }

    .print-color-primary {
        color: var(--color-primary) !important;
        -webkit-print-color-adjust: exact;
    }

    .print-color-text-default {
        color: var(--color-text-default) !important;
        -webkit-print-color-adjust: exact;
    }

    .print-text-decoration-none {
        text-decoration: none !important;
    }

    .print-no-bg {
        background-color: transparent !important;
        -webkit-print-color-adjust: exact;
    }
}