.sticky-toc .ad-space {
  display: none;
}

nav.toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.toc ul li a {
  color: #fff;
  display: block;
  padding: 0.5em 0;
  text-decoration: none;
  line-height: 120%;
  margin: 0.25em 0;
  font-size: 1.2em;
  font-weight: var(--font-weight-bold);
}

nav.toc ul li a.active,
nav.toc ul li.active > a {
  color: var(--color-primary);
}

/* sub items (h3s) */
nav.toc ul ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.toc ul li ul {
  font-size: 0.9em;
  margin-bottom: 1em;
}

nav.toc ul li ul a {
  padding-left: 1.5em;
  border-left: 2px solid transparent;
  font-weight: var(--font-weight-regular);
}

nav.toc ul li.active ul li.active a {
  border-left: 2px solid var(--color-primary);
}

/* ----- content ----- */
section.tab-container {
  padding: 4em 0 0 0;
  margin: 0 0 2rem 0;
}

/* Mobile TOC BTN */
.toc-content button.sidebarToggle {
  margin: 0 -17px;
  box-sizing: content-box;
  color: #000;
  position: sticky;
  z-index: 3;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
  text-align: center;
  padding: 1em 1em;
  display: none;
}

.toc-content .sidebarToggle img {
  margin-right: 0.4em;
  width: 20px;
  position: relative;
  top: 0.17em;
}

.toc-content .sidebarToggle svg {
  margin-right: 0.4em;
  width: 1rem;
  height: 1rem;
}

/* Show TOC button */
.toc-content button.sidebarToggle.tocToggle--show {
  display: block;
  animation: showTOCbutton 0.3s normal;
  -webkit-animation: showTOCbutton 0.3s normal;
  animation-fill-mode: forwards;
}

@keyframes showTOCbutton {
  0% {
    top: 0;
  }
  100% {
    top: 59px;
  }
}
/* ===================================== Responsive  ===================================== */
/*--------------------------------------------------------------
#  Tablet
--------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .container-sidebar-anchors {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .toc--outer {
    display: block;
  }
}
/*--------------------------------------------------------------
#  Desktop
--------------------------------------------------------------*/
@media screen and (min-width: 1024px) {
  .sticky-toc .toc--outer {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 0.5em 0.5em 0.5em 0;
    box-shadow: var(--box-shadow-card);
  }
  .sticky-toc .ad-space {
    display: block;
    margin-top: 1.5em;
  }
  .sticky-toc .ad-space img {
    margin: 0;
  }
  /* Hide mobile BTN */
  body .toc-content button.sidebarToggle,
  body .toc-content button.sidebarToggle.tocToggle--show {
    display: none;
  }
  /* sub items (h3s) */
  nav.toc ul ul {
    display: none;
  }
  nav.toc ul li.active ul {
    display: block;
  }
  nav.toc ul li a {
    color: var(--color-secondary);
    display: block;
    padding: 0.25rem 1rem;
    text-decoration: none;
    border-left: 3px solid transparent;
    line-height: 120%;
    margin: 0.25em 0 0.25em 0;
    font-size: 0.8em;
    font-weight: var(--font-weight-bold);
  }
  nav.toc ul li a.active,
  nav.toc ul li.active > a {
    color: var(--color-primary);
    border-left: 3px solid var(--color-primary);
  }
  /* sticky */
  /* un cover content from headings */
  /* header */
  /* Content headings offset */
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .sticky-toc {
    position: sticky;
    top: 6em;
  }
  body.logged-in .sticky-toc {
    top: 7rem;
  }
  .single-card nav.toc,
  body.logged-in.single-card nav.toc {
    top: 12rem;
  }
}
@media screen and (min-width: 1024px) {
  .toc-content .wpb_content_element {
    z-index: 2;
    position: relative;
  }
  .toc--heading {
    display: block;
    margin: -9px -9px 11px -1px;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    padding: 0.3em 1em 0.5em 1.1em;
    background: var(--color-secondary);
    color: #fff;
  }
  .toc-content h2,
  .toc-content h2 {
    padding-top: 2.3em;
    margin-top: -2.3em;
  }
  .toc-content h3,
  .toc-content h3 {
    padding-top: 2.3em;
    margin-top: -2.3em;
  }
  body.logged-in .toc-content h2,
  body.logged-in .toc-content h3 {
    padding-top: 3.3em;
    margin-top: -3.3em;
  }
}

/*# sourceMappingURL=toc.css.map */
