
.docs {
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    height: 100%;
    overflow: hidden;
    transition: .3s ease background-color;
}


.docs .nav {
    background-color: #111421;
    overflow-y: scroll;
    transition: .3s ease background-color;
}

.docs .nav h1 {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    padding: 10px 10px 10px 20px;
}

.docs .nav h2 {
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    font-size: 17px;
    padding: 10px 10px 10px 20px;
    background-color: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(100, 100, 100, 0.1);
    border-bottom: 1px solid rgba(100, 100, 100, 0.1);
}

.docs .nav .link {
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    padding: 10px 10px 10px 20px;
    display: block;
    font-weight: 500;
    font-size: 17px;
}

.docs .nav .link.active {
    color: var(--main-two-color);
}

.docs .nav .link:hover {
    color: #fff;
    background-color: var(--main-two-color);
}

.docs .doc {
    overflow-y: scroll;
    transition: .3s ease background-color;
    display: grid;
    grid-template-columns: 1fr 250px;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    position: relative;
}

.doc > .elements {
    padding: 20px;
}

.doc > .directory {

}

.logs {
    padding-left: 0px;
    margin-top: 50px;
}

.breadcrumbs {
    margin-bottom: 19px;
}

.breadcrumbs .crumb {
    height: 30px;
    line-height: 30px;
    color: var(--dark);
    display: inline-block;
    padding: 0px 5px;
    font-size: 18px;
    font-weight: 500;
}

.breadcrumbs .crumb:first-child {
    padding-left: 0px;
}

.breadcrumbs .crumb.seperator {
    padding: 0px;
    font-size: 14px;
    color: var(--main-two-color);
    transform: translateY(-1px);
}

.breadcrumbs .crumb.seperator svg path {
    color: var(--main-two-color);
}

.limiter {
    max-width: 1000px;
    margin: 0px auto;
}

.doc h1.navigateable {
    font-weight: 750;
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 10px;
    cursor: pointer;
}

.doc h2.navigateable {
    font-weight: 750;
    font-size: 22px;
    color: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding-bottom: 5px;
    margin-bottom: 5px;
    cursor: pointer;
}

.navigateable:hover {
    color: var(--main-two-color-2) !important;
}

.doc .rich {
    font-size: 15px;
    font-weight: 500;
    color: rgba(0,0,0,0.5);
}

.doc .rich p {
    color: rgba(0,0,0,0.8);
}

.doc .rich strong {
    color: rgba(0,0,0,0.8);
}

.doc .rich p code,
.doc .rich ul code,
.doc .rich ol code {
    background-color: #cfcfcf;
    border-radius: 3px;
    padding: 1px 6px;
}

.doc ul,
.doc ol {
    list-style-type: none;
    margin-top: 10px;
    margin-bottom: 10px;
    counter-reset: section;
}

.doc ol {
    list-style-type: decimal;
    list-style-position: inside;
}

.doc ul li,
.doc ol li {
    position: relative;
    padding-left: 19px;
    color: rgba(0,0,0,0.8);
}

.doc ol li {
    padding-left: 0px;
}

.doc ul li::before {
    content: "";
    height: 14px;
    min-width: 14px;
    background: url('/images/circle-dot-duotone.svg');
    position: absolute;
    top: 2px;
    left: 0px;
}

.doc ol li::marker {
    color: #000;
    font-weight: 700;
}

/* .doc ol li::before {
    counter-increment: section;
    content: "" counter(section) ".";
    height: 14px;
    min-width: 14px;
    position: absolute;
    top: 0px;
    left: 0px;
    font-weight: 700;
    color: #000;
    text-align: right;
} */

.doc .notice {
    background-color: var(--main-two-color-trans-2);
    border-radius: 4px;
    display: grid;
    grid-template-columns: 70px 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin: 10px 0px;
}

.doc .notice .icon {
    border-right: 1px solid var(--main-two-color);
    height: 100%;
    text-align: center;
    position: relative;
}

.doc .notice .icon .box {
    height: 40px;
    width: 40px;
    border-radius: 6px;
    background-color: var(--main-two-color);
    text-align: center;
    line-height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.doc .notice .icon svg path {
    color: #fff;
}

.doc .notice.warning .icon {
    border-right: 1px solid var(--main-one-color);
}

.doc .notice.warning .icon .box {
    background-color: var(--main-one-color);
}

.doc .notice.warning {
    background-color: var(--main-one-color-trans-2);
}

.doc .notice .text {
    padding: 22px;
    font-weight: 500;
    color: var(--dark);
}

.doc .columns {
    display: grid;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.doc .doc-reference {
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
    background-color: var(--background);
    box-shadow: 0 4px 4px rgba(114,127,155,.15);
    padding-bottom: 10px;
}

.doc .doc-reference .highlight {
    width: 100%;
    height: 8px;
    background-color: var(--main-two-color);
}

.doc .doc-reference h4 {
    font-size: 18px;
    color: var(--dark);
    font-weight: 450;
    padding: 10px 20px 2px 20px;
}

.doc .doc-reference a {
    display: inline-block;
    margin-left: 20px;
    padding: 5px 0px;
    color: var(--main-two-color-2);
    text-decoration: none;
}

.doc .doc-reference a span {
    color: var(--main-two-color-2);
    font-weight: 550;
    font-size: 15px;
    display: inline-block;
}

.doc .doc-reference a span svg path {
    color: var(--main-two-color-2);
}

.doc .doc-reference a span.icon {
    font-size: 12px;
}

.doc .doc-reference a:hover span.icon {
    transform: translateX(5px);
}

.doc .directory .inner {
    position: -webkit-sticky;
    position: sticky;
    width: 100%;
    top: 0px;
    left: 0px;
}

.doc .directory .desc {
    padding: 20px 10px 20px 0px;
    font-size: 18px;
    font-weight: 550;
    color: var(--dark);
}

.doc .directory .lheader {
    display: block;
    border-left: 2px solid rgba(0,0,0,0.3);
    color: rgba(0,0,0,0.7);
    text-decoration: none;
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    padding: 0px 10px 0px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
    text-decoration: none;
}

.doc .directory .lheader:hover,
.doc .directory .lheader.active {
    border-left: 2px solid rgba(0,0,0,0.7);
    color: rgba(0,0,0,1);
    background-color: var(--main-two-color-trans);
}

.doc .doc-stage {
    margin-bottom: 20px;
}

.doc .grid {
    display: grid;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
}

.doc .image-wrapper {
    margin: 13px 0px;
}

.doc .image-wrapper .image {
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.doc .image-wrapper.center .sizer {
    margin: 0px auto;
}

.doc .image-wrapper.right {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    justify-content: normal;
    align-items: normal;
    align-content: normal;
}

.doc .image-wrapper.right .sizer {
    flex-grow: 1;
}

.doc .code code span {
    --dark: #fff;
}

.doc .code {
    margin: 10px 0px;
}

.doc pre[class*=language-] {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border: none !important;
    box-shadow: none !important;
    background: var(--nav);
    margin: 0px;
    max-height: 500px;
}

.line-numbers-rows>span:before {
    color: rgba(255,255,255,0.8) !important;
}

.line-numbers-rows>span {
    height: 24.843px;
    line-height: 20px;
}

.doc .code .header {
    background: var(--nav);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom: 1px solid rgba(100,100,100,0.5);
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) 60px;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.doc .code .header .icon {
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 15px;
}

.doc .code .header .icon svg path {
    color: #fff;
}

.doc .code .header .title {
    height: 40px;
    color: #fff;
    line-height: 40px;
    font-weight: 450;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.doc .code .header .copy {
    height: 40px;
}

.doc .code .header .copy .do {
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    display: block;
}

.doc .code .header .copy .do svg path {
    color: #fff;
}

.doc .code .header .copy .do:hover svg path {
    color: var(--main-two-color);
}

.parameter {
    padding: 10px 0px;
    position: relative;
}

.parameter .header {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.parameter .header .chev svg {
    width: 9px;
    margin-top: 3px;
    display: block;
    position: relative;
    z-index: 102;
}

.parameter .header .title .name {
    font-weight: 700;
    font-size: 17px;
    color: var(--dark);
}

.parameter .header .title .type {
    color: rgba(0,0,0,0.5);
    padding-left: 10px;
    font-weight: 600;
    font-size: 15px;
}

.parameter .header .title .required {
    color: var(--main-one-color);
    padding-left: 10px;
    font-weight: 600;
    font-size: 15px;
}

.parameter .desc {
    padding-left: 18px;
    padding-top: 3px;
    position: relative;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
}

.parameter.object > .desc::after {
    display: block;
    content: "";
    position: absolute;
    top: 0px;
    left: 3px;
    height: 24px;
    border-left: 2px solid #D8DCE0;
}

.parameter .children {
    position: relative;
}

.parameter .children::after { 
    display: block;
    content: "";
    border-left: 2px solid #D8DCE0;
    position: absolute;
    left: 3px;
    top: 0px;
    height: 100%;
}

.parameter .children .parameter {
    padding-left: 20px;
}

.parameter .children .parameter:last-child::after {
    position: absolute;
    left: 0px;
    top: 21px;
    height: calc(100% - 21px);
    width: 7px;
    display: block;
    content: "";
    background-color: var(--background);
    z-index: 100;
}

.parameter .children .parameter:last-child::before,
.parameter .children .parameter.object::before {
    display: block;
    content: "";
    position: absolute;
    left: 3px;
    top: 18px;
    border-bottom: 2px solid #D8DCE0;
    width: 22px;
    height: 1px;
    z-index: 101;
}

.parameter .allowed {
    margin-left: 18px;
    margin-top: 5px;
}

.parameter .allowed .shown {
    display: none;
}

.parameter .allowed .list {
    display: none;
}

.parameter .allowed .shown,
.parameter .allowed .unshown {
    height: 34px;
    line-height: 34px;
    background-color: rgba(120,120,120,0.1);
    font-size: 15px;
    padding: 0px 15px;
    color: var(--main-two-color);
    cursor: pointer;
    margin-top: 5px;
}

.parameter .allowed .shown span,
.parameter .allowed .unshown span {
    color: var(--main-two-color);
    font-weight: 550;
}

.parameter .allowed .shown svg path,
.parameter .allowed .unshown svg path {
    color: var(--main-two-color);
}

.parameter .allowed .shown span:last-child,
.parameter .allowed .unshown span:last-child {
    font-size: 13px;
    padding-left: 5px;
}

.parameter .allowed.expanded .shown,
.parameter .allowed.expanded .list {
    display: block;
}

.parameter .allowed.expanded .unshown {
    display: none;
}

.parameter .allowed .list {
    background-color: rgba(170,170,170,0.1);
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 15px;
}

.parameter .allowed .entry {
    margin-bottom: 10px;
}

.parameter .allowed .entry:last-child {
    margin-bottom: 0px;
}

.parameter .allowed .entry .name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--dark);
}

.parameter .allowed .entry .name-desc {
    font-weight: 500;
    font-size: 13px;
    color: var(--dark);
}

.request-header {
    padding: 9px 16px;
    border-left: 2px solid #000;
    background-color: rgba(0,0,0,0.1);
    border-radius: 4px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    position: relative;
}

.request-header .method {
    font-weight: 750;
    font-size: 16px;
    margin-bottom: 4px;
    color: #000;
}

.request-header .url {
    font-size: 15px;
    color: #000;
    font-weight: 500;
}

.request-header .r-copy {
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #000;
    cursor: pointer;
    font-size: 17px;
    display: block;
    position: absolute;
    top: 6px;
    right: 5px;
    padding: 0px 5px;
}

.request-header .r-copy svg path {
    color: #000;
}

.request-header.POST {
    border-left-color: #A896DF;
    background-color: rgba(168,150,223,0.3);
}

.request-header.POST .method {
    color: #A896DF;
}

.request-header.GET {
    border-left-color: #66C331;
    background-color: rgba(102,195,49,0.3);
}

.request-header.GET .method {
    color: #66C331;
}