/* New Site Styles */
/* TODO: Remove V2 once ported over */
/* ------------------------------------------------- */
/* ----- Basic Setup ----- */
/* ------------------------------------------------- */
:root {
  --nav-height: 3.8025rem;
  --h1: 2.457rem;
  --h2: 1.521rem;
  --h3: 1.287rem;
  --h4: 1.053rem;
  --h5: 0.936rem;
  --base: 0.936rem;
  --sm: 0.819rem;
  --xsm: 0.702rem;
  --pico: 0.2925rem;
  --nano: 0.585rem;
  --micro: 0.8775rem;
  --milli: 1.17rem;
  --xx-small: 1.4625rem;
  --x-small: 1.755rem;
  --small: 2.34rem;
  --medium: 2.925rem;
  --large: 3.51rem;
  --orchid: #e537c0;
  --orange: #ee8660;
  --lavender: #ad37e5;
  --brand: #7f4eff;
  --purple-dark: #472f85;
  --white: #fff;
  --white-light: #fefefe;
  --code-block-light: #f9f7fd;
  --nav-light: #fff;
  --nav-dark: #111111d9;
  --black: #111111;
  --black-mid: #141414;
  --black-light: #181818;
  --black-lighter: #222222;
  --black-lightest: #343434;
  --gray-dark: #555555;
  --gray-mid: #888888;
  --gray: #bbb;
  --gray-light: #dddddd;
  --gray-lighter: #dddd;
  --gray-lightest: #eeeeee;
  --shadow-default: 0 0.365625rem 0.8775rem 0rem rgba(0, 0, 0, 0.08); }
  @media (max-width: 850px) {
    :root {
      --h1: 1.989rem;
      --h2: 1.521rem;
      --h3: 1.287rem;
      --h4: 1.053rem;
      --h5: 0.936rem; } }
body.dark {
  --bg: var(--black);
  --bg-nav: var(--nav-dark);
  --bg-sub: var(--black-light);
  --card: var(--black-mid);
  --card-light: var(--black-light);
  --color-scheme: dark;
  --divider: var(--black-lighter);
  --divider-light: var(--black-lightest);
  --link: var(--brand);
  --code-block: var(--card-light);
  --code-simple: #c2c2c2;
  --code-simple-bg: #292929;
  --code-red: #fc6e6c;
  --code-pink: #f97fe6;
  --code-blue: #4b73f8;
  --code-green: #2e731c;
  --important: var(--gray-lightest);
  --sub: var(--gray-light);
  --body: var(--gray);
  --highlight: #e0a5fb;
  --shadow-default: 0 0.365625rem 0.8775rem 0 rgba(0, 0, 0, 0.4);
  --note: #fffad411;
  --note-border: #b9a61545;
  --note-after: #fbe2d9;
  --note-gutter: #ffe600;
  --tip: #3f3b4291;
  --tip-border: #983fb1;
  --tip-after: #761c91;
  --tip-gutter: #b115b9;
  --annotation: #e9f7fb;
  --annotation-border: #c0d3d8;
  --annotation-after: #c0d3d8;
  --public-preview: #393e514b;
  --public-preview-text: var(--important);
  --public-preview-border: #374e7c;
  --public-preview-after: #c0d3d8;
  --public-preview-gutter: #306dca; }

body.light {
  --bg: var(--white-light);
  --bg-nav: var(--nav-light);
  --bg-sub: var(--gray-lighter);
  --card: var(--gray-lightest);
  --card-light: var(--white);
  --color-scheme: light;
  --divider: var(--gray);
  --divider-light: var(--gray-lighter);
  --link: var(--brand);
  --code-block: var(--code-block-light);
  --code-simple: #505050;
  --code-simple-bg: var(--code-block-light);
  --code-red: #c41a16;
  --code-pink: #a90d91;
  --code-blue: #1c01ce;
  --code-green: #177500;
  --important: var(--black);
  --sub: var(--black-lighter);
  --body: var(--black-light);
  --highlight: var(--purple-dark);
  --note: #fffad411;
  --note-border: #b9a61545;
  --note-after: #fbe2d9;
  --note-gutter: #7b7b29;
  --tip: #f4e3fd91;
  --tip-border: #983fb1;
  --tip-after: #761c91;
  --tip-gutter: #b115b9;
  --annotation-border: #c0d3d8;
  --annotation-after: #c0d3d8;
  --public-preview: #e9f7fb;
  --public-preview-border: #c0d3d8;
  --public-preview-after: #c0d3d8;
  --public-preview-gutter: #186477;
  --public-preview-text: var(--black); }

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: "Inter", sans-serif;
  color: var(--important);
  color-scheme: var(--color-scheme);
  background: var(--bg);
  font-size: var(--base);
  line-height: 1.7;
  font-weight: 300;
  max-width: 100vw;
  overflow-x: hidden; }
  @media (max-width: 500px) {
    body {
      font-size: 0.8775rem; } }
input,
textarea,
select {
  font-family: inherit; }

a,
button,
input[type="submit"] {
  cursor: pointer;
  background: none;
  border: none;
  transition: all 0.2s;
  transition-delay: 50ms;
  font-family: inherit; }

.osano-cm-widget {
  display: none; }

/**
    The following section handles these cases:
    1. Buttons with links
    2. Links
    3. Links with <code/>
    4. Link in the index (<nav/>) with <code/>
    5. Links inside notes
    6. Links inside notes with <code/>
**/
.btn,
.btn-ghost {
  color: var(--white);
  text-decoration: none; }
  .btn:hover, .btn:focus,
  .btn-ghost:hover,
  .btn-ghost:focus {
    text-decoration: underline;
    color: var(--white); }

nav .link-with-code {
  color: var(--sub); }
  nav .link-with-code:hover, nav .link-with-code:focus {
    text-decoration: underline;
    color: var(--link); }

p > a,
.note > a,
.tip > a,
.annotation > a,
.link-with-code {
  color: var(--link); }
  p > a:hover, p > a:focus,
  .note > a:hover,
  .note > a:focus,
  .tip > a:hover,
  .tip > a:focus,
  .annotation > a:hover,
  .annotation > a:focus,
  .link-with-code:hover,
  .link-with-code:focus {
    text-decoration: underline;
    color: var(--sub); }

.annotation-title {
  font-weight: 600;
  padding-bottom: 0.702rem; }

a {
  color: var(--sub);
  text-decoration: none; }
  a:hover, a:focus {
    text-decoration: underline;
    color: var(--link); }

/*-------- Finish links color--------*/
[class*="btn"] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: var(--brand);
  color: var(--white);
  padding: 0.351rem 0.702rem;
  border-radius: 8px; }
  [class*="btn"] svg {
    margin-right: 0.351rem;
    width: 18px;
    height: 18px; }
  [class*="btn"]:hover, [class*="btn"]:focus {
    color: var(--white);
    text-decoration: none;
    box-shadow: rgba(128, 78, 255, 0.3) 0px 0px 0px 8px; }

.btn-ghost {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--brand);
  color: var(--important); }
  .btn-ghost:hover, .btn-ghost:focus {
    color: var(--important); }

.graident-text {
  background: var(--brand);
  color: transparent;
  background-clip: text; }

select.version-dropdown {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("https://res.cloudinary.com/mzimgcdn/image/upload/v1737129759/dropdown.svg");
  background-position: right 0.5rem top 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 1.3rem auto, 100%;
  outline: 1px solid transparent;
  border: 1px solid var(--divider);
  padding: var(--pico) var(--nano);
  border-radius: 4px;
  background-color: var(--bg); }
  select.version-dropdown:focus, select.version-dropdown:active {
    outline: none; }

red {
  color: var(--code-red); }

blue {
  color: #2300ce; }

/* ------------------------------------------------- */
/* ----- Typography ----- */
/* ------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--important);
  font-weight: 500;
  line-height: 1.2; }
  h1 code,
  h2 code,
  h3 code,
  h4 code,
  h5 code,
  h6 code {
    font-size: inherit !important;
    color: inherit !important;
    background: none !important;
    border: none !important; }
  h1 + h1, h1 + h2, h1 + h3, h1 + h4, h1 + h5, h1 + h6,
  h2 + h1,
  h2 + h2,
  h2 + h3,
  h2 + h4,
  h2 + h5,
  h2 + h6,
  h3 + h1,
  h3 + h2,
  h3 + h3,
  h3 + h4,
  h3 + h5,
  h3 + h6,
  h4 + h1,
  h4 + h2,
  h4 + h3,
  h4 + h4,
  h4 + h5,
  h4 + h6,
  h5 + h1,
  h5 + h2,
  h5 + h3,
  h5 + h4,
  h5 + h5,
  h5 + h6,
  h6 + h1,
  h6 + h2,
  h6 + h3,
  h6 + h4,
  h6 + h5,
  h6 + h6 {
    margin-top: var(--micro); }

h1 {
  font-size: var(--h1);
  margin-bottom: var(--xx-small); }

h2 {
  font-size: var(--h2);
  margin: var(--medium) 0 var(--nano); }

h3 {
  font-size: var(--h3);
  margin: var(--small) 0 var(--nano); }

h4 {
  font-size: var(--h4);
  margin: var(--small) 0 var(--nano); }

h5 {
  font-size: var(--h5);
  margin: var(--small) 0 var(--nano); }

strong {
  font-weight: 500; }

p + p {
  margin-top: var(--milli); }

/* ------------------------------------------------- */
/* ----- Content ----- */
/* ------------------------------------------------- */
.content {
  border-left: 1px solid var(--divider-light);
  border-right: 1px solid var(--divider-light); }
  .content a.anchorjs-link:hover, .content a.anchorjs-link:focus {
    text-decoration: none; }
  .content a > code {
    color: inherit; }
  .content code {
    font-size: inherit;
    color: var(--code-simple);
    background: var(--code-simple-bg);
    border: none; }
  .content > *:first-child {
    margin-top: var(--small);
    min-width: fit-content; }
  .content ul {
    margin: var(--micro) 0; }
  .content ul,
  .content ol {
    padding-left: var(--milli); }
  .content li .highlight {
    display: block; }
  .content li .highlight:only-child {
    margin: 0.585rem 0; }
    .content li .highlight:only-child pre {
      margin: 0; }
  .content li pre {
    margin-left: 1.053rem;
    margin: 0.585rem 0;
    display: block; }
  .content ul > li:first-child > p:first-child {
    margin: 0; }
  .content p + p,
  .content p + ul,
  .content ul + p,
  .content ul p,
  .content ol p,
  .content p + ol,
  .content p + ol.has-p,
  .content ol + p,
  .content .highlight + p,
  .content pre + p,
  .content table + p,
  .content * + p {
    margin-top: 0.936rem; }
  .content p + table {
    margin-top: 0.2925rem; }
  .content pre,
  .content .warning,
  .content .note,
  .content .annotation,
  .content .tip,
  .content .important {
    font-size: 0.8775rem;
    font-weight: 300; }
  .content a:not(a[class]),
  .content a:not(a[class]) strong {
    color: var(--link);
    font-weight: 300;
    transition: all 0.2s;
    transition-delay: 50ms; }
  .content a:not(a[class])[href*="https://"] {
    text-decoration: none;
    border-bottom: 1px solid transparent; }
  .content a:not(a[class]):hover, .content a:not(a[class]):focus {
    border-color: var(--important); }
    .content a:not(a[class]):hover,
    .content a:not(a[class]):hover strong, .content a:not(a[class]):focus,
    .content a:not(a[class]):focus strong {
      color: var(--important); }
    .content a:not(a[class]):hover[href*="https://"]::after, .content a:not(a[class]):focus[href*="https://"]::after {
      filter: none; }
  .content .callout {
    background: var(--brand);
    border-radius: 3px;
    padding: 1px;
    border-radius: 0.702rem;
    box-shadow: var(--shadow-default); }
    .content .callout:not(.bottom) {
      margin: var(--large) 0; }
    .content .callout a {
      margin-top: var(--milli); }
    .content .callout div {
      background: var(--card-light);
      padding: var(--x-small);
      border-radius: inherit; }
      @media (max-width: 400px) {
        .content .callout div {
          padding: var(--milli); } }
    .content .callout div > :first-child {
      margin-top: 0; }
  .content .multilinkbox {
    margin: var(--small) 0;
    display: flex;
    gap: var(--milli); }
    @media (max-width: 1325px) {
      .content .multilinkbox {
        flex-direction: column;
        max-width: 400px; } }
  .content .linkbox {
    flex: 0 0 31%;
    position: relative;
    padding: var(--milli) var(--milli) var(--nano);
    font-size: var(--sm);
    background: var(--card-light);
    border: 1px solid var(--divider-light);
    border-radius: 0.702rem;
    box-shadow: var(--shadow-default); }
    .content .linkbox::before {
      content: "";
      width: 32px;
      height: 32px;
      position: absolute;
      top: 1.17rem;
      background-size: contain; }
    .content .linkbox.book, .content .linkbox.bulb, .content .linkbox.doc, .content .linkbox.materialize, .content .linkbox.touch {
      padding-top: 4.68rem; }
    .content .linkbox.materialize::before {
      background-image: url("../images/materialize_favicon_32.png");
      margin-left: -10px; }
    .content .linkbox.book::before {
      background-image: url("../images/icon_book.png"); }
    .content .linkbox.bulb::before {
      background-image: url("../images/icon_bulb.png"); }
    .content .linkbox.doc::before {
      background-image: url("../images/icon_doc.png"); }
    .content .linkbox.touch::before {
      background-image: url("../images/icon_touch.png"); }
    .content .linkbox .title {
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 500;
      color: var(--important);
      margin-bottom: var(--nano); }
    .content .linkbox ul {
      list-style: none; }
    .content .linkbox a {
      font-weight: 300; }
  .content img {
    max-width: 100%; }
  .content table {
    border-collapse: collapse;
    font-size: var(--sm);
    font-weight: 300;
    line-height: 1.2285rem; }
    @media (max-width: 500px) {
      .content table code {
        font-size: var(--xsm); } }
  .content tr {
    border-bottom: 1px solid var(--divider-light); }
  .content th {
    color: var(--important);
    border-bottom: 1px var(--highlight) solid;
    text-align: left;
    padding: 8px;
    font-size: 0.7605rem;
    vertical-align: bottom; }
  .content td {
    padding: var(--nano);
    vertical-align: top; }
    @media (max-width: 500px) {
      .content td {
        padding: var(--nano) var(--pico); } }
    .content td pre {
      background-color: inherit;
      border: 0;
      font-size: inherit;
      margin: 0;
      padding: 0; }
  .content pre {
    background-color: var(--code-block);
    border-radius: 4px;
    border: 1px solid var(--divider-light);
    color: #383d49;
    font-family: Courier, monospace;
    font-size: 0.8775rem;
    margin: 0.585rem 0 0.2925rem;
    overflow: auto;
    padding: 0.936rem; }
    .content pre code {
      color: #383d49;
      background: none;
      border: none;
      padding: 0; }
  .content code {
    font-family: "Fira Code", Courier, monospace;
    font-variant-ligatures: none;
    font-size: 0.7605rem;
    font-weight: 500;
    background: var(--code-block);
    border: 1px solid var(--divider-light);
    box-sizing: border-box;
    border-radius: 2px;
    padding: 0.0585rem 0.14625rem 0rem;
    color: var(--code-simple);
    background: var(--code-simple-bg); }
  .content .highlight + pre {
    border-top: 0;
    margin-top: -16px;
    padding-top: 0; }
  .content ul,
  .content ol {
    margin: 0; }
    .content ul li,
    .content ol li {
      margin-bottom: 0.2925rem; }
  .content li h4 {
    margin-top: 0; }
  .content :not(div.footnotes) > ol.has-p:not(ol.has-p ol.has-p) {
    list-style-type: none;
    counter-reset: list-counter;
    margin: 0;
    padding: 0; }
    .content :not(div.footnotes) > ol.has-p:not(ol.has-p ol.has-p) > li {
      counter-increment: list-counter;
      min-height: 2.925rem;
      position: relative;
      padding: 0.936rem 0 0.936rem 3.51rem;
      border-top: 1px solid var(--divider-light); }
      .content :not(div.footnotes) > ol.has-p:not(ol.has-p ol.has-p) > li ul,
      .content :not(div.footnotes) > ol.has-p:not(ol.has-p ol.has-p) > li ol {
        padding-left: var(--milli); }
      .content :not(div.footnotes) > ol.has-p:not(ol.has-p ol.has-p) > li ol li {
        list-style-type: lower-alpha; }
      @media (max-width: 850px) {
        .content :not(div.footnotes) > ol.has-p:not(ol.has-p ol.has-p) > li {
          padding-left: 2.6325rem; } }
      @media (max-width: 480px) {
        .content :not(div.footnotes) > ol.has-p:not(ol.has-p ol.has-p) > li {
          padding-left: 1.755rem; } }
      .content :not(div.footnotes) > ol.has-p:not(ol.has-p ol.has-p) > li:before {
        content: counter(list-counter);
        color: var(--orchid);
        font-size: 1.755rem;
        font-weight: 100;
        position: absolute;
        top: 100;
        left: 0.585rem; }
        @media (max-width: 850px) {
          .content :not(div.footnotes) > ol.has-p:not(ol.has-p ol.has-p) > li:before {
            font-size: 2.34rem;
            left: 0.2925rem; } }
        @media (max-width: 480px) {
          .content :not(div.footnotes) > ol.has-p:not(ol.has-p ol.has-p) > li:before {
            font-size: 2.0475rem;
            left: 0; } }
      .content :not(div.footnotes) > ol.has-p:not(ol.has-p ol.has-p) > li:last-child {
        padding-bottom: 0; }
      .content :not(div.footnotes) > ol.has-p:not(ol.has-p ol.has-p) > li p {
        display: block; }
  .content hr {
    border: none;
    border-top: 1px solid #ede7fd;
    margin: 2.106rem auto;
    width: 80%; }
  .content .warning,
  .content .private-preview {
    background: rgba(238, 134, 96, 0.05);
    border: 1px solid rgba(238, 134, 96, 0.2); }
    .content .warning::after,
    .content .private-preview::after {
      border-color: var(--bg) var(--bg) #fbe2d9 #fbe2d9;
      background: #fbe2d9; }
    .content .warning .gutter,
    .content .private-preview .gutter {
      color: #d33902; }
  .content .note,
  .content .important {
    background: var(--note);
    border: 1px solid var(--note-border); }
    .content .note a:hover, .content .note a:focus,
    .content .important a:hover,
    .content .important a:focus {
      color: var(--sub) !important; }
    .content .note a code:hover, .content .note a code:focus,
    .content .important a code:hover,
    .content .important a code:focus {
      color: var(--sub) !important; }
    .content .note::after,
    .content .important::after {
      border-color: var(--bg) var(--bg) var(--note-after) var(--note-after);
      background: var(--note-after); }
    .content .note .gutter,
    .content .important .gutter {
      color: var(--note-gutter); }
  .content .tip {
    background: var(--tip);
    border: 1px solid var(--tip-border); }
    .content .tip a:hover, .content .tip a:focus {
      color: var(--sub) !important; }
    .content .tip a code:hover, .content .tip a code:focus {
      color: var(--sub) !important; }
    .content .tip::after {
      border-color: var(--bg) var(--bg) var(--tip-after) var(--tip-after);
      background: var(--tip-after); }
    .content .tip .gutter {
      color: var(--tip-gutter); }
  .content .annotation {
    border: 1px solid var(--annotation-border); }
    .content .annotation a:hover, .content .annotation a:focus {
      color: var(--sub) !important; }
    .content .annotation a code:hover, .content .annotation a code:focus {
      color: var(--sub) !important; }
  .content .public-preview {
    background: var(--public-preview);
    border: 1px solid var(--public-preview-border);
    color: var(--public-preview-text); }
    .content .public-preview::after {
      border-color: var(--bg) var(--bg) var(--public-preview-after) var(--public-preview-after);
      background: var(--public-preview-after); }
    .content .public-preview .gutter {
      color: var(--public-preview-gutter); }
  .content .annotation {
    box-sizing: border-box;
    margin: 0.936rem 0;
    padding: 0.585rem 0.585rem 0.585rem 1.17rem;
    position: relative; }
    @media (max-width: 510px) {
      .content .annotation {
        padding: 0.468rem 0.468rem 0.468rem 0.585rem; } }
    .content .annotation p:first-of-type {
      margin-top: 0; }
  .content .warning,
  .content .note,
  .content .tip,
  .content .important,
  .content .private-preview,
  .content .public-preview {
    box-sizing: border-box;
    margin: 0.936rem 0;
    padding: 0.936rem 0.936rem 0.936rem 6.084rem;
    position: relative;
    border-radius: 0.702rem; }
    @media (max-width: 510px) {
      .content .warning,
      .content .note,
      .content .tip,
      .content .important,
      .content .private-preview,
      .content .public-preview {
        padding: 0.585rem 0.585rem 0.585rem 3.51rem; } }
    .content .warning p:first-of-type,
    .content .note p:first-of-type,
    .content .tip p:first-of-type,
    .content .important p:first-of-type,
    .content .private-preview p:first-of-type,
    .content .public-preview p:first-of-type {
      margin-top: 0; }
    .content .warning::after,
    .content .note::after,
    .content .tip::after,
    .content .important::after,
    .content .private-preview::after,
    .content .public-preview::after {
      content: "";
      position: absolute;
      top: -1px;
      right: -1px;
      border-width: 0 0.936rem 0.936rem 0;
      border-style: solid; }
    .content .warning .gutter,
    .content .note .gutter,
    .content .tip .gutter,
    .content .important .gutter,
    .content .private-preview .gutter,
    .content .public-preview .gutter {
      position: absolute;
      left: 0.936rem;
      top: 1.053rem;
      line-height: 23px;
      font-size: 0.702rem;
      font-weight: bold;
      text-transform: uppercase; }
      @media (max-width: 510px) {
        .content .warning .gutter,
        .content .note .gutter,
        .content .tip .gutter,
        .content .important .gutter,
        .content .private-preview .gutter,
        .content .public-preview .gutter {
          top: 0.702rem; } }
  @media (max-width: 510px) {
    .content .warning {
      padding-left: 5.265rem; } }
  .content .cta {
    background: linear-gradient(102.5deg, #5a34cb 17.99%, #9b34cb 59.07%);
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-weight: 500;
    margin: 1.872rem 0;
    padding: 1.17rem 3.744rem;
    opacity: 1;
    transition: opacity 350ms ease; }
    .content .cta.full_width {
      display: block;
      width: 100%;
      text-align: center; }
    .content .cta.secondary {
      background: #faf8fd;
      color: #1b164c; }
      .content .cta.secondary:hover {
        color: #1b164c; }
    .content .cta:hover {
      opacity: 0.9;
      color: #fff;
      border-bottom: none; }
  .content .release-date {
    font-style: italic; }
  .content .release-date + ul,
  .content .release-date + ol {
    margin-top: 0.936rem;
    padding-left: 1.872rem; }
  .content .symbol {
    color: #612dd3; }
  .content .breadcrumb {
    font-size: 0.819rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--sub);
    margin-bottom: var(--nano); }
    .content .breadcrumb a {
      color: var(--sub) !important;
      margin: 0 0.468rem; }
      .content .breadcrumb a:hover {
        color: #383d49;
        opacity: 1; }
      .content .breadcrumb a:first-of-type {
        margin-left: 0; }

#helpful {
  border-top: 1px solid #c1c3c6;
  margin-top: 2.808rem;
  max-width: 40%;
  padding-top: 0.468rem;
  text-align: center; }
  #helpful table {
    table-layout: fixed;
    width: 100%; }
  #helpful tr {
    border-style: hidden; }
  #helpful .helpful-vote {
    border: 3px solid #612dd3;
    color: #612dd3;
    display: inline-block;
    font-weight: bold;
    padding: 0.6435rem 0;
    width: 100%; }
  #helpful #got-feedback {
    display: none; }

.code-tabs {
  margin: 0.585rem 0; }
  .code-tabs .nav-tabs {
    list-style: none;
    padding: 0;
    border-bottom: 1px solid #9c86e0;
    display: flex;
    overflow-x: scroll;
    padding-bottom: var(--xx-small); }
    .code-tabs .nav-tabs li {
      display: inline-block;
      margin: 0 0.0585rem;
      padding: 0;
      position: relative;
      bottom: -1px;
      background: var(--gray-lightest); }
      .code-tabs .nav-tabs li a {
        color: var(--body);
        display: block;
        padding: 0.468rem 0.936rem;
        font-size: 0.819rem;
        text-decoration: none;
        font-weight: 500; }
        @media (max-width: 850px) {
          .code-tabs .nav-tabs li a {
            padding: 0.468rem 0.936rem; } }
        @media (max-width: 380px) {
          .code-tabs .nav-tabs li a {
            padding: 0.468rem 0.468rem; } }
        .code-tabs .nav-tabs li a:hover {
          color: #612dd3;
          border-bottom: none; }
      .code-tabs .nav-tabs li.active {
        background: var(--bg);
        border-radius: 2px 2px 0 0;
        border: 1px solid #9c86e0;
        border-bottom-color: var(--bg); }
        .code-tabs .nav-tabs li.active a {
          color: var(--highlight); }
  .code-tabs .tab-pane {
    display: none;
    padding: 0.936rem 0; }
    .code-tabs .tab-pane.active {
      display: block; }
  .code-tabs #subscribe_dialog {
    display: none;
    z-index: 10;
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: #7f4eff;
    padding: 6px;
    border-radius: 4px;
    box-shadow: 0 1px 1px #00000011, 0 2px 2px #00000011, 0 4px 4px #00000011, 0 8px 8px #00000011, 0 16px 16px #00000011; }
    .code-tabs #subscribe_dialog form {
      display: flex; }
      .code-tabs #subscribe_dialog form input[type="email"] {
        font-size: 0.468rem;
        padding: 7px 5px 6px 5px;
        border-radius: 4px;
        border: none;
        margin-right: 4px; }
      .code-tabs #subscribe_dialog form input[type="submit"] {
        line-height: 0.5;
        background-color: #fff;
        padding: 7px 18px 6px 18px;
        margin-top: 1px; }
    .code-tabs #subscribe_dialog .disclaimer {
      width: 100%;
      color: #fff;
      padding: 4px 8px;
      font-size: 12px;
      border-bottom-left-radius: 4px;
      border-bottom-right-radius: 4px; }
  .code-tabs .subscribe_dialog_active {
    position: relative; }
    .code-tabs .subscribe_dialog_active #subscribe_dialog {
      display: block; }
  .code-tabs .level-of-support {
    display: inline-block;
    width: 17px;
    height: 17px;
    position: relative;
    top: 5px; }
    .code-tabs .level-of-support.level-production {
      color: #13d461; }
    .code-tabs .level-of-support.level-alpha, .code-tabs .level-of-support.level-beta {
      color: #d1fa77; }
    .code-tabs .level-of-support.level-in-progress {
      color: #ff9100; }
    .code-tabs .level-of-support.level-researching, .code-tabs .level-of-support.level-not-supported {
      color: #f85151; }

.table-scrollable {
  box-shadow: inset 0 -4px 3px -3px #ede7fd;
  margin: 0.585rem 0 1.755rem;
  overflow: auto; }
  .table-scrollable .table-container {
    overflow: visible; }
  .table-scrollable table {
    width: 100%; }
  .table-scrollable thead th {
    background: var(--bg);
    position: sticky;
    top: 0; }
    .table-scrollable thead th:after {
      border-bottom: 1px var(--highlight) solid;
      content: "";
      bottom: -1px;
      left: 0;
      right: 0;
      position: absolute; }
  .table-scrollable + * {
    margin-top: 1.755rem !important; }

.level-of-support {
  display: inline-block;
  width: 17px;
  height: 17px;
  position: relative;
  top: 5px; }
  .level-of-support.level-production {
    color: #13d461; }
  .level-of-support.level-alpha, .level-of-support.level-beta {
    color: #d1fa77; }
  .level-of-support.level-in-progress {
    color: #ff9100; }
  .level-of-support.level-researching, .level-of-support.level-not-supported {
    color: #f85151; }

.copy_button {
  display: none;
  position: absolute;
  font-size: 0.702rem;
  font-weight: 300;
  border: none;
  background-color: #e0e2e2;
  color: var(--black);
  height: 26px;
  padding: 0 12px;
  cursor: pointer;
  border-radius: 4px;
  white-space: nowrap;
  top: 10px;
  right: 10px;
  line-height: 2;
  font-family: 'Inter', sans-serif; }
  .copy_button.success {
    opacity: 0.8;
    background: #70f2a3; }

#subscribe_dialog {
  display: none;
  z-index: 10;
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 6px;
  background: var(--card-light);
  border: 1px solid var(--divider-light);
  border-radius: 0.702rem;
  box-shadow: var(--shadow-default); }
  #subscribe_dialog form {
    display: flex; }
    #subscribe_dialog form input[type="email"] {
      font-size: 0.819rem;
      padding: 0.2925rem;
      border-radius: 4px;
      border: none;
      margin-right: 0.468rem;
      background: var(--bg);
      color: var(--important);
      border: 1px solid var(--divider-light);
      box-shadow: var(--shadow-default); }
    #subscribe_dialog form input[type="submit"] {
      line-height: 0.5; }
  #subscribe_dialog .disclaimer {
    width: 100%;
    color: var(--important);
    margin-top: var(--nano);
    padding: 0.234rem 0.468rem;
    font-size: var(--xsm);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px; }

.subscribe_dialog_active {
  position: relative; }
  .subscribe_dialog_active #subscribe_dialog {
    display: block; }

div.json_widget {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative; }
  div.json_widget .input_container {
    display: inline-flex;
    flex-direction: row;
    margin: 16px; }
    div.json_widget .input_container .input_container-text {
      display: inline-flex;
      flex-direction: column;
      flex-grow: 3; }
      div.json_widget .input_container .input_container-text input {
        width: 100%;
        border: 1px solid #E0DEE3;
        border-radius: 8px;
        margin: 8px 0;
        padding: 8px;
        background-color: #F7F7F8;
        box-shadow: none;
        font-size: 16px; }
      .light div.json_widget .input_container .input_container-text input {
        background-color: #F7F7F8; }
      .dark div.json_widget .input_container .input_container-text input {
        background-color: #000000; }
      div.json_widget .input_container .input_container-text input::placeholder {
        color: #BCB9C0; }
    div.json_widget .input_container .input_container-radio {
      display: inline-flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: center;
      margin: 0 16px 12px;
      padding: 16px;
      border: 1px solid #E0DEE3;
      border-radius: 8px; }
      div.json_widget .input_container .input_container-radio legend {
        padding: 0 4px; }
  div.json_widget .json {
    width: 100%;
    margin-top: 16px; }
    div.json_widget .json textarea {
      height: 400px;
      width: 100%;
      resize: none;
      border: 1px solid #E0DEE3;
      border-radius: 8px;
      padding: 8px; }
    div.json_widget .json textarea::placeholder {
      opacity: 0.1;
      font-size: 4vw;
      text-align: center;
      line-height: 350px; }
    div.json_widget .json .error {
      opacity: 1;
      border-color: #d33902;
      border-style: solid;
      border-width: thin;
      border-radius: 8px; }
      div.json_widget .json .error p {
        background-color: rgba(229, 6, 68, 0.1);
        font-weight: 500;
        padding: 8px; }
      .light div.json_widget .json .error p {
        color: #803737; }
      .dark div.json_widget .json .error p {
        color: #fe1d5e; }
    div.json_widget .json .error-hidden {
      display: none; }
  div.json_widget .sql_output {
    margin: 16px; }
  div.json_widget .log_output {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    max-height: 150px;
    overflow-y: auto;
    margin-top: 10px; }
  div.json_widget .input_container-text select.text-input {
    appearance: none;
    background-color: #F7F7F8;
    border: 1px solid #E0DEE3;
    border-radius: 8px;
    padding: 8px;
    font-size: 16px;
    color: #BCB9C0;
    cursor: pointer; }
  div.json_widget .input_container-text select.text-input:focus {
    outline: none;
    border-color: #aca9b8; }
  .light div.json_widget select.text-input {
    background-color: #F7F7F8; }
  .dark div.json_widget select.text-input {
    background-color: #000000; }

.notify_button {
  font-size: 0.585rem;
  padding: 0.234rem 0.468rem; }
  .notify_button.success {
    width: 4.68rem; }

/* Unclear why we are suppressing the copy button in tables
   but ... at least, allow for cases where we want to enable copy button in tables.
*/
td:not(.copyableCode) .copy_button {
  display: none !important; }

pre {
  position: relative; }
  pre:hover .copy_button {
    display: inline-block; }

body.dark .content .note a,
body.dark .content .important a {
  color: var(--link); }

body.dark .content .note::after,
body.dark .content .important::after {
  border-color: --var(--note-border);
  background: var(--note); }

body.dark .content .tip a {
  color: var(--link); }

body.dark .content .tip::after {
  border-color: --var(--tip-border);
  background: var(--tip); }

body.dark .content .annotation a {
  color: var(--link); }

body.dark .content .warning .gutter,
body.dark .content .private-preview .gutter {
  color: #ff8504; }

body.dark .content pre code {
  color: var(--sub); }

@media (max-width: 850px) {
  .back-to-top {
    margin: var(--medium) 0; } }

body.dark .code-tabs .nav-tabs li {
  background: var(--bg-sub); }
  body.dark .code-tabs .nav-tabs li.active {
    background: var(--bg); }

.caption {
  font-size: 0.702rem;
  font-weight: 300;
  padding: var(--nano);
  font-style: italic; }

td.copyableCode .chroma {
  background-color: var(--code-block); }

div.footnotes {
  font-size: var(--sm); }
  div.footnotes hr {
    width: 100%; }
  div.footnotes li::marker {
    font-variant-numeric: normal;
    content: "[" counter(list-item) "] "; }

sup a {
  color: var(--link); }

.row {
  max-width: 1400px;
  margin: auto; }
  @media (max-width: 1570px) {
    .row {
      padding: 0 var(--milli); } }
.content-wrapper {
  display: flex;
  justify-content: center;
  padding-top: var(--nav-height); }
  @media (max-width: 800px) {
    .content-wrapper {
      padding-top: calc(var(--nav-height) + var(--xx-small)); } }
  @media (max-width: 380px) {
    .content-wrapper {
      padding-top: calc(var(--nav-height) + var(--medium)); } }
.content {
  display: flex;
  gap: var(--large);
  flex-direction: column;
  flex: 3;
  flex-shrink: 1;
  min-height: calc(100vh - 178px);
  min-width: 0;
  max-width: 840px;
  padding: var(--xx-small) var(--small); }
  @media (max-width: 1260px) {
    .content {
      flex: 2.5;
      padding: var(--xx-small); } }
  @media (max-width: 510px) {
    .content {
      padding: var(--xx-small) var(--milli); } }
  @media (max-width: 850px) {
    .content {
      gap: 0; } }
  .content footer {
    margin-top: auto; }

.table-container {
  overflow-x: scroll; }

table.inline-headings th p, table.inline-headings td p {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
  padding-left: 2em; }

table.inline-headings th .heading .highlight, table.inline-headings td .heading .highlight {
  display: inline-block; }

.relative {
  position: relative; }

#docsearch {
  margin-bottom: 16px; }
  #docsearch .DocSearch-Button {
    margin: 0 0 16px 0;
    width: 100%;
    background: var(--card-light);
    border: 1px solid var(--divider-light);
    border-radius: 8px;
    max-width: 230px; }
  @media (max-width: 768px) {
    #docsearch .DocSearch-Button-Keys {
      display: flex; } }
  #docsearch .DocSearch-Button-Key {
    background: var(--card);
    color: var(--body);
    box-shadow: 1px 1px 0px 0px var(--divider-light); }
  #docsearch .DocSearch-Button-Placeholder {
    font-size: 0.936rem;
    font-weight: 300; }
    @media (max-width: 768px) {
      #docsearch .DocSearch-Button-Placeholder {
        display: initial; } }
  #docsearch .DocSearch-Search-Icon {
    color: var(--body); }

/*
 Theme override for the Algolia Docsearch modal
*/
.DocSearch-Modal {
  --docsearch-primary-color: #7f4eff;
  --docsearch-highlight-color: #7f4eff;
  --docsearch-searchbox-shadow: inset 0 0 0 2px var(--docsearch-primary-color); }

.backdrop {
  position: fixed;
  height: 100vh;
  width: 100vw;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none; }

.sidebar-wrapper {
  flex: 1; }
  @media (max-width: 850px) {
    .sidebar-wrapper {
      position: fixed;
      background: var(--bg);
      z-index: 100;
      top: var(--nav-height);
      left: 0;
      border-right: 1px solid var(--divider-light);
      transform: translateX(-100%);
      transition: all .2s ease-out;
      visibility: hidden; }
      .sidebar-wrapper .close-topics {
        opacity: 0;
        pointer-events: none; }
      .sidebar-wrapper.shown {
        transform: none;
        visibility: visible; }
        .sidebar-wrapper.shown .close-topics {
          opacity: 1;
          pointer-events: initial; } }
.sidebar {
  margin-left: auto;
  position: sticky;
  top: var(--nav-height);
  padding: var(--xx-small) var(--small);
  overflow-y: auto;
  height: 100vh;
  display: flex;
  font-size: 0.7605rem;
  overflow-x: hidden; }
  .sidebar,
  .sidebar ul {
    width: 100%;
    min-width: 200px;
    max-width: 285px; }
    @media (max-width: 850px) {
      .sidebar,
      .sidebar ul {
        min-width: 260px; } }
  @media (max-width: 1570px) {
    .sidebar {
      padding-left: var(--milli);
      padding-right: var(--nano); } }
  @media (max-width: 850px) {
    .sidebar {
      padding-bottom: var(--large); } }
  .sidebar a {
    display: block;
    cursor: pointer;
    position: relative;
    padding: 3px 0 3px 15px;
    margin-left: 5px;
    text-decoration: none;
    word-wrap: break-word;
    white-space: initial; }
    .sidebar a.active {
      font-weight: 500; }
    .sidebar a:hover, .sidebar a.active {
      color: var(--highlight);
      text-decoration: none; }
      .sidebar a:hover svg, .sidebar a.active svg {
        color: var(--divider-light); }
        .sidebar a:hover svg .darker, .sidebar a.active svg .darker {
          color: var(--highlight); }
    .sidebar a svg {
      position: absolute;
      left: -6px;
      top: 50%;
      margin-top: -18px;
      color: var(--divider-light); }
      .sidebar a svg .darker {
        color: var(--sub); }
      .sidebar a svg:hover {
        stroke-width: 2; }
  .sidebar code {
    font-family: "Fira Code", Courier, monospace; }
  .sidebar .no-children > a:hover, .sidebar .no-children > a.active,
  .sidebar .level-4 a:hover,
  .sidebar .level-4 a.active {
    border-left: 2px solid var(--highlight); }
  .sidebar ul {
    position: relative;
    list-style-type: none;
    margin-top: 0;
    padding-left: 0; }
    .sidebar ul ul ul {
      margin-left: 0.468rem; }
  .sidebar li {
    position: relative; }
  .sidebar li.level-1 {
    padding: 4px 0;
    border-bottom: 1px solid var(--gray-light); }
    .sidebar li.level-1 > a {
      font-weight: 500;
      color: var(--highlight); }
    .sidebar li.level-1 > ul {
      margin-bottom: 0.8775rem; }
  .sidebar li.level-1 > ul,
  .sidebar li.level-2 > ul,
  .sidebar li.level-3 > ul {
    display: none;
    padding-top: 0.2925rem;
    margin-bottom: 0.365625rem;
    padding-left: 0.468rem; }
    .sidebar li.level-1 > ul:before, .sidebar li.level-1 > ul:after,
    .sidebar li.level-2 > ul:before,
    .sidebar li.level-2 > ul:after,
    .sidebar li.level-3 > ul:before,
    .sidebar li.level-3 > ul:after {
      content: "";
      width: 10px;
      height: 10px;
      position: absolute;
      top: 1px;
      left: 0px; }
    .sidebar li.level-1 > ul:after,
    .sidebar li.level-2 > ul:after,
    .sidebar li.level-3 > ul:after {
      bottom: -10px;
      top: unset;
      transform: scaleY(-1); }
  .sidebar li.level-1.open > a .hidden-when-open,
  .sidebar li.level-2.open > a .hidden-when-open,
  .sidebar li.level-3.open > a .hidden-when-open {
    visibility: hidden; }
  .sidebar li.level-1.open > ul,
  .sidebar li.level-2.open > ul,
  .sidebar li.level-3.open > ul {
    display: block; }
  .sidebar li.level-1.has-children.open {
    padding-bottom: 4px; }
  .sidebar li.level-2.has-children.open {
    padding-bottom: 4px; }
  .sidebar li.level-3.has-children.open {
    padding-bottom: 4px; }

.toc-wrapper {
  flex: 1;
  position: sticky;
  top: 90px;
  height: 100vh;
  overflow-y: auto; }
  @media (max-width: 1050px) {
    .toc-wrapper {
      display: none; } }
  .toc-wrapper .btn-ghost {
    margin: var(--x-small) var(--milli) var(--milli); }

.toc {
  max-width: fit-content;
  min-width: 180px;
  padding: var(--x-small) 1.17rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  font-size: var(--sm);
  padding-bottom: 8.5rem; }
  .toc-top {
    margin-top: var(--pico); }
  .toc h2 {
    font-size: var(--xsm);
    letter-spacing: 0.1em;
    margin: 0 0 0.43875rem 0;
    padding: 0;
    display: inline-block;
    color: var(--highlight);
    text-transform: uppercase; }
  .toc ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
  .toc ul ul {
    margin-left: var(--milli); }
  .toc li {
    padding: 0.14625rem 0; }
  .toc a {
    text-decoration: none; }
    .toc a.active,
    .toc a.active code {
      font-weight: 500; }
    .toc a.active,
    .toc a.active code, .toc a:hover,
    .toc a:hover code, .toc a:focus,
    .toc a:focus code {
      color: var(--highlight);
      text-decoration: none; }
  .toc code {
    font-family: "Fira Code", Courier, monospace;
    font-variant-ligatures: none; }

.sidebar a,
.toc a {
  white-space: initial; }

.footer {
  display: flex;
  flex-direction: column;
  gap: var(--x-small);
  text-align: center;
  margin-top: var(--large);
  padding: var(--small) 0 0;
  border-top: 1px solid var(--divider-light); }
  .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: var(--small);
    row-gap: var(--milli);
    font-size: var(--sm); }
  .footer button {
    border-bottom: 1px solid transparent; }
  .footer button:hover,
  .footer button:focus {
    border-color: var(--important); }
  .footer a:not([class]),
  .footer button {
    color: var(--sub) !important;
    font-weight: 300 !important;
    text-decoration: none; }
    .footer a:not([class])[href*="https://"],
    .footer button[href*="https://"] {
      border-bottom: none; }
      .footer a:not([class])[href*="https://"]::after,
      .footer button[href*="https://"]::after {
        display: none; }

.theme-switcher {
  display: flex;
  justify-content: center;
  gap: var(--xx-small); }
  .theme-switcher button {
    background: transparent;
    border: none; }
  .theme-switcher svg {
    height: 1.287rem;
    width: 1.287rem;
    fill: var(--gray-mid); }
  .theme-switcher .system.active svg {
    fill: var(--important); }
  .theme-switcher .light.active svg {
    fill: orange; }
  .theme-switcher .dark.active svg {
    fill: var(--gray-light); }

body.dark .theme-switcher svg {
  fill: var(--gray-dark); }

body.dark li.level-2 li.level-3 ul:before, body.dark li.level-2 li.level-3 ul:after {
  content: "";
  background-image: url("../images/level_three_transition_dark.svg"); }

body.dark li.level-2 ul:before, body.dark li.level-2 ul:after {
  content: "";
  background-image: url("../images/level_three_transition_dark.svg"); }

.banner {
  background-color: var(--tip);
  padding: var(--pico) var(--milli);
  text-align: center; }
  @media (max-width: 500px) {
    .banner {
      padding: var(--pico); } }
  .banner a {
    color: var(--link); }

/*
  Need for subheadings not handled by toc.html.
  toc.html manually handles h2, h3 - since we only display h2 and h3
  but if a page has other anchors, want to have the padding.
  TODO: see about removing scroll logic in toc.html
*/
html {
  scroll-padding-top: 80px; }

.nav {
  border-bottom: 1px solid var(--divider-light);
  background: var(--bg-nav);
  backdrop-filter: saturate(0.5) blur(5px);
  position: fixed;
  width: 100vw;
  z-index: 101; }
  .nav .desktop {
    display: flex;
    align-items: center;
    gap: var(--small); }
    @media (max-width: 850px) {
      .nav .desktop {
        display: none !important; } }
  .nav .mobile {
    display: none;
    padding: var(--micro) 0; }
    .nav .mobile a:not(.btn) {
      padding: var(--nano) 0;
      border-bottom: 1px solid var(--divider-light) !important; }
    .nav .mobile .btn {
      margin-top: var(--milli); }
    .nav .mobile .active {
      font-weight: bold; }
    @media (max-width: 850px) {
      .nav .mobile {
        height: calc(100vh - var(--nav-height)); }
        .nav .mobile .row {
          display: flex;
          flex-direction: column; } }
  .nav-container {
    display: flex;
    justify-content: space-between;
    flex: 0 0 100%;
    align-items: center;
    height: var(--nav-height); }
  .nav a:not([class*="btn"]) {
    text-decoration: none;
    border-bottom: 1px solid transparent; }
    .nav a:not([class*="btn"]):hover, .nav a:not([class*="btn"]):focus, .nav a:not([class*="btn"]).active {
      text-decoration: none;
      color: var(--important);
      border-color: var(--important); }
  .nav-logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.053rem;
    color: var(--important); }
    .nav-logo a {
      display: flex;
      border-bottom: none !important; }
    .nav-logo svg {
      margin-right: 0.8775rem; }

.toggle {
  display: none;
  transform: translateX(0.468rem); }
  @media (max-width: 850px) {
    .toggle {
      display: initial; } }
  .toggle div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 2.808rem;
    width: 2.808rem;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0, 0, 0.2, 1); }
    .toggle div span, .toggle div::before, .toggle div::after {
      background: var(--sub);
      height: 0.117rem;
      width: 1.404rem;
      transition: all 0.2s cubic-bezier(0, 0, 0.2, 1); }
    .toggle div::before, .toggle div::after {
      content: ''; }
    .toggle div::before {
      margin-bottom: 0.351rem; }
    .toggle div::after {
      margin-top: 0.351rem; }
  .toggle.open div::before, .toggle.open div::after {
    background: var(--important); }
  .toggle.open div span {
    opacity: 0; }
  .toggle.open div:before {
    transform: rotate(-135deg);
    margin-bottom: -10px; }
  .toggle.open div::after {
    transform: rotate(135deg); }

button.show-topics {
  display: none;
  margin: 0 0 var(--small) !important;
  text-align: left;
  font-weight: 300;
  font-size: var(--base);
  color: var(--sub); }
  @media (max-width: 850px) {
    button.show-topics {
      display: flex; } }
  button.show-topics svg {
    height: 20px;
    margin-right: var(--micro);
    stroke: var(--important); }

button.close-topics {
  display: none;
  position: absolute;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  transform: translateX(50%) translateY(50%);
  background: var(--bg);
  height: 2.808rem;
  width: 2.808rem;
  border: 1px solid var(--divider-light);
  border-radius: 100%;
  box-shadow: var(--shadow-default);
  transition: all .2s ease-out; }
  button.close-topics svg {
    height: 30px;
    width: 30px; }
    button.close-topics svg path {
      stroke: var(--important); }
  @media (max-width: 850px) {
    button.close-topics {
      display: flex; } }
body.light .logo-link path {
  fill: var(--black); }

/* Background */
.chroma {
  background-color: #ffffff; }

/* Error */
.chroma .err {
  color: var(--important); }

/* LineTableTD */
.chroma .lntd {
  vertical-align: top;
  padding: 0;
  margin: 0;
  border: 0; }

/* LineTable */
.chroma .lntable {
  border-spacing: 0;
  padding: 0;
  margin: 0;
  border: 0;
  width: auto;
  overflow: auto;
  display: block; }

/* LineHighlight */
.chroma .hl {
  display: block;
  width: 100%;
  background-color: #ffffcc; }

/* LineNumbersTable */
.chroma .lnt {
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
  color: #7f7f7f; }

/* LineNumbers */
.chroma .ln {
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
  color: #7f7f7f; }

/* Keyword */
.chroma .k {
  color: var(--code-pink); }

/* KeywordConstant */
.chroma .kc {
  color: var(--code-pink); }

/* KeywordDeclaration */
.chroma .kd {
  color: var(--code-pink); }

/* KeywordNamespace */
.chroma .kn {
  color: var(--code-pink); }

/* KeywordPseudo */
.chroma .kp {
  color: var(--code-pink); }

/* KeywordReserved */
.chroma .kr {
  color: var(--code-pink); }

/* KeywordType */
.chroma .kt {
  color: var(--code-pink); }

/* Name */
.chroma .n {
  color: var(--important); }

/* NameAttribute */
.chroma .na {
  color: #836c28; }

/* NameBuiltin */
.chroma .nb {
  color: var(--code-pink); }

/* NameBuiltinPseudo */
.chroma .bp {
  color: #5b269a; }

/* NameClass */
.chroma .nc {
  color: #3f6e75; }

/* NameConstant */
.chroma .no {
  color: var(--important); }

/* NameDecorator */
.chroma .nd {
  color: var(--important); }

/* NameEntity */
.chroma .ni {
  color: var(--important); }

/* NameException */
.chroma .ne {
  color: var(--important); }

/* NameFunction */
.chroma .nf {
  color: var(--important); }

/* NameFunctionMagic */
.chroma .fm {
  color: var(--important); }

/* NameLabel */
.chroma .nl {
  color: var(--important); }

/* NameNamespace */
.chroma .nn {
  color: var(--important); }

/* NameOther */
.chroma .nx {
  color: var(--important); }

/* NameProperty */
.chroma .py {
  color: var(--important); }

/* NameTag */
.chroma .nt {
  color: var(--important); }

/* NameVariable */
.chroma .nv {
  color: var(--important); }

/* NameVariableClass */
.chroma .vc {
  color: var(--important); }

/* NameVariableGlobal */
.chroma .vg {
  color: var(--important); }

/* NameVariableInstance */
.chroma .vi {
  color: var(--important); }

/* NameVariableMagic */
.chroma .vm {
  color: var(--important); }

/* Literal */
.chroma .l {
  color: var(--code-blue); }

/* LiteralDate */
.chroma .ld {
  color: var(--code-blue); }

/* LiteralString */
.chroma .s {
  color: var(--code-red); }

/* LiteralStringAffix */
.chroma .sa {
  color: var(--code-red); }

/* LiteralStringBacktick */
.chroma .sb {
  color: var(--code-red); }

/* LiteralStringChar */
.chroma .sc {
  color: #2300ce; }

/* LiteralStringDelimiter */
.chroma .dl {
  color: var(--code-red); }

/* LiteralStringDoc */
.chroma .sd {
  color: var(--code-red); }

/* LiteralStringDouble */
.chroma .s2 {
  color: var(--code-red); }

/* LiteralStringEscape */
.chroma .se {
  color: var(--code-red); }

/* LiteralStringHeredoc */
.chroma .sh {
  color: var(--code-red); }

/* LiteralStringInterpol */
.chroma .si {
  color: var(--code-red); }

/* LiteralStringOther */
.chroma .sx {
  color: var(--code-red); }

/* LiteralStringRegex */
.chroma .sr {
  color: var(--code-red); }

/* LiteralStringSingle */
.chroma .s1 {
  color: var(--code-red); }

/* LiteralStringSymbol */
.chroma .ss {
  color: var(--code-red); }

/* LiteralNumber */
.chroma .m {
  color: var(--code-blue); }

/* LiteralNumberBin */
.chroma .mb {
  color: var(--code-blue); }

/* LiteralNumberFloat */
.chroma .mf {
  color: var(--code-blue); }

/* LiteralNumberHex */
.chroma .mh {
  color: var(--code-blue); }

/* LiteralNumberInteger */
.chroma .mi {
  color: var(--code-blue); }

/* LiteralNumberIntegerLong */
.chroma .il {
  color: var(--code-blue); }

/* LiteralNumberOct */
.chroma .mo {
  color: var(--code-blue); }

/* Operator */
.chroma .o {
  color: var(--important); }

/* OperatorWord */
.chroma .ow {
  color: var(--important); }

/* Comment */
.chroma .c {
  color: var(--code-green); }

/* CommentHashbang */
.chroma .ch {
  color: var(--code-green); }

/* CommentMultiline */
.chroma .cm {
  color: var(--code-green); }

/* CommentSingle */
.chroma .c1 {
  color: var(--code-green); }

/* CommentSpecial */
.chroma .cs {
  color: var(--code-green); }

/* CommentPreproc */
.chroma .cp {
  color: #633820; }

/* CommentPreprocFile */
.chroma .cpf {
  color: #633820; }

body.dark .content .chroma code.language-hc .n,
body.dark .content .chroma code.language-hc .o,
body.dark .content .chroma code.language-hc .p {
  color: var(--orange); }

body.dark .content .chroma .hl {
  background-color: #292925; }

.rr-diagram {
  margin: 0.8775rem 0;
  overflow: auto; }
  .rr-diagram .line {
    fill: none;
    stroke: var(--sub); }
  .rr-diagram .bold-line {
    stroke: var(--important);
    shape-rendering: crispEdges;
    stroke-width: 2; }
  .rr-diagram .thin-line {
    stroke: var(--important);
    shape-rendering: crispEdges; }
  .rr-diagram .filled {
    fill: var(--sub);
    stroke: none; }
  .rr-diagram text.terminal,
  .rr-diagram text.nonterminal,
  .rr-diagram text.regexp {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    fill: #000; }
  .rr-diagram text.terminal {
    font-weight: bold; }
  .rr-diagram rect,
  .rr-diagram circle,
  .rr-diagram polygon {
    fill: var(--sub);
    stroke: var(--sub); }
  .rr-diagram rect.terminal {
    fill: #ab96e0;
    stroke: var(--sub); }
  .rr-diagram rect.nonterminal {
    fill: #e3deee;
    stroke: var(--sub); }
  .rr-diagram rect.text {
    fill: none;
    stroke: none; }
  .rr-diagram polygon.regexp {
    fill: #f2eff8;
    stroke: var(--sub); }
