.docs-heading-anchor {
  margin-left: .45em;
  color: #6f7f95;
  font-size: .72em;
  font-weight: 650;
  opacity: 0;
  transition: opacity .14s ease, color .14s ease;
  vertical-align: .06em;
}

.docs-article__body h2:hover > .docs-heading-anchor,
.docs-article__body h3:hover > .docs-heading-anchor,
.docs-article__body h4:hover > .docs-heading-anchor,
.docs-heading-anchor:focus-visible,
.docs-heading-anchor.is-copied {
  opacity: 1;
}

.docs-heading-anchor:hover,
.docs-heading-anchor:focus-visible,
.docs-heading-anchor.is-copied {
  color: #8b92ff;
}

.docs-nav {
  gap: 8px;
}

.docs-nav__group {
  position: relative;
  display: block;
  padding-left: 0;
}

.docs-nav__group::before {
  display: none;
}

.docs-nav__summary {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 4px 6px 0;
  color: #758398;
  cursor: pointer;
  list-style: none;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
  user-select: none;
}

.docs-nav__summary::-webkit-details-marker {
  display: none;
}

.docs-nav__summary:hover {
  color: #aeb9c9;
}

.docs-nav__chevron {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .15s ease;
}

.docs-nav__group[open] .docs-nav__chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.docs-nav__items {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 1px 0 7px;
  padding-left: 12px;
}

.docs-nav__items::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 1px;
  background: rgba(148, 163, 184, .08);
}

.docs-nav__link::before {
  left: -13px;
}

.docs-article__body > h3 code {
  font-size: .86em;
  font-weight: 650;
}

html[data-theme="light"] .docs-heading-anchor {
  color: #8a97aa;
}

html[data-theme="light"] .docs-heading-anchor:hover,
html[data-theme="light"] .docs-heading-anchor:focus-visible,
html[data-theme="light"] .docs-heading-anchor.is-copied {
  color: #5d63c8;
}

html[data-theme="light"] .docs-nav__summary {
  color: #738197;
}

html[data-theme="light"] .docs-nav__summary:hover {
  color: #445269;
}

html[data-theme="light"] .docs-nav__items::before {
  background: rgba(30, 41, 59, .08);
}

@media (max-width: 860px) {
  .docs-nav {
    gap: 5px;
  }

  .docs-nav__summary {
    min-height: 34px;
  }
}
