@media print {
    /*@page{size:landscape;} */
    #productConfiguratorPrint {display: none;}

    /* Styling print header and footer */
    #configuratorPrintWrapper {
        display: flex;
        margin-bottom: 50px;
        justify-content: space-between;
    }
    #configuratorPrintWrapper img {
        max-width: 200px;
    }
    #configuratorPrintWrapper h2 {
        font-weight: bold;
        margin-bottom: 0;
    }
    #configuratorPrintWrapper div:last-child {
        text-align: right;
        line-height: 0.5;
    }
    #configuratorPrintWrapperFooter {
        display: block;
        padding-top: 50px;
        font-size: 1.5em;
    }

    /* Configurator print styling */
    body {
        zoom: 75%;
    }
    body > * {
        visibility: hidden;
        height: 0;
        overflow: visible;
    }
    #printConfigurator {
        height: auto;
        visibility: visible;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
    #printConfigurator .section--configurator {
        margin: 0;
        max-width: none;
    }
}