:root {
  --docshub-base-font-size: 16px;
  --docshub-base-line-height: 1.5;
  --docshub-text-color: #263238;
  --docshub-accent-color: #0d47a1;
}

.docshub {
  display: flex;
}

.docshub-nav {
  width: 300px;
  flex-grow: 1;
  flex-shrink: 0;
  background-color: #fff;
}

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

.docshub-nav ul ul {
  padding-left: 20px;
}

.docshub-nav li {
  padding: 4px 0;
  line-height: 1;
}

.docshub-nav li:last-child {
  padding-bottom: 0;
}

.docshub-nav a {
  color: #333;
  opacity: 0.9;
  text-decoration: none;
  font-size: 14px;
}

.docshub-nav a:hover {
  opacity: 1;
  color: #0d47a1;
}

.docshub-nav > ul {
  position: sticky;
  top: 10px;
  height: 100vh;
  overflow-y: auto;
  padding: 0 15px;
  padding-bottom: 100px;
}

.docshub-nav > ul > li {
  margin-bottom: 4px;
}

.docshub-nav > ul > li > a {
  font-weight: 600;
}

.docshub-nav > ul > li > ul,
.docshub-nav > ul > li > ul > li > ul {
  margin-top: 8px;
  margin-bottom: 16px;
  padding-top: 4px;
  border-left: 1px solid #cfd8dc;
}

.docshub-nav > ul > li > ul:hover,
.docshub-nav > ul > li > ul > li > ul:hover {
  border-color: #0d47a1;
}

.docshub-nav > ul > li > ul:empty,
.docshub-nav > ul > li > ul > li > ul:empty {
  display: none;
}

.docshub-nav-private > a::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12 1.5a5.25 5.25 0 0 0-5.25 5.25v3a3 3 0 0 0-3 3v6.75a3 3 0 0 0 3 3h10.5a3 3 0 0 0 3-3v-6.75a3 3 0 0 0-3-3v-3c0-2.9-2.35-5.25-5.25-5.25Zm3.75 8.25v-3a3.75 3.75 0 1 0-7.5 0v3h7.5Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A");
  width: 12px;
  height: 12px;
  display: inline-block;
  line-height: 1;
  opacity: 0.6;
}

.docshub-content {
  width: 100%;
  padding: 0 15px;
}

.docshub-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  scroll-margin-top: 40px;
}

.docshub-doc-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #eceff1;
  scroll-margin-top: 20px;
}

.docshub-doc-header h1,
.docshub-doc-header h2,
.docshub-doc-header h3,
.docshub-doc-header h4,
.docshub-doc-header h5,
.docshub-doc-header h6 {
  display: inline;
  margin: 0;
  font-weight: 600;
  color: var(--docshub-text-color);
}

.docshub-doc-header h2 {
  font-size: 1.8rem;
}

.docshub-doc-header h3 {
  font-size: 1.5rem;
}

.docshub-doc-header h4 {
  font-size: 1.2rem;
}

.docshub-doc-header:hover .docshub-doc-btt {
  opacity: 1;
}

.docshub-doc-link::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor' %3E%3Cpath fill-rule='evenodd' d='M19.902 4.098a3.75 3.75 0 0 0-5.304 0l-4.5 4.5a3.75 3.75 0 0 0 1.035 6.037.75.75 0 0 1-.646 1.353 5.25 5.25 0 0 1-1.449-8.45l4.5-4.5a5.25 5.25 0 1 1 7.424 7.424l-1.757 1.757a.75.75 0 1 1-1.06-1.06l1.757-1.757a3.75 3.75 0 0 0 0-5.304Zm-7.389 4.267a.75.75 0 0 1 1-.353 5.25 5.25 0 0 1 1.449 8.45l-4.5 4.5a5.25 5.25 0 1 1-7.424-7.424l1.757-1.757a.75.75 0 1 1 1.06 1.06l-1.757 1.757a3.75 3.75 0 1 0 5.304 5.304l4.5-4.5a3.75 3.75 0 0 0-1.035-6.037.75.75 0 0 1-.354-1Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A");
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: text-top;
  margin-right: 8px;
  color: #b0bec5;
  opacity: 0.4;
  line-height: 1;
}

.docshub-doc-content:not(:empty) {
  margin-bottom: 80px;
}

.docshub-doc-btt {
  opacity: 0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  transition: all 100ms ease-in-out;
}

.docshub-mobile-toc-toggle,
.docshub-nav-close {
  display: none;
}

@media screen and (max-width: 1024px) {
  .docshub-nav {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    background: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    width: 400px;
    z-index: 9999999;
  }
  .docshub-nav.active {
    display: block;
  }
  .docshub-nav > ul {
    padding-left: 0;
    padding-right: 0;
  }
  .docshub-nav a {
    font-size: 16px;
  }
  .docshub-mobile-toc-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: #eceff1;
    position: sticky;
    top: 0;
    z-index: 9999998;
  }
  .docshub-mobile-toc-toggle h4 {
    margin: 0;
    padding: 0;
    font-weight: 500;
  }
  .docshub-doc-btt {
    position: absolute;
    right: 0;
    bottom: -25px;
  }
  .docshub-nav-close {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .docshub-nav-close h4 {
    margin: 0;
    padding: 0;
    font-weight: 500;
  }
  .docshub-nav-close svg {
    margin-right: -6px;
    padding: 6px;
  }
  .docshub-doc-header {
    scroll-margin-top: 30px;
  }
}

@media screen and (max-width: 425px) {
  .docshub-nav {
    width: 100%;
  }
  .docshub-title {
    scroll-margin-top: 60px;
  }
  .docshub-doc-header {
    scroll-margin-top: 60px;
  }
}

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