:root {
    --black: #0A0B10;
    --black-600: rgba(10, 11, 16, 0.6);
    --grey-1000: #9E9E9E;
    --grey-900: #909090;
    --white: #FFF;
    --white-500: rgba(255, 255, 255, 0.5);
    --white-240: rgba(255, 255, 255, 0.24);
    --white-160: rgba(255, 255, 255, 0.16);
    --white-120: rgba(255, 255, 255, 0.12);
    --white-80: rgba(255, 255, 255, 0.08);
    --white-40: rgba(255, 255, 255, 0.04);
    --white-20: rgba(255, 255, 255, 0.02);
    --lime: #B2DD4C;
    --lime-900: #A4CB48;
    --lime-800: #D4FF6E;
    --lime-80: rgba(178, 221, 76, 0.08);
    --blue: #29319A;
    --yellow: #EFCF2F;
    --red: #F94C2E;
    --purple: #848DFF;
    --green: #709215
}

*, ::after, ::before {
    box-sizing: border-box
}

:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 2px
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

::-webkit-scrollbar-track {
    border-radius: 8px;
    background: var(--white-160)
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: var(--grey-1000)
}

::-webkit-scrollbar-thumb:hover {
    background: var(--white-240)
}

html {
    height: 100%;
    scroll-behavior: smooth
}

body {
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
    font-optical-sizing: auto;
    line-height: 120%;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--white);
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    position: relative
}

body.overflow-hidden {
    overflow: hidden
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 150%
}

h1 {
    font-size: 1.3rem;
    font-weight: 500
}

h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0.6rem 0
}

a {
    text-decoration: none;
    color: var(--lime-900);
    transition: .5s
}

a:focus-visible, a:hover {
    color: var(--lime-800)
}

a:active {
    color: #688a14
}

p {
    margin: 0
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.btn-reset {
    background: 0 0;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    color: inherit;
    text-align: left;
    transition: .3s
}

.button-link {
    border-radius: 0.1rem;
    background-color: var(--white-80);
    color: var(--white);
    padding: 0.3rem;
    margin: 0.3rem 0;
    transition: .2s;
    display: flex;
    align-items: center;
    -moz-column-gap: 0.4rem;
    column-gap: 0.4rem;
    word-break: break-word;
    white-space: normal;
    width: fit-content
}

.button-link svg {
    fill: transparent;
    stroke: var(--grey-900);
    flex-shrink: 0;
    transition: .2s
}

.button-link:focus-visible, .button-link:hover {
    color: var(--white);
    background-color: var(--white-240)
}

.button-link:focus-visible svg, .button-link:hover svg {
    stroke: var(--white)
}

.button-link:active {
    background-color: var(--white-160)
}

.button-link:disabled {
    color: var(--grey-1000)
}

.button-link--inline {
    display: inline-flex
}

.list-reset {
    margin: 0;
    padding: 0;
    list-style: none
}

.container {
    width: 100%;
    max-width: 96rem;
    padding: 0 1.2rem;
    margin: 0 auto
}

#footer, #header {
    flex: 0 0 auto
}

#content {
    flex: 1 0 auto
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden
}

.site-button {
    font-size: 0.8rem;
    line-height: 150%;
    font-weight: 600;
    min-height: 2.1rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.2rem;
    border: 0.05rem solid transparent
}

.site-button--lime {
    background-color: var(--lime);
    color: var(--black)
}

.site-button--lime:hover {
    background-color: var(--lime-800);
    border-color: #688a14;
    color: var(--black)
}

.site-button--lime:active {
    background-color: #688a14
}

.site-button--grey {
    background-color: var(--white-120);
    font-weight: 400;
    border-color: var(--white-80);
    color: var(--white)
}

.site-button--grey:hover {
    background-color: var(--white-160);
    border-color: var(--white-240);
    color: var(--white)
}

.site-button--grey:active {
    background-color: var(--white-240);
    border-color: var(--white-160)
}

.site-button--grey:disabled {
    border-color: transparent
}

.site-button:disabled {
    background-color: var(--white-120);
    color: var(--grey-1000);
    pointer-events: none
}

.form__field {
    width: 100%;
    height: 2.1rem;
    background-color: transparent;
    border: 0.05rem solid var(--white-160);
    border-radius: 0.4rem;
    color: var(--white);
    outline: 0;
    transition: .3s
}

.form__field::-moz-placeholder {
    color: var(--grey-1000)
}

.form__field::placeholder {
    color: var(--grey-1000)
}

.form__field:focus {
    border-color: var(--grey-1000)
}

.select {
    position: relative
}

.select select {
    opacity: 0;
    position: absolute;
    pointer-events: none;
    visibility: hidden
}

.select__current {
    cursor: pointer;
    border: 0.05rem solid rgba(0, 0, 0, .1);
    display: flex;
    border-radius: 0.6rem;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    color: var(--white);
    align-items: center;
    -moz-column-gap: 0.4rem;
    column-gap: 0.4rem
}

.select__current span {
    color: var(--black)
}

.select__current::after {
    content: "";
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik05IDFMNSA1TDAuOTk5OTk5IDEiIHN0cm9rZT0iIzlFOUU5RSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 0.6rem;
    height: 0.6rem;
    transition: .3s
}

.select__list {
    padding: 0.2rem;
    margin: 0;
    list-style: none;
    position: absolute;
    z-index: 22;
    background-color: var(--white-40);
    border: 0.05rem solid var(--white-80);
    -webkit-backdrop-filter: blur(2rem);
    backdrop-filter: blur(2rem);
    border-radius: 0.4rem;
    overflow: hidden;
    top: 130%;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    min-width: 5rem;
    display: flex;
    flex-direction: column;
    row-gap: 0.2rem;
    transition: .3s
}

.select__item {
    cursor: pointer;
    padding: 0.5rem 0.6rem;
    border-radius: 0.3rem;
    color: #b0b6be;
    transition: .3s
}

.select__item--current {
    background-color: var(--white-80);
    color: var(--white)
}

.select__item:focus-visible, .select__item:hover {
    background-color: var(--white-80)
}

.select--active .select__current::after {
    transform: rotate(180deg)
}

.select--active .select__list {
    opacity: 1;
    visibility: visible
}

.copy-button {
    cursor: pointer
}

.copy-button svg {
    width: 0.8rem;
    height: 0.8rem
}

.logo {
    display: flex
}

.tab-content:not(.tab-content--active) {
    display: none
}

.menu-toggle {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px
}

.menu-toggle__items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 14px;
    row-gap: 3px
}

.menu-toggle__items span {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    position: relative;
    transition: .3s
}

.menu-toggle svg {
    fill: transparent;
    stroke: var(--white);
    width: 12px;
    height: 12px
}

.pagination__list {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.2rem;
    column-gap: 0.2rem
}

.pagination a, .pagination span {
    width: 1.7rem ;
    height: 1.7rem ;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-1000);
    background-color: var(--white-20);
    border: 0.05rem solid var(--white-80);
    border-radius: 0.4rem
}

.pagination a svg, .pagination span svg {
    fill: transparent;
    stroke: var(--grey-1000);
    width: 0.6rem;
    height: 0.6rem
}

.pagination a:focus-visible, .pagination a:hover {
    color: var(--white);
    background-color: var(--white-120)
}

.pagination span.current {
    background-color: var(--white-120);
    color: var(--white);
    pointer-events: none
}

.header {
    background-color: var(--black);
    position: sticky;
    top: 0;
    z-index: 100
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0
}

.header__logo-img {
    width: 100%;
    max-width: 9.75rem
}

.header__middle {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.8rem;
    column-gap: 0.8rem;
    flex: 1;
    justify-content: center
}

.header__search {
    max-width: 13.4rem;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    height: 2.1rem;
    background-color: transparent;
    border: 0.05rem solid var(--white-160);
    border-radius: 0.4rem;
    color: var(--white);
    outline: 0;
    transition: .3s
}

.header__search:focus-visible, .header__search:hover {
    color: var(--white);
    border-color: var(--white)
}

.header__search:focus-visible .header__search-text, .header__search:hover .header__search-text {
    color: var(--white)
}

.header__search svg {
    fill: var(--grey-1000);
    width: 0.7rem;
    height: 0.7rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 1rem
}

.header__search-text {
    padding-left: 1.9rem;
    font-size: 0.7rem;
    color: var(--grey-1000)
}

.header__right-inner {
    display: flex;
    align-items: center
}

.header__actions-list {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.8rem;
    column-gap: 0.8rem
}

.header__ask {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem
}

.header__ask svg {
    fill: var(--white);
    flex-shrink: 0;
    width: 0.8rem;
    height: 0.8rem
}

.header__nav-links-list {
    display: flex;
    align-items: center
}

.header__nav-links-link {
    font-size: 0.8rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem
}

.header__nav-links-link svg {
    width: 0.5rem;
    height: 0.7rem;
    stroke: var(--lime-900);
    stroke-width: 1.5;
    position: relative;
    top: 0.05rem
}

.header__bottom {
    border-top: 0.05rem solid var(--white-80);
    background-color: var(--white-40);
    padding: 0.5rem 0
}

.header__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header__toggle {
    width: 1rem;
    height: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 0.25rem;
    margin-left: 0.75rem;
    overflow: hidden
}

.header__toggle span {
    display: block;
    width: 100%;
    height: 0.1rem;
    background-color: var(--white);
    transition: .3s
}

.header__toggle span:nth-child(2) {
    transform: translate(0.4rem)
}

.header__toggle:focus-visible span:nth-child(1), .header__toggle:hover span:nth-child(1) {
    transform: translate(0.2rem)
}

.header__toggle:focus-visible span:nth-child(2), .header__toggle:hover span:nth-child(2) {
    transform: translate(0)
}

.header__toggle:focus-visible span:nth-child(3), .header__toggle:hover span:nth-child(3) {
    transform: translate(0.4rem)
}

.wrapper {
    margin-top: 0.5rem
}

.wrapper__content {
    display: grid;
    grid-template-columns: 13rem 1fr;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    align-items: flex-start
}

.sidebar {
    height: 100vh;
    overflow-y: auto;
    position: sticky;
    top: var(--header-height);
    max-height: 90vh;
    font-size: 0.8rem;
    padding-right: 0.5rem;
}

.sidebar__toggle {
    background-color: var(--white-160);
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    position: fixed;
    right: 1rem;
    top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.sidebar__toggle span {
    position: absolute;
    height: 0.1rem;
    background-color: var(--white);
    width: 50%;
    transform: rotate(45deg)
}

.sidebar__toggle span:nth-child(2) {
    transform: rotate(-45deg)
}

.sidebar__nav-toggle {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.4rem;
    column-gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    color: var(--grey-1000);
    width: 100%;
    font-size: 0.8rem
}

.sidebar__nav-toggle svg {
    stroke: var(--grey-1000);
    width: 1rem;
    height: 1rem;
    stroke-width: 1.5;
    transition: .3s
}

.sidebar__nav-toggle:focus-visible, .sidebar__nav-toggle:hover {
    color: var(--lime-800)
}

.sidebar__nav-toggle:active {
    color: #688a14
}

.sidebar__nav-item--open > button {
    color: var(--white)
}

.sidebar__nav-item--open > button svg {
    stroke: var(--white);
    transform: rotate(180deg)
}

.sidebar__nav-link {
    padding: 0.45rem 0.8rem;
    display: block;
    color: var(--grey-1000)
}

.sidebar__nav-link--current {
    font-weight: 500;
    color: var(--white)
}

.sidebar__nav-submenu {
    display: none;
    flex-direction: column;
    margin-left: 5%
}

.sidebar__nav-submenu-link {
    padding: 0.45rem 0.8rem;
    display: block;
    color: var(--grey-1000)
}

.sidebar__nav-submenu-link--current {
    background-color: var(--lime-80);
    border-radius: 0.4rem;
    color: var(--lime-900)
}

.main {
    display: grid;
    grid-template-columns:1fr minmax(15rem, 30rem);
    align-items: flex-start;
    -moz-column-gap: 2rem;
    column-gap: 2rem
}

.main__content {
    overflow: hidden;
    line-height: 120%
}

.main__content p {
    margin: 0.75rem 0;
    line-height: 140%
}

.main__content h2 {
    font-size: 1.3rem;
    margin-top: 1.2rem
}

.main__content ul {
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    row-gap: 0.15rem
}

.main__title {
    margin-bottom: 1.2rem
}

.site-content {
    border-radius: 0.8rem;
    background-color: var(--white-40);
    border: 0.05rem solid var(--white-80);
    padding: 1.2rem;
    height: 100%
}

.clients {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 0.4rem;
    margin: 1.2rem 0
}

.client-card {
    padding: 1.3rem 0.8rem;
    background-color: var(--white-40);
    /*border: 0.05rem solid var(--white-80);*/
    border-radius: 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 0.6rem;
    color: var(--white);
    border: 0.05rem solid transparent
}

.client-card__header {
    display: flex;
    align-items: center;
    column-gap: 0.4rem
}

.client-card__icon {
    width: 1.3rem;
    height: 1.3rem;
    -o-object-fit: contain;
    object-fit: contain;
    flex-shrink: 0
}

.client-card__title {
    font-size: 0.7rem;
    font-weight: 600
}

.client-card__description {
    color: var(--grey-1000);
    font-size: 0.6rem
}

.client-card:focus-visible, .client-card:hover {
    border-color: var(--green);
    color: var(--white)
}

.examples {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 0.4rem;
    margin: 1.2rem 0
}

.example-card {
    padding: 1.3rem 0.8rem;
    background-color: var(--white-40);
    border: 0.05rem solid var(--white-80);
    border-radius: 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 0.6rem;
    color: var(--white);
    border: 0.05rem solid transparent
}

.example-card__header {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.6rem;
    column-gap: 0.6rem
}

.example-card__icon {
    width: 1.3rem;
    height: 1.3rem;
    -o-object-fit: contain;
    object-fit: contain;
    flex-shrink: 0
}

.example-card__title {
    font-size: 0.7rem;
    font-weight: 600
}

.example-card__description {
    color: var(--grey-1000);
    font-size: 0.6rem
}

.example-card:focus-visible, .example-card:hover {
    border-color: var(--green);
    color: var(--white)
}

.endpoint {
    background-color: rgba(178, 221, 76, .16);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 0.4rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.7rem;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    row-gap: 0.5rem;
    font-weight: 600
}

.endpoint__icon {
    width: 0.8rem;
    height: 0.8rem
}

.endpoint .button-link {
    margin: 0;
    font-weight: 400
}

.info-card {
    display: flex;
    flex-direction: column;
    row-gap: 0.4rem;
    border-left: 0.1rem solid var(--green);
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    padding-left: 0.8rem;
    margin: 1.5rem 0
}

.info-card__header {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.4rem;
    column-gap: 0.4rem
}

.info-card__icon {
    fill: var(--green);
    position: relative;
    line-height: 0
}

.info-card__icon svg {
    width: 0.8rem;
    height: 0.8rem
}

.info-card__title {
    font-weight: 600
}

.info-card__content p {
    margin: 0.15rem 0
}

.info-card__link {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem
}

.info-card__link svg {
    stroke: var(--green);
    stroke-width: 1.5;
    width: 0.9rem;
    height: 0.9rem;
    transition: .3s
}

.info-card__link:active svg {
    stroke: #688a14
}

.info-card__link:focus-visible svg, .info-card__link:hover svg {
    stroke: var(--lime-800)
}

.info-card--yellow {
    border-color: var(--yellow)
}

.info-card--yellow .info-card__icon svg {
    fill: var(--yellow)
}

.info-card--red {
    border-color: var(--red)
}

.info-card--red .info-card__icon svg {
    width: 0.9rem;
    height: 0.9rem;
    fill: var(--red)
}

.info-card--purple {
    border-color: var(--purple)
}

.info-card--purple .info-card__icon svg {
    fill: var(--purple)
}

.rightbar {
    position: sticky;
    top: var(--header-height);
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    height: 88vh;
    overflow-y: auto
}

.example {
    border-radius: 0.8rem;
    background-color: var(--white-40);
    border: 0.05rem solid var(--white-80);
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    row-gap: 0.8rem
}

.example__buttons {
    display: flex;
    align-items: center;
    border-radius: 0.4rem;
    background-color: var(--white-40);
    width: fit-content;
    overflow-x: auto;
    flex-shrink: 0;
    gap: 0.5rem;
}

.example__button {
    padding: 0 1.2rem;
    height: 2.1rem;
    color: var(--grey-1000);
    border: 0.05rem solid transparent;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-grow: 1;
    font-size: 0.8rem
}

.example__button-close {
    flex-grow: 0
}

.example__button-close svg {
    stroke: var(--white)
}

.example__button.tab-button--active {
    background-color: var(--white-120);
    border-color: var(--white-80);
    pointer-events: none
}

.example__button:focus-visible, .example__button:hover {
    background-color: var(--white-240);
    border-color: var(--white-240);
    color: var(--white)
}

.example__button:disabled {
    color: var(--white-240);
    pointer-events: none
}

.example__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.example__content.tab-content {
    padding: 0.8rem 0
}

.example__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    row-gap: 1.2rem;
    height: 100%;
    padding: 0.8rem 0
}

.example__placeholder-texts {
    display: flex;
    flex-direction: column;
    row-gap: 0.8rem
}

.example__placeholder-title {
    font-weight: 500
}

.example__placeholder-description {
    font-size: 0.7rem;
    color: var(--grey-1000);
    max-width: 24rem
}

.example__header {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 0.8rem;
    column-gap: 0.8rem
}

.example__notice {
    border-radius: 0.4rem;
    border: 0.05rem solid var(--white-80);
    padding: 0.55rem;
    width: 100%;
    font-size: 0.7rem
}

.example__copy-button {
    fill: transparent;
    stroke: var(--grey-900)
}

.example__copy-button:focus-visible, .example__copy-button:hover {
    stroke: var(--white)
}

.example__code {
    overflow: auto;
    padding-right: 0.4rem;
    padding-bottom: 0.8rem;
    max-height: 12.5rem
}

.example__code pre {
    margin: 0
}

.example__code .hljs {
    font-size: 0.7rem;
    line-height: 150%;
    background-color: transparent;
    padding: 0 0 0.8rem;
    font-family: Inter, sans-serif;
    overflow: inherit
}

.example--json > .example__content {
    display: flex;
    flex-direction: column;
    row-gap: 0.8rem
}

.hljs {
    color: var(--grey-1000)
}

.hljs-keyword, .hljs-string, .hljs-subst, .hljs-variable {
    color: var(--green)
}

.hljs-comment {
    color: var(--grey-1000)
}

.hljs-attr {
    color: #cc8600
}

.hljs-number {
    color: #e62c7a
}

.search {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(0, 0, 0, .6);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.search__form {
    background-color: var(--black);
    max-width: 30rem;
    width: 100%;
    -webkit-backdrop-filter: blur(4rem);
    backdrop-filter: blur(4rem);
    background: var(--base-white-40);
    border-radius: 0.4rem;
    transform: scale(.8);
    transition: .4s
}

.search__form-group {
    position: relative
}

.search__form-group > svg {
    fill: var(--grey-1000);
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 1rem
}

.search__input {
    background: var(--white-40);
    outline: 0;
    height: 2.5rem;
    padding-left: 1.8rem;
    font-size: 0.7rem;
    padding-right: 2.5rem
}

.search__input:focus {
    border-color: var(--white-160)
}

.search__clear {
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    right: 0.5rem;
    display: none
}

.search__clear svg {
    width: 0.8rem;
    height: 0.8rem;
    fill: red;
    stroke: var(--grey-1000)
}

.search__clear-recent:focus-visible, .search__clear-recent:hover {
    color: var(--lime)
}

.search__results {
    padding: 0.6rem 0.8rem;
    -webkit-backdrop-filter: blur(4rem);
    backdrop-filter: blur(4rem);
    background: var(--white-40);
    border-bottom-left-radius: 0.4rem;
    border-bottom-right-radius: 0.4rem;
    max-height: 80vh;
    overflow-y: auto;
    border: 0.05rem solid var(--white-160);
    border-top: 0;
    display: none
}

.search__not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 0.5rem;
    padding: 1rem
}

.search__not-found svg {
    margin-bottom: 0.2rem;
    stroke: var(--white-160);
    fill: transparent
}

.search__not-found-title {
    font-size: 0.8rem
}

.search__not-found-subtitle {
    font-size: 0.7rem;
    color: var(--grey-1000)
}

.search__block-title {
    padding: 0.6rem;
    color: var(--grey-1000);
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.search__result {
    padding: 0.6rem;
    font-size: 0.7rem;
    color: var(--white);
    width: 100%;
    border-radius: 0.4rem;
    display: flex;
    flex-direction: column;
    row-gap: 0.25rem;
    position: relative
}

.search__result-title {
    max-width: 90%;
    display: flex;
    align-items: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem
}

.search__result-excerpt {
    color: var(--grey-1000);
    font-size: 0.6rem;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle
}

.search__result-stars {
    fill: var(--lime-900);
    flex-shrink: 0
}

.search__result-arrow {
    fill: transparent;
    stroke: var(--white);
    stroke-width: 1.5;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    right: 1.5rem;
    opacity: 0;
    transition: .3s
}

.search__result:focus-visible, .search__result:hover {
    background-color: var(--white-40);
    color: var(--white)
}

.search__result:focus-visible .search__result-arrow, .search__result:hover .search__result-arrow {
    opacity: 1;
    right: 1rem
}

.search.toggle--active {
    opacity: 1;
    visibility: visible
}

.search.toggle--active .search__form {
    transform: scale(1)
}

.search--focused .search__results {
    display: block
}

.search--has-result .search__input {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.search-result {
    padding: 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    position: relative;
    color: var(--white);
    font-size: clamp(.75rem, .1333333333vw + .7166666667rem, .875rem);
    border: 1px solid var(--white-80)
}

.search-result__title {
    font-size: clamp(.875rem, .1333333333vw + .8416666667rem, 1rem)
}

.search-result__excerpt {
    color: var(--grey-1000)
}

.search-result__nav {
    color: var(--grey-1000);
    display: flex;
    align-items: center;
    -moz-column-gap: 7px;
    column-gap: 7px
}

.search-result__nav-item {
    display: flex;
    align-items: center
}

.search-result__nav-item:not(:last-child)::after {
    content: "";
    display: inline-block;
    margin-left: 7px;
    width: 16px;
    height: 16px;
    background-image: url(../img/icons/arrow-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center
}

.search-result__arrow {
    fill: transparent;
    stroke: var(--white);
    stroke-width: 1.5;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    right: 30px;
    opacity: 0;
    transition: .3s
}

.search-result:focus-visible, .search-result:hover {
    color: var(--white);
    background-color: var(--white-40)
}

.search-result:focus-visible .search-result__arrow, .search-result:hover .search-result__arrow {
    opacity: 1;
    right: 20px
}

.search-results {
    max-width: 47.35rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 1.2rem;
    font-size: 0.7rem
}

.search-results__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem
}

.search-results__sort {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.2rem;
    column-gap: 0.2rem
}

.search-results__sort-title {
    color: var(--grey-1000)
}

.search-results__list {
    display: flex;
    flex-direction: column;
    row-gap: 0.4rem
}

.search-results__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: var(--grey-1000)
}

.suggestion {
    padding: 0.6rem;
    font-size: 0.65rem;
    line-height: 150%;
    -moz-column-gap: 0.4rem;
    column-gap: 0.4rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center
}

.suggestion svg {
    fill: var(--lime-900);
    flex-shrink: 0
}

.suggestion:focus-visible, .suggestion:hover {
    background-color: var(--white-40)
}

.ask {
    position: fixed;
    max-width: 25rem;
    width: 100%;
    z-index: 999;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: var(--black);
    border-radius: 0.4rem;
    border: 0.05rem solid var(--white-160);
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    transition: .3s
}

.ask__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem;
    border-bottom: 0.05rem solid var(--white-160);
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem
}

.ask__title {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.8rem;
    column-gap: 0.8rem
}

.ask__title svg {
    flex-shrink: 0;
    fill: var(--white)
}

.ask__buttons {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.8rem;
    column-gap: 0.8rem
}

.ask__button {
    display: flex;
    align-items: center;
    justify-content: center
}

.ask__button svg {
    width: 0.7rem;
    height: 0.7rem;
    stroke: var(--grey-1000)
}

.ask__button--resize svg {
    width: 0.8rem;
    height: 0.8rem
}

.ask__button:focus-visible svg, .ask__button:hover svg {
    stroke: var(--white)
}

.ask__content {
    flex-grow: 1;
    padding: 0.8rem 0.8rem 0;
    line-height: 150%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: 100%
}

.ask__content > :first-child {
    margin-top: auto
}

.ask__block {
    display: flex;
    flex-direction: column;
    row-gap: 0.8rem
}

.ask__question {
    padding: 0.6rem;
    background-color: var(--white-80);
    border-radius: 0.4rem 0.4rem 0.1rem;
    max-width: 16rem;
    margin-left: auto;
    width: 100%;
    word-wrap: break-word
}

.ask__answer-content {
    padding: 0.6rem
}

.ask__answer-content > p:first-child, .ask__answer-content > ul:first-child {
    margin-top: 0
}

.ask__answer-content p {
    margin: 0.6rem 0
}

.ask__answer-content ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 0.6rem;
    padding: 0 0 0 0.85rem
}

.ask__suggestions {
    display: flex;
    flex-direction: column
}

.ask__suggestions-title {
    color: var(--grey-1000);
    margin: 0;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.6rem
}

.ask__suggestions-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: 0.15rem
}

.ask__system-message {
    padding: 0.35rem 0.8rem;
    font-size: 0.7rem;
    border-left: 0.05rem solid #f94c2e
}

.ask__footer {
    padding: 1.2rem;
    flex-shrink: 0;
    flex-grow: 0
}

.ask__form {
    display: flex;
    align-items: flex-end;
    -moz-column-gap: 0.8rem;
    column-gap: 0.8rem
}

.ask__form-field {
    flex: 1 1 auto;
    resize: none;
    border-radius: 0.4rem;
    min-height: 2.6rem;
    width: 100%;
    padding: 0.85rem 0.8rem 0.05rem;
    font-size: 0.7rem;
    outline: 0;
    color: var(--white);
    background-color: transparent;
    border: 0.05rem solid var(--white-160)
}

.ask__form-field::-moz-placeholder {
    color: var(--grey-1000)
}

.ask__form-field::placeholder {
    color: var(--grey-1000)
}

.ask__form-button {
    width: 2.6rem;
    height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.05rem solid transparent;
    border-radius: 0.4rem;
    flex-shrink: 0;
    background-color: var(--lime-900);
    fill: var(--black)
}

.ask__form-button:focus-visible, .ask__form-button:hover {
    background-color: var(--lime-800);
    border-color: #688a14
}

.ask__form-button:active {
    background-color: #688a14
}

.ask__form-button:disabled {
    background-color: var(--white-80);
    border-color: var(--white-80);
    pointer-events: none;
    fill: var(--grey-1000)
}

.ask__form-button--generating {
    background-color: var(--white-160);
    fill: var(--white);
    border-color: var(--white-80)
}

.ask__form-button--generating svg {
    width: 0.6rem;
    height: 0.6rem
}

.ask__form-button--generating:focus-visible, .ask__form-button--generating:hover {
    background-color: var(--white-240);
    border-color: transparent
}

.ask__form-button--generating:active {
    background-color: var(--white-160);
    border-color: transparent
}

.ask__form-button--generating:disabled {
    background-color: var(--white-120);
    border-color: transparent
}

.ask.toggle--active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1
}

.ask.toggle--active ~ .action-buttons {
    right: 26.5rem
}

.table-wrap {
    border: 0.05rem solid var(--white-80);
    overflow: hidden;
    overflow-x: auto;
    border-radius: 0.4rem;
    width: 100%
}

.table-wrap::-webkit-scrollbar {
    height: 0.15rem
}

.table-wrap table {
    width: 100%;
    min-width: 30rem;
    border-collapse: collapse;
    font-size: 0.75rem
}

.table-wrap table thead {
    text-align: left;
    background-color: var(--white-40)
}

.table-wrap table thead th {
    font-weight: 600;
    padding: 0.5rem 0.6rem
}

.table-wrap table thead th:not(:last-child) {
    border-right: 0.05rem solid #2f3033
}

.table-wrap table code {
    border-radius: 0.1rem;
    font-family: Inter, sans-serif;
    background-color: var(--white-40);
    padding: 0.1rem 0.35rem
}

.table-wrap table tr {
    position: relative;
    transition: .3s
}

.table-wrap table tr td {
    border-right: 0.05rem solid var(--white-80)
}

.table-wrap table tr:hover td.table-ref {
    opacity: 1;
    visibility: visible
}

.table-wrap table tbody tr:not(:last-child) {
    border-bottom: 0.05rem solid var(--white-80)
}

.table-wrap table tbody tr:hover {
    background-color: var(--white-40)
}

.table-wrap table tbody tr:hover td {
    border-color: #2f3033
}

.table-wrap table td {
    padding: 0.5rem 0.6rem;
    vertical-align: baseline
}

.table-wrap table td p {
    margin: 0;
    max-width: 90%
}

.table-wrap table td.table-ref {
    stroke: var(--grey-1000);
    stroke-width: 1.5;
    fill: transparent;
    position: absolute;
    right: 0.5rem;
    top: 0.1rem;
    border: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s
}

.table-wrap table td.table-ref svg {
    width: 0.8rem;
    height: 0.8rem
}

.table-wrap table td.table-ref:focus-visible, .table-wrap table td.table-ref:hover {
    stroke: var(--white)
}

.table-wrap table .nested {
    display: none
}

.table-wrap table .nested td:first-child {
    padding-left: 1.25rem
}

.table-wrap table .nested td:first-child div {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.2rem;
    column-gap: 0.2rem
}

.table-wrap table .nested-level-2 td:first-child {
    padding-left: 2rem
}

.table-icon-checked {
    fill: var(--white);
    stroke: var(--white);
    flex-shrink: 0;
    transition: .3s
}

.table-icon-arrow {
    flex-shrink: 0;
    fill: var(--grey-1000);
    transition: .3s
}

.table-icon-corner {
    flex-shrink: 0;
    fill: transparent;
    stroke-width: 1.5;
    stroke: var(--white-160);
    position: relative;
    top: -0.1rem
}

.toggle-row {
    cursor: pointer
}

.toggle-row.open .table-icon-arrow {
    transform: rotate(180deg)
}

.action-buttons {
    position: fixed;
    right: 1.8rem;
    bottom: 2.3958333333vw;
    z-index: 99;
    display: flex;
    flex-direction: column;
    row-gap: 1.2rem
}

.action-buttons__button {
    width: 3.6rem;
    height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    -webkit-backdrop-filter: blur(2rem);
    backdrop-filter: blur(2rem);
    box-shadow: 0 0.2rem 0.8rem 0 rgba(0, 0, 0, .16);
    background: var(--white-80);
    border-radius: 50%;
    fill: var(--lime-800)
}

.action-buttons__button svg {
    width: 40%;
    height: 40%;
    position: relative
}

.action-buttons__button--chat svg {
    top: 0.1rem;
    left: 0.1rem
}

.action-buttons__button:focus-visible, .action-buttons__button:hover {
    background-color: var(--white-160)
}

table {
    min-width: 30rem
}

table td, table thead th {
    padding: 0.5rem 0.6rem
}

table thead th:not(:last-child) {
    border-right: 0.05rem solid #2f3033
}

table code {
    border-radius: 0.1rem;
    padding: 0.1rem 0.35rem
}

table tr td {
    border-right: 0.05rem solid var(--white-80)
}

table tbody tr:not(:last-child) {
    border-bottom: 0.05rem solid var(--white-80)
}

table span a {
    margin: 0.25rem 0
}

.main__content .wpb_text_column p code {
    border-radius: 0.1rem;
    padding: 0.3rem;
    margin: 0.3rem 0;
    -moz-column-gap: 0.4rem;
    column-gap: 0.4rem
}

.endpoint {
    margin: 0.75rem 0
}

.clients-wrapper .wpb_wrapper, .examples-wrapper .wpb_wrapper {
    gap: 0.4rem;
    margin: 1.2rem 0
}

.main__content ul {
    margin-bottom: 0.75rem !important
}

.fold-toggle {
    margin-right: 0.2rem;
    font-size: 1rem;
    top: 0.05rem
}

.hljs-fold:not(.collapsed) > .fold-toggle {
    top: 0.1rem
}

@media (max-width: 1440px) {
    .hide-xxl {
        display: none
    }
}

@media (max-width: 1366px) {
    .hide-xl {
        display: none
    }
}

@media (max-width: 1200px) {
    .hide-xl-md {
        display: none
    }
}

@media (max-width: 64rem) {
    .hide-lg {
        display: none
    }

    body {
        font-size: clamp(.875rem, .1333333333vw + .8416666667rem, 1rem)
    }

    h1 {
        font-size: clamp(1.5rem, .4vw + 1.4rem, 1.875rem)
    }

    h2 {
        font-size: clamp(1.5rem, .4vw + 1.4rem, 1.875rem);
        margin: 12px 0
    }

    .container {
        padding: 0 clamp(.75rem, .8vw + .55rem, 1.5rem)
    }

    .button-link {
        border-radius: 2px;
        padding: 6px;
        margin: 6px 0;
        -moz-column-gap: 8px;
        column-gap: 8px
    }

    .button-link svg {
        width: 16px;
        height: 16px
    }

    .site-button {
        font-size: clamp(.875rem, .1333333333vw + .8416666667rem, 1rem);
        min-height: 42px;
        border-radius: 8px;
        padding: 0 24px;
        border: 1px solid transparent
    }

    .form__field {
        height: 42px;
        background-color: transparent;
        border: 1px solid var(--white-160);
        border-radius: 8px
    }

    .select__current {
        border: 1px solid rgba(0, 0, 0, .1);
        border-radius: 12px;
        -moz-column-gap: 8px;
        column-gap: 8px
    }

    .select__current::after {
        width: 12px;
        height: 12px
    }

    .select__list {
        border: 1px solid var(--white-80);
        -webkit-backdrop-filter: blur(40px);
        backdrop-filter: blur(40px);
        border-radius: 8px;
        padding: 4px;
        min-width: 100px;
        row-gap: 4px
    }

    .select__item {
        padding: 10px 12px;
        border-radius: 6px
    }

    .main {
        grid-template-columns:1fr;
        -moz-column-gap: 40px;
        column-gap: 40px
    }

    .main__content p {
        margin: 15px 0
    }

    .main__content h2 {
        margin-top: 24px
    }

    .main__title {
        margin-bottom: 24px
    }

    .site-content {
        border-radius: clamp(.5rem, .5333333333vw + .3666666667rem, 1rem);
        padding: clamp(.75rem, .8vw + .55rem, 1.5rem)
    }

    .header__toggle {
        width: 20px;
        height: 36px;
        row-gap: 5px;
        margin-left: 15px
    }

    .header__toggle span {
        height: 2px
    }

    .header__toggle span:nth-child(2) {
        transform: translate(8px)
    }

    .header__toggle:focus-visible span:nth-child(1), .header__toggle:hover span:nth-child(1) {
        transform: translate(4px)
    }

    .header__toggle:focus-visible span:nth-child(2), .header__toggle:hover span:nth-child(2) {
        transform: translate(0)
    }

    .header__toggle:focus-visible span:nth-child(3), .header__toggle:hover span:nth-child(3) {
        transform: translate(8px)
    }

    .header__logo-img {
        max-width: clamp(8.75rem, 3.6666666667vw + 7.8333333333rem, 12.1875rem)
    }

    .header__middle {
        justify-content: flex-end;
        -moz-column-gap: 8px;
        column-gap: 8px
    }

    .header__search {
        line-height: 0;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0
    }

    .header__search-text {
        display: none
    }

    .header__search svg {
        position: static;
        transform: unset;
        width: 16px;
        height: 16px
    }

    .header__actions-list {
        -moz-column-gap: 16px;
        column-gap: 16px
    }

    .header__ask {
        width: 36px;
        height: 36px;
        padding: 0;
        background-color: transparent;
        min-height: auto;
        border: 0
    }

    .header__ask svg {
        width: 16px;
        height: 16px
    }

    .header__ask span {
        display: none
    }

    .header__ask:active, .header__ask:focus-visible, .header__ask:hover {
        background-color: transparent
    }

    .header__bottom {
        border-top: 1px solid var(--white-80);
        padding: 10px 0
    }


    .header__right {
        position: fixed;
        /*background-color: var(--black);*/
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, .6);
        max-height: 100vh;
        opacity: 0;
        visibility: hidden;
        /*transition: .3s*/
    }

    .header__right-inner {
        position: fixed;
        background-color: var(--black);
        padding: 30px;
        width: 100%;
        z-index: 101;
        overflow-y: auto;
        transform: translateY(-100%);
        transition: .3s;
        flex-direction: column-reverse;
        align-items: flex-start;
        row-gap: 10px
    }

    .header__right.toggle--active {
        opacity: 1;
        visibility: visible
    }

    .header__right.toggle--active .header__right-inner {
        transform: translateX(0)
    }

    .header__nav-links, .header__nav-links-item, .header__nav-links-list {
        width: 100%
    }

    .header__nav-links-link {
        font-size: 14px;
        -moz-column-gap: 10px;
        column-gap: 10px;
        background-color: var(--white-120);
        border-color: var(--white-80)
    }

    .header__nav-links-link svg {
        width: 10px;
        height: 14px;
        stroke-width: 1.5;
        top: 1px
    }

    .header__actions {
        width: 100%
    }

    .header__actions-list {
        flex-direction: column;
        row-gap: 10px
    }

    .header__actions-button, .header__actions-item {
        width: 100%
    }

    .rightbar {
        position: fixed;
        top: 0;
        border: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background-color: var(--black);
        height: auto;
        transform: translateY(100%);
        opacity: 0;
        row-gap: 10px;
        visibility: hidden;
        overflow-y: auto;
        transition: .3s
    }

    .rightbar.toggle--active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }

    .wrapper {
        margin-top: 10px
    }

    .wrapper__content {
        -moz-column-gap: 10px;
        column-gap: 10px;
        grid-template-columns:1fr
    }

    .sidebar {
        position: fixed;
        /*background-color: var(--black);*/
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, .6);
        max-height: 100vh;
        opacity: 0;
        visibility: hidden;
        font-size: clamp(.875rem, .1333333333vw + .8416666667rem, 1rem);
        transition: .3s
    }

    .sidebar__content {
        position: fixed;
        background-color: var(--black);
        height: 100vh;
        padding: 30px 0;
        max-width: 300px;
        width: 100%;
        z-index: 101;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: .3s
    }

    .sidebar__toggle {
        width: clamp(1.875rem, 1.1538461538vw + 1.5865384615rem, 2.625rem);
        height: clamp(1.875rem, 1.1538461538vw + 1.5865384615rem, 2.625rem);
        right: 20px;
        top: 20px;
        z-index: 102;
    }

    .sidebar__toggle span {
        height: 2px
    }

    .sidebar__nav-toggle {
        -moz-column-gap: 8px;
        column-gap: 8px;
        padding: 9px 16px;
        font-size: clamp(.875rem, .1333333333vw + .8416666667rem, 1rem)
    }

    .sidebar__nav-toggle svg {
        width: 20px;
        height: 20px;
        stroke-width: 1.5
    }

    .sidebar__nav-link {
        padding: 9px 16px
    }

    .sidebar__nav-submenu {
        margin-left: 5%
    }

    .sidebar__nav-submenu-link {
        padding: 9px 16px
    }

    .sidebar__nav-submenu-link--current {
        border-radius: 8px
    }

    .sidebar.toggle--active {
        opacity: 1;
        visibility: visible
    }

    .sidebar.toggle--active .sidebar__content {
        transform: translateX(0)
    }

    .example {
        border-radius: 0;
        padding: 0;
        height: 50%;
    }

    .example__content {
        padding: clamp(1rem, 1vw + .75rem, 1.5rem);
        row-gap: 16px
    }

    .example__content.tab-content {
        padding: 16px 0
    }

    .example__buttons {
        position: sticky;
        top: 0;
        border-radius: 0;
        z-index: 999;
        background-color: var(--white-80);
        -webkit-backdrop-filter: blur(40px);
        backdrop-filter: blur(40px);
        width: 100%
    }

    .example__button {
        padding: 0 clamp(.75rem, .8vw + .55rem, 1.5rem);
        font-size: clamp(.75rem, .2666666667vw + .6833333333rem, 1rem);
        height: 42px;
        border-radius: 0
    }

    .example__placeholder {
        row-gap: 24px;
        height: 100%;
        padding: 16px 0
    }

    .example__placeholder-texts {
        row-gap: 16px
    }

    .example__placeholder-description {
        font-size: 14px;
        max-width: 360px
    }

    .example__notice {
        border-radius: 8px;
        border: 1px solid var(--white-80);
        padding: 11px;
        font-size: 14px
    }

    .example__notice > p {
        padding-right: 3.75rem;
    }

    .example__code {
        padding-right: 8px;
        padding-bottom: 16px;
        max-height: 250px;
        height: 100%;
    }

    .example__code .hljs {
        font-size: 14px;
        line-height: 150%;
        padding-bottom: 16px
    }



    .example--json > .example__content {
        row-gap: 16px
    }

    .clients {
        gap: 8px;
        margin: 24px 0
    }

    .client-card {
        padding: 26px 16px;
        /*border: 1px solid var(--white-80);*/
        border-radius: 12px;
        row-gap: 12px;
        border: 1px solid transparent
    }

    .client-card__header {
        -moz-column-gap: 8px;
        column-gap: 8px
    }

    .client-card__icon {
        width: 26px;
        height: 26px
    }

    .client-card__title {
        font-size: 14px
    }

    .client-card__description {
        font-size: 12px
    }

    .examples {
        gap: 8px;
        margin: 24px 0
    }

    .example-card {
        padding: clamp(.9375rem, .7333333333vw + .7541666667rem, 1.625rem) 16px;
        /*border: 1px solid var(--white-80);*/
        border-radius: 12px;
        row-gap: 12px;
        border: 1px solid transparent
    }

    .example-card__header {
        -moz-column-gap: 8px;
        column-gap: 8px
    }

    .example-card__icon {
        width: 26px;
        height: 26px
    }

    .example-card__title {
        font-size: 14px
    }

    .example-card__description {
        font-size: 12px
    }

    .endpoint {
        border-radius: 8px;
        padding: 10px clamp(.625rem, .4vw + .525rem, 1rem);
        font-size: 14px;
        -moz-column-gap: 5px;
        column-gap: 5px;
        row-gap: 10px
    }

    .endpoint__icon {
        width: 16px;
        height: 16px
    }

    .info-card {
        row-gap: 8px;
        border-left-width: 2px;
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 16px;
        margin: clamp(.9375rem, 1vw + .6875rem, 1.875rem) 0
    }

    .info-card__header {
        -moz-column-gap: 8px;
        column-gap: 8px
    }

    .info-card__content p {
        margin: 3px 0
    }

    .info-card__icon svg {
        width: 16px;
        height: 16px
    }

    .info-card__link {
        -moz-column-gap: 10px;
        column-gap: 10px
    }

    .info-card__link svg {
        stroke-width: 1.5;
        width: 18px;
        height: 18px
    }

    .info-card--red .info-card__icon svg {
        width: 16px;
        height: 16px
    }

    .search {
        padding: 15px
    }

    .search__form {
        max-width: 600px;
        -webkit-backdrop-filter: blur(80px);
        backdrop-filter: blur(80px);
        border-radius: 8px
    }

    .search__form-group > svg {
        width: 16px;
        height: 16px;
        left: 20px
    }

    .search__input {
        height: 50px;
        padding-left: 36px;
        font-size: 14px;
        padding-right: 50px
    }

    .search__clear {
        width: 16px;
        height: 16px;
        right: 10px
    }

    .search__clear svg {
        width: 16px;
        height: 16px
    }

    .search__results {
        padding: clamp(.5rem, .2666666667vw + .4333333333rem, .75rem) clamp(.75rem, .2666666667vw + .6833333333rem, 1rem);
        -webkit-backdrop-filter: blur(80px);
        backdrop-filter: blur(80px);
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        border: 1px solid var(--white-160)
    }

    .search__not-found {
        row-gap: 10px;
        padding: 20px
    }

    .search__not-found svg {
        margin-bottom: 4px
    }

    .search__not-found-title {
        font-size: 16px
    }

    .search__not-found-subtitle {
        font-size: 14px
    }

    .search__block-title {
        padding: 12px;
        font-size: 14px
    }

    .search__result {
        padding: 12px;
        font-size: 14px;
        border-radius: 8px;
        row-gap: 5px
    }

    .search__result-title {
        -moz-column-gap: 10px;
        column-gap: 10px
    }

    .search__result-excerpt {
        font-size: 12px
    }

    .search__result-arrow {
        right: 30px
    }

    .search-result {
        padding: 16px;
        border-radius: 8px;
        row-gap: 10px;
        font-size: clamp(.75rem, .1333333333vw + .7166666667rem, .875rem);
        border: 1px solid var(--white-80)
    }

    .search-result__title {
        font-size: clamp(.875rem, .1333333333vw + .8416666667rem, 1rem)
    }

    .search-result__nav {
        -moz-column-gap: 7px;
        column-gap: 7px
    }

    .search-result__nav-item:not(:last-child)::after {
        width: 16px;
        height: 16px
    }

    .search-result__arrow {
        right: 30px
    }

    .search-result:focus-visible .search-result__arrow, .search-result:hover .search-result__arrow {
        opacity: 1;
        right: 20px
    }

    .search-results {
        max-width: 947px;
        row-gap: 24px;
        font-size: clamp(.75rem, .1333333333vw + .7166666667rem, .875rem)
    }

    .search-results__header {
        -moz-column-gap: 15px;
        column-gap: 15px
    }

    .search-results__sort {
        -moz-column-gap: 4px;
        column-gap: 4px
    }

    .search-results__list {
        row-gap: 8px
    }

    .search-results__footer {
        gap: 15px
    }

    .suggestion {
        padding: 12px;
        font-size: 13px;
        -moz-column-gap: 8px;
        column-gap: 8px;
        border-radius: 8px
    }

    .ask {
        max-width: 500px;
        border-radius: 8px;
        border: 1px solid var(--white-160);
        font-size: 14px
    }

    .ask__header {
        padding: clamp(1rem, .5333333333vw + .8666666667rem, 1.5rem);
        border-bottom: 1px solid var(--white-160);
        -moz-column-gap: 15px;
        column-gap: 15px
    }

    .ask__buttons, .ask__title {
        -moz-column-gap: 16px;
        column-gap: 16px
    }

    .ask__button svg {
        width: 14px;
        height: 14px
    }

    .ask__content {
        padding: 16px
    }

    .ask__block {
        row-gap: 16px
    }

    .ask__question {
        padding: 12px;
        border-radius: 8px 8px 2px;
        max-width: 320px
    }

    .ask__answer-content {
        padding: 12px
    }

    .ask__answer-content p {
        margin: 12px 0
    }

    .ask__answer-content ul {
        margin: 12px 0;
        row-gap: 12px;
        padding-left: 17px
    }

    .ask__suggestions-title {
        font-size: 12px;
        padding: 12px
    }

    .ask__suggestions-list {
        row-gap: 3px
    }

    .ask__system-message {
        padding: 7px 16px;
        font-size: 14px;
        border-left: 1px solid #f94c2e
    }

    .ask__footer {
        padding: clamp(1rem, .5333333333vw + .8666666667rem, 1.5rem)
    }

    .ask__form {
        -moz-column-gap: 16px;
        column-gap: 16px
    }

    .ask__form-field {
        border-radius: 8px;
        min-height: clamp(2.625rem, .6666666667vw + 2.4583333333rem, 3.25rem);
        padding: clamp(.75rem, .3333333333vw + .6666666667rem, 1.0625rem) 16px 1px;
        font-size: clamp(.75rem, .1333333333vw + .7166666667rem, .875rem);
        border: 1px solid var(--white-160)
    }

    .ask__form-button {
        width: clamp(2.625rem, .6666666667vw + 2.4583333333rem, 3.25rem);
        height: clamp(2.625rem, .6666666667vw + 2.4583333333rem, 3.25rem);
        border: 1px solid transparent;
        border-radius: 8px
    }

    .ask__form-button--generating svg {
        width: 12px;
        height: 12px
    }

    .ask.toggle--active ~ .action-buttons {
        right: 530px
    }

    .table-wrap {
        border: 1px solid var(--white-80);
        border-radius: 8px
    }

    .table-wrap::-webkit-scrollbar {
        height: 3px
    }

    .table-wrap table {
        min-width: 600px;
        font-size: clamp(.75rem, .1333333333vw + .7166666667rem, .875rem)
    }

    .table-wrap table thead th {
        padding: 10px 12px
    }

    .table-wrap table thead th:not(:last-child) {
        border-right: 1px solid #2f3033
    }

    .table-wrap table code {
        border-radius: 2px;
        padding: 2px 7px
    }

    .table-wrap table tr td {
        border-right: 1px solid var(--white-80)
    }

    .table-wrap table tbody tr:not(:last-child) {
        border-bottom: 1px solid var(--white-80)
    }

    .table-wrap table td {
        padding: 10px 12px
    }

    .table-wrap table td.table-ref {
        right: 10px;
        top: 2px
    }

    .table-wrap table td.table-ref svg {
        width: 16px;
        height: 16px
    }

    .table-wrap table .nested td:first-child {
        padding-left: 25px
    }

    .table-wrap table .nested td:first-child div {
        -moz-column-gap: 4px;
        column-gap: 4px
    }

    .table-wrap table .nested-level-2 td:first-child {
        padding-left: 40px
    }

    .table-icon-corner {
        top: -2px
    }

    .action-buttons {
        right: clamp(.9375rem, 1.4vw + .5875rem, 2.25rem);
        bottom: clamp(.9375rem, 2.0666666667vw + .4208333333rem, 2.875rem);
        row-gap: clamp(.3125rem, 1.2666666667vw + -.0041666667rem, 1.5rem)
    }

    .action-buttons__button {
        width: clamp(2.625rem, 2vw + 2.125rem, 4.5rem);
        height: clamp(2.625rem, 2vw + 2.125rem, 4.5rem);
        -webkit-backdrop-filter: blur(40px);
        backdrop-filter: blur(40px);
        box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .16)
    }

    .action-buttons__button svg {
        width: 40%;
        height: 40%
    }

    .action-buttons__button--chat svg {
        top: 2px;
        left: 2px
    }

    table {
        min-width: 600px
    }

    table td, table thead th {
        padding: 10px 12px
    }

    table thead th:not(:last-child) {
        border-right: 1px solid #2f3033
    }

    table code {
        border-radius: 2px;
        padding: 2px 7px
    }

    table tr td {
        border-right: 1px solid var(--white-80)
    }

    table tbody tr:not(:last-child) {
        border-bottom: 1px solid var(--white-80)
    }

    table span a {
        margin: 5px 0
    }

    .main__content .wpb_text_column p code {
        border-radius: 2px;
        padding: 6px;
        margin: 6px 0;
        -moz-column-gap: 8px;
        column-gap: 8px
    }

    .endpoint {
        margin: 15px 0
    }

    .clients-wrapper .wpb_wrapper, .examples-wrapper .wpb_wrapper {
        gap: 8px;
        margin: 24px 0
    }

    .main__content ul {
        margin-bottom: 15px !important
    }

    .fold-toggle {
        margin-right: 4px;
        font-size: 20px;
        top: 1px
    }

    .hljs-fold:not(.collapsed) > .fold-toggle {
        top: 2px
    }

    .copy-button svg {
        width: 16px;
        height: 16px
    }
}

@media (max-width: 767px) {
    .hide-md {
        display: none
    }

    .clients, .examples {
        grid-template-columns:1fr
    }

    .ask.toggle--active ~ .action-buttons {
        right: clamp(.9375rem, 1.4vw + .5875rem, 2.25rem);
        bottom: clamp(.9375rem, 2.0666666667vw + .4208333333rem, 2.875rem)
    }
}

@media (max-width: 576px) {
    .ask {
        max-width: 100%
    }

    .sidebar__content {
        min-width: 250px;
        width: 57.6rem;
        max-width: unset
    }

    .search-results__footer {
        flex-direction: column
    }
}

@media (min-width: 768px) {
    .show-md {
        display: none
    }
}

@media (min-width: calc(64rem + 1px) ) {
    .show-lg {
        display: none
    }
}

@media (min-width: 1201px) {
    .show-xl-md {
        display: none
    }
}

@media (min-width: 1367px) {
    .show-xl {
        display: none
    }
}

@media (min-width: 1441px) {
    .show-xxl {
        display: none
    }
}

@media (min-width: 1601px) {
    .show-xxxl {
        display: none
    }
}