/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */

/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {

  /* Underline all links. */
/*  a:link,
  a:visited {
    text-decoration: underline !important;
  }*/

  /* Don't underline header. */
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  /* Add visible URL after links. */
/*  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }*/

  /* Only display useful links. */
/*  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }*/

  /* Add visible title after abbreviations. */
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }


            table,
          .back-to-search,
          .detail-images,
  /*        .print-logo,*/
          .product-next-previous-div,
          .share-item-div,
          .print-hide,
          .view-more-images-div,
          .product-imagery-container,
          .page__title,
          .region-product-search-form .block-title,
          #result-finishes,#skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
            display: none !important;
          }


          .print-logo img{
            width: 30%;
            height: auto;
          }

           img {
            max-width: <?php echo $max_width; ?>;
            height: auto;
            }

          .product-details-section {
            overflow: visible;
          }

          .product-description-copy{
            font-size: 10pt;
            font-family:  Helvetica;

          }

        *{
            margin-top: 5px;
            margin-bottom: 0;
            padding-top: 0;
            padding-bottom: 0;
          }

          .col-30-col.col-30-col-product-details,
          .product-details-div-1,
          .col-70-col.col-70-col-product-image,
          .product-details-container.product-imagery-container {
            display: block !important;
            position: relative !important;
          }


          .product-details-div-1 {
            top: auto !important;
          }


          img { max-height: 600px;  width: auto !important; }
}
