﻿
/***############### Base reset and generic styles for print ***/
/*Enable background-colors and background-images on (most) browsers. */
* {
    -webkit-print-color-adjust: exact !important; /* Chrome, Safari */
    color-adjust: exact !important; /* Firefox */
}

.noprint {
    display: none;
}
/***########## End of General Reset and Setup ****/



/***############### Website Specific Styles. ***/

/* Prevent mid-item splitting onto two pages if possible */
.slideshow-image-wrapper,
.index-section__bg-image,
.background-hero-image,
.our-farm-tour-image,
.blog-post__photo {
    break-inside: avoid;
    page-break-inside: avoid; /*Older version*/
}



@media only print and (max-width: 699px) {
    /*Index*/
    .index-section:nth-of-type(2n + 1) {
        content: "";
        display: block;
        clear: both;
    }

    /*Products*/
    .product:nth-of-type(2n + 1) {
        content: "";
        display: block;
        clear: both;
    }
}



@media only print and (min-width: 500px) {
    /*Index*/
    .index-section__bg-image {
        height: 200px;
        transition: 0.4s ease-in;
        cursor: pointer;
    }

    /*Products*/
    .product__bg-image {
        height: 180px;
    }
}
