#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: var(--Deloitte-Insights-Primary-Soft-Black, #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: var(--Deloitte-Insights-Primary-Soft-Black, #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: var(--Deloitte-Insights-Primary-Soft-Black, #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;
    opacity: 1;
    transition: all 0.6s ease-out;
  }

  #custome-fragment .banner-sm-container.anim-end {
    opacity: 1;
  }

  #custome-fragment .hero-sm-banner {
    height: 100%;
    width: 100%;
    max-height: 405px;
    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: var(--Deloitte-Insights-Primary-Soft-Black, #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: var(--Deloitte-Insights-Primary-Soft-Black, #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: var(--Deloitte-Insights-Primary-Soft-Black, #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: 12px 0 32px 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;
  }

  #custome-fragment .navbar-container.sticky {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 111;
    transform: translateY(-100%);
    animation: slideDown 0.9s ease forwards;
  }

  @keyframes slideDown {
    to {
      transform: translateY(0);
      z-index: 11111;
    }
  }

  .navbar-placeholder.active {
    height: 111px;
    /* Adjust based on navbar height */
  }
}

#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 var(--Deloitte-Insights-Primary-Soft-Black, #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: var(--Deloitte-Insights-Primary-Soft-Black, #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: var(--Deloitte-Insights-Primary-Dark-Green, #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: var(--Deloitte-Insights-Primary-Soft-Black, #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: var(--Data-Viz-Colors-C-Grey, #dfe0e1);
  pointer-events: none;
}

#custome-fragment .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;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

#custome-fragment .chapter-item.active .chapter-number {
  color: var(--Deloitte-Insights-Primary-Soft-Black, #1f1f1f);
}

#custome-fragment .chapter-title {
  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;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  /* display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        width: 100%; */
}

#custome-fragment .chapter-item.active .chapter-title {
  color: var(--Deloitte-Insights-Primary-Soft-Black, #1f1f1f);
}

#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: #26890d;
  text-decoration: underline;
}

#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: 200px;
  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: var(--Deloitte-Insights-Primary-Dark-Green, #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: 20px;
  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: var(--Deloitte-Insights-Primary-Soft-Black, #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: var(--Deloitte-Insights-Primary-Dark-Green, #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: 105%;
  max-height: calc(1.2em * 4); /* 3 lines of text */
  width: 100%;
}

.right-rail-link {
  display: block;
  color: var(--Deloitte-Insights-Primary-Dark-Green, #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: 8px;
  height: 60px;
}

#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.5;
  pointer-events: none;
  cursor: not-allowed;
}

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.5;
  cursor: not-allowed;
}

.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: 12px 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 var(--Deloitte-Insights-Primary-Soft-Black, #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: var(--Deloitte-Insights-Primary-Dark-Green, #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-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  margin-left: 8px;
  margin-right: 12px;
  color: var(--Deloitte-Insights-Primary-Soft-Black, #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: var(--Deloitte-Insights-Primary-Dark-Green, #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(180deg);
  align-items: center;
  gap: 5px;
}

.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: 307px;
  overflow-x: hidden;
  overflow-y: scroll;
}

@media screen and (max-width: 375px) {
  .chapters-sm-carousel {
    max-height: 275px;
  }
}

.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: 1;
}

.chapter-sm-item.active .chapter-number {
  color: var(--Deloitte-Insights-Primary-Soft-Black, #1f1f1f) !important;
}

.chapter-title {
  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-sm-item.active .chapter-title {
  color: var(--Deloitte-Insights-Primary-Soft-Black, #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: 6px 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: var(--Deloitte-Insights-Primary-Soft-Black, #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: var(--Deloitte-Insights-Primary-Soft-Black, #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: var(--Deloitte-Insights-Primary-Dark-Green, #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;
  }
}

.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: var(--Deloitte-Insights-Primary-Dark-Green, #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: var(--Deloitte-Insights-Primary-Soft-Black, #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.5;
  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;
  }
}

#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: var(--Deloitte-Insights-Primary-Soft-Black, #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;
  }

  #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;
  }

  #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: var(--Deloitte-Insights-Primary-Dark-Green, #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;
  }

  #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: var(--Deloitte-Insights-Primary-Soft-Black, #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;
  }
}
