#docs-head {
  padding-top: 50px;
  display: flex;
  background-color: rgb(28 33 38 / 30%);
  height: 100px;
  align-items: center;
  justify-content: center;
}

#docs-head h1 {
  font-size: 40px;
  font-weight: 300;
  margin: 50px 0;
}

.docs-wrapper {
  background: rgb(28 33 38 / 100%);
  display: flex;
  flex-direction: row-reverse;
}

.docs-content {
  max-width: 800px;
  min-width: 250px;
  padding: 0 50px;
  margin: 0 auto;
  background: rgb(28 33 38 / 100%);
}

.docs-content h2 {
  margin-top: 40px;
  padding-top: 30px;
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
}

.docs-content > h2:first-of-type {
  margin-top: 0;
}

.docs-content h3 {
  font-weight: normal;
  font-size: 22px;
  margin-top: 40px;
}

.docs-content h4 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.docs-content p,
.docs-content li {
  line-height: 1.5;
}

.docs-content a {
  color: white;
  text-decoration-color: #1371be;
  text-decoration-thickness: 3px;
}

.docs-nav-wrapper {
  min-width: 250px;
  max-width: 250px;
}

.docs-nav {
  width: 250px;
  list-style: none;
  padding-left: 15px;
  height: 100vh;
  background-color: #181d22;
}

.toc-list {
  list-style: none;
}

.docs-nav > .toc-list {
  overflow-y: auto;
  max-height: 100vh;
  position: relative;
}

.docs-nav > .toc-list > li:first-child {
  padding-top: 20px;
}

.docs-nav > .toc-list > li:last-child {
  padding-bottom: 20px;
}

.is-collapsed {
  max-height: 0;
  display: none;
}

a.toc-link {
  text-decoration: none;
  color: rgb(256 256 256 / 80%);
}

.is-active-link {
  color: white !important;
}

.toc-list-item {
  padding: 5px 0;
  font-weight: 700;
  font-size: 14px;
}

.toc-list .toc-list .toc-list-item {
  padding: 3px;
  font-weight: 400;
}

.toc-link::before {
  background: transparent;
  max-height: 24px;
}

.is-active-link::before {
  background-color: #fff;
}

.docs-content table {
  table-layout: fixed;
  width: 100%;
  overflow-wrap: break-word;
  border-spacing: 0;
}

.docs-content blockquote {
  border-top: 3px solid #496c88;
  border-bottom: 3px solid #496c88;
  margin: 40px 0;
}

.docs-content table th {
  text-align: left;
  padding: 0 5px;
}

.docs-content table td {
  padding: 10px 5px;
  font-size: 14px;
  border-bottom: 1px solid rgb(256 256 256 / 20%);
}

.docs-content table tr:last-child td {
  border-bottom: none;
}

.highlight .c1 {
  color: #acaca9;
}

.show-menu,
.close {
  display: none;
}

@media (max-width: 600px) {
  #docs-head {
    height: 150px;
    padding-top: 75px;
  }
}

@media (max-width: 800px) {
  .show-menu {
    display: block;
    position: sticky;
    top: 0;
    padding: 20px 0;
    width: 100%;
    text-align: center;
    cursor: pointer;
    background: rgb(28 33 38 / 100%);
  }

  .docs-nav-wrapper .close {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    z-index: 15;
    background: rgb(0 0 0 / 50%);
    padding: 6px;
    cursor: pointer;
  }

  .docs-nav-wrapper .close.show {
    display: flex;
  }

  .docs-nav-wrapper {
    min-width: 0;
    max-width: unset;
  }

  .docs-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    display: none;
    width: 100%;
  }

  .docs-nav.show {
    display: block;
  }
}
