#custome-fragment {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  
  #custome-fragment .banner-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin-top: 60px;
  }
  
  #custome-fragment .hero-banner {
    background-image: url("./article-test-assets/test.png");
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    min-height: unset !important;
    width: 100%;
    transition: all 0.9s ease-in-out;
    opacity: 1;
  }
  
  #custome-fragment .hero-banner:before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    transition: inherit;
    z-index: -1;
    transform: scale(1);
  }
  
  #custome-fragment .hero-content {
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    padding: 40px 40px 48px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    max-width: 760px;
    opacity: 1;
    transform: translateY(50px);
    transition: 0.9s ease-out;
  }
  
  #custome-fragment .hero-content.anim-end {
    opacity: 1;
    transform: translateY(0);
  }
  
  #custome-fragment .hero-banner .chapter-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }
  
  #custome-fragment .hero-banner .chapter-meta p {
    color: #1f1f1f;
    font-family: Adelle Sans, Calibri, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-transform: uppercase;
    margin: 0;
  }
  
  #custome-fragment .hero-banner .chapter-meta div {
    width: 4px;
    height: 4px;
    background-color: #1f1f1f;
    border-radius: 100%;
  }
  
  #custome-fragment .hero-title {
    color: #1f1f1f;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 900;
    line-height: 48px;
    letter-spacing: -0.42px;
  }
  
  #custome-fragment .hero-description {
    color: #1f1f1f;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
  }
  
  #custome-fragment .hero-meta {
    color: #1f1f1f;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 112.5% */
  }
  
  #custome-fragment .hero-authors {
    font-style: italic;
  }
  
  #custome-fragment .hero-reading-info {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  #custome-fragment .banner-sm-container {
    display: none;
  }
  
  @media screen and (max-width: 991px) {
    #custome-fragment .banner-container {
      display: none;
    }
  
    #custome-fragment .banner-sm-container {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
      opacity: 1;
      transition: all 0.6s ease-out;
      height: calc(100vh - 120px);
    }
  
    #custome-fragment .banner-sm-container.anim-end {
      opacity: 1;
    }
  
    #custome-fragment .hero-sm-banner {
      height: 100%;
      width: 100%;
      max-height: 50vh;
      margin-top: 28px;
      /* transform: scale(1.2); */
      transition: all 0.9s ease-out;
    }
  
    #custome-fragment .hero-sm-banner.anim-end {
      transform: scale(1);
    }
  
    #custome-fragment .hero-sm-content {
      display: flex;
      flex-direction: column;
      padding: 40px 16px 0px 16px;
      gap: 9.71px;
    }
  
    #custome-fragment .banner-sm-container .chapter-meta {
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      flex-direction: column;
      gap: 4px;
    }
  
    #custome-fragment .banner-sm-container .chapter-meta p {
      color: #1f1f1f;
      font-family: Adelle Sans, Calibri, sans-serif;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 12.941px;
      text-transform: uppercase;
      margin: 0;
    }
  
    #custome-fragment .banner-sm-container .hero-title {
      color: #1f1f1f;
      font-family: Adelle Sans Condensed, Calibri, sans-serif;
      font-size: 33.971px;
      font-style: normal;
      font-weight: 900;
      line-height: 38.824px;
      /* 114.286% */
      letter-spacing: -0.34px;
      margin: 0;
    }
  
    #custome-fragment .banner-sm-container .hero-description {
      color: #1f1f1f;
      font-family: Adelle Sans Condensed, Calibri, sans-serif;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 22px;
      /* 122.222% */
      margin: 0;
    }
  
    #custome-fragment .banner-sm-container .hero-meta {
      color: #1f1f1f;
      font-family: Adelle Sans Condensed, Calibri, sans-serif;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 16px;
      /* 114.286% */
      /* 112.5% */
    }
  
    #custome-fragment .banner-sm-container .hero-authors {
      font-style: italic;
    }
  
    #custome-fragment .banner-sm-container .hero-reading-info {
      margin-top: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
  }
  
  #custome-fragment .navbar {
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
    padding: 8px 0 8px 0;
    max-width: 1180px;
    width: 100%;
    float: none !important;
  }
  
  #custome-fragment .navbar-container {
    width: 100vw !important;
    height: auto;
    background-color: #fff;
    z-index: 111;
    padding: 0 16px;
  }
  
  @media screen and (min-width: 1441px) {
    #custome-fragment .navbar {
      max-width: 1574px;
    }
  }
  
  #custome-fragment .navbar-container.sticky {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
  }
  
  #custome-fragment .navbar.sticky {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
  }
  
  .navbar-placeholder {
    height: 0;
    transition: height 0.3s ease;
  }
  
  @media screen and (max-width: 991px) {
    #custome-fragment .navbar-container {
      position: relative;
      width: 100vw !important;
      padding: 0px 0px;
    }
  
    #custome-fragment .navbar-container.sticky {
      position: fixed;
      top: 60px;
      left: 0;
      right: 0;
      z-index: 111;
    }
  
    #custome-fragment
      .navbar-container.sticky:has(.chapters-sm-container.expanded) {
      height: 100%;
    }
  
    @keyframes slideDown {
      to {
        transform: translateY(0);
        z-index: 11111;
      }
    }
  
    .navbar-placeholder.active {
      height: 111px;
    }
  }
  
  #custome-fragment .navbar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 2px;
    border-top: 10px solid #1f1f1f;
    background-color: #fff;
    border-bottom: 1px solid #1f1f1f;
  }
  
  @media screen and (min-width: 769px) and (max-width: 1220px) {
    #custome-fragment .navbar {
      margin-right: 6px;
    }
  }
  
  #custome-fragment .navbar-header .meta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  #custome-fragment .navbar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    margin-left: 8px;
    margin-right: 12px;
    color: #1f1f1f;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 26px;
    text-transform: capitalize;
  }
  
  #custome-fragment .navbar-title-divider {
    background: #707070;
    width: 1px;
    height: 20px;
  }
  
  #custome-fragment .see-all-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: #26890d;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.32px;
    transition: all 0.3s ease;
    margin-left: 12px;
    cursor: pointer;
    text-decoration: none;
  }
  
  #custome-fragment .see-all-btn svg {
    transition: transform 0.3s ease-in-out;
  }
  
  #custome-fragment .see-all-btn:hover {
    text-decoration: underline;
  }
  
  #custome-fragment .see-all-btn:hover svg {
    transform: scale(1.15);
  }
  
  /* #custome-fragment .see-all-btn:hover svg path {
          stroke: #26890d;
        } */
  
  #custome-fragment .report-attribution {
    color: #1f1f1f;
    text-align: right;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.32px;
    margin: 0;
  }
  
  #custome-fragment .chapters-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  #custome-fragment .chapters-container.collapsed {
    max-height: 0;
    opacity: 0;
    z-index: -1;
  }
  
  #custome-fragment .chapters-container.expanded {
    max-height: 155px;
    opacity: 1;
    background-color: #fff;
    padding-bottom: 12px;
    border-bottom: 1px solid #ccc;
    z-index: auto;
    overflow: hidden;
  }
  
  #custome-fragment .chapters-carousel {
    display: flex;
    flex: 1;
    width: 100%;
    max-width: 97%;
    overflow: hidden;
    transition: all 0.3s ease;
    gap: 16px;
    padding: 10px 36px 0 46px;
    transition: height 0.3s;
    will-change: transform;
    z-index: auto;
  }
  
  #custome-fragment .chapters-container.collapsed > .chapters-carousel {
    z-index: -1;
    overflow: hidden;
  }
  
  #custome-fragment .chapter-item {
    flex: 0 0 auto;
    display: flex;
    width: 196.286px;
    height: 131px;
    padding: 10px 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration-color: #26890d !important;
  }
  
  a:focus-visible:not(header a):not(footer a) {
    border: 3px solid #012169;
    box-shadow: 0 0 0 3px #fff;
    outline: none;
  }
  
  #seeAllBtn:focus-visible {
    border: 3px solid #012169 !important;
    box-shadow: 0 0 0 3px #fff;
    outline: none;
  }
  
  #share-modal a:focus-visible {
    border: 3px solid #012169 !important;
    box-shadow: 0 0 0 3px #fff !important;
  }
  
  .rail-button:focus-visible {
    outline: 3px solid #012169 !important;
    outline-offset: 3px;
    box-shadow: 0 0 0 3px #fff;
    border: none;
  }
  
  .rail-button:nth-child(2):focus-visible {
    border-top: none;
  }
  
  .author:focus-visible {
    border: 3px solid #012169 !important;
    box-shadow: 0 0 0 3px #fff;
    outline: none;
  }
  
  .chapter-cta-button:focus-visible {
    outline: 3px solid #012169 !important;
    outline-offset: 3px;
    box-shadow: 0 0 0 3px #fff;
    border: none;
  }
  
  li > a:focus-visible {
    outline: none !important;
    border: none !important;
  }
  
  li:has(> a:focus-visible) {
    outline: 3px solid #012169 !important;
    outline-offset: 1px;
    box-shadow: 0 0 0 2px #fff;
  }
  
  .accordion-icon:focus-visible {
    outline: 3px solid #012169 !important;
  }
  
  #custome-fragment .chapter-item.active {
    background-color: #dfe0e1;
    pointer-events: none;
  }
  
  #custome-fragment .chapter-number {
    color: #1f1f1f;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  
  #custome-fragment .chapter-item.active .chapter-number {
    color: #1f1f1f;
    font-weight: 700;
  }
  
  #custome-fragment .chapter-title {
    color: #1f1f1f;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: all 100ms ease-in-out;
  }
  
  #custome-fragment .chapter-title::before {
    content: attr(data-text);
    font-weight: 700;
    visibility: hidden;
    display: block;
    height: 0;
    overflow: hidden;
  }
  
  #custome-fragment .chapter-item.active .chapter-title {
    color: #1f1f1f;
    font-weight: 700;
  }
  
  #custome-fragment .chapter-item:hover .chapter-number {
    /* color: #26890D; */
    text-decoration-color: #ffffff !important;
    text-decoration: none !important;
  }
  
  #custome-fragment a.chapter-item:hover {
    text-decoration: none !important;
  }
  
  #custome-fragment .chapter-item:hover .chapter-title {
    color: #1b5e20;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #1b5e20;
  }
  
  #custome-fragment .carousel-nav {
    /* position: absolute;
                top: 50%;
                transform: translateY(-50%); */
    flex-shrink: 0;
    width: 20px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    width: 20px;
    height: 100%;
    background-color: #fff;
  }
  
  /* #custome-fragment .carousel-nav.disabled{
                opacity: 0.5;
                cursor: not-allowed;
            } */
  
  #custome-fragment .carousel-nav.prev {
    /* left: 0px; */
    padding-left: 4px;
    height: 100%;
    transition: all 300ms ease-in-out;
  }
  
  #custome-fragment .carousel-nav svg {
    transition: all 300ms ease-in-out;
    stroke-width: 1.65px;
  }
  
  #custome-fragment .carousel-nav.prev:hover svg {
    transform: scale(1.15);
  }
  
  #custome-fragment .carousel-nav.prev:hover svg path {
    stroke: #26890d;
  }
  
  #custome-fragment .carousel-nav.next {
    /* right: 0px; */
    padding-right: 4px;
    height: 100%;
    /* width: 50px; */
    transition: all 300ms ease-in-out;
  }
  
  #custome-fragment .carousel-nav.next:hover svg {
    transform: scale(1.15);
  }
  
  #custome-fragment .carousel-nav.next:hover svg path {
    stroke: #26890d;
  }
  
  #custome-fragment .carousel-nav.disabled:hover svg {
    transform: scale(1);
  }
  #custome-fragment .carousel-nav.disabled:hover svg path {
    stroke: #1f1f1f;
  }
  
  /* Added left rail styles */
  #custome-fragment .left-rail {
    position: absolute;
    left: 0px;
    margin-top: 175px;
    top: 200px;
    width: 80px;
    z-index: 100;
    opacity: 0;
    transition: all 0.2s ease-in-out;
  }
  
  #custome-fragment .rail-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    color: #26890d;
    text-align: center;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.32px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 300ms ease-in-out;
  }
  
  #custome-fragment .rail-button:nth-child(2) {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-bottom: 0;
  }
  
  #custome-fragment .rail-button:hover {
    text-decoration: underline;
  }
  
  #custome-fragment .rail-button svg {
    transition: all 300ms ease-in-out;
    transform-origin: 50% 50%;
    width: 30px;
    height: 30px;
  }
  
  #custome-fragment #leftRail .rail-button:hover svg {
    transform: scale(1.15);
  }
  
  #custome-fragment #leftRail .rail-button:hover svg path {
    stroke: #26890d;
    stroke-width: 2px;
  }
  
  #custome-fragment .rail-button span {
    transition: opacity 0.3s;
    opacity: 1;
    visibility: visible;
    width: 40px;
    /* adjust to fit your text */
    display: inline-block;
  }
  
  #custome-fragment .rail-button[data-is-expanded="true"] svg {
    transform: rotate(45deg);
  }
  
  #custome-fragment .rail-button[data-is-expanded="true"] span {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  
  #custome-fragment #modal-container {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100vw;
    height: 100vh;
    overflow: hidden;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 111;
  }
  
  #custome-fragment .header a {
    color: #000 !important;
    font-size: 28px;
    border: 0;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    align-self: flex-end;
    background: 0 0 !important;
  }
  
  #custome-fragment #share-modal {
    position: relative;
    margin: 1.75rem auto;
    transform: translate(0, 80%);
    border: 1px solid var(--medium-gray);
    background: var(--white);
    z-index: 2055;
    max-width: 780px;
    height: 281px;
    background-color: #1f1f1f;
  }
  
  #custome-fragment #modal-container #share-modal .header {
    display: flex;
    padding: 10px 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
  }
  
  .toc-modal-close svg {
    transition: all 300ms ease-in-out;
  }
  
  .header .toc-modal-close:hover svg {
    transform: scale(1.15);
  }
  
  .header .toc-modal-close:hover svg path {
    stroke: #86bc25;
  }
  
  #custome-fragment #modal-container #share-modal .content {
    display: flex;
    padding: 0 40px 40px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    overflow: hidden;
  }
  
  #custome-fragment #modal-container #share-modal .content .sub-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  #custome-fragment #modal-container #share-modal .content .sub-content h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 26px;
    color: var(--white, #fff);
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    margin: 0;
  }
  
  #custome-fragment
    #modal-container
    #share-modal
    .content
    .sub-content
    .icon-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    cursor: pointer;
  }
  
  #custome-fragment
    #modal-container
    #share-modal
    .content
    .sub-content
    .icon-group
    span
    svg {
    transition: all 300ms ease-in-out;
  }
  
  #custome-fragment
    #modal-container
    #share-modal
    .content
    .sub-content
    .icon-group
    span
    svg
    circle {
    transition: all 300ms ease-in-out;
  }
  
  #custome-fragment
    #modal-container
    #share-modal
    .content
    .sub-content
    .icon-group
    span
    svg
    path {
    transition: all 300ms ease-in-out;
  }
  
  #custome-fragment
    #modal-container
    #share-modal
    .content
    .sub-content
    .icon-group
    span:hover
    svg
    path {
    fill: #86bc25;
  }
  
  #custome-fragment
    #modal-container
    #share-modal
    .content
    .sub-content
    .icon-group
    span:nth-child(2):hover
    svg
    path:last-child {
    fill: #86bc25;
  }
  
  #custome-fragment
    #modal-container
    #share-modal
    .content
    .sub-content
    .copy-url {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: stretch;
  }
  
  #custome-fragment
    #modal-container
    #share-modal
    .content
    .sub-content
    .copy-url
    input {
    width: 100%;
    height: 35px;
    color: var(--primary-black, #1f1f1f);
    border: 1px solid var(--primary-black, #1f1f1f);
    background-color: #f8f8f8;
    padding: 8px 12px;
    font-family: Adelle Sans, Calibri, sans-serif;
  }
  
  #custome-fragment
    #modal-container
    #share-modal
    .content
    .sub-content
    .copy-url
    a {
    width: 76px;
    height: 35px;
    flex-shrink: 0;
    box-shadow: none;
    border: 0;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white, #fff);
    color: var(--primary-black, #1f1f1f);
    text-align: center;
    font-family: Adelle Sans, Calibri, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    text-transform: uppercase;
    transition: all 300ms ease-in-out;
    margin-bottom: 0px;
  }
  
  #custome-fragment
    #modal-container
    #share-modal
    .content
    .sub-content
    .copy-url
    a:hover {
    background-color: #86bc25;
    text-decoration: none;
  }
  
  .right-rail {
    position: fixed;
    right: 0px;
    width: 230px;
    overflow-y: auto;
    z-index: 0 !important;
    opacity: 0;
    transition: all 0.2s ease-in-out;
  }
  
  @media screen and (max-height: 719px) {
    #custome-fragment .left-rail {
      margin-top: 50px;
    }
  
    .right-rail {
      margin-top: 50px;
    }
  }
  
  @media screen and (min-height: 720px) and (max-height: 810px) {
    #custome-fragment .left-rail {
      margin-top: 100px;
    }
  }
  
  .right-rail-section {
    margin-bottom: 28px;
    border-top: 1px solid var(--Deloitte-Insights-Primary-Medium-Grey, #ccc);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .expand-modal .right-rail-section {
    margin-bottom: 0px !important;
    border-top: 1px solid var(--Deloitte-Insights-Primary-Medium-Grey, #ccc);
  }
  
  .right-rail-section:last-child {
    margin-bottom: 0;
  }
  
  .right-rail-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    padding: 6px 0;
    color: #1f1f1f;
    font-family: Adelle Sans, Calibri, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
  }
  
  #relatedContentItem .right-rail-link {
    display: block;
    color: #26890d;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.32px;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    height: 100%;
    max-height: calc(1.2em * 4); /* 3 lines of text */
    width: 100%;
  }
  
  .right-rail-link {
    display: block;
    color: #26890d;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.32px;
    text-decoration: none;
    width: 100%;
  }
  
  .right-rail-section:not(.right-rail-section:nth-child(2))
    .right-rail-link:hover {
    text-decoration: underline;
  }
  
  .related-content-item {
    margin-bottom: 4px;
    height: 33px;
  }
  
  #relatedContentItem #currentRelatedLink {
    text-decoration: none;
  }
  
  #relatedContentItem #currentRelatedLink:hover {
    text-decoration: underline;
  }
  
  .related-content-nav {
    display: flex;
    align-items: center;
    justify-content: left;
  }
  
  button:focus {
    outline: none;
    box-shadow: none;
  }
  
  .related-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    text-align: center;
  }
  
  .related-nav-btn.disabled {
    opacity: 0;
    pointer-events: none;
    cursor: not-allowed;
    display: none;
  }
  
  a#relatedPrevBtn {
    padding: 1px 0px 1px 6px;
  }
  
  a#relatedNextBtn {
    padding: 1px 6px 1px 0;
  }
  
  #relatedPrevBtn {
    padding-right: 0;
  }
  
  #relatedNextBtn {
    padding-left: 0;
  }
  
  .related-nav-btn svg {
    transition: all 300ms ease-in-out;
  }
  
  .related-nav-btn:hover svg path {
    stroke-width: 1.65;
  }
  
  .related-nav-btn:hover svg {
    transform: scale(1.15);
  }
  
  .related-nav-btn:hover svg path {
    stroke: #26890d;
  }
  
  .related-nav-btn:hover,
  .related-nav-btn:focus {
    background: transparent;
  }
  
  .related-nav-btn:disabled {
    opacity: 0;
    cursor: not-allowed;
    display: none;
  }
  
  .related-nav-btn.disabled:hover svg {
    transform: scale(1);
  }
  .related-nav-btn.disabled:hover svg path {
    stroke: #1f1f1f;
  }
  
  .related-counter {
    color: var(--Deloitte-Insights-Primary-Dark-Grey, #707070);
    text-align: center;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    margin-left: 4px;
    margin-right: 4px;
  }
  
  #dots .related-counter {
    color: var(--Deloitte-Insights-Primary-Dark-Grey, #707070);
    text-align: center;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
  }
  
  .di-profile-promo-container {
    height: auto !important;
  }
  
  .socialshare {
    visibility: visible !important;
  }
  .navbar-sm {
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
    padding: 1px 0 8px 0;
  }
  
  @media screen and (max-width: 768px) {
    .navbar-sm {
      display: block;
    }
  
    .navbar {
      display: none;
    }
  }
  
  @media screen and (min-width: 769px) {
    .navbar {
      display: block;
    }
  
    .navbar-sm {
      display: none;
    }
  }
  
  .navbar-sm.sticky {
    position: fixed;
    top: 8px;
    left: 0;
    right: 0;
  }
  
  .navbar-sm-header {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-top: 10px solid #1f1f1f;
    background-color: #fff;
    border-bottom: 1px solid #1f1f1f;
    margin: 8px 12px;
  }
  
  .navbar-sm-new-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #fff;
    border-bottom: 1px solid #1f1f1f;
  }
  
  @media screen and (max-width: 768px) {
    .navbar-sm-header {
      margin-top: 8px;
    }
  }
  
  .navbar-sm-header .meta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: 8px;
    margin-bottom: 4px;
  }
  
  .navbar-sm-header .navbar-controls {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .navbar-sm-header .navbar-controls .see-all-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: #26890d;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.32px;
    transition: all 0.3s ease;
    margin-left: 0px !important;
    padding: 0px !important;
  }
  
  .br-l-1 {
    border-left: 1px solid var(--Deloitte-Insights-Primary-Medium-Grey, #ccc);
  }
  
  .navbar-sm-header .controlBtn-sm {
    padding-left: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    color: #26890d;
    text-align: center;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.32px;
    text-decoration: none;
  }
  
  .navbar-sm-header .controlBtn-sm:hover {
    text-decoration: underline;
  }
  
  .navbar-sm-new-header .controlBtn-sm {
    padding-left: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    color: #26890d;
    text-align: center;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.32px;
    text-decoration: none;
  }
  
  .navbar-sm-new-header .controlBtn-sm:hover {
    text-decoration: underline;
  }
  
  .navbar-sm-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    margin-left: 8px;
    margin-right: 12px;
    color: #1f1f1f;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 26px;
    margin: 0;
  }
  
  .see-all-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: #26890d;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.32px;
    transition: all 0.3s ease;
    margin-left: 12px;
  }
  
  .see-all-btn .arrow {
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    transform: rotate(0.05deg);
    align-items: center;
    gap: 5px;
  }
  
  .see-all-btn.collapsed .arrow {
    transform: rotate(180deg);
  }
  
  .navbar-sm-new-header .see-all-btn .arrow {
    transform: rotate(180deg);
  }
  
  .navbar-sm-new-header .see-all-btn.collapsed .arrow {
    transform: rotate(0.05deg);
  }
  
  /* #custome-fragment .see-all-btn .arrow {
                transition: transform 0.3s ease-in-out;
                display: flex;
                transform: rotate(180deg);
                justify-content: center;
                align-items: center;
                gap: 5px;
            } */
  
  .chapters-sm-container {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .chapters-sm-container.collapsed {
    max-height: 0;
    opacity: 0;
  }
  
  .chapters-sm-container.expanded {
    height: auto;
    opacity: 1;
    background-color: #fff;
  }
  
  .chapters-sm-carousel {
    display: flex;
    flex-direction: column;
    max-height: 550px;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  
  @media screen and (max-width: 375px) {
    .chapters-sm-carousel {
      max-height: 275px;
    }
  }
  
  @media screen and (max-height: 690px) {
    .chapters-sm-carousel {
      max-height: 190px;
    }
  }
  
  .chapter-sm-item {
    flex: 0 0 auto;
    display: flex;
    width: 100%;
    padding: 8px 16px;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }
  
  .chapter-sm-item:first-of-type {
    flex-direction: column;
  }
  
  .chapter-sm-item.active {
    background: var(--Data-Viz-Colors-C-Grey, #dfe0e1);
  }
  
  .chapter-number {
    color: var(--Deloitte-Insights-Primary-Dark-Grey, #707070);
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  
  .chapter-number.invisible {
    opacity: 0;
  }
  
  .chapter-sm-item.active .chapter-number {
    color: #1f1f1f !important;
  }
  
  .chapter-title {
    color: #1f1f1f;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  
  .chapter-sm-item.active .chapter-title {
    color: #1f1f1f !important;
  }
  
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    width: 20px;
    height: 20px;
    background-color: #fff;
  }
  
  .carousel-nav.prev {
    left: 0px;
    padding-left: 4px;
    height: 100%;
  }
  
  .carousel-nav.next {
    right: 0px;
    padding-right: 4px;
    height: 100%;
  }
  
  .right-rail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 8px 0px; */
    /* margin-bottom: 7px; */
  }
  
  .right-rail-header-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
    height: 40px;
  }
  
  .right-rail-header-item .related-content-item {
    margin: 0 !important;
    height: auto !important;
  }
  
  .right-rail-header-item .related-content-item .right-rail-link {
    margin: 0 !important;
  }
  
  @media screen and (max-width: 991px) {
    .di-profile-promo-container {
      display: block;
    }
  
    .right-rail-header-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: row;
      height: 40px;
      width: 100%;
    }
  
    .right-rail-header-item .related-nav-btn-container {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 10px;
      width: 100%;
      height: 40px;
    }
  }
  
  .di-sectional-divider:last-of-type {
    margin-top: 0 !important;
  }
  #author-container {
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
  }
  
  .two-col {
    display: grid;
    grid-template-columns: 35% calc(65% - 20px);
    gap: 20px;
  }
  
  @media screen and (max-width: 991px) {
    .two-col {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
  }
  
  /* Left column */
  #author-container h1 {
    color: #1f1f1f;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: 38px;
    margin: 0px 0px 40px 0px;
  }
  
  .description-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .description {
    display: flex;
    flex-direction: column;
    gap: 27px;
  }
  
  .description p {
    margin: 0;
    color: #1f1f1f;
    font-family: Sabon LT Pro, Calibri, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.18px;
  }
  
  .description em {
    font-style: italic;
  }
  
  .description-container .cta {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .description-container .cta a {
    color: #26890d;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-decoration: none;
  }
  
  .description-container .cta a:focus,
  .description-container .cta a:hover {
    text-decoration: underline;
  }
  
  /* Right column */
  .team {
    border-left: 1px solid #1f1f1f;
  }
  
  @media screen and (max-width: 991px) {
    .team {
      border-left: none;
    }
  }
  
  .team h2 {
    border-top: 1px solid #a6a5a5;
    padding-top: 10px;
    margin: 0;
    color: #1f1f1f;
    font-family: Adelle Sans, Calibri, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    margin-left: 20px;
  }
  
  .ctc-mps {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
  }
  
  @media screen and (min-width: 1441px) {
    .ctc-mps {
      max-width: 1574px;
      padding: 0 12px;
    }
  }
  
  .authors-grid {
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr;
    /* gap: 20px 20px; */
  }
  
  @media (min-width: 768px) {
    .authors-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .author-wrapper {
    padding-bottom: 20px;
    padding-left: 20px;
  }
  
  .author {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-decoration: none;
  }
  
  .author-wrapper:nth-child(even) {
    border-left: 1px solid #a6a5a5;
  }
  
  @media screen and (max-width: 768px) {
    .team h2 {
      margin-left: 0;
    }
  
    .author-wrapper {
      padding-left: 0;
    }
    /* new mobile css  */
    .chapters-sm-container.expanded {
      padding: 0 12px 0 12px;
    }
  
    .related-nav-btn.disabled {
      display: none;
    }
  
    .navbar-sm .right-content {
      padding: 0px 12px;
    }
    .right-rail-title {
      padding: 8px 0;
    }
  }
  
  .avatar {
    width: 70px;
    height: 70px;
    overflow: hidden;
    flex: 0 0 auto;
  }
  
  .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) !important;
  }
  
  .meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .name {
    margin: 0;
    color: #26890d;
    font-family: Adelle Sans, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-decoration: none;
  }
  
  .author:hover {
    text-decoration: none !important;
  }
  
  .author:hover .name {
    text-decoration: underline;
  }
  
  .title,
  .country {
    margin: 0;
    color: #1f1f1f;
    font-family: Adelle Sans, Calibri, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
  }
  
  /* Pagination */
  .pager {
    display: flex;
    padding: 20px 0 10px 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  
  .icon-btn {
    display: flex;
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .icon-btn:hover svg {
    transform: scale(1.15);
  }
  
  .icon-btn:hover svg path {
    stroke: #26890d;
    transform-origin: center;
  }
  
  .icon-btn:focus svg path {
    stroke: #26890d;
  }
  
  .icon-btn.disabled {
    opacity: 0;
    cursor: not-allowed;
    pointer-events: none;
  }
  
  .icon-btn.disabled:hover svg {
    transform: scale(1);
  }
  .icon-btn.disabled:hover svg path {
    stroke: #1f1f1f;
  }
  
  .dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #1f1f1f;
  }
  
  .dot[aria-current="page"] {
    background: #26890d;
  }
  
  /* Accessibility helpers */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  #cont-modal {
    position: relative;
    margin: 1.75rem auto;
    transform: translate(0, 40%);
    border: 1px solid var(--medium-gray, #ccc);
    background: var(--white, #fff);
    box-shadow: 3px 5px 15px 0 rgba(31, 31, 31, 0.25);
    z-index: 2055;
    max-width: 768px;
    max-height: 472px;
    height: 100%;
    overflow: hidden;
  }
  
  @media screen and (max-width: 991px) {
    #cont-modal {
      position: absolute !important;
      bottom: 0;
      left: 0;
      margin: 0 !important;
      border: 1px solid var(--medium-gray, #ccc);
      background: var(--white, #fff);
      box-shadow: 3px 5px 15px 0 rgba(31, 31, 31, 0.25);
      z-index: 2055;
      width: 100%;
      height: 85dvh !important;
      max-width: none !important;
      max-height: none !important;
      transform: none !important;
    }
  
    #cont-modal .col-lg-3 {
      margin-left: 0px !important;
    }
  
    #share-modal {
      position: absolute !important;
      bottom: 0;
      left: 0;
      margin: 0 !important;
      border: 1px solid #f8f8f8 !important;
      border-radius: 24px 24px 0 0;
      background: #fff !important;
      box-shadow: 0 -4px 10px 0 rgba(0, 0, 0, 0.25) !important;
      z-index: 2055;
      width: 100%;
      height: 30dvh !important;
      max-width: none !important;
      max-height: none !important;
      transform: none !important;
    }
  
    #share-modal .toc-modal-close svg path {
      stroke: #1f1f1f !important;
    }
  
    #share-modal .content .sub-content h2 {
      color: #1f1f1f !important;
    }
  
    #share-modal .content .sub-content .icon-group span svg path {
      fill: #1f1f1f !important;
    }
    #share-modal .content .sub-content .copy-url a {
      background-color: #1f1f1f !important;
      color: #fff !important;
    }
  }
  
  #cont-modal .header {
    display: flex;
    padding: 10px 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
  }
  
  @media (min-width: 992px) and (min-height: 700px) {
    #cont-modal {
      max-height: 472px;
    }
  }
  
  @media (min-width: 992px) and (min-height: 599px) and (max-height: 700px) {
    #cont-modal {
      max-height: 420px;
      min-height: 420px;
    }
  }
  
  @media (min-width: 992px) and (min-height: 500px) and (max-height: 598px) {
    #cont-modal {
      max-height: 380px;
    }
  }
  
  .leader-bio {
    width: 100%;
    height: 100%;
    padding: 20px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  
  @media screen and (max-width: 768px) {
    .leader-bio {
      height: 93%;
    }
  
    .author-wrapper:nth-child(even) {
      border-left: none;
    }
  
    .row {
      flex-direction: column;
      padding: 0 16px;
    }
  }
  
  .col-lg-3 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  
  #cont-modal .col-lg-3 {
    max-width: 119px !important;
    margin-right: 20px;
    margin-left: 40px;
  }
  
  #cont-modal .col-lg-3 img {
    max-width: 119px;
    border-radius: 50%;
    filter: grayscale(100%);
    cursor: pointer;
    margin-bottom: 0;
    height: auto;
  }
  
  .col-lg-9 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  
  @media (min-width: 992px) {
    #cont-modal .col-lg-9 {
      flex: 1 !important;
      max-width: 100% !important;
    }
  }
  
  #cont-modal .col-lg-9 .leader-title {
    margin-right: 20px;
  }
  
  #cont-modal .col-lg-9 h3 {
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 26px;
    letter-spacing: 0;
    text-align: left;
    margin: 0;
    color: var(--primary-black, #1f1f1f);
  }
  
  #cont-modal .col-lg-9 .leader-title p {
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
    margin: 0;
    color: var(--primary-black, #1f1f1f);
  }
  
  #cont-modal .col-lg-9 .divider {
    margin: 20px 0;
    max-width: 512px;
    border-bottom: 1px solid #ccc;
  }
  
  #cont-modal .col-lg-9 .leader-description {
    width: 100%;
  }
  
  #cont-modal .col-lg-9 .leader-description .description-container {
    width: 100%;
    max-height: 242px;
    overflow-y: scroll;
    scrollbar-color: #000 #fff;
    scrollbar-width: thin;
  }
  
  @media (min-height: 500px) and (max-height: 598px) {
    #cont-modal .col-lg-9 .leader-description .description-container {
      max-height: 100px;
      overflow-y: scroll;
    }
  }
  
  @media (min-height: 599px) and (max-height: 700px) {
    #cont-modal .col-lg-9 .leader-description .description-container {
      max-height: 140px;
      overflow-y: scroll;
    }
  }
  
  #cont-modal .col-lg-9 .leader-description .description-container p {
    font-family: var(--linotype-sabon, "linotype-sabon") !important;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 22px;
    letter-spacing: -0.01em;
    margin: 0 0 18px 0;
    color: var(--primary-black, #1f1f1f);
    padding-right: 100px;
  }
  
  #cont-modal .dicl-leader-modal-footer {
    background-color: #e6ffff;
    padding: 20px 16px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    font-family: Adelle Sans, Calibri, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    flex-direction: row;
    position: relative;
    align-self: flex-end;
    width: 100%;
  }
  
  .dicl-leader-modal-footer .contact-info {
    display: flex;
    gap: 30px;
  }
  
  .dicl-leader-modal-footer .email a,
  .dicl-leader-modal-footer .phone a {
    text-decoration: none;
    color: #000;
  }
  
  .dicl-leader-modal-footer .email a:focus {
    outline: none;
    box-shadow: none;
  }
  
  .dicl-leader-modal-footer .phone a:focus {
    outline: none;
    box-shadow: none;
  }
  
  .dicl-leader-modal-footer .contact-info i {
    font-size: 20px;
    margin-right: 5px;
    vertical-align: middle;
    color: #1f1f1f;
  }
  
  .dicl-leader-modal-footer .email em,
  .dicl-leader-modal-footer .phone em {
    object-fit: contain;
    font-style: normal;
    color: #1f1f1f;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    font-family: Adelle Sans, Calibri, sans-serif;
    text-decoration: none;
  }
  
  .dicl-leader-modal-footer .contact-info .phone:hover i {
    color: #1f1f1f;
  }
  
  .dicl-leader-modal-footer .contact-info .email:hover i {
    color: #1f1f1f;
  }
  
  .dicl-leader-modal-footer .contact-info .phone:hover em {
    text-decoration: underline;
    color: #26890d;
  }
  
  .dicl-leader-modal-footer .contact-info .email:hover em {
    text-decoration: underline;
    color: #26890d;
  }
  
  .dicl-leader-modal-footer .social {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .dicl-leader-modal-footer .social-icons {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    margin: 0;
  }
  
  .dicl-leader-modal-footer .social-icons li {
    border-radius: 50%;
    background-color: #1f1f1f;
    width: 30px;
    height: 30px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  .dicl-leader-modal-footer .social-icons li a {
    object-fit: contain;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    outline: none;
    box-shadow: none;
  }
  
  .dicl-leader-modal-footer .social-icons li a:focus {
    outline: none;
    box-shadow: none;
  }
  
  .dicl-leader-modal-footer .social-icons li:hover a {
    text-decoration: none;
    background: none;
    color: #fff !important;
  }
  
  .dicl-leader-modal-footer .social-icons li:hover {
    background-color: #26890d;
  }
  
  [class^="icon-"]:before,
  [class*=" icon-"]:before {
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    text-decoration: inherit;
  }
  
  .icon-twitter:before {
    content: "\f099";
  }
  
  .icon-facebook:before {
    content: "\f09a";
  }
  
  .icon-linkedin:before {
    content: "\f0e1";
  }
  
  .leader-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
  }
  
  .leader-title button {
    color: #000 !important;
    font-size: 28px;
    border: 0;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    align-self: flex-start;
    background: 0 0 !important;
  }
  
  .leader-title .toc-modal-close {
    transition: all 300ms ease-in-out;
  }
  
  .leader-title .toc-modal-close:hover svg {
    transform: scale(1.15);
  }
  
  .leader-title .toc-modal-close:hover svg path {
    stroke: #26890d;
  }
  
  #desktop-close {
    display: block;
  }
  
  #mobile-close {
    display: none;
  }
  
  @media screen and (max-width: 768px) {
    #mobile-close {
      display: flex;
      width: 100%;
      justify-content: flex-end;
      align-items: flex-start;
      flex-direction: row;
      border: none;
      background-color: transparent;
      margin-right: 10px;
      margin-bottom: 10px;
      height: 20px;
    }
  
    #cont-modal .divider {
      margin: 12px 0px 20px 0px !important;
    }
  
    #desktop-close {
      display: none;
    }
  
    #cont-modal .col-lg-9 .leader-description .description-container p {
      padding-right: 0px !important;
    }
  
    #cont-modal .dicl-leader-modal-footer {
      background-color: #e6ffff;
      padding: 20px 16px 40px 16px;
      display: flex;
      gap: 10px !important;
      align-items: flex-start;
      justify-content: flex-start;
      font-family: Adelle Sans, Calibri, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: 16px;
      flex-direction: column;
      position: relative;
      align-self: flex-end;
      width: 100%;
    }
  
    .dicl-leader-modal-footer .contact-info {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
  
    #author-container .team {
      padding-left: 0px !important;
    }
  
    .dicl-leader-modal-footer .social-icons {
      gap: 10px;
    }
  }
  
  @media screen and (min-width: 769px) and (max-width: 991px) {
    #mobile-close {
      display: flex;
      width: 100%;
      justify-content: flex-end;
      align-items: flex-start;
      flex-direction: row;
      border: none;
      background-color: transparent;
      margin-right: 10px;
      margin-bottom: 10px;
      height: 20px;
    }
  
    #cont-modal .divider {
      margin: 12px 0px 20px 0px !important;
    }
  
    #desktop-close {
      display: none;
    }
  
    #cont-modal .col-lg-9 .leader-description .description-container p {
      padding-right: 0px !important;
    }
  
    #cont-modal .dicl-leader-modal-footer {
      background-color: #e6ffff;
      padding: 20px 16px;
      display: flex;
      gap: 10px !important;
      align-items: flex-start;
      justify-content: flex-start;
      font-family: Adelle Sans, Calibri, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: 16px;
      flex-direction: column;
      position: relative;
      align-self: flex-end;
      width: 100%;
    }
  
    .dicl-leader-modal-footer .contact-info {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
  
    #author-container .team {
      padding-left: 0px !important;
    }
  
    .dicl-leader-modal-footer .social-icons {
      gap: 10px;
    }
  }
  #expandBtn {
    width: 59px;
    height: 68px;
    padding: 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #1f1f1f;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.15);
    color: #86bc25 !important;
    display: none !important;
    margin: 0 !important;
  }
  
  .expand-modal {
    display: none;
  }
  
  #expandBtn svg {
    transition: all 300ms ease-in-out;
  }
  
  @media screen and (max-width: 768px) {
    #downloadBtn {
      display: none !important;
    }
  
    #playBtn {
      display: none !important;
    }
  
    #shareBtn {
      display: none !important;
    }
  
    #rightRail {
      display: none !important;
    }
  }
  
  @media screen and (min-width: 769px) and (max-width: 1270px) {
    #leftRail {
      margin-top: 50px !important;
    }
  
    #downloadBtn {
      display: none !important;
    }
  
    #playBtn {
      display: none !important;
    }
  
    #shareBtn {
      display: none !important;
    }
  
    #rightRail {
      display: none !important;
    }
  
    #expandBtn {
      display: flex !important;
      margin: 0;
    }
  
    .expand-modal {
      width: 375px;
      padding: 16px;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      border: 1px solid var(--Deloitte-Insights-Primary-Light-Grey, #f8f8f8);
      background: var(--Deloitte-Insights-Primary-White, #fff);
      box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.15);
    }
  
    .expand-modal .left-content {
      display: flex;
      align-items: flex-start;
      flex-direction: row;
      gap: 10px;
      margin-bottom: 20px;
    }
  
    .expand-modal .left-content a {
      display: flex;
      flex-direction: row;
      width: 110px;
      align-items: center;
      gap: 8px;
      color: #26890d;
      text-align: center;
      font-family: Adelle Sans Condensed, Calibri, sans-serif;
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: 16px;
      letter-spacing: -0.32px;
      color: #26890d;
      text-decoration: none;
    }
  
    .right-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
  
    .right-content .right-rail-section {
      margin: 0;
    }
  
    .right-content .right-rail-section .right-rail-title {
      margin: 0;
    }
  
    .expand-modal a {
      text-decoration: none;
    }
  
    .expand-modal a:hover {
      text-decoration: underline;
    }
  }
  
  @media screen and (min-width: 769px) and (max-width: 1280px) {
    .content-width-di-md:not(.cq-Editable-dom) {
      max-width: 680px !important;
    }
  }
  
  @media screen and (min-width: 1271px) and (max-width: 1440px) {
    .content-width-di-md:not(.cq-Editable-dom) {
      max-width: 760px !important;
    }
  
    #downloadBtn {
      display: flex !important;
    }
  
    #playBtn {
      display: flex !important;
    }
  
    #shareBtn {
      display: flex !important;
    }
  
    #rightRail {
      display: flex !important;
      flex-direction: column;
    }
  }
  
  .chapters-navigation-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    margin: 42px 0;
    gap: 17px;
  }
  
  .chapter-cta-button {
    color: var(--Deloitte-Insights-Primary-White, #fff);
    background: #1f1f1f;
    text-align: center;
    font-family: Adelle Sans, Calibri, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    display: flex;
    width: 178px;
    height: 35px;
    padding: 10px 12px;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 6px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: all 300ms ease-in-out;
  }
  
  .chapter-cta-button svg {
    transition: all 0.3s ease-in-out;
  }
  
  .chapter-cta-button:not(.chapter-cta-button:disabled):hover {
    background-color: #26890d;
  }
  
  .chapter-cta-button:not(.chapter-cta-button:disabled):hover svg {
    transform: scale(1.15);
  }
  
  .cmp-di-endnotes-title h3 {
    text-transform: uppercase;
  }
  
  @media screen and (max-width: 991px) {
    .di-profile-promo-container {
      display: block !important;
    }
    .di-profile-promo-container {
      height: auto !important;
    }
    .cmp-di-modal.modal.show {
      z-index: 999999;
    }
  }
  
  .tooltip {
    z-index: 2147483647 !important;
    pointer-events: auto;
  }
  
  .tooltip-inner {
    z-index: inherit;
  }
  
  @media print {
    .cmp-di-intro__content__with-primary-image .aem-Grid,
    .cmp-di-intro__content__with-primary-image .aem-GridColumn {
      display: block !important;
      order: unset !important;
    }
  
    .cmp-di-intro__content_with-primary-image {
      display: block !important;
      order: 1 !important;
    }
  
    .cmp-di-sectional-divider__band--green {
      display: none !important;
    }
  
    .cmp-di-intro__content__with-primary-image__info-container {
      display: block !important;
      order: 2 !important;
    }
  
    #custome-fragment {
      display: none;
    }
  
    .banner-container {
      display: none;
    }
  
    .hero-banner {
      display: none;
    }
  
    .left-rail {
      display: none;
    }
  
    #modal-container {
      display: none;
    }
  
    #share-modal {
      display: none;
    }
  
    #cont-modal {
      display: none;
    }
  
    .right-rail {
      display: none;
    }
  
    .chapters-navigation-cta {
      display: none;
    }
  
    .ctc-mps {
      display: none !important;
    }
  
    .navbar-container {
      display: none;
    }
  
    .banner-sm-container {
      display: none;
    }
  
    .cmp-text {
      margin-top: 0 !important;
    }
  
    .cmp-di-intro__content__with-primary-image
      .cmp-di-sectional-divider__band--green
      .cmp-di-sectional-divider {
      display: none !important;
    }
  
    .cmp-di-profile-promo__container {
      page-break-inside: avoid;
    }
  
    .cmp-di-profile-promo-container__content {
      page-break-inside: avoid;
    }
  
    .cmp-di-accordion__item-body,
    .cmp-di-endnotes__list,
    .accordion,
    .cmp-di-accordion__panel {
      break-inside: auto !important;
      page-break-inside: auto !important;
      overflow: visible !important;
    }
  
    .cmp-di-accordion__panel,
    .cmp-di-accordion__panel--hidden {
      display: block !important;
      height: auto !important;
      max-height: none !important;
      overflow: visible !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
  
    .cmp-di-accordion__item,
    .cmp-di-accordion__item-body {
      break-inside: auto !important;
      page-break-inside: auto !important;
      overflow: visible !important;
      display: block !important;
    }
  }
  
  #custome-fragment .rail-button:nth-child(2) {
    margin-bottom: 20px !important;
  }
  
  #custome-fragment .rail-button:nth-child(3) {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-bottom: 0;
  }
  
  @media screen and (max-width: 768px) {
    #playBtn {
      display: none !important;
    }
  
    .navbar-sm-new-header {
      margin-top: 0px !important;
    }
  
    #custome-fragment .navbar-sm-new-header .see-all-btn {
      color: #86bc25 !important;
    }
  }
  
  .navbar-sm-title {
    color: #1f1f1f;
  }
  
  .navbar-sm-header .navbar-controls {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .navbar-sm-new-header {
    border-top: none !important;
  }
  
  .navbar-sm-new-header .meta {
    width: 100%;
    padding: 6px 12px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 24px;
    background-color: #1f1f1f !important;
    margin-top: 0px !important;
  }
  
  .navbar-sm-new-header .navbar-sm-title {
    color: #fff !important;
  }
  
  .divider-bar {
    width: 1px;
    height: 15.83px;
    background-color: #fff;
  }
  
  .divider-bar-gray {
    width: 1px;
    height: 20px;
    background-color: #707070;
  }
  
  .navbar-sm-new-header .navbar-controls {
    width: 100%;
    padding: 0 20px 0 16px !important;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    gap: auto !important;
    margin-top: 4px;
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .mobile-only {
    display: none;
  }
  
  @media screen and (max-width: 768px) {
    .mobile-only {
      display: flex;
    }
  }
  
  /* Audio styles */
  .audio-bar-bottom {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    height: 64px;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    will-change: opacity;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, margin-bottom 180ms ease,
      visibility 0s linear 180ms;
  }
  
  .audio-bar-bottom.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .audio-bar-bottom.mm.active {
    height: 62px;
    padding-bottom: 12px;
    padding-top: 12px;
  }
  
  .audio-bar-bottom.mm.active.maxHeight {
    height: 103px;
  }
  
  .audio-bar-bottom.mm.active.minHeight {
    height: 52px;
  }
  
  .expand-btn {
    display: block;
  }
  
  .audio-bar-mobile-container {
    display: none;
    pointer-events: auto;
  }
  
  @media screen and (max-width: 768px) {
    .audio-bar-mobile-container {
      display: flex;
      flex-direction: column;
      margin-top: 16px;
      margin-bottom: 16px;
      padding: 0 16px;
    }
  
    .audio-bar-bottom {
      height: 103px;
    }
  
    .expand-btn {
      display: none;
      pointer-events: none;
    }
  
    .audio-bar-mobile-container.onStart {
      flex-direction: row-reverse;
      justify-content: flex-end;
      gap: 10px;
    }
  }
  
  .audio-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin: 0 360px;
  }
  
  @media screen and (max-width: 1440px) {
    .audio-bar-container {
      margin: 0 130px;
    }
  }
  
  .audio-title-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: Adelle Sans Condensed, Calibri, sans-serif;
  }
  
  .audio-title-mobile {
    display: none;
  }
  
  @media screen and (max-width: 768px) {
    .audio-title-section {
      margin-bottom: 11px;
      margin-top: 11px;
    }
  
    .audio-title-mobile {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  
    #desktop-title {
      display: none;
    }
  
    #desktop-expand {
      display: none;
    }
  }
  
  .audio-title-mobile-controller {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 12px;
    pointer-events: auto;
    justify-content: center;
  }
  
  .audio-title {
    color: var(--Deloitte-Insights-Primary-White, #fff);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    margin: 0;
  }
  
  .audio-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }
  
  .ai-label {
    color: var(--Deloitte-Insights-Primary-Medium-Grey, #ccc);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    margin: 0;
  }
  
  .disclaimer-label {
    color: var(--Deloitte-Insights-Primary-Deloitte-Green, #86bc25) !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    text-decoration: none;
    cursor: pointer;
    margin: 0;
  }
  
  .audio-track.active {
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: stretch;
  }
  
  .playback-control {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
  }
  
  .audio-icon-btn {
    cursor: pointer;
    user-select: none;
  }
  
  .audio-icon-btn svg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* .audio-icon-btn:hover svg path {
              stroke: #86BC25;
          } */
  
  .cmp-di-podcast--libsyn {
    margin-top: -5px;
  }
  
  .cmp-di-podcast--libsyn .cmp-di-podcast__libsyn-player {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .cmp-di-podcast--libsyn .cmp-di-podcast__libsyn-player audio {
    display: none;
  }
  
  /* Custom Track Bar Styling */
  .cmp-di-podcast__libsyn-player__seek-sliderr {
    width: 617px;
    margin: 0;
    appearance: none !important;
    height: 6.8px;
    background: linear-gradient(
      to right,
      #86bc25 var(--seek, 0%),
      #f8f8f8 0%
    ) !important;
    border-radius: 0px !important;
    outline: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
    cursor: pointer;
  }
  
  .cmp-di-podcast__libsyn-player__seek-sliderr.dragging {
    cursor: grabbing;
    transform: scaleY(1.2);
  }
  
  .cmp-di-podcast__libsyn-player__seek-sliderr:hover {
    transform: scaleY(1.1);
  }
  
  .cmp-di-podcast__libsyn-player__seek-sliderr:active {
    cursor: grabbing;
  }
  
  /* responsive style for audio bar */
  @media screen and (max-width: 768px) {
    .audio-container-pause .audio-meta {
      display: none !important;
    }
  
    .cmp-di-podcast__libsyn-player__seek-sliderr {
      width: 68vw !important;
      height: 10.8px !important;
      margin-top: -10px !important;
    }
  
    .cmp-di-podcast__libsyn-player__seek-sliderr.active {
      width: 80vw !important;
    }
  
    .audio-bar-mobile-container .cmp-di-podcast--libsyn {
      /* display: none; */
      display: flex;
      /*gap: 36px; */
    }
  }
  
  .cmp-di-podcast__libsyn-player__seek-sliderr::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
  }
  
  .cmp-di-podcast__libsyn-player__seek-sliderr:focus::-webkit-slider-thumb {
    background: #86bc25;
  }
  
  .cmp-di-podcast__libsyn-player__seek-sliderr::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #86bc25;
    cursor: pointer;
    border: 2px solid #f8f8f8;
    transition: background 0.2s;
  }
  
  .cmp-di-podcast__libsyn-player__seek-sliderr:focus::-moz-range-thumb {
    background: #86bc25;
  }
  
  .cmp-di-podcast__libsyn-player__seek-sliderr::-ms-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #86bc25;
    cursor: pointer;
    border: 2px solid #f8f8f8;
    transition: background 0.2s;
  }
  
  .cmp-di-podcast__libsyn-player__seek-sliderr:focus::-ms-thumb {
    background: #86bc25;
  }
  
  /* Remove outline for slider */
  .cmp-di-podcast__libsyn-player__seek-sliderr:focus {
    outline: none;
  }
  
  /* Hide track for IE */
  .cmp-di-podcast__libsyn-player__seek-sliderr::-ms-fill-lower,
  .cmp-di-podcast__libsyn-player__seek-sliderr::-ms-fill-upper {
    background: transparent;
  }
  
  .cmp-di-podcast__libsyn-player__controls {
    display: flex;
    flex-direction: row !important;
    align-items: flex-end;
    justify-content: center;
    flex: 1;
    position: relative;
    gap: 5px;
    margin: 0 !important;
  }
  
  @media screen and (max-width: 768px) {
    .cmp-di-podcast__libsyn-player__controls {
      flex-direction: column !important;
      margin-top: 22px !important;
    }
  }
  
  .cmp-di-podcast__libsyn-player__time {
    font-family: Adelle Sans, Calibri, sans-serif;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 14px;
    color: #ccc !important;
    min-width: 70px;
    margin-top: 0px;
  }
  
  .cmp-di-podcast__libsyn-player__time span {
    text-align: right;
    font-family: Adelle Sans, Calibri, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 9.514px;
  }
  
  .expand-btn,
  .expand-btn-sm,
  .close-btn {
    text-decoration: none;
    padding: 0;
    margin: 0;
    border: 0;
    background-color: transparent;
    outline: none;
    inset: 0;
    transition: all 150ms linear;
  }
  
  .expand-btn:focus,
  .expand-btn-sm,
  .close-btn:hover {
    padding: 0;
    margin: 0;
    border: 0;
    background-color: transparent;
    outline: none;
  }
  
  .expand-btn:hover,
  .expand-btn-sm,
  .close-btn:hover {
    padding: 0;
    margin: 0;
    border: 0;
    background-color: transparent;
    outline: none;
    cursor: pointer;
  }
  
  .expand-btn-sm {
    transition: transform 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  }
  
  .expand-icon-sm.rotated {
    transform: rotate(180deg);
  }
  
  .expand-icon {
    transition: transform 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  }
  
  .expand-icon.rotated {
    transform: rotate(180deg);
    transform-origin: 50% 35%;
  }
  
  #custome-fragment .chapter-item:hover .chapter-title {
    font-weight: 700;
  }
  
  /* mobile css  */
  
  .audio-bar-bottom.mm.active:not(.maxHeight) .audio-title-mobile-controller {
    position: absolute;
    top: 23px;
    right: 21px;
    z-index: 50;
  }
  
  .audio-bar-bottom.mm.active:not(.maxHeight)
    .playback-control
    .cmp-di-podcast__libsyn-player__seek-sliderr {
    width: 163px !important;
    margin-left: 28px;
  }
  
  @media screen and (max-width: 376) {
    .audio-bar-bottom.mm.active:not(.maxHeight)
      .playback-control
      .cmp-di-podcast__libsyn-player__seek-sliderr {
      width: 130px !important;
    }
  }
  
  .audio-bar-bottom.mm.active:not(.maxHeight) .audio-bar-mobile-container {
    flex-direction: row;
  }
  
  .audio-bar-bottom.mm.active:not(.maxHeight) #close-audio-sm {
    height: 16px;
  }
  
  .playback-control.notexpanded .cmp-di-podcast__libsyn-player__seek-sliderr {
    width: 660px;
  }
  
  @media screen and (max-width: 768px) {
    .audio-bar-mobile-container.onStart {
      flex-direction: row-reverse !important;
    }
  }
  
  .audio-title-mobile-controller .close-btn svg,
  .audio-title-mobile-controller .expand-btn-sm svg {
    display: block;
    line-height: 1;
    vertical-align: middle;
  }
  
  .audio-title-mobile-controller .close-btn,
  .audio-title-mobile-controller .expand-btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  
  /* modal css  */
  
  #custome-fragment #disclaimer-cta-modal {
    position: relative;
    margin: auto;
    transform: translate(0, 80%);
    border: 1px solid var(--medium-gray);
    background: var(--white);
    z-index: 2055;
    max-width: 780px;
    height: 335px;
    background-color: #ffffff;
    overflow: scroll;
  }
  
  #custome-fragment #modal-container #disclaimer-cta-modal .header {
    display: flex;
    padding: 18px 18px 0 18px;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
  }
  
  #custome-fragment #modal-container #disclaimer-cta-modal .content {
    display: flex;
    padding: 0 18px 18px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    color: #1f1f1f;
    font-size: 14px;
  }
  
  #custome-fragment #modal-container #disclaimer-cta-modal .content-text {
    text-align: left;
    font-family: Sabon LT Pro, Calibri, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-top: 18px;
    color: #1f1f1f;
  }
  
  #custome-fragment .header h3 {
    font-family: Adelle Sans, Calibri, sans-serif;
    margin-bottom: 7px;
    font-size: 14px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 114.286% */
  }
  
  #custome-fragment #disclaimer-cta-modal .header a {
    align-self: flex-start;
  }
  
  /* new mobile css  */
  @media screen and (max-width: 768px) {
    .chapters-sm-container.expanded {
      padding: 0 12px 0 12px;
    }
  
    .related-nav-btn.disabled {
      display: none;
    }
  
    .navbar-sm-new .right-content {
      padding: 0px 12px;
    }
    .right-rail-title {
      padding: 8px 0;
    }
    .right-rail-section {
      gap: 0px;
    }
    .navbar-sm-new .right-rail-link {
      padding: 0 0 8px 0px;
    }
    .navbar-sm-new .related-content-item {
      padding-left: 8px;
    }
  
    #modal-container #disclaimer-cta-modal {
      margin-left: 8px;
      margin-right: 8px;
    }
  }
  
  /* drop cap */
  @media screen and (min-width:769px) {
      .is-really-first p:first-child:not(:has(.highlight-quote))::first-letter {
  float: left;
  font-size: 80px;
  line-height: 90px;
  padding-top: 0px;
  padding-right: 9px;
  padding-left: 2px;
  font-weight: 800;
  font-family: 'Adelle Sans Condensed', sans-serif;
  }
  
  .is-really-first .highlight-quote {
  float: left;
  font-size: 80px;
  line-height: 90px;
  padding-top: 0px;
  padding-right: 9px;
  padding-left: 2px;
  font-weight: 800;
  font-family: 'Adelle Sans Condensed', sans-serif;
  }
  }
  