/* DMG 7-15-2026 - Constrain Page Builder content width on desktop for improved readability */
@media (min-width: 1200px) {
  [data-sub-layout-container] {
    max-width: 1170px;
    margin-left: auto !important;
    margin-right: auto !important; } }

/*======================================================================================*/
/* 8/19/2026 DMG  Disable .slick-dots feature- it hides the radio button thumbnail selectors that usually appear below thumbnails by default */
.productView-images .slick-dots {
  display: none !important; }

/*======================================================================================*/
/* 8/19/2026 DMG  Test - disable EasyZoom hover/flyout behavior on product images - so that hovering over main picture doesn't try to zoom and pan to a portion of it */
.productView-image .easyzoom-flyout {
  display: none !important; }

/*======================================================================================*/
/* 9/08/2026 DMG Allow wide product-description tables to scroll horizontally on mobile */
/*
@media (max-width: 767px) {
    .productView-description table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}

*/
/* Allow wide product-description tables to scroll horizontally on mobile */
@media (max-width: 767px) {
  .productView-description .ui-accordion-content {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; }
  .productView-description table {
    display: table;
    width: max-content;
    max-width: none;
    white-space: nowrap; } }
