/*Wishlist mail template*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .part_number, .product_category, .product_description {font-size:8px;}
    .wishlist_item{ height:120px }
    .product_description { min-height: 20px; }
    .wishlist_image{max-width: 25.5%;max-height: 90%; }
} 

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .part_number, .product_category, .product_description {font-size:8px;}
    .wishlist_item{ height:120px }
    .product_description { min-height: 20px; }
    .wishlist_image{max-width: 25.5%;max-height: 90%; }
} 

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .part_number, .product_category, .product_description {font-size:10px;}
    .wishlist_item{ height:180px }
    .product_description { min-height: 25px; }
    .wishlist_image{max-width: 27.5%;max-height: 90%; }
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .part_number, .product_category, .product_description {font-size:12px;}
    .wishlist_item{ height:200px }
    .product_description { min-height: 30px; }
    .wishlist_image{max-width: 45.5%;max-height: 90%; }
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .part_number, .product_category, .product_description {font-size:12px;}
    .wishlist_item{ height:200px }
    .product_description { min-height: 30px; }
    .wishlist_image{max-width: 45.5%;max-height: 90%; }
}