
    /* overview section */
:root {
  --hsd-overview-background-color: #eee;
  --hsd-overview-text-color: #000;
}

.hsd-at-a-glance {
  background: var(--hsd-overview-background-color);
  color: var(--hsd-overview-text-color);
  max-width:1050px;
  width:100%;
  margin:1rem auto;
  padding:2em;
  padding-bottom: 4rem;
  text-align: center;
}
.hsd-at-a-glance ul {
  text-align:left;
  max-width:850px;
  margin:0 auto;
}
/* Adjust the Highlight color to match the Client's site/OEM.

If dark background is requested, adjust the highlight color, and p/ul color to contrast with it appropriately */

:root {
    /* Summary Section Parent */
    --hsd-mod-summary-section-background: #f8f8f8;

    /* Color for Heading AND Border */
    --hsd-mod-summary-section-highlight-color: #007cc0;

    /* p / ul */
    --hsd-mod-ss-p-ul-color: #000;
  }

  .hsd-mod-summary-section {
    display: flex;
    flex-flow: column;
    gap: 12px;

    max-width: 1440px;
    width: 100%;
    padding: 32px 2rem 44px;
    margin: 32px 0;
    box-sizing: border-box;

    background: var(--hsd-mod-summary-section-background) !important;
    border-left: 4px solid var(--hsd-mod-summary-section-highlight-color) !important;

    transition: all 0.1s ease-out;
  }
  .hsd-mod-summary-section:hover {
    padding-left: calc(2rem - 4px);

    border-left: 8px solid var(--hsd-mod-summary-section-highlight-color) !important;
  }

  .hsd-mod-summary-section span {
    margin: 0 0 8px !important;

    font-size: clamp(16px, 2vw, 18px) !important;
    color: var(--hsd-mod-summary-section-highlight-color) !important;
    text-transform: uppercase !important;
  }

  :is(.hsd-mod-summary-section p, .hsd-mod-summary-section ul, .hsd-mod-summary-section ol) {
    margin: 0 !important;

    font-size: clamp(12px, 2vw, 14px) !important;
    color: var(--hsd-mod-ss-p-ul-color) !important;
  }

  @media screen and (max-width: 767px) {
    .hsd-mod-summary-section ul {
      padding-left: 20px !important;
    }
    .hsd-mod-summary-section li {
      margin-bottom: 8px !important;
    }
  }

    :root {
      --hsd-rt-scrollbar-color: #f2f2f2 transparent;
      --hsd-rt-webkit-scrollbar-thumb-color: #f2f2f2;
      --hsd-rt-webkit-scrollbar-track-color: transparent;
    }
  
    :root {
      --hsd-mod-tsl-before-background: transparent;
      --hsd-mod-tsl-before-color: #000;
      --hsd-mod-tsl-before-font-size: 14px;
    }
  
    @media screen and (max-width: 716px) {
      .hsd-mod-table-scroll-label:before {
        content: "Scroll to see more \2192";
      }
    }
  
    @media screen and (max-width: 650px) {
      .hsd-mod-table-scroll-label:before {
        content: "Drag to see more \2192";
      }
    }
  
    .hsd-mod-responsive-table {
      max-width: 1440px;
      margin: 0 auto;
      padding: 1rem;
    }
  
    .hsd-mod-rt-scroll-cont {
      max-width: 100%;
      overflow-x: scroll;
      scrollbar-color: var(--hsd-rt-scrollbar-color);
    }
  
    .hsd-mod-rt-scroll-cont::-webkit-scrollbar-thumb {
      background: var(--hsd-rt-webkit-scrollbar-thumb-color);
    }
  
    .hsd-mod-rt-scroll-cont::-webkit-scrollbar-track {
      background: var(--hsd-rt-webkit-scrollbar-track-color);
    }
  
    .hsd-mod-rt-table {
      max-width: 100% !important;
      width: 100% !important;
      margin: 1rem 0px;
      border-collapse: collapse;
    }
  
    .hsd-mod-rt-table th,
    .hsd-mod-rt-table td {
      min-width: 150px;
      padding: 8px;
      border: 1px solid #ddd;
      text-align: center;
    }
  
    .hsd-mod-rt-table thead th {
      background-color: #f2f2f2;
      color: #333;
    }
  
    .hsd-mod-rt-table tr:nth-child(even) {
      background-color: #f9f9f9;
    }
  
    .hsd-mod-rt-table tr:hover {
      background-color: #f1f1f1;
    }
  
    .hsd-mod-rt-table td {
      color: #555;
    }
  
    :is(.hsd-mod-rt-table td ul, .hsd-mod-rt-table td ol) {
      display: table;
      margin: 0 auto;
      list-style-position: inside;
      text-align: left;
    }
  
    .hsd-mod-rt-show-mobile {
      display: none;
      text-align: center;
    }
  
    @media screen and (min-width: 740px) {
      .hsd-mod-rt-scroll-cont {
        overflow-y: scroll;
      }
  
      .hsd-mod-rt-scroll-cont::-webkit-scrollbar {
        display: none;
      }
    }
  
    @media screen and (max-width: 740px) {
      .hsd-mod-rt-show-mobile {
        display: block;
        text-align: center;
      }
    }
  
    .hsd-mod-table-scroll-label {
      position: relative;
    }
  
    .hsd-mod-table-scroll-label:before {
      position: sticky;
      top: 0;
      left: 0;
      padding-left: 8px;
      background: var(--hsd-mod-tsl-before-background);
      color: var(--hsd-mod-tsl-before-color) !important;
      font-size: var(--hsd-mod-tsl-before-font-size) !important;
      font-style: italic;
    }

      /* Content w/ Lifestyles customizable root variables */
      :root {
        /* cwl = Content w/ Lifestyles */
      
        /* Accent Class */
        --hsd-mod-cwl-50-50-accent-background-color: #000;
        --hsd-mod-cwl-50-50-accent-text-color: #fff;
        --hsd-mod-cwl-50-50-accent-link-color: #fff;
      }
      
      /* Module Parent */
      .hsd-mod-content-w-lifestyle-50-50 {
        display: grid;
        grid-template-columns: 50% 50%;
        align-items: center;
        justify-items: center;
        max-width: 1440px;
        width: 100%;
        margin: 1rem auto;
      }
      
      /* Image Cont */
      .hsd-mod-cwl-50-50-img {
        width: 100%;
        height: 100%;
      }
      .hsd-mod-cwl-50-50-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
      
      /* Content Cont */
      .hsd-mod-cwl-50-50-content {
        margin: 1rem;
        padding: 4rem;
        box-sizing: border-box;
      }
      
      /*  ** Optional Classes ** */
      
      /* Reverse Class */
      /* (swaps image and content position when added) */
      .hsd-mod-cwl-50-50-reverse {
        grid-template-columns: 50% 50%;
      }
      .hsd-mod-cwl-50-50-reverse .hsd-mod-cwl-50-50-content {
        order: 1;
      }
      
      /* Accent styling */
      .hsd-mod-cwl-50-50-accent {
        color: var(--hsd-mod-cwl-50-50-accent-text-color);
        background-color: var(--hsd-mod-cwl-50-50-accent-background-color);
      }
      .hsd-mod-cwl-50-50-accent a {
        color: var(--hsd-mod-cwl-50-50-accent-link-color);
      }
      
      /* Split 1 image: stack two images vertically to look like one image */
      .hsd-mod-cwl-50-50-img--stacked {
        height: auto;
      }
      
      .hsd-mod-cwl-50-50-img--stacked img {
        display: block;
        width: 100%;
        height: auto !important;
        margin: 0;
        padding: 0;
      }
      
      /* Media Query for mobile */
      @media screen and (max-width: 767px) {
        /* Module Parent */
        .hsd-mod-content-w-lifestyle-50-50 {
          grid-template-columns: 1fr;
        }
      
        /* Content Cont */
        .hsd-mod-cwl-50-50-content {
          margin: 1rem;
          padding: 1rem;
        }
      
        /* Have the content above the image */
        .hsd-mod-content-w-lifestyle-50-50 .hsd-mod-cwl-50-50-content {
          order: 2;
        }
      }