:root {
  --left-nav-width: 256px;
  --topbar-height: var(--theme-common-size-l);
}
h2,
h3,
h4 {
  font-weight: var(--theme-common-font-weight-regular);
  margin: var(--theme-common-padding-xl3) 0 var(--theme-common-padding-m);
  color: var(--theme-text-primary);
  outline: unset;
}
h2 {
  font-size: var(--theme-common-font-size-xl);
  line-height: calc(var(--theme-common-font-size-xl) + 4px);
}
h2.deprecated {
    display: flex;
    align-items: center;
    gap: var(--theme-common-gap-xs);
    color: var(--theme-reds-red400);
  }
h3 {
  font-size: var(--theme-common-font-size-l);
  line-height: calc(var(--theme-common-font-size-l) + 4px);
}
h4 {
  font-size: var(--theme-common-font-size-m);
  line-height: calc(var(--theme-common-font-size-m) + 4px);
}
p {
  font-size: var(--theme-common-font-size-m);
  line-height: calc(var(--theme-common-font-size-m) + 4px);
  margin: var(--theme-common-padding-m) 0;
}
.topbar-wrapper {
  background: var(--theme-background-primary);
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: var(--theme-zIndex-overlay-middle);
  box-shadow: var(--theme-common-shadows-bottom);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (min-width: calc(1920px + 1px)) {
.topbar-wrapper {
    padding: 0 var(--theme-common-padding-xl)
}
  }
.topbar {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  padding: 0 var(--theme-common-padding-m);
  gap: var(--theme-common-gap-l);
  position: relative;
}
@media screen and (max-width: 1279px) {
.topbar {
    padding-left: 0px
}
  }
@media screen and (max-width: 1023px) {
.topbar {
    flex-direction: column;
    padding: 0;
    gap: 0
}
  }
.topbar .topbar-divider {
    height: var(--theme-common-size-xs);
    width: 1px;
    background-color: var(--theme-background-tertiary);
  }
@media screen and (max-width: 1023px) {
.topbar .topbar-divider {
      display: none
  }
    }
.topbar .topcon-logo {
    display: flex;
  }
@media screen and (max-width: 1279px) {
.topbar .topcon-logo {
      padding-left: var(--theme-common-padding-xl3)
  }
    }
@media screen and (max-width: 1023px) {
.topbar .topcon-logo {
      padding-left: 0
  }
    }
.topbar .topbar-links {
    display: flex;
    height: var(--theme-common-size-l);
    gap: var(--theme-common-gap-xl);
    flex-grow: 1;
  }
@media screen and (max-width: 1023px) {
.topbar .topbar-links {
      width: 100%;
      justify-content: space-evenly;
      height: var(--theme-common-size-l);
      gap: var(--theme-common-gap-xs);
      font-size: var(--theme-common-font-size-s)
  }
    }
.topbar .topbar-links a {
      cursor: pointer;
      color: var(--theme-text-primary);
      text-decoration: none;
      height: 100%;
      display: flex;
      align-items: center;
      transition: color var(--theme-common-transition-duration-fast)
        var(--theme-common-transition-timing-primary);
    }
.topbar .topbar-links a .topbar-link-text {
        padding: 10px 0;
        position: relative;
        display: flex;
      }
.topbar .topbar-links a:hover,
      .topbar .topbar-links a.selected {
        color: var(--theme-text-brand-primary);
      }
.topbar .topbar-version {
    position: absolute;
    gap: var(--theme-common-gap-s);
    right: var(--theme-common-padding-m);
    height: var(--theme-common-size-l);
    display: flex;
    align-items: center;
    font-weight: var(--theme-common-font-weight-medium);
  }
header {
  margin-left: var(--theme-common-padding-xl);
  color: var(--theme-text-neutral);
  height: calc(var(--theme-common-padding-xl3) + 140px); /* 188px*/
  padding: var(--theme-common-padding-xl3) var(--theme-common-padding-xl3) 0;
  display: flex;
  flex-shrink: 0;
  background-color: var(--theme-blues-blue700);
  border-radius: 0 0 var(--theme-common-borderRadius-l) var(--theme-common-borderRadius-l);
  max-width: calc(1920px - var(--left-nav-width));
}
header h1 {
    font-weight: var(--theme-common-font-weight-regular);
    font-size: var(--theme-common-font-size-xl3);
    line-height: calc(var(--theme-common-font-size-xl3) + 4px);
    margin: 0 0 var(--theme-common-padding-xl);
  }
header p {
    max-width: calc(1023px + 1px);
    margin: 0 0 var(--theme-common-padding-xl3);
    font-weight: var(--theme-common-font-weight-regular);
  }
header .component-header {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
@media screen and (max-width: 1920px) {
header {
    border-radius: 0 0 0 var(--theme-common-borderRadius-l)
}
  }
@media screen and (max-width: 1279px) {
header {
    margin-left: 0;
    border-radius: 0 0 var(--theme-common-borderRadius-l) var(--theme-common-borderRadius-l)
}
  }
@media screen and (max-width: 767px) {
header {
    height: auto;
    margin: 0;
    border-radius: 0;
    padding-left: var(--theme-common-padding-xl);
    padding-right: var(--theme-common-padding-xl)
}
  }
@media screen and (max-width: 575px) {
header {
    padding-left: var(--theme-common-padding-m);
    padding-right: var(--theme-common-padding-m)
}
  }
.nav-wrapper {
  position: relative;
  top: var(--topbar-height);
  display: flex;
  height: calc(100vh - var(--topbar-height));
  overflow: hidden;
  margin-left: max(0px, calc((100vw - 1920px) / 2));
}
@media screen and (max-width: 575px) {
.nav-wrapper {
    top: calc(var(--topbar-height) * 2)
}
  }
nav .no-link,
  nav a {
    color: var(--theme-text-primary);
    display: flex;
    align-items: center;
    height: var(--theme-common-size-m);
    cursor: pointer;
    padding-left: var(--theme-common-padding-xl4);
    text-decoration: none;
  }
nav.toc {
    position: relative;
    font-size: var(--theme-common-font-size-s);
    padding: var(--theme-common-padding-xs);
    margin: 0 calc(var(--theme-common-padding-xs) * -1);
  }
nav.toc .no-link,
    nav.toc ol {
      margin-block-start: 0px;
      margin-block-end: 0px;
      list-style-type: none;
      padding: 0;
    }
nav.toc a {
      height: var(--theme-common-size-s);
      color: var(--theme-text-secondary);
      transition: color var(--theme-common-transition-duration-fast)
        var(--theme-common-transition-timing-primary);
      font-weight: var(--theme-common-font-weight-medium);
    }
nav.toc li.visible > a {
      color: var(--theme-text-link);
    }
nav .no-link {
    cursor: default;
    font-weight: var(--theme-common-font-weight-bold);
  }
.sidebar-item {
  display: none;
}
.sidebar-item.visible {
  display: flex;
}
.docs-sidebar-content {
  width: 100%;
  height: calc(100vh - var(--topbar-height));
  overflow: auto;
  scroll-behavior: smooth;
  padding-right: max(0px, calc((100vw - 1920px) / 2));
}
@media screen and (max-width: 1279px) {
.docs-sidebar-content {
    padding: 0 var(--theme-common-padding-xl);
    max-width: 100%
}
  }
@media screen and (max-width: 767px) {
.docs-sidebar-content {
    padding: 0
}
  }
.toc-wrapper {
  position: relative;
  margin-top: calc(var(--theme-common-padding-xs) * -1);
}
.toc-wrapper .toc-marker {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    /* TODO: can be removed*/
    z-index: -1;
  }
.toc-wrapper .toc-marker path {
      transition: all var(--theme-common-transition-duration-fast)
        var(--theme-common-transition-timing-primary);
    }
/* Start of Colors */
/* Base colors */
/* prettier-ignore */
pre, code {
  color: var(--theme-text-primary);
  background: var(--theme-background-primary);
}
/* prettier-ignore */
.token.property, .token.tag, .token.constant, .token.symbol, .token.deleted {
    color: var(--theme-blues-blue400);
  }
/* prettier-ignore */
.token.selector, .token.attr-name, .token.string, .token.char, .token.builtin, .token.inserted {
    color: var(--theme-greens-green500);
  }
/* prettier-ignore */
.token.punctuation, .token.operator, .token.entity, .token.url, .token.variable {
    color: var(--theme-neutrals-neutral550);
  }
/* prettier-ignore */
.token.attr-value, .token.atrule, .token.function, .token.class-name, .token.keyword, .token.regex, .token.important {
    color: var(--theme-ambers-amber500);
  }
/* prettier-ignore */
.token.function, .token.comment, .token.prolog, .token.doctype, .token.cdata {
    color: var(--theme-greens-green400);
  }
/* prettier-ignore */
.token.boolean, .token.number {
    color: var(--theme-reds-red500);
  }
/* Javascript Specific */
/* prettier-ignore */
code.language-javascript, pre.language-javascript, span.language-javascript {
  color: var(--theme-blues-blue300);
}
code.language-javascript .token.punctuation, pre.language-javascript .token.punctuation, span.language-javascript .token.punctuation {
      color: var(--theme-ambers-amber400);
    }
/* Bash Specific */
/* prettier-ignore */
code.language-bash, pre.language-bash, span.language-bash {
  color: var(--theme-ambers-amber500);
}
code.language-bash .token.function, pre.language-bash .token.function, span.language-bash .token.function {
      color: var(--theme-blues-blue400);
    }
/* SCSS Specific */
/* prettier-ignore */
code.language-scss, pre.language-scss, span.language-scss {
  color: var(--theme-blues-blue400);
}
code.language-scss .token.string, pre.language-scss .token.string, span.language-scss .token.string {
      color: var(--theme-greens-green400);
    }
/* prettier-ignore */
code.language-scss .token.variable, code.language-scss .token.property, pre.language-scss .token.variable, pre.language-scss .token.property, span.language-scss .token.variable, span.language-scss .token.property {
      color: var(--theme-ambers-amber500);
    }
/* End of Colors */
code[class*='language-'],
pre[class*='language-'] {
  font-family: 'Roboto Mono', monospace;
  font-weight: var(--theme-common-font-weight-medium);
  font-size: var(--theme-common-font-size-s);
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: calc(var(--theme-common-font-size-s) + 4px);
  flex: 1;
  -moz-tab-size: var(--theme-common-size-values-xs5);
  -o-tab-size: var(--theme-common-size-values-xs5);
  tab-size: var(--theme-common-size-values-xs5);
  -webkit-hyphens: none;
          hyphens: none;
}
/* Code blocks */
pre[class*='language-'] {
  display: flex;
  align-items: center;
  margin: 0 0 var(--theme-common-padding-xl);
  border-radius: var(--theme-common-borderRadius-m);
}
code[class*='language-'] {
  padding: var(--theme-common-padding-xl2) var(--theme-common-padding-xl);
  overflow: auto;
  border-radius: var(--theme-common-borderRadius-m);
}
:not(pre) > code[class*='language-'] {
  padding: 0.1em;
  border-radius: 0.3em;
  white-space: normal;
}
pre[class*='language-']:last-of-type {
  margin: 0;
}
.token.namespace {
  opacity: 0.7;
}
.token.important,
.token.bold {
  font-weight: var(--theme-common-font-weight-bold);
}
.token.italic {
  font-style: italic;
}
.token.entity {
  cursor: help;
}
.grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--theme-common-size-xl2);
  background-color: var(--theme-background-primary);
  border-radius: var(--theme-common-borderRadius-m);
}
section {
  margin: var(--theme-common-padding-xl) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--theme-common-gap-xl);
}
section > div {
    gap: var(--theme-common-gap-xl);
    flex-grow: 1;
    width: 100%;
    background-color: var(--theme-background-tertiary);
    border-radius: var(--theme-common-borderRadius-m);
    padding: var(--theme-common-padding-xl5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
  }
section > div.small-padding {
      padding: var(--theme-common-padding-xl);
    }
section > div.four-items-grid {
      display: grid;
      gap: var(--theme-common-gap-xs2);
      grid-template-columns: repeat(4, 1fr);
      background-color: transparent;
      padding: 0;
    }
section > div.four-items-grid > div {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--theme-common-borderRadius-m);
        height: 168px;
        background-color: var(--theme-background-tertiary);
      }
@media screen and (max-width: 767px) {
section > div {
      padding: var(--theme-common-padding-xl5) var(--theme-common-padding-m);
      margin-left: calc(var(--theme-common-padding-xl) * -1);
      margin-right: calc(var(--theme-common-padding-xl) * -1)
  }

      section > div.small-padding {
        padding: var(--theme-common-padding-xl) var(--theme-common-padding-m);
        margin: 0;
      }
    }
@media screen and (max-width: 575px) {
section > div {
      margin-left: calc(var(--theme-common-padding-m) * -1);
      margin-right: calc(var(--theme-common-padding-m) * -1)
  }

      section > div.image-wrapper {
        gap: var(--theme-common-gap-m);
        flex-direction: column;
        align-items: initial;
      }

        section > div.image-wrapper .fox-image {
          flex: initial;
        }

      section > div.four-items-grid {
        grid-template-columns: repeat(2, 1fr);
      }

        section > div.four-items-grid > div {
          height: 128px;
        }
    }
section > div.light-bg {
      background-color: var(--theme-background-primary);
    }
section > div.column {
      flex-direction: column;
    }
section > div.small-gap {
      gap: var(--theme-common-gap-m);
    }
section > div.tiny-gap {
      gap: var(--theme-common-gap-xs);
    }
section > div.large-gap {
      gap: var(--theme-common-gap-xl5);
    }
section > div.align-left {
      align-items: flex-start;
      justify-content: flex-start;
    }
section > div.kpi-wrapper > div {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: var(--theme-common-gap-m);
    }
section > div.no-padding {
      padding: 0px;
      width: 100%;
    }
/* TODO: can be removed (unused styling)*/
section > div.no-padding .resize {
        padding: var(--theme-common-padding-xl5) var(--theme-common-padding-m);
        text-align: center;
      }
/* TODO: can be removed (unused styling)*/
section > div.no-padding.image {
        height: 224px;
      }
section > div .sidebar-container {
      height: 268px;
      display: flex;
      width: 100%;
    }
section > div .sidebar-container .sidebar-content {
        background-color: var(--theme-background-selected);
        width: 100%;
      }
section > div .navbox-wrapper {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: var(--theme-common-gap-xl);
      width: 100%;
    }
section > div .label-example {
      display: flex;
      flex-direction: column;
      flex: 1;
      max-width: min(100%, 384px);
      gap: var(--theme-common-gap-xs);
    }
section > div h1 {
      font-size: var(--theme-common-font-size-xl3);
      font-weight: var(--theme-common-font-weight-bold);
      line-height: calc(var(--theme-common-font-size-xl3) + 4px);
      margin: 0;
      padding: 0;
    }
section > div h2 {
      font-size: var(--theme-common-font-size-xl);
      font-weight: var(--theme-common-font-weight-bold);
      line-height: calc(var(--theme-common-font-size-xl) + 4px);
      margin: 0;
      padding: 0;
    }
section > div.column {
    flex-direction: column;
  }
section > div.narrow > * {
    max-width: 256px;
  }
section > div.group-container {
    padding: 0;
    gap: var(--theme-common-gap-xs2);
    background-color: transparent;
  }
section > div.group-container > div {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      flex: 1;
      padding: var(--theme-common-padding-xl5) var(--theme-common-padding-m);
      min-width: 192px;
      background-color: var(--theme-background-tertiary);
      border-radius: var(--theme-common-borderRadius-m);
    }
section > div.group-container.light-bg > div {
      background-color: var(--theme-background-primary);
    }
section .spacing-container {
    display: flex;
    justify-content: space-evenly;
    background-color: var(--theme-blues-blue100);
    height: 152px;
    padding: 0;
  }
section .spacing-container te-spacing {
      background-color: var(--theme-reds-red100);
    }
section .spacing-container.horizontal te-spacing {
      height: 100%;
    }
section .spacing-container.vertical {
      flex-direction: column;
    }
section .spacing-container.vertical te-spacing {
        width: 100%;
      }
section .fox-image {
    height: 256px;
    display: flex;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: var(--theme-common-borderRadius-m);
    position: relative;
    overflow: hidden;
  }
section .fox-image.first {
      background-image: url('/images/fox.jpg');
    }
section .fox-image.second {
      background-image: url('/images/fox-two.jpg');
    }
section .fox-image.third {
      background-image: url('/images/fox-three.jpg');
    }
section .reference-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: var(--theme-text-neutral);
    font-size: var(--theme-common-font-size-s);
    height: var(--theme-common-size-xl2);
    padding: 0 var(--theme-common-padding-m) var(--theme-common-padding-m);
    display: flex;
    align-items: flex-end;
    background: linear-gradient(transparent, var(--theme-neutrals-black));
  }
.tooltip-position-container {
  justify-content: space-evenly;
}
te-segment {
  justify-content: center;
}
.modal {
  height: 512px;
  gap: 0;
}
.modal .modal-image {
    width: 100%;
    height: 100%;
    background: url('/images/globe.png') no-repeat center right / cover;
  }
.loader-modal {
  display: flex;
  height: 512px;
}
.web-component-card {
  color: var(--theme-text-primary);
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.web-component-card .web-component-title {
    font-size: var(--theme-common-font-size-l);
    font-weight: var(--theme-common-font-weight-bold);
    margin: var(--theme-common-padding-m) 0 var(--theme-common-padding-xs);
  }
.web-component-card .web-component-link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
  }
@media screen and (max-width: 575px) {
.info-container {
    flex-direction: column
}
  }
.top-gap {
  margin-top: var(--theme-common-padding-l);
}
.top-gap.medium {
    margin-top: var(--theme-common-padding-xl);
  }
.top-gap.large {
    margin-top: var(--theme-common-padding-xl3);
  }
.version-container {
  display: flex;
  flex-direction: column;
  padding: var(--theme-common-padding-xl);
  background-color: var(--theme-background-primary);
  align-items: center;
  gap: var(--theme-common-gap-xs);
}
@media screen and (max-width: 767px) {
.version-container {
    margin-left: calc(var(--theme-common-padding-xl) * -1);
    min-width: calc(100% + var(--theme-common-size-xl2))
}
  }
@media screen and (max-width: 575px) {
.version-container {
    margin-left: calc(var(--theme-common-padding-m) * -1);
    min-width: calc(100% + var(--theme-common-size-s))
}
  }
section te-cell {
    white-space: nowrap;
  }
section te-cell:first-of-type,
  section te-row:first-of-type {
    font-weight: var(--theme-common-font-weight-bold);
  }
section > div .legend-graph {
    background: conic-gradient(
      var(--theme-background-info-quaternary) 25%,
      var(--theme-background-info-tertiary) 25% 50%,
      var(--theme-background-info-secondary) 50%
    );
    border-radius: 50%;
    width: 128px;
    height: 128px;
  }
section > div .legend-group {
    display: flex;
    flex-direction: column;
    gap: var(--theme-common-gap-m);
  }

* {
  box-sizing: border-box;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--theme-background-tertiary);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  margin: 0 auto;
  color: var(--theme-text-primary);
  font-family: 'Roboto', sans-serif;
  min-height: 100vh;
  font-size: var(--theme-common-font-size-m);
  overscroll-behavior-y: none;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

body .menu-button {
    position: fixed;
    width: var(--topbar-height);
    height: var(--topbar-height);
    top: 0;
    color: var(--theme-icon-primary);
    z-index: var(--theme-zIndex-overlay-top);
    left: 0;
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
  }

@media screen and (max-width: 1279px) {

body .menu-button {
      display: flex;
      margin-left: 0;
      align-items: center;
      justify-content: center
  }
    }

body span {
    font-variation-settings: 'FILL' 1;
  }

.main-wrapper {
  flex-grow: 1;
  position: relative;
  padding-left: var(--theme-common-padding-xl);
  max-width: calc(1920px - var(--left-nav-width));
}

@media screen and (max-width: 1279px) {

.main-wrapper {
    padding-left: 0;
    margin-left: 0;
    max-width: calc(100vw - var(--theme-common-size-xl2))
}
  }

@media screen and (max-width: 767px) {

.main-wrapper {
    max-width: 100vw
}

    .main-wrapper article {
      border-radius: 0;
    }
  }

main {
  margin-top: var(--theme-common-padding-xl);
  display: flex;
  width: 100%;
}

@media screen and (max-width: 767px) {

main {
    margin-top: 0
}
  }

a {
  color: var(--theme-text-link);
}

article {
  border-radius: var(--theme-common-borderRadius-l);
  background-color: var(--theme-background-secondary);
  padding: 0 var(--theme-common-padding-xl3) 128px;
  flex-grow: 1;
  margin-bottom: var(--theme-common-padding-xl5);
  max-width: calc(100% - var(--left-nav-width) - var(--theme-common-size-s));
}

article :target:before {
    content: '';
    display: block;
    height: calc(var(--topbar-height) + var(--theme-common-size-s));
    margin-top: calc(-1 * var(--topbar-height) - var(--theme-common-size-s));
  }

article a {
    text-decoration: none;
  }

article a:hover {
      text-decoration: underline;
    }

@media screen and (max-width: 1279px) {

article {
    max-width: calc(100% - 288px)
}
  }

@media screen and (max-width: 1023px) {

article {
    padding-left: var(--theme-common-padding-xl);
    padding-right: var(--theme-common-padding-xl);
    max-width: 100%
}
  }

@media screen and (max-width: 767px) {

article {
    margin-bottom: 0
}
  }

@media screen and (max-width: 575px) {

article {
    padding-left: var(--theme-common-padding-m);
    padding-right: var(--theme-common-padding-m)
}
  }

article p code,
  article .api-property-name {
    background: var(--theme-background-selected);
    padding: var(--theme-common-padding-xs3) var(--theme-common-padding-xs2);
    border-radius: var(--theme-common-borderRadius-m);
    color: var(--theme-text-primary);
    font-family: 'Roboto Mono', monospace;
    font-size: var(--theme-common-font-size-s);
    font-weight: var(--theme-common-font-weight-regular);
    width: -moz-fit-content;
    width: fit-content;
  }

article p code.shared, article .api-property-name.shared {
      background: var(--theme-background-success-primary);
    }

article p code.deprecated, article .api-property-name.deprecated {
      background: var(--theme-background-error-primary);
    }

article .event-type {
    padding: 0 0.25em;
    color: var(--theme-text-link);
  }

article.full-width {
  max-width: calc(100% - var(--theme-common-size-s));
}

@media screen and (max-width: 1279px) {

article.full-width {
    max-width: 100%
}
  }

@media screen and (min-width: calc(1920px + 1px)) {

article.full-width {
    max-width: 100%
}
  }

aside {
  max-height: calc(100vh - var(--topbar-height) - var(--theme-common-padding-xl));
  overflow-y: auto;
  /* content + padding*/
  width: calc(224px + var(--theme-common-padding-xl) * 2);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 0 var(--theme-common-padding-xl);
  position: sticky;
  top: var(--theme-common-padding-xl);
}

@media screen and (max-width: 1023px) {

aside {
    display: none;
    width: unset
}
  }

.icon-wrapper {
  height: var(--theme-common-size-m);
  width: var(--theme-common-size-xl);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: var(--theme-common-size-xs);
  color: var(--theme-text-brand-secondary);
}

.icon-wrapper.right {
  right: 0;
  pointer-events: auto;
  cursor: pointer;
}

.button-group {
  display: flex;
  justify-content: flex-end;
}

.button-group [secondary] {
  margin-right: var(--theme-common-padding-m);
}

.not-a-mac-device {
  scrollbar-width: thin !important;
  scrollbar-color: var(--theme-neutrals-neutral300) !important;
}

.not-a-mac-device::-webkit-scrollbar-track,
  .not-a-mac-device *::-webkit-scrollbar-track {
    background-color: var(--theme-background-secondary) !important;
  }

.not-a-mac-device::-webkit-scrollbar,
  .not-a-mac-device *::-webkit-scrollbar {
    width: var(--theme-common-size-xs4) !important;
    height: var(--theme-common-size-xs4) !important;
    background-color: var(--theme-background-secondary) !important;
  }

.not-a-mac-device::-webkit-scrollbar-thumb,
  .not-a-mac-device *::-webkit-scrollbar-thumb {
    background-color: var(--theme-neutrals-neutral300) !important;
  }

.api-section .color-square {
    border: 1px solid var(--theme-border-primary);
    border-radius: var(--theme-common-borderRadius-m);
    margin-left: var(--theme-common-padding-xs);
    height: var(--theme-common-size-xs2);
    width: var(--theme-common-size-xs2);
  }

.api-section te-cell {
    white-space: nowrap;
  }

.api-section te-cell > div {
      display: flex;
      gap: 2.5px;
    }

.api-section te-cell.th {
      font-weight: var(--theme-common-font-weight-bold);
    }
