/**
 * ToC (Table of Contents)
 * Used in book nodes and possible other.
 ============================================================================ */
.back-to-top {
  float: right;
  margin-top: 1rem;
  font-size: 0.8125rem;
}

.node .toc-menu {
  margin: 2em 0;
}

.toc-menu select {
  width: 100%;
  max-width: 100%;
}

/* If [device width] is greater than or equal to [specified #], then display 'desktop' */
@media only screen and (min-width: 768px) {
  .toc-mobile {
    display: none;
  }
  .toc-desktop {
    display: block;
  }
}

/* If [device width] is less than or equal to [specified #], then display 'mobile' */
@media only screen and (max-width: 767px) {
  .toc-mobile {
    display: block;
  }
  .toc-desktop {
    display: none;
  }
}

.toc-tree {
  padding: 3rem;
}

.toc-tree h3 {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding-bottom: 1rem;
}

.toc-tree ol {
  padding: 0 0 0 1.15em;
  margin: 0;
}

.toc-tree ol a {
  display: block;
  font-style: italic;
  padding: 0.1875rem;
}

.toc-tree li {
  margin-bottom: 1px;
}

.toc-tree ol.none {
  list-style-type: none;
  padding: 0;
}

.toc-tree ol.circle {
  list-style-type: circle;
}

.toc-tree ol.disc {
  list-style-type: disc;
}

.toc-tree ol.square {
  list-style-type: square;
}

.toc-tree ol.decimal {
  list-style-type: decimal;
}

.toc-tree ol.lower-alpha {
  list-style-type: lower-alpha;
}

.toc-tree ol.upper-alpha {
  list-style-type: upper-alpha;
}

.toc-tree ol.lower-roman {
  list-style-type: lower-roman;
}

.toc-tree ol.upper-roman {
  list-style-type: upper-roman;
}

.toc-filter h2 {
  margin-top: 3rem;
  clear: both;
}

.toc-filter p:last-of-type {
  margin: 0;
  padding: 0;
}
/*# sourceMappingURL=toc.css.map */