body .dnd-section .row-fluid > .ss-layout,
.ss-layout {
  display: flex !important;
  align-items: flex-start;
  justify-content: center;
  gap: var(--spacer_40, 40px);
}

.ss-layout > .body-container--success-story {
  float: none;
  width: auto;
  max-width: 780px;
  flex: 1 1 780px;
  margin-left: 0;
  min-width: 0;
}

.ss-toc-col {
  flex: 0 0 280px;
  max-width: 280px;
  align-self: stretch;
}

.ss-toc-col > .hs_cos_wrapper {
  display: block;
  height: 100%;
}

html,
body.loaded.scrolled {
  overflow-y: visible;
  overflow-x: clip;
}

.ss-toc {
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  will-change: transform;
  background: var(--white_color, #fff);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--border_radius_8, 8px);
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}

.ss-toc.is-empty {
  display: none;
}

.ss-toc__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  outline: none !important;
  cursor: default;
  text-align: left;
}

.ss-toc__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--black_color, #1a1a1a);
}

.ss-toc__chevron {
  display: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--black_color, #1a1a1a);
  border-bottom: 2px solid var(--black_color, #1a1a1a);
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-top: -4px;
}

.ss-toc__nav {
  margin-top: 16px;
  max-height: calc(100vh - 220px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.ss-toc__nav::-webkit-scrollbar {
  width: 4px;
}
.ss-toc__nav::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .18);
  border-radius: 4px;
}

.ss-toc__list,
.ss-toc__list li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.ss-toc__item + .ss-toc__item {
  margin-top: 10px;
}

.ss-toc__link {
  display: block;
  color: var(--black_color, #1a1a1a);
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: color .15s ease, border-color .15s ease;
}

.ss-toc__link:hover {
  color: #0073FF;
  text-decoration: none;
}

.ss-toc__item--h3 .ss-toc__link {
  padding-left: 22px;
  font-size: 13px;
  color: rgba(0, 0, 0, .62);
}

.ss-toc__item--h4 .ss-toc__link {
  padding-left: 34px;
  font-size: 13px;
  color: rgba(0, 0, 0, .55);
}

.ss-toc__item.is-active > .ss-toc__link {
  color: #0073FF;
  font-weight: 600;
  border-left-color: #0073FF;
}

@media (max-width: 991px) {
  body .dnd-section .row-fluid > .ss-layout,
  .ss-layout {
    display: block !important;
  }
  .ss-layout > .body-container--success-story {
    max-width: 100%;
    width: 100%;
  }
  .ss-toc-col {
    flex: none;
    max-width: 100%;
    width: 100%;
    margin-bottom: var(--spacer_40, 40px);
    display: block;
  }
  .ss-toc {
    flex: none;
  }
  @media (prefers-reduced-motion: reduce) {
  .ss-toc__link,
  .ss-toc__chevron {
    transition: none;
  }
}