/* Note: If not the generic grey, --hsd-acc-inactive-color should be the same color as the client’s main CTA button. --hsd-acc-active-color should be the same color as the main CTA button hover. */
  tr {
    text-align: center;
  }
  th {
    border-width: 1px;
    border-style: ridge;
    border-color: #808080;
  }
  th span {
    font-size: 18px;
    font-weight: 700;
  }
  td {
    border-width: 1px;
    border-style: ridge;
    border-color: #808080;
  }
  td span {
    font-size: 18px;
    font-weight: 300;
  } /* Change variable values to customize */
  :root {
    --hsd-accent-text-color: #fff;
    --hsd-accent-background-color: #000;
    --hsd-content-padding: 4rem;
    --hsd-content-margin: 1rem;
    --hsd-acc-text-color: /* Leave blank to use default */ #444;
    --hsd-acc-font-size: 15px;
    --hsd-acc-text-alignment: left;
    --hsd-acc-padding: 18px;
    --hsd-acc-margin-bottom: 2px;
    --hsd-acc-inactive-color: #eee;
    --hsd-acc-active-color: #ccc;
    --hsd-acc-transition: 0.4s;
    --hsd-acc-arrow: "\25be"/* change to "" for image icon */;
    --hd-acc-arrow-color: grey;
    --hd-acc-arrow-position: right;
    --hsd-acc-arrow-margin: 0 10px;
    --hd-acc-answer-bg: white;
    --hd-acc-img-icon: /* url(#) */;
    --hsd-acc-img-icon-size: 20px;
  } /* Accordion styles */
  .hsd-accordion {
    background-color: var(--hsd-acc-inactive-color);
    color: var(--hsd-acc-text-color);
    cursor: pointer;
    padding: var(--hsd-acc-padding);
    width: 100%;
    border: none;
    text-align: var(--hsd-acc-text-alignment);
    outline: none;
    font-size: var(--hsd-acc-font-size);
    transition: var(--hsd-acc-transition);
    margin-bottom: var(--hsd-acc-margin-bottom);
  }
  .hsd-accord-active,
  .hsd-accordion:hover {
    background-color: var(--hsd-acc-active-color);
  }
  .hsd-custom-panel {
    padding: 0 var(--hsd-acc-padding);
    background-color: var(--hsd-acc-answer-bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-bottom: 0;
  }
  .hsd-custom-panel p {
    padding: 1rem;
  }
  .hsd-accordion:after {
    content: var(--hsd-acc-arrow);
    text-align: center;
    float: var(--hd-acc-arrow-position);
    color: var(--hsd-acc-arrow-color); /* Alt CSS for image icon */
    background-image: var(--hd-acc-img-icon);
    background-size: 100%;
    width: var(--hsd-acc-img-icon-size);
    height: var(--hsd-acc-img-icon-size);
    display: block;
    margin: var(--hsd-acc-arrow-margin);
  }
  .hsd-accordion.hsd-accord-active::after {
    content: var(--hsd-acc-arrow);
    text-align: center;
    transform: rotate(180deg);
    display: block;
    margin: var(--hsd-acc-arrow-margin);
  }
  @media screen and (max-width: 767px) {
    .btn {
      margin: 4px 0;
    }
  } /* 2 column styles */
  .hsd-section {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    justify-items: center;
    margin: 0;
  }
  .hsd-section-image {
    width: 100%;
    height: 100%;
    grid-row-start: 2;
  }
  .hsd-section-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .hsd-section-paragraph {
    margin: var(--hsd-content-margin);
    padding: var(--hsd-content-padding);
    grid-row-start: 2;
  }
  .hsd-left {
    grid-column-start: 1;
  }
  .hsd-right {
    grid-column-start: 2;
  }
  .hsd-accent {
    color: var(--hsd-accent-text-color);
    background-color: var(--hsd-accent-background-color);
  }
  @media screen and (max-width: 720px) {
    .hsd-section {
      display: block;
      z-index: 9999;
      height: auto;
    }
    .hsd-section-paragraph {
      margin: 1rem;
      padding: 1rem;
    }
  }
  .ddc-content.content-page-title.bg-transparent {
    text-align: center !important;
    width: 100% !important;
  }
  h1.ddc-page-title.font-weight-bold.bg-transparent.spacing-reset {
    text-align: center;
    width: 100% !important;
  }