@import url(https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&display=swap);
/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/* Common */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --ifm-color-scheme: light;

  /* Colors. */
  --ifm-dark-value: 10%;
  --ifm-darker-value: 15%;
  --ifm-darkest-value: 30%;
  --ifm-light-value: 15%;
  --ifm-lighter-value: 30%;
  --ifm-lightest-value: 50%;

  /*
  This seems like a lot, but we want to ensure enough contrast.
  Goal is to have a min score of 3 on https://www.myndex.com/APCA/fullmatrix
  For fontWeight 400 + score 3, the cell must show a value < 16px (fontsize we use in places like alerts)
  See also https://github.com/facebookincubator/infima/issues/55#issuecomment-884023075
   */
  --ifm-contrast-background-value: 90%;
  --ifm-contrast-foreground-value: 70%;
  /* Using slightly different values for dark mode */
  --ifm-contrast-background-dark-value: 70%;
  --ifm-contrast-foreground-dark-value: 90%;

  --ifm-color-primary: #3578e5;
  --ifm-color-secondary: #ebedf0;
  --ifm-color-success: #00a400;
  --ifm-color-info: #54c7ec;
  --ifm-color-warning: #ffba00;
  --ifm-color-danger: #fa383e;
    --ifm-color-primary-dark: rgb(48, 108, 206);
    --ifm-color-primary-darker: rgb(45, 102, 195);
    --ifm-color-primary-darkest: rgb(37, 84, 160);
    --ifm-color-primary-light: rgb(83, 140, 233);
    --ifm-color-primary-lighter: rgb(114, 161, 237);
    --ifm-color-primary-lightest: rgb(154, 188, 242);
    --ifm-color-primary-contrast-background: rgb(235, 242, 252);
    --ifm-color-primary-contrast-foreground: rgb(16, 36, 69);
    --ifm-color-secondary-dark: rgb(212, 213, 216);
    --ifm-color-secondary-darker: rgb(200, 201, 204);
    --ifm-color-secondary-darkest: rgb(164, 166, 168);
    --ifm-color-secondary-light: rgb(238, 240, 242);
    --ifm-color-secondary-lighter: rgb(241, 242, 245);
    --ifm-color-secondary-lightest: rgb(245, 246, 248);
    --ifm-color-secondary-contrast-background: rgb(253, 253, 254);
    --ifm-color-secondary-contrast-foreground: rgb(71, 71, 72);
    --ifm-color-success-dark: rgb(0, 148, 0);
    --ifm-color-success-darker: rgb(0, 139, 0);
    --ifm-color-success-darkest: rgb(0, 115, 0);
    --ifm-color-success-light: rgb(38, 178, 38);
    --ifm-color-success-lighter: rgb(77, 191, 77);
    --ifm-color-success-lightest: rgb(128, 210, 128);
    --ifm-color-success-contrast-background: rgb(230, 246, 230);
    --ifm-color-success-contrast-foreground: rgb(0, 49, 0);
    --ifm-color-info-dark: rgb(76, 179, 212);
    --ifm-color-info-darker: rgb(71, 169, 201);
    --ifm-color-info-darkest: rgb(59, 139, 165);
    --ifm-color-info-light: rgb(110, 207, 239);
    --ifm-color-info-lighter: rgb(135, 216, 242);
    --ifm-color-info-lightest: rgb(170, 227, 246);
    --ifm-color-info-contrast-background: rgb(238, 249, 253);
    --ifm-color-info-contrast-foreground: rgb(25, 60, 71);
    --ifm-color-warning-dark: rgb(230, 167, 0);
    --ifm-color-warning-darker: rgb(217, 158, 0);
    --ifm-color-warning-darkest: rgb(179, 130, 0);
    --ifm-color-warning-light: rgb(255, 196, 38);
    --ifm-color-warning-lighter: rgb(255, 207, 77);
    --ifm-color-warning-lightest: rgb(255, 221, 128);
    --ifm-color-warning-contrast-background: rgb(255, 248, 230);
    --ifm-color-warning-contrast-foreground: rgb(77, 56, 0);
    --ifm-color-danger-dark: rgb(225, 50, 56);
    --ifm-color-danger-darker: rgb(213, 48, 53);
    --ifm-color-danger-darkest: rgb(175, 39, 43);
    --ifm-color-danger-light: rgb(251, 86, 91);
    --ifm-color-danger-lighter: rgb(251, 116, 120);
    --ifm-color-danger-lightest: rgb(253, 156, 159);
    --ifm-color-danger-contrast-background: rgb(255, 235, 236);
    --ifm-color-danger-contrast-foreground: rgb(75, 17, 19);

  --ifm-color-white: #fff;
  --ifm-color-black: #000;

  --ifm-color-gray-0: var(--ifm-color-white);
  --ifm-color-gray-100: #f5f6f7;
  --ifm-color-gray-200: #ebedf0;
  --ifm-color-gray-300: #dadde1;
  --ifm-color-gray-400: #ccd0d5;
  --ifm-color-gray-500: #bec3c9;
  --ifm-color-gray-600: #8d949e;
  --ifm-color-gray-700: #606770;
  --ifm-color-gray-800: #444950;
  --ifm-color-gray-900: #1c1e21;
  --ifm-color-gray-1000: var(--ifm-color-black);

  --ifm-color-emphasis-0: var(--ifm-color-gray-0);
  --ifm-color-emphasis-100: var(--ifm-color-gray-100);
  --ifm-color-emphasis-200: var(--ifm-color-gray-200);
  --ifm-color-emphasis-300: var(--ifm-color-gray-300);
  --ifm-color-emphasis-400: var(--ifm-color-gray-400);
  --ifm-color-emphasis-500: var(--ifm-color-gray-500);
  --ifm-color-emphasis-600: var(--ifm-color-gray-600);
  --ifm-color-emphasis-700: var(--ifm-color-gray-700);
  --ifm-color-emphasis-800: var(--ifm-color-gray-800);
  --ifm-color-emphasis-900: var(--ifm-color-gray-900);
  --ifm-color-emphasis-1000: var(--ifm-color-gray-1000);

  /* Base. */
  --ifm-color-content: var(--ifm-color-emphasis-900);
  --ifm-color-content-inverse: var(--ifm-color-emphasis-0);
  --ifm-color-content-secondary: #525860;

  --ifm-background-color: transparent; /* Body's background. */
  --ifm-background-surface-color: var(--ifm-color-content-inverse);
  --ifm-global-border-width: 1px;
  --ifm-global-radius: 0.4rem;

  --ifm-hover-overlay: rgba(0, 0, 0, 0.05);

  /* Typography. */
  --ifm-font-color-base: var(--ifm-color-content);
  --ifm-font-color-base-inverse: var(--ifm-color-content-inverse);
  --ifm-font-color-secondary: var(--ifm-color-content-secondary);
  --ifm-font-family-base: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont,
    'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol';
  --ifm-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
  --ifm-font-size-base: 100%;

  --ifm-font-weight-light: 300;
  --ifm-font-weight-normal: 400;
  --ifm-font-weight-semibold: 500;
  --ifm-font-weight-bold: 700;

  --ifm-font-weight-base: var(--ifm-font-weight-normal);
  --ifm-line-height-base: 1.65;

  /* Spacing. */
  --ifm-global-spacing: 1rem;
  --ifm-spacing-vertical: var(--ifm-global-spacing);
  --ifm-spacing-horizontal: var(--ifm-global-spacing);

  /* Transitions. */
  --ifm-transition-fast: 200ms;
  --ifm-transition-slow: 400ms;
  --ifm-transition-timing-default: cubic-bezier(0.08, 0.52, 0.52, 1);

  /* Shadows. */
  --ifm-global-shadow-lw: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  --ifm-global-shadow-md: 0 5px 40px rgba(0, 0, 0, 0.2);
  --ifm-global-shadow-tl: 0 12px 28px 0 rgba(0, 0, 0, 0.2),
    0 2px 4px 0 rgba(0, 0, 0, 0.1);

  /* Z-index. */
  --ifm-z-index-dropdown: 100;
  --ifm-z-index-fixed: 200;
  --ifm-z-index-overlay: 400;
  --ifm-container-width: 1140px;
  --ifm-container-width-xl: 1320px;
  --ifm-code-background: rgb(246, 247, 248);
  --ifm-code-border-radius: var(--ifm-global-radius);
  --ifm-code-font-size: 90%;
  --ifm-code-padding-horizontal: 0.1rem;
  --ifm-code-padding-vertical: 0.1rem;

  --ifm-pre-background: var(--ifm-code-background);
  --ifm-pre-border-radius: var(--ifm-code-border-radius);
  --ifm-pre-color: inherit;
  --ifm-pre-line-height: 1.45;
  --ifm-pre-padding: 1rem;
  --ifm-heading-color: inherit;
  --ifm-heading-margin-top: 0;
  --ifm-heading-margin-bottom: var(--ifm-spacing-vertical);
  --ifm-heading-font-family: var(--ifm-font-family-base);
  --ifm-heading-font-weight: var(--ifm-font-weight-bold);
  --ifm-heading-line-height: 1.25;

  --ifm-h1-font-size: 2rem;
  --ifm-h2-font-size: 1.5rem;
  --ifm-h3-font-size: 1.25rem;
  --ifm-h4-font-size: 1rem;
  --ifm-h5-font-size: 0.875rem;
  --ifm-h6-font-size: 0.85rem;
  --ifm-image-alignment-padding: 1.25rem;
  /* Leading is the distance between two baselines */
  /* TODO: add appropriate mobile leading */
  --ifm-leading-desktop: 1.25;
  --ifm-leading: calc(var(--ifm-leading-desktop) * 1rem);
  --ifm-list-left-padding: 2rem;
  --ifm-list-margin: 1rem;
  --ifm-list-item-margin: 0.25rem;
  --ifm-list-paragraph-margin: 1rem;
  --ifm-table-cell-padding: 0.75rem;

  --ifm-table-background: transparent;
  --ifm-table-stripe-background: rgba(0, 0, 0, 0.03);

  --ifm-table-border-width: 1px;
  --ifm-table-border-color: var(--ifm-color-emphasis-300);

  --ifm-table-head-background: inherit;
  --ifm-table-head-color: inherit;
  --ifm-table-head-font-weight: var(--ifm-font-weight-bold);

  --ifm-table-cell-color: inherit;
  /* Links. */
  --ifm-link-color: var(--ifm-color-primary);
  --ifm-link-decoration: none;
  --ifm-link-hover-color: var(--ifm-link-color);
  --ifm-link-hover-decoration: underline;

  /* Paragraphs. */
  --ifm-paragraph-margin-bottom: var(--ifm-leading);

  /* Blockquotes. */
  --ifm-blockquote-font-size: var(--ifm-font-size-base);
  --ifm-blockquote-border-left-width: 2px;
  --ifm-blockquote-padding-horizontal: var(--ifm-spacing-horizontal);
  --ifm-blockquote-padding-vertical: 0;
  --ifm-blockquote-shadow: none;
  --ifm-blockquote-color: var(--ifm-color-emphasis-800);
  --ifm-blockquote-border-color: var(--ifm-color-emphasis-300);

  /* Horizontal Rules. */
  --ifm-hr-background-color: var(--ifm-color-emphasis-500);
  --ifm-hr-height: 1px;
  --ifm-hr-margin-vertical: 1.5rem;
  --ifm-scrollbar-size: 7px;
  --ifm-scrollbar-track-background-color: #f1f1f1;
  --ifm-scrollbar-thumb-background-color: #c0c0c0;
  --ifm-scrollbar-thumb-hover-background-color: #a7a7a7;
  --ifm-alert-background-color: inherit; /* Set a default which will be overridden later. */
  --ifm-alert-border-color: inherit; /* Set a default which will be overridden later. */
  --ifm-alert-border-radius: var(--ifm-global-radius);
  --ifm-alert-border-width: 0px; /* For users that want to easily add a border */
  --ifm-alert-border-left-width: 5px;
  --ifm-alert-color: var(--ifm-font-color-base);
  --ifm-alert-padding-horizontal: var(--ifm-spacing-horizontal);
  --ifm-alert-padding-vertical: var(--ifm-spacing-vertical);
  --ifm-alert-shadow: var(--ifm-global-shadow-lw);
  --ifm-avatar-intro-margin: 1rem;
  --ifm-avatar-intro-alignment: inherit;
  --ifm-avatar-photo-size: 3rem;
  --ifm-badge-background-color: inherit; /* Set a default which will be overridden later. */
  --ifm-badge-border-color: inherit; /* Set a default which will be overridden later. */
  --ifm-badge-border-radius: var(--ifm-global-radius);
  --ifm-badge-border-width: var(--ifm-global-border-width);
  --ifm-badge-color: var(--ifm-color-white);
  --ifm-badge-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 0.5);
  --ifm-badge-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.25);
  --ifm-breadcrumb-border-radius: 1.5rem;
  --ifm-breadcrumb-spacing: 0.5rem;
  --ifm-breadcrumb-color-active: var(--ifm-color-primary);
  --ifm-breadcrumb-item-background-active: var(--ifm-hover-overlay);
  --ifm-breadcrumb-padding-horizontal: 0.8rem;
  --ifm-breadcrumb-padding-vertical: 0.4rem;
  --ifm-breadcrumb-size-multiplier: 1;
  --ifm-breadcrumb-separator: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 256 256"><g><g><polygon points="79.093,0 48.907,30.187 146.72,128 48.907,225.813 79.093,256 207.093,128"/></g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>');
  --ifm-breadcrumb-separator-filter: none;
  --ifm-breadcrumb-separator-size: 0.5rem;
  --ifm-breadcrumb-separator-size-multiplier: 1.25;
  --ifm-button-background-color: inherit;
  --ifm-button-border-color: var(--ifm-button-background-color);
  --ifm-button-border-width: var(--ifm-global-border-width);
  --ifm-button-color: var(--ifm-font-color-base-inverse);
  --ifm-button-font-weight: var(--ifm-font-weight-bold);
  --ifm-button-padding-horizontal: 1.5rem;
  --ifm-button-padding-vertical: 0.375rem;
  --ifm-button-size-multiplier: 1;
  --ifm-button-transition-duration: var(--ifm-transition-fast);
  --ifm-button-border-radius: calc(
    var(--ifm-global-radius) * var(--ifm-button-size-multiplier)
  );
  --ifm-button-group-spacing: 2px;
  --ifm-card-background-color: var(--ifm-background-surface-color);
  --ifm-card-border-radius: calc(var(--ifm-global-radius) * 2);
  --ifm-card-horizontal-spacing: var(--ifm-global-spacing);
  --ifm-card-vertical-spacing: var(--ifm-global-spacing);
  --ifm-toc-border-color: var(--ifm-color-emphasis-300);
  --ifm-toc-link-color: var(--ifm-color-content-secondary);
  --ifm-toc-padding-vertical: 0.5rem;
  --ifm-toc-padding-horizontal: 0.5rem;
  --ifm-dropdown-background-color: var(--ifm-background-surface-color);
  --ifm-dropdown-font-weight: var(--ifm-font-weight-semibold);
  --ifm-dropdown-link-color: var(--ifm-font-color-base);
  --ifm-dropdown-hover-background-color: var(--ifm-hover-overlay);
  --ifm-footer-background-color: var(--ifm-color-emphasis-100);
  --ifm-footer-color: inherit;
  --ifm-footer-link-color: var(--ifm-color-emphasis-700);
  --ifm-footer-link-hover-color: var(--ifm-color-primary);
  --ifm-footer-link-horizontal-spacing: 0.5rem;
  --ifm-footer-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 2);
  --ifm-footer-padding-vertical: calc(var(--ifm-spacing-vertical) * 2);
  --ifm-footer-title-color: inherit;
  --ifm-footer-logo-max-width: min(30rem, 90vw);
  --ifm-hero-background-color: var(--ifm-background-surface-color);
  --ifm-hero-text-color: var(--ifm-color-emphasis-800);
  --ifm-menu-color: var(--ifm-color-emphasis-700);
  --ifm-menu-color-active: var(--ifm-color-primary);
  --ifm-menu-color-background-active: var(--ifm-hover-overlay);
  --ifm-menu-color-background-hover: var(--ifm-hover-overlay);
  --ifm-menu-link-padding-horizontal: 0.75rem;
  --ifm-menu-link-padding-vertical: 0.375rem;
  --ifm-menu-link-sublist-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 24 24"><path fill="rgba(0,0,0,0.5)" d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"></path></svg>');
  --ifm-menu-link-sublist-icon-filter: none;
  --ifm-navbar-background-color: var(--ifm-background-surface-color);
  --ifm-navbar-height: 3.75rem;
  --ifm-navbar-item-padding-horizontal: 0.75rem;
  --ifm-navbar-item-padding-vertical: 0.25rem;
  --ifm-navbar-link-color: var(--ifm-font-color-base);
  --ifm-navbar-link-hover-color: var(--ifm-color-primary);
  --ifm-navbar-link-active-color: var(--ifm-link-color);
  --ifm-navbar-padding-horizontal: var(--ifm-spacing-horizontal);
  --ifm-navbar-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.5);
  --ifm-navbar-shadow: var(--ifm-global-shadow-lw);
  --ifm-navbar-search-input-background-color: var(--ifm-color-emphasis-200);
  --ifm-navbar-search-input-color: var(--ifm-color-emphasis-800);
  --ifm-navbar-search-input-placeholder-color: var(--ifm-color-emphasis-500);
  --ifm-navbar-search-input-icon: url('data:image/svg+xml;utf8,<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="16px" width="16px"><path d="M6.02945,10.20327a4.17382,4.17382,0,1,1,4.17382-4.17382A4.15609,4.15609,0,0,1,6.02945,10.20327Zm9.69195,4.2199L10.8989,9.59979A5.88021,5.88021,0,0,0,12.058,6.02856,6.00467,6.00467,0,1,0,9.59979,10.8989l4.82338,4.82338a.89729.89729,0,0,0,1.29912,0,.89749.89749,0,0,0-.00087-1.29909Z" /></svg>');
  --ifm-navbar-sidebar-width: 83vw;
  --ifm-pagination-border-radius: var(--ifm-global-radius);
  --ifm-pagination-color-active: var(--ifm-color-primary);
  --ifm-pagination-font-size: 1rem;
  --ifm-pagination-item-active-background: var(--ifm-hover-overlay);
  --ifm-pagination-page-spacing: 0.2em;
  --ifm-pagination-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 1);
  --ifm-pagination-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.25);
  --ifm-pagination-nav-border-radius: var(--ifm-global-radius);
  --ifm-pagination-nav-color-hover: var(--ifm-color-primary);
  --ifm-pills-color-active: var(--ifm-color-primary);
  --ifm-pills-color-background-active: var(--ifm-hover-overlay);
  --ifm-pills-spacing: 0.125rem;
  --ifm-tabs-color: var(--ifm-font-color-secondary);
  --ifm-tabs-color-active: var(--ifm-color-primary);
  --ifm-tabs-color-active-border: var(--ifm-tabs-color-active);
  --ifm-tabs-padding-horizontal: 1rem;
  --ifm-tabs-padding-vertical: 1rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

* {
  box-sizing: border-box;
}

html {
  background-color: var(--ifm-background-color);
  color: var(--ifm-font-color-base);
  color-scheme: var(--ifm-color-scheme);
  font: var(--ifm-font-size-base) / var(--ifm-line-height-base)
    var(--ifm-font-family-base);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizelegibility;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  margin: 0;
  word-wrap: break-word;
}

iframe {
  border: 0;
  color-scheme: auto;
}

/* Layout */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.container {
  margin: 0 auto;
  max-width: var(--ifm-container-width);
  padding: 0 var(--ifm-spacing-horizontal);
  width: 100%;
}

.container--fluid {
    max-width: inherit;
  }

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--ifm-spacing-horizontal) * -1);
}

.row--no-gutters {
    margin-left: 0;
    margin-right: 0;
  }

.row--no-gutters > .col {
      padding-left: 0;
      padding-right: 0;
    }

.row--align-top {
    align-items: flex-start;
  }

.row--align-bottom {
    align-items: flex-end;
  }

.row--align-center {
    align-items: center;
  }

.row--align-stretch {
    align-items: stretch;
  }

.row--align-baseline {
    align-items: baseline;
  }

.col {
  --ifm-col-width: 100%;

  flex: 1 0;
  margin-left: 0;
  max-width: var(--ifm-col-width);
  padding: 0 var(--ifm-spacing-horizontal);
  width: 100%;
}

.col[class*='col--'] {
    flex: 0 0 var(--ifm-col-width);
  }

.col--1 {
      --ifm-col-width: calc(1 / 12 * 100%);
    }

.col--offset-1 {
      margin-left: calc(1 / 12 * 100%);
    }

.col--2 {
      --ifm-col-width: calc(2 / 12 * 100%);
    }

.col--offset-2 {
      margin-left: calc(2 / 12 * 100%);
    }

.col--3 {
      --ifm-col-width: calc(3 / 12 * 100%);
    }

.col--offset-3 {
      margin-left: calc(3 / 12 * 100%);
    }

.col--4 {
      --ifm-col-width: calc(4 / 12 * 100%);
    }

.col--offset-4 {
      margin-left: calc(4 / 12 * 100%);
    }

.col--5 {
      --ifm-col-width: calc(5 / 12 * 100%);
    }

.col--offset-5 {
      margin-left: calc(5 / 12 * 100%);
    }

.col--6 {
      --ifm-col-width: calc(6 / 12 * 100%);
    }

.col--offset-6 {
      margin-left: calc(6 / 12 * 100%);
    }

.col--7 {
      --ifm-col-width: calc(7 / 12 * 100%);
    }

.col--offset-7 {
      margin-left: calc(7 / 12 * 100%);
    }

.col--8 {
      --ifm-col-width: calc(8 / 12 * 100%);
    }

.col--offset-8 {
      margin-left: calc(8 / 12 * 100%);
    }

.col--9 {
      --ifm-col-width: calc(9 / 12 * 100%);
    }

.col--offset-9 {
      margin-left: calc(9 / 12 * 100%);
    }

.col--10 {
      --ifm-col-width: calc(10 / 12 * 100%);
    }

.col--offset-10 {
      margin-left: calc(10 / 12 * 100%);
    }

.col--11 {
      --ifm-col-width: calc(11 / 12 * 100%);
    }

.col--offset-11 {
      margin-left: calc(11 / 12 * 100%);
    }

.col--12 {
      --ifm-col-width: calc(12 / 12 * 100%);
    }

.col--offset-12 {
      margin-left: calc(12 / 12 * 100%);
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.margin--none {
      margin: 0 !important;
    }

.margin-top--none {
        margin-top: 0 !important;
      }

.margin-left--none {
        margin-left: 0 !important;
      }

.margin-bottom--none {
        margin-bottom: 0 !important;
      }

.margin-right--none {
        margin-right: 0 !important;
      }

.margin-vert--none {
      margin-bottom: 0 !important;
      margin-top: 0 !important;
    }

.margin-horiz--none {
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

.margin--xs {
      margin: 0.25rem !important;
    }

.margin-top--xs {
        margin-top: 0.25rem !important;
      }

.margin-left--xs {
        margin-left: 0.25rem !important;
      }

.margin-bottom--xs {
        margin-bottom: 0.25rem !important;
      }

.margin-right--xs {
        margin-right: 0.25rem !important;
      }

.margin-vert--xs {
      margin-bottom: 0.25rem !important;
      margin-top: 0.25rem !important;
    }

.margin-horiz--xs {
      margin-left: 0.25rem !important;
      margin-right: 0.25rem !important;
    }

.margin--sm {
      margin: 0.5rem !important;
    }

.margin-top--sm {
        margin-top: 0.5rem !important;
      }

.margin-left--sm {
        margin-left: 0.5rem !important;
      }

.margin-bottom--sm {
        margin-bottom: 0.5rem !important;
      }

.margin-right--sm {
        margin-right: 0.5rem !important;
      }

.margin-vert--sm {
      margin-bottom: 0.5rem !important;
      margin-top: 0.5rem !important;
    }

.margin-horiz--sm {
      margin-left: 0.5rem !important;
      margin-right: 0.5rem !important;
    }

.margin--md {
      margin: 1rem !important;
    }

.margin-top--md {
        margin-top: 1rem !important;
      }

.margin-left--md {
        margin-left: 1rem !important;
      }

.margin-bottom--md {
        margin-bottom: 1rem !important;
      }

.margin-right--md {
        margin-right: 1rem !important;
      }

.margin-vert--md {
      margin-bottom: 1rem !important;
      margin-top: 1rem !important;
    }

.margin-horiz--md {
      margin-left: 1rem !important;
      margin-right: 1rem !important;
    }

.margin--lg {
      margin: 2rem !important;
    }

.margin-top--lg {
        margin-top: 2rem !important;
      }

.margin-left--lg {
        margin-left: 2rem !important;
      }

.margin-bottom--lg {
        margin-bottom: 2rem !important;
      }

.margin-right--lg {
        margin-right: 2rem !important;
      }

.margin-vert--lg {
      margin-bottom: 2rem !important;
      margin-top: 2rem !important;
    }

.margin-horiz--lg {
      margin-left: 2rem !important;
      margin-right: 2rem !important;
    }

.margin--xl {
      margin: 5rem !important;
    }

.margin-top--xl {
        margin-top: 5rem !important;
      }

.margin-left--xl {
        margin-left: 5rem !important;
      }

.margin-bottom--xl {
        margin-bottom: 5rem !important;
      }

.margin-right--xl {
        margin-right: 5rem !important;
      }

.margin-vert--xl {
      margin-bottom: 5rem !important;
      margin-top: 5rem !important;
    }

.margin-horiz--xl {
      margin-left: 5rem !important;
      margin-right: 5rem !important;
    }

.padding--none {
      padding: 0 !important;
    }

.padding-top--none {
        padding-top: 0 !important;
      }

.padding-left--none {
        padding-left: 0 !important;
      }

.padding-bottom--none {
        padding-bottom: 0 !important;
      }

.padding-right--none {
        padding-right: 0 !important;
      }

.padding-vert--none {
      padding-bottom: 0 !important;
      padding-top: 0 !important;
    }

.padding-horiz--none {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

.padding--xs {
      padding: 0.25rem !important;
    }

.padding-top--xs {
        padding-top: 0.25rem !important;
      }

.padding-left--xs {
        padding-left: 0.25rem !important;
      }

.padding-bottom--xs {
        padding-bottom: 0.25rem !important;
      }

.padding-right--xs {
        padding-right: 0.25rem !important;
      }

.padding-vert--xs {
      padding-bottom: 0.25rem !important;
      padding-top: 0.25rem !important;
    }

.padding-horiz--xs {
      padding-left: 0.25rem !important;
      padding-right: 0.25rem !important;
    }

.padding--sm {
      padding: 0.5rem !important;
    }

.padding-top--sm {
        padding-top: 0.5rem !important;
      }

.padding-left--sm {
        padding-left: 0.5rem !important;
      }

.padding-bottom--sm {
        padding-bottom: 0.5rem !important;
      }

.padding-right--sm {
        padding-right: 0.5rem !important;
      }

.padding-vert--sm {
      padding-bottom: 0.5rem !important;
      padding-top: 0.5rem !important;
    }

.padding-horiz--sm {
      padding-left: 0.5rem !important;
      padding-right: 0.5rem !important;
    }

.padding--md {
      padding: 1rem !important;
    }

.padding-top--md {
        padding-top: 1rem !important;
      }

.padding-left--md {
        padding-left: 1rem !important;
      }

.padding-bottom--md {
        padding-bottom: 1rem !important;
      }

.padding-right--md {
        padding-right: 1rem !important;
      }

.padding-vert--md {
      padding-bottom: 1rem !important;
      padding-top: 1rem !important;
    }

.padding-horiz--md {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }

.padding--lg {
      padding: 2rem !important;
    }

.padding-top--lg {
        padding-top: 2rem !important;
      }

.padding-left--lg {
        padding-left: 2rem !important;
      }

.padding-bottom--lg {
        padding-bottom: 2rem !important;
      }

.padding-right--lg {
        padding-right: 2rem !important;
      }

.padding-vert--lg {
      padding-bottom: 2rem !important;
      padding-top: 2rem !important;
    }

.padding-horiz--lg {
      padding-left: 2rem !important;
      padding-right: 2rem !important;
    }

.padding--xl {
      padding: 5rem !important;
    }

.padding-top--xl {
        padding-top: 5rem !important;
      }

.padding-left--xl {
        padding-left: 5rem !important;
      }

.padding-bottom--xl {
        padding-bottom: 5rem !important;
      }

.padding-right--xl {
        padding-right: 5rem !important;
      }

.padding-vert--xl {
      padding-bottom: 5rem !important;
      padding-top: 5rem !important;
    }

.padding-horiz--xl {
      padding-left: 5rem !important;
      padding-right: 5rem !important;
    }

/* Content */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

code {
  background-color: var(--ifm-code-background);
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  border-radius: var(--ifm-code-border-radius);
  font-family: var(--ifm-font-family-monospace);
  font-size: var(--ifm-code-font-size);
  padding: var(--ifm-code-padding-vertical) var(--ifm-code-padding-horizontal);
  vertical-align: middle;
}

a code {
  color: inherit;
}

pre {
  background-color: var(--ifm-pre-background);
  border-radius: var(--ifm-pre-border-radius);
  color: var(--ifm-pre-color);
  font: var(--ifm-code-font-size) / var(--ifm-pre-line-height)
    var(--ifm-font-family-monospace);
  margin: 0 0 var(--ifm-spacing-vertical);
  overflow: auto;
  padding: var(--ifm-pre-padding);
}

pre code {
    background-color: transparent;
    border: none;
    font-size: 100%;
    line-height: inherit;
    padding: 0;
  }

kbd {
  background-color: var(--ifm-color-emphasis-0);
  border: 1px solid var(--ifm-color-emphasis-400);
  border-radius: 0.2rem;
  box-shadow: inset 0 -1px 0 var(--ifm-color-emphasis-400);
  color: var(--ifm-color-emphasis-800);
  font: 80% var(--ifm-font-family-monospace);
  padding: 0.15rem 0.3rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ifm-heading-color);
  font-family: var(--ifm-heading-font-family);
  font-weight: var(--ifm-heading-font-weight);
  line-height: var(--ifm-heading-line-height);
  margin: var(--ifm-heading-margin-top) 0 var(--ifm-heading-margin-bottom) 0;
}

h1 {
    font-size: var(--ifm-h1-font-size);
  }

h2 {
    font-size: var(--ifm-h2-font-size);
  }

h3 {
    font-size: var(--ifm-h3-font-size);
  }

h4 {
    font-size: var(--ifm-h4-font-size);
  }

h5 {
    font-size: var(--ifm-h5-font-size);
  }

h6 {
    font-size: var(--ifm-h6-font-size);
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

img {
  max-width: 100%;
}

img[align='right'] {
  padding-left: var(--image-alignment-padding);
}

img[align='left'] {
  padding-right: var(--image-alignment-padding);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.markdown {
  --ifm-h1-vertical-rhythm-top: 3;
  --ifm-h2-vertical-rhythm-top: 2;
  --ifm-h3-vertical-rhythm-top: 1.5;
  --ifm-heading-vertical-rhythm-top: 1.25;

  --ifm-h1-vertical-rhythm-bottom: 1.25;
  --ifm-heading-vertical-rhythm-bottom: 1;
}

.markdown:before {
    content: '';
    display: table;
  }

.markdown:after {
    clear: both;
    content: '';
    display: table;
  }

.markdown > *:last-child {
    margin-bottom: 0 !important;
  }

.markdown h1:first-child {
    --ifm-h1-font-size: 3rem;

    margin-bottom: calc(
      var(--ifm-h1-vertical-rhythm-bottom) * var(--ifm-leading)
    );
  }

.markdown > h2 {
    --ifm-h2-font-size: 2rem;

    margin-bottom: calc(
      var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading)
    );
    margin-top: calc(var(--ifm-h2-vertical-rhythm-top) * var(--ifm-leading));
  }

.markdown > h3 {
    --ifm-h3-font-size: 1.5rem;

    margin-bottom: calc(
      var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading)
    );
    margin-top: calc(var(--ifm-h3-vertical-rhythm-top) * var(--ifm-leading));
  }

.markdown > h4,
  .markdown > h5,
  .markdown > h6 {
    margin-bottom: calc(
      var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading)
    );
    margin-top: calc(
      var(--ifm-heading-vertical-rhythm-top) * var(--ifm-leading)
    );
  }

/* Consistent spacing between content paragraphs. */

.markdown > pre,
  .markdown > ul,
  .markdown > p {
    margin-bottom: var(--ifm-leading);
  }

.markdown li {
    word-wrap: break-word;
  }

.markdown li > p {
      margin-top: var(--ifm-list-paragraph-margin);
    }

.markdown li + li {
      margin-top: var(--ifm-list-item-margin);
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/* Lists */

ul,
ol {
  margin: 0 0 var(--ifm-list-margin);
  padding-left: var(--ifm-list-left-padding);
}

ol ol,
ul ol {
  list-style-type: lower-roman;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 0;
}

ul ul ol,
ul ol ol,
ol ul ol,
ol ol ol {
  list-style-type: lower-alpha;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

table {
  border-collapse: collapse;
  display: block;
  margin-bottom: var(--ifm-spacing-vertical);
  overflow: auto;
}

table thead tr {
    border-bottom: 2px solid var(--ifm-table-border-color);
  }

table thead {
    background-color: var(--ifm-table-stripe-background);
  }

table tr {
    background-color: var(--ifm-table-background);
    border-top: var(--ifm-table-border-width) solid
      var(--ifm-table-border-color);
  }

table tr:nth-child(2n) {
    background-color: var(--ifm-table-stripe-background);
  }

table th,
  table td {
    border: var(--ifm-table-border-width) solid var(--ifm-table-border-color);
    padding: var(--ifm-table-cell-padding);
  }

table th {
    background-color: var(--ifm-table-head-background);
    color: var(--ifm-table-head-color);
    font-weight: var(--ifm-table-head-font-weight);
  }

table td {
    color: var(--ifm-table-cell-color);
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

strong {
  font-weight: var(--ifm-font-weight-bold);
}

/* Links */

a {
  color: var(--ifm-link-color);
  /* autoprefixer: ignore next */
  text-decoration: var(--ifm-link-decoration);
  transition: color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
}

a:hover {
    color: var(--ifm-link-hover-color);
    /* autoprefixer: ignore next */
    text-decoration: var(--ifm-link-hover-decoration);
  }

a:not([href]) {
    text-decoration: none;
  }

/* Paragraphs */

p {
  margin: 0 0 var(--ifm-paragraph-margin-bottom);
}

/* Blockquotes */

blockquote {
  border-left: var(--ifm-blockquote-border-left-width) solid
    var(--ifm-blockquote-border-color);
  box-shadow: var(--ifm-blockquote-shadow);
  color: var(--ifm-blockquote-color);
  font-size: var(--ifm-blockquote-font-size);
  margin: 0 0 var(--ifm-spacing-vertical);
  padding: var(--ifm-blockquote-padding-vertical)
    var(--ifm-blockquote-padding-horizontal);
}

blockquote > :first-child {
    margin-top: 0;
  }

blockquote > :last-child {
    margin-bottom: 0;
  }

/* Horizontal Rules */

hr {
  background-color: var(--ifm-hr-background-color);
  border: 0;
  height: var(--ifm-hr-height);
  margin: var(--ifm-hr-margin-vertical) 0;
}

/* Utilities */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.shadow--lw {
    box-shadow: var(--ifm-global-shadow-lw) !important;
  }

.shadow--md {
    box-shadow: var(--ifm-global-shadow-md) !important;
  }

.shadow--tl {
    box-shadow: var(--ifm-global-shadow-tl) !important;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.text--primary {
    color: var(--ifm-color-primary);
  }

.text--secondary {
    color: var(--ifm-color-secondary);
  }

.text--success {
    color: var(--ifm-color-success);
  }

.text--info {
    color: var(--ifm-color-info);
  }

.text--warning {
    color: var(--ifm-color-warning);
  }

.text--danger {
    color: var(--ifm-color-danger);
  }

.text--center {
    text-align: center;
  }

.text--left {
    text-align: left;
  }

.text--justify {
    text-align: justify;
  }

.text--right {
    text-align: right;
  }

.text--capitalize {
    text-transform: capitalize;
  }

.text--lowercase {
    text-transform: lowercase;
  }

.text--uppercase {
    text-transform: uppercase;
  }

.text--light {
    font-weight: var(--ifm-font-weight-light);
  }

.text--normal {
    font-weight: var(--ifm-font-weight-normal);
  }

.text--semibold {
    font-weight: var(--ifm-font-weight-semibold);
  }

.text--bold {
    font-weight: var(--ifm-font-weight-bold);
  }

.text--italic {
  font-style: italic;
}

.text--truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text--break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

.text--no-decoration,
  .text--no-decoration:hover {
    text-decoration: none;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.clean-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.clean-list {
  list-style: none;
  padding-left: 0;
}

/* Components */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.alert--primary {
      --ifm-alert-background-color: var(
        --ifm-color-primary-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(53, 120, 229, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-primary-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-primary-dark);
    }

.alert--secondary {
      --ifm-alert-background-color: var(
        --ifm-color-secondary-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(235, 237, 240, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-secondary-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-secondary-dark);
    }

.alert--success {
      --ifm-alert-background-color: var(
        --ifm-color-success-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(0, 164, 0, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-success-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-success-dark);
    }

.alert--info {
      --ifm-alert-background-color: var(
        --ifm-color-info-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(84, 199, 236, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-info-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-info-dark);
    }

.alert--warning {
      --ifm-alert-background-color: var(
        --ifm-color-warning-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(255, 186, 0, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-warning-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-warning-dark);
    }

.alert--danger {
      --ifm-alert-background-color: var(
        --ifm-color-danger-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(250, 56, 62, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-danger-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-danger-dark);
    }

.alert {

  --ifm-code-background: var(--ifm-alert-background-color-highlight);
  --ifm-link-color: var(--ifm-alert-foreground-color);
  --ifm-link-hover-color: var(--ifm-alert-foreground-color);
  --ifm-link-decoration: underline;
  --ifm-tabs-color: var(--ifm-alert-foreground-color);
  --ifm-tabs-color-active: var(--ifm-alert-foreground-color);
  --ifm-tabs-color-active-border: var(--ifm-alert-border-color);

  background-color: var(--ifm-alert-background-color);
  border: var(--ifm-alert-border-width) solid var(--ifm-alert-border-color);
  border-left-width: var(--ifm-alert-border-left-width);
  border-radius: var(--ifm-alert-border-radius);
  box-shadow: var(--ifm-alert-shadow);
  color: var(--ifm-alert-foreground-color);
  padding: var(--ifm-alert-padding-vertical) var(--ifm-alert-padding-horizontal);
}

.alert__heading {
    align-items: center;
    display: flex;
    font: bold var(--ifm-h5-font-size) / var(--ifm-heading-line-height)
      var(--ifm-heading-font-family);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
  }

.alert__icon {
    display: inline-flex;
    margin-right: 0.4em;
  }

.alert__icon svg {
      fill: var(--ifm-alert-foreground-color);
      stroke: var(--ifm-alert-foreground-color);
      stroke-width: 0;
    }

.alert .close {
    color: var(--ifm-alert-foreground-color);
    margin: calc(var(--ifm-alert-padding-vertical) * -1)
      calc(var(--ifm-alert-padding-horizontal) * -1) 0 0;

    opacity: 0.75;
  }

.alert .close:hover,
    .alert .close:focus {
      opacity: 1;
    }

.alert a {
    -webkit-text-decoration-color: var(--ifm-alert-border-color);
            text-decoration-color: var(--ifm-alert-border-color);
  }

.alert a:hover {
      text-decoration-thickness: 2px;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.avatar {
  column-gap: var(--ifm-avatar-intro-margin);
  display: flex;
}

.avatar__photo {
    border-radius: 50%;
    display: block;
    height: var(--ifm-avatar-photo-size);
    overflow: hidden;
    width: var(--ifm-avatar-photo-size);
  }

.avatar__photo--sm {
      --ifm-avatar-photo-size: 2rem;
    }

.avatar__photo--lg {
      --ifm-avatar-photo-size: 4rem;
    }

.avatar__photo--xl {
      --ifm-avatar-photo-size: 6rem;
    }

.avatar__intro {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    justify-content: center;
    text-align: var(--ifm-avatar-intro-alignment);
  }

.avatar__name {
    font: bold var(--ifm-h4-font-size) / var(--ifm-heading-line-height)
      var(--ifm-font-family-base);
  }

.avatar__subtitle {
    margin-top: 0.25rem;
  }

.avatar--vertical {
    --ifm-avatar-intro-alignment: center;
    --ifm-avatar-intro-margin: 0.5rem;

    align-items: center;
    flex-direction: column;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.badge {
  background-color: var(--ifm-badge-background-color);
  border: var(--ifm-badge-border-width) solid var(--ifm-badge-border-color);
  border-radius: var(--ifm-badge-border-radius);
  color: var(--ifm-badge-color);
  display: inline-block;
  font-size: 75%;
  font-weight: var(--ifm-font-weight-bold);
  line-height: 1;
  padding: var(--ifm-badge-padding-vertical) var(--ifm-badge-padding-horizontal);
}

.badge--primary {
      --ifm-badge-background-color: var(--ifm-color-primary);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    }

.badge--secondary {
      --ifm-badge-background-color: var(--ifm-color-secondary);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    color: var(--ifm-color-black);
    }

.badge--success {
      --ifm-badge-background-color: var(--ifm-color-success);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    }

.badge--info {
      --ifm-badge-background-color: var(--ifm-color-info);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    }

.badge--warning {
      --ifm-badge-background-color: var(--ifm-color-warning);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    }

.badge--danger {
      --ifm-badge-background-color: var(--ifm-color-danger);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.breadcrumbs {
  margin-bottom: 0;
  padding-left: 0;
}

.breadcrumbs__item {
    display: inline-block;
  }

.breadcrumbs__item:not(:last-child):after {
      background: var(--ifm-breadcrumb-separator) center;
      content: ' ';
      display: inline-block;
      filter: var(--ifm-breadcrumb-separator-filter);
      height: calc(
        var(--ifm-breadcrumb-separator-size) *
          var(--ifm-breadcrumb-size-multiplier) *
          var(--ifm-breadcrumb-separator-size-multiplier)
      );
      margin: 0 var(--ifm-breadcrumb-spacing);
      opacity: 0.5;
      width: calc(
        var(--ifm-breadcrumb-separator-size) *
          var(--ifm-breadcrumb-size-multiplier) *
          var(--ifm-breadcrumb-separator-size-multiplier)
      );
      /*rtl:raw:
      transform: rotate(180deg);
      */
    }

.breadcrumbs__item--active .breadcrumbs__link {
        background: var(--ifm-breadcrumb-item-background-active);
        color: var(--ifm-breadcrumb-color-active);
      }

.breadcrumbs__link {
    border-radius: var(--ifm-breadcrumb-border-radius);
    color: var(--ifm-font-color-base);
    display: inline-block;
    font-size: calc(1rem * var(--ifm-breadcrumb-size-multiplier));
    padding: calc(
        var(--ifm-breadcrumb-padding-vertical) *
          var(--ifm-breadcrumb-size-multiplier)
      )
      calc(
        var(--ifm-breadcrumb-padding-horizontal) *
          var(--ifm-breadcrumb-size-multiplier)
      );
    transition-property: background, color;
    transition-duration: var(--ifm-transition-fast);
    transition-timing-function: var(--ifm-transition-timing-default);
  }

.breadcrumbs__link:link:hover, .breadcrumbs__link:visited:hover, area.breadcrumbs__link[href]:hover {
      background: var(--ifm-breadcrumb-item-background-active);
      text-decoration: none;
    }

.breadcrumbs__link:any-link:hover {
      background: var(--ifm-breadcrumb-item-background-active);
      text-decoration: none;
    }

.breadcrumbs--sm {
    --ifm-breadcrumb-size-multiplier: 0.8;
  }

.breadcrumbs--lg {
    --ifm-breadcrumb-size-multiplier: 1.2;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.button {
  background-color: var(--ifm-button-background-color);
  border: var(--ifm-button-border-width) solid var(--ifm-button-border-color);
  border-radius: var(--ifm-button-border-radius);
  color: var(--ifm-button-color);
  cursor: pointer;
  display: inline-block;
  font-size: calc(0.875rem * var(--ifm-button-size-multiplier));
  font-weight: var(--ifm-button-font-weight);
  line-height: 1.5;
  padding: calc(
      var(--ifm-button-padding-vertical) * var(--ifm-button-size-multiplier)
    )
    calc(
      var(--ifm-button-padding-horizontal) * var(--ifm-button-size-multiplier)
    );
  text-align: center;
  -webkit-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  transition-property: color, background, border-color;
  transition-duration: var(--ifm-button-transition-duration);
  transition-timing-function: var(--ifm-transition-timing-default);
}

.button:hover {
    color: var(--ifm-button-color); /* Override for button links. */
    text-decoration: none;
  }

.button--outline {
    --ifm-button-background-color: transparent;
    --ifm-button-color: var(--ifm-button-border-color);
  }

.button--outline:hover {
      --ifm-button-background-color: var(--ifm-button-border-color);
    }

.button--outline:hover,
    .button--outline:active,
    .button--outline.button--active {
      --ifm-button-color: var(--ifm-font-color-base-inverse);
    }

.button--link {
    --ifm-button-background-color: transparent;
    --ifm-button-border-color: transparent;

    color: var(--ifm-link-color);
    /* autoprefixer: ignore next */
    text-decoration: var(--ifm-link-decoration);
  }

.button--link:hover,
    .button--link:active,
    .button--link.button--active {
      color: var(--ifm-link-hover-color);
      /* autoprefixer: ignore next */
      text-decoration: var(--ifm-link-hover-decoration);
    }

.button.disabled,
  .button:disabled,
  .button[disabled] {
    opacity: 0.65;
    pointer-events: none;
  }

.button--sm {
    --ifm-button-size-multiplier: 0.8;
  }

.button--lg {
    --ifm-button-size-multiplier: 1.35;
  }

.button--block {
    display: block;
    width: 100%;
  }

.button.button--secondary {
    color: var(--ifm-color-gray-900);
  }

.button.button--secondary.button--outline:not(.button--active):not(:hover) {
      color: var(--ifm-font-color-base);
    }

:where(.button--primary) {
      --ifm-button-background-color: var(--ifm-color-primary);
      --ifm-button-border-color: var(--ifm-color-primary);
    }

:where(.button--primary):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-primary-dark);
        --ifm-button-border-color: var(--ifm-color-primary-dark);
      }

.button--primary:active,
      .button--primary.button--active {
        --ifm-button-background-color: var(--ifm-color-primary-darker);
        --ifm-button-border-color: var(--ifm-color-primary-darker);
      }

:where(.button--secondary) {
      --ifm-button-background-color: var(--ifm-color-secondary);
      --ifm-button-border-color: var(--ifm-color-secondary);
    }

:where(.button--secondary):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-secondary-dark);
        --ifm-button-border-color: var(--ifm-color-secondary-dark);
      }

.button--secondary:active,
      .button--secondary.button--active {
        --ifm-button-background-color: var(--ifm-color-secondary-darker);
        --ifm-button-border-color: var(--ifm-color-secondary-darker);
      }

:where(.button--success) {
      --ifm-button-background-color: var(--ifm-color-success);
      --ifm-button-border-color: var(--ifm-color-success);
    }

:where(.button--success):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-success-dark);
        --ifm-button-border-color: var(--ifm-color-success-dark);
      }

.button--success:active,
      .button--success.button--active {
        --ifm-button-background-color: var(--ifm-color-success-darker);
        --ifm-button-border-color: var(--ifm-color-success-darker);
      }

:where(.button--info) {
      --ifm-button-background-color: var(--ifm-color-info);
      --ifm-button-border-color: var(--ifm-color-info);
    }

:where(.button--info):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-info-dark);
        --ifm-button-border-color: var(--ifm-color-info-dark);
      }

.button--info:active,
      .button--info.button--active {
        --ifm-button-background-color: var(--ifm-color-info-darker);
        --ifm-button-border-color: var(--ifm-color-info-darker);
      }

:where(.button--warning) {
      --ifm-button-background-color: var(--ifm-color-warning);
      --ifm-button-border-color: var(--ifm-color-warning);
    }

:where(.button--warning):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-warning-dark);
        --ifm-button-border-color: var(--ifm-color-warning-dark);
      }

.button--warning:active,
      .button--warning.button--active {
        --ifm-button-background-color: var(--ifm-color-warning-darker);
        --ifm-button-border-color: var(--ifm-color-warning-darker);
      }

:where(.button--danger) {
      --ifm-button-background-color: var(--ifm-color-danger);
      --ifm-button-border-color: var(--ifm-color-danger);
    }

:where(.button--danger):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-danger-dark);
        --ifm-button-border-color: var(--ifm-color-danger-dark);
      }

.button--danger:active,
      .button--danger.button--active {
        --ifm-button-background-color: var(--ifm-color-danger-darker);
        --ifm-button-border-color: var(--ifm-color-danger-darker);
      }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.button-group {
  display: inline-flex;
  gap: var(--ifm-button-group-spacing);
}

.button-group > .button:not(:first-child) {
      border-bottom-left-radius: 0;
      border-top-left-radius: 0;
    }

.button-group > .button:not(:last-child) {
      border-bottom-right-radius: 0;
      border-top-right-radius: 0;
    }

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

.button-group--block > .button {
      flex-grow: 1;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.card {
  background-color: var(--ifm-card-background-color);
  border-radius: var(--ifm-card-border-radius);
  box-shadow: var(--ifm-global-shadow-lw);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Because of border-radius. */

.card--full-height {
    height: 100%;
  }

.card__image {
    padding-top: var(--ifm-card-vertical-spacing);
  }

.card__image:first-child {
      padding-top: 0;
    }

.card__header,
  .card__body,
  .card__footer {
    padding: var(--ifm-card-vertical-spacing) var(--ifm-card-horizontal-spacing);
  }

.card__header:not(:last-child), .card__body:not(:last-child), .card__footer:not(:last-child) {
      padding-bottom: 0;
    }

.card__header > :last-child, .card__body > :last-child, .card__footer > :last-child {
      margin-bottom: 0;
    }

.card__footer {
    margin-top: auto; /* Pushes the footer to the bottom of the card. */
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.table-of-contents {
  font-size: 0.8rem;
  margin-bottom: 0;
  padding: var(--ifm-toc-padding-vertical) 0;
}

.table-of-contents,
  .table-of-contents ul {
    list-style: none;
    padding-left: var(--ifm-toc-padding-horizontal);
  }

.table-of-contents li {
    margin: var(--ifm-toc-padding-vertical) var(--ifm-toc-padding-horizontal);
  }

.table-of-contents__left-border {
    border-left: 1px solid var(--ifm-toc-border-color);
  }

.table-of-contents__link {
    color: var(--ifm-toc-link-color);
    display: block;
  }

.table-of-contents__link:hover,
    .table-of-contents__link:hover code,
    .table-of-contents__link--active,
    .table-of-contents__link--active code {
      color: var(--ifm-color-primary);
      text-decoration: none;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.close {
  color: var(--ifm-color-black);
  float: right;
  font-size: 1.5rem;
  font-weight: var(--ifm-font-weight-bold);
  line-height: 1;
  opacity: 0.5;
  padding: 1rem;
  transition: opacity var(--ifm-transition-fast) var(--ifm-transition-timing-default);
}

.close:hover {
    opacity: 0.7;
  }

.close:focus {
    opacity: 0.8;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.dropdown {
  display: inline-flex;
  font-weight: var(--ifm-dropdown-font-weight);
  position: relative;
  vertical-align: top;
}

.dropdown--hoverable:hover .dropdown__menu, .dropdown--show .dropdown__menu {
      opacity: 1;
      pointer-events: all;
      transform: translateY(-1px);
      visibility: visible;
    }

.dropdown--right .dropdown__menu {
      left: inherit;
      right: 0;
    }

.dropdown--nocaret .navbar__link:after {
    content: none !important;
  }

.dropdown__menu {
    background-color: var(--ifm-dropdown-background-color);
    border-radius: var(--ifm-global-radius);
    box-shadow: var(--ifm-global-shadow-md);
    left: 0;
    list-style: none;
    max-height: 80vh;
    min-width: 10rem;
    opacity: 0;
    overflow-y: auto;
    padding: 0.5rem;
    pointer-events: none;
    position: absolute;
    top: calc(100% - var(--ifm-navbar-item-padding-vertical) + 0.3rem);
    transform: translateY(-0.625rem);
    visibility: hidden;
    z-index: var(--ifm-z-index-dropdown);
    transition-property: opacity, transform, visibility;
    transition-duration: var(--ifm-transition-fast);
    transition-timing-function: var(--ifm-transition-timing-default);
  }

.dropdown__link {
    border-radius: 0.25rem;
    color: var(--ifm-dropdown-link-color);
    display: block;
    font-size: 0.875rem;
    margin-top: 0.2rem;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
  }

.dropdown__link:hover,
    .dropdown__link--active {
      background-color: var(--ifm-dropdown-hover-background-color);
      color: var(--ifm-dropdown-link-color);
      text-decoration: none;
    }

.dropdown__link--active,
    .dropdown__link--active:hover {
      --ifm-dropdown-link-color: var(--ifm-link-color);
    }

.dropdown > .navbar__link:after {
    border-color: currentColor transparent;
    border-style: solid;
    border-width: 0.4em 0.4em 0;
    content: '';
    display: inline-block;
    margin-left: 0.3em;
    position: relative;
    top: 2px;
    transform: translateY(-50%);
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.footer {
  background-color: var(--ifm-footer-background-color);
  color: var(--ifm-footer-color);
  padding: var(--ifm-footer-padding-vertical)
    var(--ifm-footer-padding-horizontal);
}

.footer--dark {
    --ifm-footer-background-color: #303846;
    --ifm-footer-color: var(--ifm-footer-link-color);
    --ifm-footer-link-color: var(--ifm-color-secondary);
    --ifm-footer-title-color: var(--ifm-color-white);
  }

.footer__links {
    margin-bottom: 1rem;
  }

.footer__link-item {
    color: var(--ifm-footer-link-color);
    line-height: 2;
  }

.footer__link-item:hover {
      color: var(--ifm-footer-link-hover-color);
    }

.footer__link-separator {
    margin: 0 var(--ifm-footer-link-horizontal-spacing);
  }

.footer__logo {
    margin-top: 1rem;
    max-width: var(--ifm-footer-logo-max-width);
  }

.footer__title {
    color: var(--ifm-footer-title-color);
    font: bold var(--ifm-h4-font-size) / var(--ifm-heading-line-height)
      var(--ifm-font-family-base);
    margin-bottom: var(--ifm-heading-margin-bottom);
  }

.footer__item {
    margin-top: 0;
  }

.footer__items {
    margin-bottom: 0;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

[type='checkbox'] {
  padding: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.hero {
  align-items: center;
  background-color: var(--ifm-hero-background-color);
  color: var(--ifm-hero-text-color);
  display: flex;
  padding: 4rem 2rem;
}

.hero--primary {
    --ifm-hero-background-color: var(--ifm-color-primary);
    --ifm-hero-text-color: var(--ifm-font-color-base-inverse);
  }

.hero--dark {
    --ifm-hero-background-color: #303846;
    --ifm-hero-text-color: var(--ifm-color-white);
  }

.hero__title {
    font-size: 3rem;
  }

.hero__subtitle {
    font-size: 1.5rem;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.menu {
  font-weight: var(--ifm-font-weight-semibold);
  overflow-x: hidden;
}

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

/* Non-top level menus */

.menu__list .menu__list {
      flex: 0 0 100%;
      margin-top: 0.25rem;
      padding-left: var(--ifm-menu-link-padding-horizontal);
    }

.menu__list-item:not(:first-child) {
      margin-top: 0.25rem;
    }

.menu__list-item--collapsed .menu__list {
        height: 0;
        overflow: hidden;
      }

.menu__list-item--collapsed .menu__link--sublist:after,
      .menu__list-item--collapsed .menu__caret:before {
        transform: rotateZ(90deg);
      }

.menu__list-item-collapsible {
      flex-wrap: wrap;
      position: relative;
      border-radius: 0.25rem;
      display: flex;
      transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
    }

.menu__list-item-collapsible:hover {
    background: var(--ifm-menu-color-background-hover);
  }

.menu__list-item-collapsible--active {
        background: var(--ifm-menu-color-background-hover);
      }

.menu__list-item-collapsible .menu__link:hover,
        .menu__list-item-collapsible .menu__link--active {
          background: none !important;
        }

.menu__link,
  .menu__caret {
    align-items: center;
    border-radius: 0.25rem;
    display: flex;
    transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.menu__link:hover, .menu__caret:hover {
    background: var(--ifm-menu-color-background-hover);
  }

.menu__link {
    color: var(--ifm-menu-color);
    flex: 1;
    line-height: 1.25;
    padding: var(--ifm-menu-link-padding-vertical)
      var(--ifm-menu-link-padding-horizontal);
  }

.menu__link:hover {
      text-decoration: none;
      color: var(--ifm-menu-color);
      transition: color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
    }

.menu__link--sublist-caret:after {
      content: '';
      margin-left: auto;
      min-width: 1.25rem;
      background: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem;
      filter: var(--ifm-menu-link-sublist-icon-filter);
      height: 1.25rem;
      transform: rotate(180deg);
      width: 1.25rem;
      transition: transform var(--ifm-transition-fast) linear;
    }

.menu__link--active {
      color: var(--ifm-menu-color-active);
    }

.menu__link--active:hover {
        color: var(--ifm-menu-color-active);
      }

.menu__link--active:not(.menu__link--sublist) {
        background-color: var(--ifm-menu-color-background-active);
      }

.menu__caret {
    padding: var(--ifm-menu-link-padding-vertical)
      var(--ifm-menu-link-padding-horizontal);
  }

.menu__caret:before {
      content: '';
      background: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem;
      filter: var(--ifm-menu-link-sublist-icon-filter);
      height: 1.25rem;
      transform: rotate(180deg);
      width: 1.25rem;
      transition: transform var(--ifm-transition-fast) linear;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

html[data-theme='dark'],
.navbar--dark {
  --ifm-menu-link-sublist-icon-filter: invert(100%) sepia(94%) saturate(17%)
    hue-rotate(223deg) brightness(104%) contrast(98%);
}

.navbar {
  background-color: var(--ifm-navbar-background-color);
  box-shadow: var(--ifm-navbar-shadow);
  display: flex;
  height: var(--ifm-navbar-height);
  padding: var(--ifm-navbar-padding-vertical)
    var(--ifm-navbar-padding-horizontal);
}

.navbar > .container,
  .navbar > .container-fluid {
    display: flex;
  }

.navbar--fixed-top {
    position: sticky;
    top: 0;
    z-index: var(--ifm-z-index-fixed);
  }

.navbar__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }

.navbar__brand {
    align-items: center;
    color: var(--ifm-navbar-link-color);
    display: flex;
    margin-right: 1rem;
    min-width: 0;
  }

.navbar__brand:hover {
      color: var(--ifm-navbar-link-hover-color);
      text-decoration: none;
    }

.navbar__title {
    flex: 1 1 auto;
  }

.navbar__toggle {
    display: none;
    margin-right: 0.5rem;
  }

.navbar__logo {
    flex: 0 0 auto;
    height: 2rem;
    margin-right: 0.5rem;
  }

.navbar__logo img {
      height: 100%;
    }

.navbar__items {
    align-items: center;
    display: flex;
    flex: 1;
    min-width: 0;
  }

.navbar__items--center {
      flex: 0 0 auto;
    }

.navbar__items--center .navbar__brand {
        margin: 0;
      }

.navbar__items--center + .navbar__items--right {
        flex: 1;
      }

.navbar__items--right {
      flex: 0 0 auto;
      justify-content: flex-end;
    }

.navbar__items--right > :last-child {
        padding-right: 0;
      }

.navbar__item {
    display: inline-block;
    padding: var(--ifm-navbar-item-padding-vertical)
      var(--ifm-navbar-item-padding-horizontal);
  }

.navbar__item.dropdown .navbar__link:not([href]) {
        pointer-events: none;
      }

.navbar__link {
    color: var(--ifm-navbar-link-color);
    font-weight: var(--ifm-font-weight-semibold);
  }

.navbar__link:hover,
    .navbar__link--active {
      color: var(--ifm-navbar-link-hover-color);
      text-decoration: none;
    }

.navbar--dark,
  .navbar--primary {
    --ifm-menu-color: var(--ifm-color-gray-300);
    --ifm-navbar-link-color: var(--ifm-color-gray-100);
    --ifm-navbar-search-input-background-color: rgba(255, 255, 255, 0.1);
    --ifm-navbar-search-input-placeholder-color: rgba(255, 255, 255, 0.5);

    color: var(--ifm-color-white);
  }

.navbar--dark {
    --ifm-navbar-background-color: #242526;
    --ifm-navbar-link-hover-color: var(--ifm-color-primary);
    --ifm-menu-color-background-active: rgba(255, 255, 255, 0.05);
    --ifm-navbar-search-input-color: var(--ifm-color-white);
  }

.navbar--primary {
    --ifm-navbar-background-color: var(--ifm-color-primary);
    --ifm-navbar-link-hover-color: var(--ifm-color-white);
    --ifm-menu-color-active: var(--ifm-color-white);
    --ifm-navbar-search-input-color: var(--ifm-color-emphasis-500);
  }

.navbar__search-input {
      appearance: none; /* Algolia will add type="search" to the input in Safari and Safari's styling will override the styling here. */
      background: var(--ifm-navbar-search-input-background-color)
        var(--ifm-navbar-search-input-icon) no-repeat 0.75rem center / 1rem 1rem;
      border: none;
      border-radius: 2rem;
      color: var(--ifm-navbar-search-input-color);
      cursor: text;
      display: inline-block;
      font-size: 0.9rem;
      height: 2rem;
      padding: 0 0.5rem 0 2.25rem;
      width: 12.5rem;
    }

.navbar__search-input::placeholder {
        color: var(--ifm-navbar-search-input-placeholder-color);
      }

.navbar-sidebar {
    background-color: var(--ifm-navbar-background-color);
    bottom: 0;
    box-shadow: var(--ifm-global-shadow-md);
    left: 0;
    opacity: 0;
    overflow-x: hidden;
    position: fixed;
    top: 0;
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
    width: var(--ifm-navbar-sidebar-width);
    transition-property: opacity, visibility, transform;
    transition-duration: 250ms;
    transition-timing-function: ease-in-out;
  }

.navbar-sidebar--show .navbar-sidebar,
      .navbar-sidebar--show .navbar-sidebar__backdrop {
        opacity: 1;
        visibility: visible;
      }

.navbar-sidebar--show .navbar-sidebar {
        transform: translate3d(0, 0, 0);
      }

.navbar-sidebar__backdrop {
      background-color: rgba(0, 0, 0, 0.6);
      bottom: 0;
      left: 0;
      opacity: 0;
      position: fixed;
      right: 0;
      top: 0;
      visibility: hidden;
      transition-property: opacity, visibility;
      transition-duration: 100ms;
      transition-timing-function: ease-in-out;
    }

.navbar-sidebar__brand {
      align-items: center;
      box-shadow: var(--ifm-navbar-shadow);
      display: flex;
      flex: 1;
      height: var(--ifm-navbar-height);
      padding: var(--ifm-navbar-padding-vertical)
        var(--ifm-navbar-padding-horizontal);
    }

.navbar-sidebar__items {
      display: flex;
      height: calc(100% - var(--ifm-navbar-height));
      transform: translateZ(0);
      transition: transform var(--ifm-transition-fast) ease-in-out;
    }

.navbar-sidebar__items--show-secondary {
        transform: translate3d(
          calc((var(--ifm-navbar-sidebar-width)) * -1),
          0,
          0
        );
      }

.navbar-sidebar__item {
      flex-shrink: 0;
      padding: 0.5rem;
      width: calc(var(--ifm-navbar-sidebar-width));
    }

.navbar-sidebar__back {
      background: var(--ifm-menu-color-background-active);
      font-size: 15px;
      font-weight: var(--ifm-button-font-weight);
      margin: 0 0 0.2rem -0.5rem;
      padding: 0.6rem 1.5rem;
      position: relative;
      text-align: left;
      top: -0.5rem;
      width: calc(100% + 1rem);
    }

.navbar-sidebar__close {
      display: flex;
      margin-left: auto;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.pagination {
  column-gap: var(--ifm-pagination-page-spacing);
  display: flex;
  font-size: var(--ifm-pagination-font-size);
  padding-left: 0;
}

.pagination--sm {
    --ifm-pagination-font-size: 0.8rem;
    --ifm-pagination-padding-horizontal: 0.8rem;
    --ifm-pagination-padding-vertical: 0.2rem;
  }

.pagination--lg {
    --ifm-pagination-font-size: 1.2rem;
    --ifm-pagination-padding-horizontal: 1.2rem;
    --ifm-pagination-padding-vertical: 0.3rem;
  }

.pagination__item {
    display: inline-flex;
  }

.pagination__item > span {
      padding: var(--ifm-pagination-padding-vertical);
    }

.pagination__item--active .pagination__link {
        background: var(--ifm-pagination-item-active-background);
        color: var(--ifm-pagination-color-active);
      }

.pagination__item:not(.pagination__item--active):hover .pagination__link {
        background: var(--ifm-pagination-item-active-background);
      }

.pagination__item--disabled,
    .pagination__item[disabled] {
      opacity: 0.25;
      pointer-events: none;
    }

.pagination__link {
    border-radius: var(--ifm-pagination-border-radius);
    color: var(--ifm-font-color-base);
    display: inline-block;
    padding: var(--ifm-pagination-padding-vertical)
      var(--ifm-pagination-padding-horizontal);
    transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.pagination__link:hover {
      text-decoration: none;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.pagination-nav {
  display: grid;
  grid-gap: var(--ifm-spacing-horizontal);
  gap: var(--ifm-spacing-horizontal);
  grid-template-columns: repeat(2, 1fr);
}

.pagination-nav__link {
    border: 1px solid var(--ifm-color-emphasis-300);
    border-radius: var(--ifm-pagination-nav-border-radius);
    display: block;
    height: 100%;
    line-height: var(--ifm-heading-line-height);
    padding: var(--ifm-global-spacing);
    transition: border-color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.pagination-nav__link:hover {
      border-color: var(--ifm-pagination-nav-color-hover);
      text-decoration: none;
    }

.pagination-nav__link--next {
      grid-column: 2/3;
      text-align: right;
    }

.pagination-nav__label {
    font-size: var(--ifm-h4-font-size);
    font-weight: var(--ifm-heading-font-weight);
    word-break: break-word;
  }

.pagination-nav__link--prev .pagination-nav__label::before {
      content: '« ';
    }

.pagination-nav__link--next .pagination-nav__label::after {
      content: ' »';
    }

.pagination-nav__sublabel {
    color: var(--ifm-color-content-secondary);
    font-size: var(--ifm-h5-font-size);
    font-weight: var(--ifm-font-weight-semibold);
    margin-bottom: 0.25rem;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.pills {
  display: flex;
  gap: var(--ifm-pills-spacing);
  padding-left: 0;
}

.pills__item {
    border-radius: 0.5rem;
    cursor: pointer;
    display: inline-block;
    font-weight: var(--ifm-font-weight-bold);
    padding: 0.25rem 1rem;
    transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.pills__item--active {
      background: var(--ifm-pills-color-background-active);
      color: var(--ifm-pills-color-active);
    }

.pills__item:not(.pills__item--active):hover {
      background: var(--ifm-pills-color-background-active);
    }

.pills--block {
    justify-content: stretch;
  }

.pills--block .pills__item {
      flex-grow: 1;
      text-align: center;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tabs {
  color: var(--ifm-tabs-color);
  display: flex;
  font-weight: var(--ifm-font-weight-bold);
  margin-bottom: 0;
  overflow-x: auto;
  padding-left: 0;
}

.tabs__item {
    border-bottom: 3px solid transparent;
    border-radius: var(--ifm-global-radius);
    cursor: pointer;
    display: inline-flex;
    padding: var(--ifm-tabs-padding-vertical) var(--ifm-tabs-padding-horizontal);
    transition: background-color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.tabs__item--active {
      border-bottom-color: var(--ifm-tabs-color-active-border);
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      color: var(--ifm-tabs-color-active);
    }

.tabs__item:hover {
      background-color: var(--ifm-hover-overlay);
    }

.tabs--block {
    justify-content: stretch;
  }

.tabs--block .tabs__item {
      flex-grow: 1;
      justify-content: center;
    }

/* Mode */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

html[data-theme='dark'] {
  --ifm-color-scheme: dark;

  --ifm-color-emphasis-0: var(--ifm-color-gray-1000);
  --ifm-color-emphasis-100: var(--ifm-color-gray-900);
  --ifm-color-emphasis-200: var(--ifm-color-gray-800);
  --ifm-color-emphasis-300: var(--ifm-color-gray-700);
  --ifm-color-emphasis-400: var(--ifm-color-gray-600);
  --ifm-color-emphasis-500: var(--ifm-color-gray-500);
  --ifm-color-emphasis-600: var(--ifm-color-gray-400);
  --ifm-color-emphasis-700: var(--ifm-color-gray-300);
  --ifm-color-emphasis-800: var(--ifm-color-gray-200);
  --ifm-color-emphasis-900: var(--ifm-color-gray-100);
  --ifm-color-emphasis-1000: var(--ifm-color-gray-0);

  --ifm-background-color: #1b1b1d;
  --ifm-background-surface-color: #242526;

  --ifm-hover-overlay: rgba(255, 255, 255, 0.05);

  --ifm-color-content: #e3e3e3;
  --ifm-color-content-secondary: rgba(255, 255, 255, 1);

  --ifm-breadcrumb-separator-filter: invert(64%) sepia(11%) saturate(0%)
    hue-rotate(149deg) brightness(99%) contrast(95%);

  --ifm-code-background: rgba(255, 255, 255, 0.1);

  --ifm-scrollbar-track-background-color: #444444;
  --ifm-scrollbar-thumb-background-color: #686868;
  --ifm-scrollbar-thumb-hover-background-color: #7a7a7a;

  --ifm-table-stripe-background: rgba(255, 255, 255, 0.07);

  --ifm-toc-border-color: var(--ifm-color-emphasis-200);
    --ifm-color-primary-contrast-background: rgb(16, 36, 69);
    --ifm-color-primary-contrast-foreground: rgb(235, 242, 252);
    --ifm-color-secondary-contrast-background: rgb(71, 71, 72);
    --ifm-color-secondary-contrast-foreground: rgb(253, 253, 254);
    --ifm-color-success-contrast-background: rgb(0, 49, 0);
    --ifm-color-success-contrast-foreground: rgb(230, 246, 230);
    --ifm-color-info-contrast-background: rgb(25, 60, 71);
    --ifm-color-info-contrast-foreground: rgb(238, 249, 253);
    --ifm-color-warning-contrast-background: rgb(77, 56, 0);
    --ifm-color-warning-contrast-foreground: rgb(255, 248, 230);
    --ifm-color-danger-contrast-background: rgb(75, 17, 19);
    --ifm-color-danger-contrast-foreground: rgb(255, 235, 236)
}

@media (min-width: 1440px) {
    .container {
      max-width: var(--ifm-container-width-xl);
    }
}

@media (max-width: 996px) {
    .col {
      --ifm-col-width: 100%;
      flex-basis: var(--ifm-col-width);
      margin-left: 0;
    }

.footer {
    --ifm-footer-padding-horizontal: 0
}

    .footer__link-separator {
      display: none;
    }

    .footer__col {
      margin-bottom: calc(var(--ifm-spacing-vertical) * 3);
    }

    .footer__link-item {
      display: block;
    }

.hero {
    padding-left: 0;
    padding-right: 0
}

.navbar > .container,
  .navbar > .container-fluid {
      padding: 0
  }

.navbar__toggle {
      display: inherit
  }

.navbar__item {
      display: none
  }

.navbar__search-input {
        width: 9rem
    }

.pills--block {
      flex-direction: column
  }

.tabs--block {
      flex-direction: column
  }
}

@media (max-width: 576px) {
    .markdown h1:first-child {
      --ifm-h1-font-size: 2rem;
    }
    .markdown > h2 {
      --ifm-h2-font-size: 1.5rem;
    }
    .markdown > h3 {
      --ifm-h3-font-size: 1.25rem;
    }
}

@media (pointer: fine) {
  .thin-scrollbar {
    scrollbar-width: thin;
  }
  .thin-scrollbar::-webkit-scrollbar {
    height: var(--ifm-scrollbar-size);
    width: var(--ifm-scrollbar-size);
  }
  .thin-scrollbar::-webkit-scrollbar-track {
    background: var(--ifm-scrollbar-track-background-color);
    border-radius: 10px;
  }
  .thin-scrollbar::-webkit-scrollbar-thumb {
    background: var(--ifm-scrollbar-thumb-background-color);
    border-radius: 10px;
  }
  .thin-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--ifm-scrollbar-thumb-hover-background-color);
  }
}

@media print {

.table-of-contents {
    display: none
}

.footer {
    display: none
}

.menu {
    display: none
}

.navbar {
    display: none
}

.pagination-nav {
    display: none
}

.tabs {
    page-break-inside: avoid
}
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/**
 * Styles for NProgress
 * Copied over to remove unused styles for the spinner.
 * https://github.com/rstacruz/nprogress/blob/master/nprogress.css
 */

:root {
  --docusaurus-progress-bar-color: var(--ifm-color-primary);
}

#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: var(--docusaurus-progress-bar-color);
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

#nprogress .peg {
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px var(--docusaurus-progress-bar-color),
    0 0 5px var(--docusaurus-progress-bar-color);
  opacity: 1;
  transform: rotate(3deg) translate(0, -4px);
}

.ch-terminal{font-size:14px;height:100%;box-sizing:border-box;background:#1e1e1e;color:#fafafa;overflow:hidden;padding:0 8px 8px;font-family:Ubuntu,Droid Sans,-apple-system,BlinkMacSystemFont,Segoe WPC,Segoe UI,sans-serif}.ch-terminal-container .ch-frame-content{background-color:inherit}.ch-terminal-prompt{color:#8fa2db;-webkit-user-select:none;user-select:none}.ch-terminal-content{margin:0}.ch-terminal-output{opacity:.66}.ch-code-line-number{-webkit-user-select:none;user-select:none;text-align:right;display:inline-block;box-sizing:border-box;padding-right:1.5ch;font-variant-numeric:tabular-nums}.ch-code-scroll-parent{display:block;font-weight:400;font-size:14px;line-height:19px;letter-spacing:0;border-radius:0;background-color:unset;color:unset;padding:0;box-sizing:content-box;border:none}.ch-code-scroll-parent ::selection{background-color:var(--ch-selection-background);color:inherit}.ch-code-button{position:absolute;top:10px;right:10px;width:1.1em;height:1.1em;cursor:pointer}.ch-no-scroll{overflow:hidden}.ch-expand-dialog{height:100vh;width:100vw;max-width:900px;border:0;background-color:transparent}.ch-expand-dialog::backdrop{background-color:rgba(0,0,0,.8)}.ch-expand-close{position:absolute;top:10px;right:10px;cursor:pointer;color:#fff;width:26px;height:26px}.ch-expand-dialog-content{color:#fff;position:absolute;inset:40px;overflow:hidden;border-radius:8px;border:1px solid}.ch-code-browser{display:flex;height:100%;font-family:Ubuntu,Droid Sans,-apple-system,BlinkMacSystemFont,Segoe WPC,Segoe UI,sans-serif}.ch-code-browser-sidebar{border-right:1px solid;min-width:100px;padding:1em 0;font-size:.95rem}.ch-code-browser-content{overflow:auto;flex:1;padding:1em;white-space:pre;font-family:monospace;font-weight:400;font-size:1rem;line-height:1.2rem;letter-spacing:0}.ch-code-browser-content ::selection{background-color:var(--ch-selection-background);color:inherit}.ch-code-browser-sidebar-file,.ch-code-browser-sidebar-folder{padding:.1em 1em}.ch-code-browser-sidebar-file{cursor:pointer}.ch-code-browser-sidebar-file:hover{background-color:var(--ch-hover-background);color:var(--ch-hover-foreground)}.ch-editor-tab{border-right:1px solid #252526;min-width:-moz-fit-content;min-width:fit-content;flex-shrink:1;position:relative;display:flex;white-space:nowrap;cursor:pointer;height:100%;box-sizing:border-box;padding-left:15px;padding-right:15px;background-color:#2d2d2d;color:hsla(0,0%,100%,.5);min-width:0;border-bottom:1px solid}.ch-editor-tab-active{background-color:#1e1e1e;color:#fff;min-width:unset}.ch-editor-tab>div{margin-top:auto;margin-bottom:auto;font-size:12px;line-height:1.4em;text-overflow:ellipsis;overflow:hidden}.ch-editor-frame{display:flex;flex-direction:column;position:relative;overflow:hidden;font-family:Ubuntu,Droid Sans,-apple-system,BlinkMacSystemFont,Segoe WPC,Segoe UI,sans-serif;break-inside:avoid;--ch-title-bar-height:30px;height:100%}.ch-editor-frame .ch-frame-title-bar{background:none}.ch-editor-terminal{position:absolute;overflow:hidden;bottom:0;width:100%;background-color:#1e1e1e;color:#e7e7e7;border-top:1px solid hsla(0,0%,50.2%,.35);padding:0 8px;box-sizing:border-box}.ch-editor-terminal-tab{text-transform:uppercase;padding:4px 10px 3px;font-size:11px;line-height:24px;display:flex}.ch-editor-terminal-tab>span{border-bottom:1px solid #e7e7e7}.ch-editor-terminal-content{margin-top:8px;height:calc(100% - 40px);box-sizing:border-box}.ch-editor-terminal-content .ch-terminal{font-size:12px;margin:0}.ch-editor-button{width:1.5em;height:1.5em;cursor:pointer;min-width:1.5em;min-height:1.5em;margin-right:.8em}.ch-frame{height:100%;display:flex;flex-direction:column}.ch-frame,.ch-simple-frame{font-family:Ubuntu,Droid Sans,-apple-system,BlinkMacSystemFont,Segoe WPC,Segoe UI,sans-serif;break-inside:avoid;--ch-title-bar-height:30px}.ch-simple-frame{border-radius:6px;overflow:hidden;box-shadow:0 13px 27px -5px rgba(50,50,93,.25),0 8px 16px -8px rgba(0,0,0,.3),0 -6px 16px -6px rgba(0,0,0,.025)}.ch-frame-content{background-color:var(--ch-content-background,#fafafa);flex-grow:1;flex-shrink:1;flex-basis:0;min-height:0}.ch-frame-zoom{--ch-frame-zoom:1;overflow:auto;position:relative;width:calc(100%/var(--ch-frame-zoom));height:calc(100%/var(--ch-frame-zoom));transform:scale(var(--ch-frame-zoom));transform-origin:left top}.ch-frame-title-bar{font-size:12px;width:100%;height:var(--ch-title-bar-height);min-height:var(--ch-title-bar-height);flex-grow:0;flex-shrink:0;display:flex;align-items:center;background-color:var(--ch-content-background,#252526);color:#ebebed;position:relative}.ch-frame-middle-bar{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;font-size:1.2em}.ch-frame-left-bar,.ch-frame-right-bar{flex-grow:1;flex-basis:1em;height:100%;display:flex;align-items:center;width:max-content}.ch-frame-buttons{margin:0 .8em;flex-shrink:0;height:1em;width:4.16em;display:flex}.ch-frame-button{width:1em;height:1em;border:.08em solid;border-radius:50%;display:inline-block;box-sizing:border-box}.ch-frame-button-space{width:.56em}.ch-frame-button-left{border-color:#ce5347;background-color:#ed6b60}.ch-frame-button-middle{border-color:#d6a243;background-color:#f5be4f}.ch-frame-button-right{border-color:#58a942;background-color:#62c554}.ch-mini-browser{height:100%}.ch-mini-browser .ch-frame-content iframe,.ch-mini-browser .ch-frame-content video{border:none;position:absolute;height:100%;width:100%}.ch-mini-browser .ch-frame-title-bar input{height:1.4em;font-size:1em;border-radius:.5em;border:none;box-shadow:none;flex:1;padding:0 10px;color:#544;min-width:5px;width:5px}.ch-browser-button{margin:0 1em;color:#999}.ch-browser-back-button{margin-left:.2em}.ch-browser-forward-button{margin-left:0}.ch-browser-open-button{color:inherit}.ch-browser-open-icon{display:block}.ch-spotlight{display:flex;gap:.5rem;margin:1rem 0}.ch-spotlight-tabs{display:flex;flex-flow:column;margin-right:10px;flex:1;gap:.5rem;align-items:stretch}.ch-spotlight-tab{border-radius:.25rem;margin:0 -.5rem;padding:0 .5rem;border:1px solid #e3e3e3}.ch-spotlight-tab:hover{border-color:#222}.ch-spotlight-tab[data-selected]{border-color:#0070f3}.ch-spotlight-sticker{position:sticky;top:10vh;display:flex;align-self:stretch;flex-flow:column;justify-content:center;width:420px;min-height:min(100%,80vh);max-height:80vh}.ch-spotlight-sticker .ch-codeblock,.ch-spotlight-sticker .ch-codegroup{width:100%;min-width:100%;min-height:min(100%,80vh);max-height:80vh;margin-top:0;margin-bottom:0;flex:1}.ch-spotlight-with-preview .ch-spotlight-sticker{height:80vh;gap:.5rem}.ch-spotlight-with-preview .ch-spotlight-sticker .ch-codeblock,.ch-spotlight-with-preview .ch-spotlight-sticker .ch-codegroup{min-height:0;flex:1}.ch-spotlight-with-preview .ch-spotlight-preview{height:280px}.ch-scrollycoding{display:flex;position:relative;margin:1rem 0}.ch-scrollycoding-content{box-sizing:border-box;padding-right:16px;flex:1}.ch-scrollycoding-step-content{border-radius:8px;margin:0 -.5rem;padding:1rem .5rem;border:1.5px solid transparent;min-height:180px}.ch-scrollycoding-step-content[data-selected]{border-color:#0070f3}.ch-scrollycoding-step-content>:first-child{margin-top:0}.ch-scrollycoding-step-content>:last-child{margin-bottom:0}.ch-scrollycoding-sticker{position:sticky;top:10vh;display:flex;align-self:start;flex-flow:column;justify-content:center;width:var(--ch-scrollycoding-sticker-width,420px);max-height:80vh}.ch-scrollycoding-with-preview .ch-scrollycoding-sticker{height:80vh;gap:.5rem}.ch-scrollycoding-with-preview .ch-scrollycoding-sticker .ch-codeblock,.ch-scrollycoding-with-preview .ch-scrollycoding-sticker .ch-codegroup{flex:1}.ch-scrollycoding-with-preview .ch-scrollycoding-preview{height:280px}.ch-scrollycoding-sticker .ch-codeblock,.ch-scrollycoding-sticker .ch-codegroup{width:100%;min-width:100%;min-height:var(--ch-scrollycoding-code-min-height,200px);max-height:80vh;margin-top:0;margin-bottom:0}.ch-slideshow{margin:1rem 0}.ch-slideshow-slide{display:flex;flex-flow:row;gap:.5rem;align-items:stretch;aspect-ratio:16/9}.ch-slideshow-slide .ch-codeblock,.ch-slideshow-slide .ch-codegroup{flex:2;margin-top:0;margin-bottom:0;height:auto}.ch-slideshow .ch-slideshow-preview{flex:1;height:auto;min-width:0}.ch-slideshow-range{display:flex;flex-flow:row;gap:.5rem}.ch-slideshow-range input{flex:1}.ch-slideshow-notes{border-radius:.25rem;margin-top:1rem;padding:1rem;border:1px solid #e3e3e3}.ch-slideshow-note{min-height:140px;max-height:140px;padding:.05px;overflow:auto}.ch-codeblock,.ch-codegroup,.ch-preview{border-radius:6px;overflow:hidden;height:max-content;box-shadow:0 13px 27px -5px rgba(50,50,93,.25),0 8px 16px -8px rgba(0,0,0,.3),0 -6px 16px -6px rgba(0,0,0,.025)}.ch-codeblock>*,.ch-codegroup>*,.ch-preview>*{height:100%;max-height:inherit;min-height:inherit}.ch-codeblock,.ch-codegroup{margin-top:1.25em;margin-bottom:1.25em}.ch-inline-code>code{padding:.2em .15em;margin:.1em -.05em;border-radius:.25em;font-size:.9rem}.ch-section-link,.ch-section-link *{text-decoration:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted;text-decoration-thickness:1px;-webkit-text-decoration-color:var(--ch-code-foreground,currentColor);text-decoration-color:var(--ch-code-foreground,currentColor)}.ch-section-link[data-active=true]{background-color:rgba(186,230,253,.4)}.ch-section-link[data-active=true],.ch-section-link[data-active=true] *{text-decoration-thickness:1.5px}.ch-code-inline-mark{border-radius:.25rem;padding:.2rem .15rem .1rem;margin:0 -.15rem}.ch-code-multiline-mark-border{width:3px;height:100%;position:absolute;left:0}
:root{--font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;--color-main-50: #e8f6ff;--color-main-75: #d4edfc;--color-main-100: #8dd1fc;--color-main-200: #41b1fa;--color-main-300: #23a4f7;--color-main-400: #0998f5;--color-main-500: #099dfd;--color-main-600: #098ade;--color-main-700: #0678c2;--color-main-800: #0565a6;--color-main-900: #02436e;--color-green-100: #d6e1d8;--color-green-200: #abbbab;--color-green-300: #73b172;--color-green-400: #519e4d;--color-green-500: #42843f;--color-green-600: #416644;--color-green-700: #2d562f;--color-green-800: #1a4c11;--color-green-900: #19381a;--color-yellow-100: #ede9dd;--color-yellow-200: #e7d18c;--color-yellow-300: #e8b623;--color-yellow-400: #e0a902;--color-yellow-500: #c79706;--color-yellow-600: #ac840a;--color-yellow-700: #8b6c0e;--color-yellow-800: #6a5512;--color-yellow-900: #4a3e12;--color-red-100: #e3dde0;--color-red-200: #bda4a8;--color-red-300: #e07382;--color-red-400: #d44a5c;--color-red-500: #d9384e;--color-red-600: #bf3447;--color-red-700: #9c2d3e;--color-red-800: #8c2b3a;--color-red-900: #692330;--color-dark-25: #565a61;--color-dark-50: #4b5057;--color-dark-100: #41454d;--color-dark-200: #373b42;--color-dark-300: #2f333b;--color-dark-400: #262b33;--color-dark-450: #2e2f34;--color-dark-500: #1c1f26;--color-dark-600: #171b21;--color-dark-700: #13161c;--color-dark-750: #0c0f14;--color-dark-800: #020509;--color-dark-900: #1c1f26;--color-gray-50: #f7f9fa;--color-gray-75: #f2f4f5;--color-gray-100: #edeff0;--color-gray-200: #e8eaeb;--color-gray-300: #e0e3e5;--color-gray-400: #dadcde;--color-gray-500: #d0d2d4;--color-gray-600: #c1c5c7;--color-gray-700: #b2b6b8;--color-gray-800: #a0a4a6;--color-gray-900: #bdcfdb;--color-light-50: #fdfdfd;--color-light-100: #f9fefe;--color-light-200: #eef7ff;--color-black: #000000;--color-white: #ffffff;--color-accent: #ffc600;--font-light: 300;--font-regular: 400;--font-medium: 500;--font-semibold: 600;--font-bold: 700;--border-dark: var(--color-gray-600);--pd-base: 10px;--transition: all 0.3s ease-in-out;--radius-sm: 2.5px;--radius-md: 5px;--ifm-navbar-height: 50px;--doc-sidebar-width: 280px;--ifm-navbar-sidebar-width: 100vw;--ifm-container-width: 1220px;--ifm-container-width-xl: 1220px;--ifm-global-spacing: 15px;--ifm-color-primary: #099dfd;--ifm-code-font-size: 95%;--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);--ifm-heading-font-family: var(--font-family);--ifm-font-family-base: var(--font-family);--doc-sidebar-width: 280px !important;--ifm-breadcrumb-separator-size: 8px;--ifm-breadcrumb-spacing: 10px;--ifm-background-color: var(--color-dark-800);--ifm-table-border-color: var(--color-dark-50);--feedback-modal-font-color: var(--color-gray-100);--modal-button-background-color: #13161c;--feedback-modal-border-color: #2f333b;--feedback-modal-svg-icon-color: var(var(--color-black)) --feedback-modal-fields-color: var(--color-gray-200) }.light-theme{--color-dark-50: #ebf0f4;--color-dark-100: #ecf0f5;--color-dark-200: #eff4f7;--color-dark-300: #f1f8ff;--color-dark-400: #f3f7fb;--color-dark-500: #f5f8fa;--color-dark-600: #f6f9fe;--color-dark-700: #f8fbfe;--color-dark-750: #fdfeff;--color-dark-800: #fbfcfc;--color-gray-50: #2f333b;--color-gray-100: #373b42;--color-gray-200: #41454d;--color-gray-300: #565a61;--color-gray-400: #5e6164;--color-gray-500: #6d6f71;--color-gray-600: #999fa4;--color-gray-700: #dbe6ee;--color-gray-800: #e6eaee}[data-theme=light],[data-theme=dark]{--ifm-background-color: transparent !important}*{margin:0;padding:0;box-sizing:border-box;text-rendering:optimizeLegibility;color:inherit;font-size:inherit;scroll-behavior:smooth}html{font-size:62.5%}body{min-height:100vh;position:relative;line-height:1;font-size:1.5rem;line-height:2rem;font-weight:var(--font-regular);font-family:var(--font-family)}body h1{font-weight:400;font-size:3.2rem;line-height:3rem}body h2{font-weight:600;font-size:2.4rem;line-height:3.2rem}body h3{font-weight:500;font-size:2rem;line-height:2.8rem}body h4{font-weight:400;font-size:1.8rem;line-height:2.4rem}body h5{font-weight:400;font-size:1.6rem;line-height:2rem}body p{font-weight:400;font-size:1.5rem;line-height:2rem}body a{color:var(--color-main-500);font-weight:600}.docs-search-page{min-height:calc(100vh - 68px)}.theme{color:var(--color-gray-100);background-color:var(--color-dark-750)}#onetrust-consent-sdk>*{font-family:var(--font-family) !important}button{cursor:pointer}img{width:100%}a{color:var(--color-main-500);text-decoration:none}a,button{cursor:pointer}table{max-width:100%}button,input{font-family:var(--font-family) !important}::-webkit-scrollbar{-webkit-appearance:none;width:7px}::-webkit-scrollbar-thumb{border-radius:4px;background-color:var(--color-gray-500);-webkit-box-shadow:0 0 1px rgba(255,255,255,.5)}.container{max-width:1220px;width:90%;margin:0 auto;padding:0}.page{min-height:75vh;padding-top:4rem;padding-bottom:4rem}.page--narrow{padding-top:2rem;padding-bottom:4rem}.d-contents{display:contents}.theme-admonition{margin-top:16px;margin-bottom:16px}details{padding:5px;border-radius:5px}summary{background-color:#e4e0e1;color:#000;padding:5px;cursor:pointer;border-radius:5px;margin-bottom:5px}.docs-doc-page img{width:initial}.ch-codeblock .ch-code-button{display:none}.ch-codeblock:hover .ch-code-button{display:block}@media only screen and (max-width: 700px){.ch-scrollycoding{flex-direction:column-reverse;gap:2rem}}.ch-scrollycoding .ch-editor-frame{min-height:480px}@media only screen and (max-width: 700px){.ch-scrollycoding .ch-editor-frame{min-height:auto;height:30vh !important;max-height:30vh !important}}@media only screen and (max-height: 700px){.ch-scrollycoding code{height:30vh !important}}.ch-scrollycoding-content{flex:2}.ch-scrollycoding-sticker{flex:3}@media only screen and (max-width: 700px){.ch-scrollycoding-sticker{width:100%;max-height:-moz-fit-content;max-height:fit-content;margin-left:-5px;margin-right:-5px;top:51px}}.ch-expand-dialog{margin:auto}.ch-code-browser-sidebar-file{font-size:1.4rem}.ch-code-browser-content>*{font-size:1.4rem;font-family:var(--ifm-font-family-monospace);line-height:1.6}aside.theme-doc-sidebar-container{border-right:none}aside.theme-doc-sidebar-container>div{height:100vh}div.theme-doc-toc-desktop{max-width:280px;top:calc(var(--ifm-navbar-height) + 20px)}ul.table-of-contents{padding:0;width:100%}ul.table-of-contents li,ul.table-of-contents__link{font-size:14px;width:100%;margin:0;margin-bottom:10px}ul.table-of-contents__link--active{font-weight:600}ul.table-of-contents ul{margin-top:10px;padding-left:.8rem}@media only screen and (min-width: 997px){ul.table-of-contents ul{padding-left:1.5rem}}ul.table-of-contents__left-border{border-left:none}p.table-of-contents__title{font-weight:600;margin-top:8px;margin-bottom:10px;color:var(--color-gray-300)}.table-of-contents__link{font-weight:400;color:var(--color-gray-700)}.table-of-contents__link--active{font-weight:500;color:var(--color-main-500)}.table-of-contents__link span{display:inline-block;background-color:#eee;padding:1px 6px;border-radius:var(--radius-sm);line-height:1}.light-theme .table-of-contents__link{color:var(--color-gray-500)}.light-theme .table-of-contents__link:hover{color:var(--color-main-500)}.light-theme .table-of-contents__link--active{font-weight:var(--font-semibold);color:var(--color-main-500)}.theme-doc-sidebar-container nav{--ifm-menu-link-padding-horizontal: 15px;padding:0;scrollbar-gutter:unset}.theme-doc-sidebar-container nav .menu__list-item-collapsible{background-color:rgba(0,0,0,0)}.theme-doc-sidebar-container nav .menu__list-item-collapsible .menu__link{padding-right:10px}.theme-doc-sidebar-container nav .menu__list-item-collapsible .menu__link--active{background-color:rgba(0,0,0,0);font-weight:400;color:initial}.theme-doc-sidebar-container nav .menu__link{font-weight:400;padding:0;padding:10px;padding-right:0;margin-left:20px !important;color:var(--color-gray-200);border:1px solid rgba(0,0,0,0)}.theme-doc-sidebar-container nav .menu__link:hover{color:var(--color-main-500)}.theme-doc-sidebar-container nav .menu__link--sublist:hover{background-color:var(--color-dark-700) !important;border-color:var(--color-dark-600)}.theme-doc-sidebar-container nav .menu__link--sublist-caret:after{filter:invert(50%)}.theme-doc-sidebar-container nav .menu__link--active{font-weight:var(--font-medium);color:var(--color-main-500) !important;background-color:var(--color-dark-700) !important;border-color:var(--color-dark-600)}.theme-doc-sidebar-container nav .menu__link--active:hover{background-color:var(--color-dark-600) !important;border-color:var(--color-dark-500)}.theme-doc-sidebar-container nav .menu__list .theme-doc-sidebar-item-link-level-2 .menu__link:hover{background-color:var(--color-dark-700) !important;border-color:var(--color-dark-600)}.theme-doc-sidebar-container nav .menu__list .theme-doc-sidebar-item-link-level-2 .menu__link--active{background-color:rgba(0,0,0,0) !important;border:none !important}.light-theme .theme-doc-sidebar-container nav .menu__link{border:1px solid rgba(0,0,0,0)}.light-theme .theme-doc-sidebar-container nav .menu__link--sublist:hover{border-color:var(--color-dark-50) !important;background-color:var(--color-dark-300) !important}.light-theme .theme-doc-sidebar-container nav .menu__link--active{color:var(--color-main-500) !important;background-color:var(--color-dark-300) !important;border-color:var(--color-dark-50)}.light-theme .theme-doc-sidebar-container nav .menu__link--active:hover{border-color:var(--color-dark-50) !important;background-color:var(--color-dark-500) !important}.light-theme .theme-doc-sidebar-container nav .menu__list .theme-doc-sidebar-item-link-level-2 .menu__link:hover{border-color:var(--color-dark-50) !important;background-color:var(--color-dark-300) !important}.light-theme .theme-doc-sidebar-container nav .menu__list .theme-doc-sidebar-item-link-level-2 .menu__link--active{background-color:rgba(0,0,0,0) !important;border:none !important}span.DocSearch-Button-Placeholder{font-size:1.5rem}button.DocSearch-Button{width:100%;background:rgba(0,0,0,0);padding:15px 14px;border-radius:var(--radius-sm);border:1px solid #ccc}svg.DocSearch-Search-Icon{height:21px;width:21px;position:relative;bottom:-1px}@media only screen and (min-width: 997px){svg.DocSearch-Search-Icon{width:18px;height:18px}}kbd.DocSearch-Button-Key{box-shadow:none;border:1px solid rgba(255,255,255,.1254901961);background:rgba(0,0,0,0);padding:2px}.light-theme kbd.DocSearch-Button-Key{background:rgba(255,255,255,.1882352941);border:1px solid rgba(0,0,0,.1254901961)}@media(max-width: 750px){.DocSearch-Button-Keys,.DocSearch-Button-Placeholder{display:flex !important}}div[class^=announcementBar_]{--site-announcement-bar-stripe-color1: #099dfd50;--site-announcement-bar-stripe-color2: #099dfd10;background:repeating-linear-gradient(35deg, var(--site-announcement-bar-stripe-color1), var(--site-announcement-bar-stripe-color1) 20px, var(--site-announcement-bar-stripe-color2) 10px, var(--site-announcement-bar-stripe-color2) 40px);font-weight:700}.DocSearch-Logo{visibility:hidden}@media screen and (max-width: 996px){.searchBox_node_modules-\@docusaurus-theme-classic-lib-theme-Navbar-Search-styles-module{right:20px}.icon-search{cursor:pointer;background:var(--color-dark-750);border:1px solid var(--color-dark-400);border-radius:1000px;padding:7.5px 10px;transition:all .3s ease-in-out}.icon-search .DocSearch-Search-Icon{width:18px;height:18px}.icon-search .DocSearch-Search-Icon>path{transition:all .3s ease-in-out;stroke:var(--color-gray-900);stroke-width:2px}.icon-search:hover{border-color:var(--color-main-500)}.icon-search:hover .DocSearch-Search-Icon>path{stroke:var(--color-main-500)}.light-theme .icon-search{background-color:rgba(0,0,0,0.0196078431);border-color:rgba(0,0,0,.062745098)}}.pagination-nav{grid-template-columns:1fr}@media only screen and (min-width: 520px){.pagination-nav{grid-template-columns:repeat(2, 1fr)}}.pagination-nav__link{border-color:var(--color-dark-600);background-color:var(--color-dark-700);text-align:center}.light-theme .pagination-nav__link{border-color:var(--color-dark-50);background-color:var(--color-dark-300)}@media only screen and (min-width: 520px){.pagination-nav__link--prev{text-align:left}}.pagination-nav__link--next{grid-column:1}@media only screen and (min-width: 520px){.pagination-nav__link--next{grid-column:2/3;text-align:right}}.pagination-nav__sublabel{color:var(--color-gray-300);font-size:1.4rem}.pagination-nav__label{font-size:1.6rem;font-weight:var(--font-medium)}.dropdown__menu{width:100%;box-shadow:none;border:1px solid var(--color-gray-100)}.agora-version-dropdown{display:flex;position:fixed;bottom:3rem;right:7rem;z-index:1}.agora-version-dropdown__box{padding:1rem 1.5rem 0 2rem;display:flex;align-items:flex-start;border-radius:4px;gap:0px;margin-right:5px;background-color:var(--color-dark-400);border:1px solid var(--color-dark-200)}.agora-version-dropdown__box p{position:relative;color:var(--color-main-200);margin-top:3px;font-weight:500}.agora-version-dropdown__box .dropdown--hoverable{cursor:pointer;display:block}.agora-version-dropdown__box .dropdown--hoverable:hover>a{opacity:.9}.agora-version-dropdown__box .dropdown--hoverable>a{pointer-events:none;font-weight:700;color:var(--color-accent)}.agora-version-dropdown .dropdown>.navbar__link:after{transform:translateY(-50%) rotate(180deg)}.agora-version-dropdown .dropdown__menu{top:unset;background-color:var(--color-dark-400);border:1px solid var(--color-dark-50);bottom:calc(100% - var(--ifm-navbar-item-padding-vertical) + .3rem)}.agora-version-dropdown .dropdown__menu li>.dropdown__link{text-align:center;font-size:1.5rem;display:flex;justify-content:center;align-items:baseline;color:var(--color-main-300)}.agora-version-dropdown .dropdown__menu li>.dropdown__link--active{background-color:var(--color-dark-100)}.agora-version-dropdown .dropdown__menu li>.dropdown__link::before{display:block;content:"v";font-size:1.4rem;padding-right:1px}.agora-version-dropdown .dropdown--hoverable:hover .dropdown__menu,.agora-version-dropdown .dropdown--show .dropdown__menu{transform:translateY(10px)}.light-theme .agora-version-dropdown__box{background-color:var(--color-dark-50);border:1px solid var(--color-gray-800)}.light-theme .agora-version-dropdown__box>a{color:var(--color-main-500)}.light-theme .agora-version-dropdown__box p{color:var(--color-gray-200)}.light-theme .agora-version-dropdown .dropdown__menu li>.dropdown__link{color:var(--color-main-500)}.agora-version-banner{width:100%;background-color:rgba(9,157,253,.062745098);border-bottom:1px solid var(--color-dark-50);text-align:center;padding-top:1rem;padding-bottom:1rem}.agora-version-banner a{color:var(--color-accent);text-decoration:underline}.agora-version-banner p{margin-bottom:0;color:var(--color-main-300)}.light-theme .agora-version-banner a{color:var(--color-main-500)}.light-theme .agora-version-banner p{margin-bottom:0;color:var(--color-gray-300)}.feedbackModalBorderColor{border-color:var(--feedback-modal-border-color)}.light-theme .feedbackModalBorderColor{border-color:var(--color-dark-200)}.modalButtonsBackgroundColor{background:var(--modal-button-background-color)}.light-theme .modalButtonsBackgroundColor{background:var(--color-dark-200)}.feedbackModalBackground{background:#1c1f26;border:1px solid var(--feedback-modal-border-color);color:var(--feedback-modal-font-color)}.feedbackModalFontColor{color:var(--color-gray-100)}.light-theme .feedbackModalFontColor{color:var(--color-black)}.feedbackModalFieldsColor{background-color:#13161c}.light-theme .feedbackModalFieldsColor{background-color:var(--color-dark-200);border-color:var(--color-dark-200)}.light-theme .feedbackModalBackground{background:#fff;border:2px solid var(--color-dark-200);color:#000}.light-theme .feedbackModalSvgIconColor{fill:#000}.feedbackModalSvgIconColor{fill:#fff}.mobile-collapsible{display:none}.plugin-id-docs-help ul.theme-doc-sidebar-menu ul.menu__list{display:none !important}.plugin-id-docs-help .main-wrapper .container{padding-top:20px !important}.plugin-id-docs-help .main-wrapper .container header h1{margin-top:-5px}.plugin-id-docs-help .main-wrapper .container .breadcrumbs{margin-top:-5px}.plugin-id-docs-help .theme-doc-sidebar-container nav{margin-top:20px}.plugin-id-docs-help .theme-doc-sidebar-container .product-selecter+nav{margin-top:0}.plugin-id-docs-help .theme-doc-sidebar-container .product-selecter+nav .menu__list-item-collapsible .menu__link{border:1px solid rgba(0,0,0,0)}.plugin-id-docs-help .theme-doc-sidebar-container .product-selecter+nav .menu__list-item-collapsible .menu__link:hover{background-color:var(--color-dark-700) !important;border-color:var(--color-dark-600) !important}.plugin-id-docs-help .theme-doc-sidebar-container .product-selecter+nav .menu__list-item-collapsible .menu__link--active{background-color:var(--color-dark-700) !important;border-color:var(--color-dark-600) !important}.plugin-id-docs-help .theme-doc-sidebar-container .product-selecter+nav .menu__list-item-collapsible .menu__link--active:hover{background-color:var(--color-dark-600) !important;border-color:var(--color-dark-500) !important}.plugin-id-docs-help .docs-help-page .col a.card{padding:10px 15px !important;padding-bottom:12px !important;box-shadow:none;border-radius:2.5px;background-color:var(--color-dark-700);border:1px solid var(--color-dark-600)}.plugin-id-docs-help .docs-help-page .col a.card svg{width:15px;height:15px;stroke:var(--color-main-500)}.plugin-id-docs-help .docs-help-page .col a.card:hover{border-color:var(--color-main-500)}.plugin-id-docs-help .docs-help-page .col a.card:hover h2{color:var(--color-main-500)}.plugin-id-docs-help .docs-help-page .col a.card h2{margin-bottom:2.5px;font-size:16px;color:var(--color-gray-300);line-height:20px}.plugin-id-docs-help .docs-help-page .col a.card h2.text--truncate{overflow:unset;text-overflow:unset;white-space:unset}.plugin-id-docs-help .docs-help-page .col a.card p{font-size:14px;color:var(--color-gray-800)}.plugin-id-docs-help .docs-help-page article .col--1{text-align:right}.plugin-id-docs-help .docs-help-page article .col--1 svg{width:15px;height:15px;stroke:var(--color-gray-400);transition:var(--transition)}.plugin-id-docs-help .docs-help-page article:nth-last-child(-n+2){margin-bottom:2rem !important}.light-theme .plugin-id-docs-help .theme-doc-sidebar-container .product-selecter+nav .menu__list-item-collapsible .menu__link:hover{border-color:var(--color-dark-50) !important;background-color:var(--color-dark-300) !important}.light-theme .plugin-id-docs-help .theme-doc-sidebar-container .product-selecter+nav .menu__list-item-collapsible .menu__link--active{border-color:var(--color-dark-50) !important;background-color:var(--color-dark-300) !important}.light-theme .plugin-id-docs-help .theme-doc-sidebar-container .product-selecter+nav .menu__list-item-collapsible .menu__link--active:hover{border-color:var(--color-dark-50) !important;background-color:var(--color-dark-500) !important}.light-theme .docs-help-page .col a.card{background-color:var(--color-dark-300);border-color:var(--color-dark-50)}.light-theme .docs-help-page .col a.card p{color:var(--color-gray-500)}@media screen and (max-width: 520px){.col{padding:0 1rem}}.theme-back-to-top-button{background-color:var(--color-main-500) !important;border:1px solid var(--color-main-400)}.theme-back-to-top-button:after{background-color:var(--color-white) !important}code{background-color:var(--color-dark-100);border:1px solid var(--color-dark-50);border-radius:var(--ifm-code-border-radius);font-family:var(--ifm-font-family-monospace);font-size:var(--ifm-code-font-size);padding:1px 4px;color:var(--color-main-300);vertical-align:middle}.light-theme code{color:var(--color-main-400)}.docs-wrapper .markdown header h1{margin-top:4px;font-weight:var(--font-bold)}.docs-wrapper .markdown h2.anchor a{font-weight:var(--font-semibold)}.layout--full{width:100%;margin:0 20px;max-width:1880px}.layout__grid{display:flex}.layout__grid--fixed{min-width:200px}@media only screen and (min-width: 520px){.layout__grid--fixed{min-width:280px}}.layout__grid--fluid{width:calc(100% - 280px)}.beta-callout{margin-top:48px}.beta-callout:hover{border-color:var(--color-main-300)}.beta-callout__title{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem;font-size:1.8rem;line-height:1.6;margin-bottom:5px;font-weight:var(--font-semibold);margin-bottom:24px}.beta-callout__title svg{width:2rem;height:2rem;color:var(--color-main-500)}.beta-callout__title .no-style-link{color:var(--color-gray-300);display:flex;gap:.5rem}.beta-callout__title .no-style-link span{transition:background 300ms ease-in-out}.beta-callout__title .no-style-link:hover{text-decoration:none}.beta-callout__title .no-style-link:hover span{background-color:var(--color-main-500)}.beta-callout__tag{display:inline-block;position:relative;top:1px;font-size:12px;font-weight:var(--font-semibold);border-radius:var(--radius-sm);padding:3px 10px 2px;border-radius:100px;padding-bottom:2px;color:var(--color-dark-750);background-color:var(--color-accent);text-transform:uppercase}.beta-callout .products.products--core .product{min-height:auto}.beta-callout .products.products--core .product__label{font-size:16px}.light-theme .beta-callout__tag{color:var(--color-gray-50)}.breadcrumb-container{margin-bottom:1rem}.breadcrumb-container .breadcrumbs__item{font-weight:var(--font-semibold);color:var(--color-gray-300)}.breadcrumb-container .breadcrumbs__item::after{filter:invert(40%) !important}.breadcrumb-container .breadcrumbs__item>a{font-weight:var(--font-medium);padding:0;margin:0;font-size:14px;font-weight:400;color:var(--color-gray-500)}.breadcrumb-container .breadcrumbs__item>a:hover{color:var(--color-main-500);text-decoration:none}.btn{display:inline-flex;align-items:center;gap:.8rem;border:1px solid rgba(0,0,0,0);text-decoration:none;border-radius:var(--radius-sm);font-weight:var(--font-semibold);transition:var(--transition)}.btn:hover{text-decoration:none;opacity:.9}.btn--rounded{border-radius:100rem}.btn--filled.btn--main{border-color:var(--color-main-500);background-color:var(--color-main-500);color:var(--color-white)}.btn--outlined.btn--main{border-color:var(--color-main-500);background-color:rgba(0,0,0,0);color:var(--color-main-500)}.btn--outlined.btn--main:hover{border-color:var(--color-main-500);background-color:var(--color-main-500);color:var(--color-white)}.btn--filled.btn--light{border-color:var(--color-dark-500);background-color:var(--color-dark-600);color:var(--color-gray-900)}.btn--filled.btn--light:hover{border-color:var(--color-dark-600);background-color:var(--color-dark-700)}.btn--outlined.btn--light{border-color:var(--color-gray-900);background-color:var(--color-dark-600);color:var(--color-gray-900)}.btn--outlined.btn--light:hover{background-color:var(--color-dark-400)}.btn--xsmall{font-size:14px;font-weight:500;padding:5px 8px 6px;line-height:1.4;gap:3px}.btn--xsmall>svg{height:1.5rem;width:1.5rem}.btn--small{font-size:14px;font-weight:500;padding:5px 8px 6px;line-height:1.4;gap:3px}.btn--small>svg{height:1.5rem;width:1.5rem}@media only screen and (min-width: 997px){.btn--small{font-size:15px;font-weight:500;line-height:1.6;padding:5px 12px 7px;gap:.675rem}.btn--small>svg{height:1.4rem;width:1.4rem}}.btn--medium{font-size:1.6rem;padding:.8rem 1.5rem 1rem}.btn--medium svg{height:2rem;width:2rem}.btn--large{gap:1rem;font-size:1.65rem;padding:1rem 2.4rem 1.2rem}.btn--large svg{height:2.4rem;width:2.4rem}.btn--disabled{pointer-events:none;opacity:50%}.light-theme .btn--filled.btn--light{color:var(--color-gray-100);border-color:var(--color-dark-50);background:var(--color-dark-200)}.light-theme .btn--filled.btn--light:hover{background-color:var(--color-dark-500)}.light-theme .btn--outlined.btn--light{color:var(--color-gray-100);border-color:var(--color-gray-300);background:var(--color-dark-800)}.light-theme .btn--outlined.btn--light:hover{background-color:var(--color-dark-200)}.custom-searchbar{display:flex;align-items:center;gap:8px;background:var(--color-dark-750);border:1px solid var(--color-dark-400);padding:8px 12px;border-radius:4px;width:200px;color:var(--color-gray-900);text-decoration:none;transition:var(--transition-sm)}.custom-searchbar__input{background:var(--color-dark-750);outline:none;border:0}.custom-searchbar:hover{border-color:var(--color-main-500);text-decoration:none}.custom-searchbar>svg{width:20px;height:20px}@media screen and (max-width: 997px){.custom-searchbar{width:40px;height:40px;justify-content:center;gap:0;padding:0;border-radius:50%;background-color:var(--color-main-500);border-color:rgba(0,0,0,0)}.custom-searchbar:hover{border-color:rgba(0,0,0,0)}.custom-searchbar span{font-size:0}.custom-searchbar>svg{stroke:var(--color-dark-800)}}.dropdown-container .dropdown{width:100%;max-height:85vh}.dropdown-container .dropdown__disabled{opacity:.75;cursor:not-allowed}.dropdown-container .dropdown button{width:100%;padding:9px 12px;background:var(--color-dark-700);border:1px solid var(--color-gray-900);color:var(--color-gray-900);border-radius:var(--radius-sm);display:flex;align-items:center;gap:10px;font-weight:500;outline:none;transition:border-color .3s ease-in-out;white-space:nowrap}.dropdown-container .dropdown button svg{stroke:var(--color-gray-900) !important}.dropdown-container .dropdown button svg .bscircle,.dropdown-container .dropdown button svg .itw,.dropdown-container .dropdown button svg .ils,.dropdown-container .dropdown button svg .st0,.dropdown-container .dropdown button svg#Layer_1 circle{fill:var(--color-gray-900) !important}.dropdown-container .dropdown button svg#Layer_1 circle.cls-1{fill:rgba(0,0,0,0) !important}.dropdown-container .dropdown button svg .cls-1,.dropdown-container .dropdown button svg .cls-2{stroke:var(--color-gray-900) !important}.dropdown-container .dropdown button span{display:inline-flex;align-items:center;gap:10px}.dropdown-container .dropdown button.dropdown--open{border-color:var(--color-dark-50)}.dropdown-container .dropdown button.dropdown--open svg{transform:rotate(180deg)}.dropdown-container .dropdown button.dropdown--open span svg{transform:rotate(0deg)}.dropdown-container .dropdown button svg{width:20px;height:20px;transition:transform .3s ease-in-out}.dropdown-container .dropdown__link{font-size:1.4rem}.dropdown-container .dropdown__box{justify-content:space-between}.dropdown-container .dropdown .dropdown__box--icon{stroke:var(--color-gray-900) !important}.dropdown-container .dropdown__menu{margin-top:4px;width:100%;min-width:200px;opacity:0;background:var(--color-dark-700);border:1px solid var(--color-dark-100);max-height:400px;overflow-y:scroll;overflow-x:hidden}.dropdown-container .dropdown__menu--show{opacity:1;visibility:visible;pointer-events:all;transform:translateY(-1px)}.dropdown-container .dropdown__menu li button{background-color:rgba(0,0,0,0);border:none;padding-right:32px;color:var(--color-gray-400);border:1px solid rgba(0,0,0,0)}.dropdown-container .dropdown__menu li button:hover{color:var(--color-gray-100);background-color:var(--color-dark-600);border-color:var(--color-dark-500)}.dropdown-container .dropdown__menu li button:hover svg{transform:rotate(0deg)}.dropdown-container .dropdown__menu li button.active{color:var(--color-main-500);background-color:var(--color-dark-600);border-color:var(--color-dark-500);stroke:var(--color-main-500) !important}.dropdown-container .dropdown__menu li button.active .bscircle,.dropdown-container .dropdown__menu li button.active .itw,.dropdown-container .dropdown__menu li button.active .ils,.dropdown-container .dropdown__menu li button.active .st0,.dropdown-container .dropdown__menu li button.active#Layer_1 circle{fill:var(--color-main-500) !important}.dropdown-container .dropdown__menu li button.active#Layer_1 circle.cls-1{fill:rgba(0,0,0,0) !important}.dropdown-container .dropdown__menu li button.active .cls-1,.dropdown-container .dropdown__menu li button.active .cls-2{stroke:var(--color-main-500) !important}.light-theme .dropdown button{border-color:var(--color-gray-800);color:var(--color-gray-300)}.light-theme .dropdown button.dropdown--open{border-color:var(--color-dark-50)}.light-theme .dropdown button svg{stroke:var(--color-gray-300) !important}.light-theme .dropdown button svg .bscircle,.light-theme .dropdown button svg .itw,.light-theme .dropdown button svg .ils,.light-theme .dropdown button svg .st0,.light-theme .dropdown button svg#Layer_1 circle{fill:var(--color-gray-300) !important}.light-theme .dropdown button svg .cls-1,.light-theme .dropdown button svg .cls-2{stroke:var(--color-gray-300) !important}.light-theme .dropdown button>svg,.light-theme .dropdown button .dropdown__box--icon{stroke:var(--color-gray-600) !important}.light-theme .dropdown__menu{border-color:var(--color-dark-50)}.light-theme .dropdown__menu li button:hover{color:var(--color-gray-300);background-color:var(--color-dark-400);border-color:var(--color-dark-200)}.light-theme .dropdown__menu li button.active{color:var(--color-main-500);background-color:var(--color-dark-400);border-color:var(--color-dark-200)}.page-header h1{font-size:2.4rem;color:var(--color-gray-100);font-weight:var(--font-bold);line-height:2.8rem;margin-bottom:.8rem}@media only screen and (min-width: 997px){.page-header h1{font-size:3.2rem;line-height:2.8rem;margin-bottom:1.6rem}}.page-header p{margin-bottom:0;font-size:16px;color:var(--color-gray-500)}.page-header .row{align-items:flex-start}.page-header .row .col:not(:last-child){margin-bottom:2rem}@media only screen and (min-width: 997px){.page-header .row .col:not(:last-child){margin-bottom:0}}.page-header .row .col.col--4{display:flex;justify-content:flex-end}.platform-selecter{display:flex;flex-wrap:wrap;gap:5px;margin-top:1rem !important;margin-bottom:2rem}.product{display:flex;gap:2rem;position:relative;padding:2rem;border-radius:var(--radius-sm);border:1px solid rgba(0,0,0,0);transition:var(--transition)}.product:hover{border-color:var(--color-main-300)}.product__link{position:absolute;top:0;left:0;bottom:0;right:0;z-index:0}.product__label{font-size:1.6rem;line-height:2rem;font-weight:var(--font-medium)}@media only screen and (min-width: 1180px){.product__label{font-size:2rem;line-height:2.4rem}}.product__label small{font-size:12px;font-weight:var(--font-medium);border-radius:var(--radius-sm);padding:1px 5px;padding-bottom:2px;color:var(--color-gray-700);background-color:var(--color-main-50);border:1px solid var(--color-main-200);margin:0 5px}.product__label span{color:var(--color-gray-600);font-size:14px;display:block}.product__icon{width:3.6rem;height:3.6rem}.product__action-icon{transition:var(--transition);color:var(--color-gray-400)}.product__description{color:var(--color-gray-800);line-height:1.5}.product__external-link{position:absolute;top:1rem;right:1rem;width:1.6rem;height:1.6rem;color:var(--color-gray-400)}.light-theme .product__description{color:var(--color-gray-500)}.product-selecter{margin:20px;margin-right:0;margin-bottom:15px}.product-selecter .dropdown__menu{padding:0}.product-selecter__box{padding:4px}.product-selecter__label{padding:8px 12px;background-color:var(--color-dark-750);color:var(--color-gray-800);font-weight:var(--font-bold) !important;font-size:13px;text-transform:uppercase}.product-selecter__label--link{padding:8px;padding-bottom:12px}.product-selecter__label--link a{display:flex;justify-content:space-between;align-items:center;color:var(--color-main-300);font-weight:var(--font-bold) !important}.product-selecter__label--link a:hover,.product-selecter__label--link a.active{color:var(--color-main-500);background-color:rgba(0,0,0,0)}.product-selecter__label--link a svg{width:15px;height:15px}.light-theme .product-selecter__label{background-color:var(--color-dark-100);color:var(--color-gray-500)}.light-theme .product-selecter__label--link{border-bottom:none;background-color:var(--color-main-50)}.light-theme .product-selecter__label--link a{color:var(--color-main-400)}.section,.section2{padding:6rem 0}.section__box:not(:last-child),.section2__box:not(:last-child){margin-bottom:4rem}.section__title,.section__subtitle,.section2__title,.section2__subtitle{color:var(--color-gray-300);margin-bottom:2.4rem;line-height:1}.section2{padding-block-end:3rem;padding-block-start:0rem;margin-bottom:1.3rem}.section2 h1{margin-bottom:3.7rem}.section2__subtitle{margin-bottom:1.4rem;line-height:1}.section2__description{margin-bottom:1.2rem}.tab-selecter{border-radius:5px 5px 0 0}@media(max-width: 996px){.tab-selecter .tabs--block{flex-direction:row}}.tab-selecter .tabs__item{transition:color .3 ease-in-out;font-weight:var(--font-medium)}.tab-selecter .tabs__item--active{background-color:#f0f2f4;border-bottom-width:2px !important;font-weight:var(--font-semibold)}.tab-selecter .tabs__item--active:hover{background-color:rgba(0,0,0,0)}.tab-selecter .tabs__item:hover{color:var(--color-main-500);background-color:rgba(0,0,0,.075)}@media(max-width: 420px){.tab-selecter .tabs__item{font-size:13px}}.theme-toggler.dropdown-container .dropdown__button{background:var(--color-dark-750);border:1px solid var(--color-dark-400);opacity:.9;border-radius:50%;margin-left:3px;margin-top:.5px;padding:9px;display:flex;justify-content:center;align-items:center;cursor:pointer;transition:var(--transition)}.theme-toggler.dropdown-container .dropdown__button:hover{border-color:var(--color-main-500)}.theme-toggler.dropdown-container .dropdown__button:hover svg{stroke:var(--color-main-500) !important}.theme-toggler.dropdown-container .dropdown__button svg{color:var(--color-gray-900);width:20px;height:20px}.theme-toggler.dropdown-container .dropdown .dropdown--open{border-color:var(--color-main-500)}.theme-toggler.dropdown-container .dropdown .dropdown--open svg{stroke:var(--color-main-500) !important}.theme-toggler.dropdown-container .dropdown .dropdown--open svg{transform:rotate(0deg)}.theme-toggler.dropdown-container .dropdown .dropdown--open span svg{transform:rotate(0deg)}.theme-toggler.dropdown-container .dropdown__menu{margin-top:4px;min-width:180px;padding:8px;display:flex;flex-direction:column;gap:8px;background-color:var(--color-dark-500);border:1px solid var(--color-dark-300)}.theme-toggler.dropdown-container .dropdown__menu--active{color:var(--color-main-500);background-color:var(--color-dark-400)}.theme-toggler.dropdown-container .dropdown__menu li{cursor:pointer;display:flex;align-items:center;gap:8px;padding:8px;border-radius:4px}.theme-toggler.dropdown-container .dropdown__menu li:hover{background-color:var(--color-dark-400)}.theme-toggler.dropdown-container .dropdown__menu li svg{width:16px;height:16px}.light-theme .theme-toggler .dropdown__button{background-color:rgba(0,0,0,.0196078431);border-color:var(--color-dark-400)}.light-theme .theme-toggler .dropdown__button:hover{border-color:var(--color-main-500)}.light-theme .theme-toggler .dropdown__menu--active{background-color:var(--color-dark-100)}.light-theme .theme-toggler .dropdown__menu li:hover{background-color:var(--color-dark-100)}.Toastify{--toastify-toast-width: 280px;--toastify-text-color-light: var(--color-black);--toastify-icon-color-info: var(--color-main-500);--toastify-color-progress-info: var(--color-main-500);--toastify-color-light: var(--color-light-200)}.Toastify__toast-theme--light{border:1px solid var(--color-gray-100)}.Toastify__toast{padding:.8rem 2rem;border-radius:.5rem;background-color:unset;color:unset}.Toastify__toast-body{padding:12px 8px !important}.tooltip{position:relative}.tooltip__text{position:absolute;text-align:center;z-index:9999;background-color:var(--color-dark-500);bottom:-52px;padding:4px 8px;display:inline-block;border-radius:4px;max-width:200px;box-shadow:0px 3px 6px rgba(0,0,0,.062745098)}.tooltip__text::after{content:"";position:absolute;z-index:99999;top:-8px;left:50%;transform:translateX(-50%);height:9px;width:16px;background-color:var(--color-dark-500);clip-path:polygon(50% 0%, 0% 100%, 100% 100%)}.typography--body-link{text-decoration:underline;color:var(--color-dark-500)}.typography--body-bold{font-weight:600}.typography--color-main{color:var(--color-main-500)}.typography--color-darker{color:var(--color-black)}.typography--color-dark{color:var(--color-gray-600est)}.typography--color-light{color:var(--color-gray-700)}.typography--color-light-100{color:var(--color-gray-600)}.tour-guide{padding:20px;border-radius:8px;background-color:var(--color-dark-700);border:1px solid var(--color-dark-600);position:relative}.tour-guide__close{position:absolute;top:0px;right:10px;padding:8px;border:none}.tour-guide__close:hover{background-color:rgba(0,0,0,0) !important;color:var(--color-main-500) !important}.tour-guide__content{margin-top:8px;margin-bottom:16px;display:flex;flex-direction:column;gap:4px}.tour-guide__content h3{margin:0}.tour-guide__content p{color:var(--color-gray-50);line-height:1.5}.tour-guide__actions{display:flex;align-items:center;gap:8px;justify-content:flex-end}.reactour__popover{padding:0 !important;margin-top:8px;border-radius:8px;overflow:hidden;background-color:var(--color-dark-700) !important;border:1px solid var(--color-dark-600)}#language-select{background-color:rgba(0,0,0,0);color:var(--color-gray-500);padding:.5em;border-radius:4px;border:1px solid #ccc}#language-select:focus{outline:none;border-color:#666}#language-select option{background-color:#fff;color:#333}#language-select optgroup{font-weight:bold;background-color:#e0e0e0}#language-select option:checked,#language-select option[selected]{background-color:#333;color:#fff}.api-reference .api-reference-product-list{display:grid;grid-gap:1rem;margin-bottom:4rem;margin-top:2rem}@media screen and (min-width: 769px){.api-reference .api-reference-product-list{grid-template-columns:repeat(2, 1fr);grid-gap:2rem}}@media screen and (min-width: 1025px){.api-reference .api-reference-product-list{grid-template-columns:repeat(3, 1fr)}}.api-reference .api-reference-product-list__product{padding:2rem;background-color:var(--color-dark-700);border:1px solid var(--color-dark-600);border-radius:var(--radius-md)}.api-reference .api-reference-product-list__label{color:var(--color-gray-50);font-size:16px;font-weight:600;margin-bottom:16px}.api-reference .api-reference-product-list__versions{display:flex;flex-wrap:wrap;gap:1rem;margin-top:1rem}.api-reference .api-reference-product-list__version{font-weight:500;margin-bottom:0}.light-theme .api-reference .api-reference-product-list__product{background-color:var(--color-dark-700);border-color:var(--color-dark-200)}.light-theme .api-reference .api-reference-product-list__label{color:var(--color-gray-100)}.footer{margin-top:4rem;padding:4rem 0;background-color:var(--color-dark-600)}.footer__copyright{text-align:center;font-weight:500;font-size:1.4rem;margin-block-end:.5rem}@media only screen and (min-width: 520px){.footer__copyright{display:flex;flex-direction:column;justify-content:center;align-items:center}}@media only screen and (min-width: 768px){.footer__copyright{display:flex;flex-direction:row;justify-content:center;align-items:center}}.footer__links{width:90%;max-width:900px;margin:auto;list-style:none;display:flex;flex-wrap:wrap;justify-content:center;gap:0}.footer__links>li{position:relative}.footer__links>li:not(:last-child)::after{content:"·";display:inline-block;padding-inline:5px}.footer__links>li a{color:var(--color-gray-700);font-weight:400;text-decoration:underline;font-weight:500;font-size:1.4rem}.footer__links>li a:hover{color:var(--color-main-500)}.light-theme .footer__links a{color:var(--color-gray-600)}.button.cmp-save-btn:hover,.cc-btn:hover,.cmp-save-btn:hover{background-color:#00c2ff !important;border:none !important;color:#fff !important;padding:0 17px !important}.cc-window.cc-floating{max-width:38em !important}#onetrust-consent-sdk #onetrust-banner-sdk{display:none !important}.cmp-revoke-consent{bottom:0px !important;position:relative !important;padding:10px 0px 10px 0px !important}.cmp-revoke-consent{color:#84888b !important;font-size:14px !important;font-weight:500 !important;text-decoration:none !important;position:relative !important}.cmp-revoke-consent:hover{color:#dee2e5 !important;text-decoration:underline !important}.header{height:60px;position:sticky;top:0;left:0;right:0;z-index:9999}.header__container{display:flex;align-items:center;justify-content:space-between;padding:0 20px;height:50px}.header__brand{display:flex;justify-content:center;align-items:center;gap:10px;margin-right:60px}.header__brand>a{display:flex;align-items:center}.header__brand>a svg{width:auto;height:30px}.header__brand>a h1{font-size:0px}.header__brand-menu-item{color:var(--color-main-50);border-left:1px solid var(--color-main-50);padding-left:10px}@media only screen and (min-width: 768px){.header__brand-menu-item{display:none}}.header__navigation{font-size:15px;visibility:hidden;opacity:0;position:absolute;top:0;transition:top .3s ease-in-out,opacity .5s ease-in-out}@media only screen and (min-width: 768px){.header__navigation{display:flex;align-items:center;justify-content:space-between;flex:1;visibility:visible;opacity:1;position:static}}.header__navigation--responsive{visibility:visible;position:absolute;opacity:1;top:50px;left:0;right:0;padding-left:10px;padding-right:30px;padding-bottom:15px;display:flex;align-items:flex-start;justify-content:flex-start;flex-direction:column;background-color:var(--color-main-900)}@media only screen and (min-width: 768px){.header__navigation--responsive{display:none}}.header__navigation--responsive .header__navigation-menu--left,.header__navigation--responsive .header__navigation-menu--right{flex-direction:column;align-items:flex-start;width:100%}.header__navigation--responsive .header__navigation-menu li{width:100%;border-radius:5px;margin-top:5px;margin-bottom:5px}.header__navigation--responsive .header__navigation-menu li a{margin-left:15px;padding:10px}.header__navigation--responsive .header__navigation-menu li.active{margin-top:10px;margin-bottom:10px}.header__navigation--responsive .header__navigation-menu li.active a{margin-left:5px}.header__navigation--responsive .header__navigation-menu li.action>a{background-color:rgba(0,0,0,0);color:var(--color-main-50)}.header__navigation-menu{padding:0;margin:0;list-style:none;display:flex;justify-content:space-between;align-items:center}.header__navigation-menu li>a{display:inline-block;font-weight:var(--font-regular);color:var(--color-main-50);transition:color .2s ease-in-out;padding:15px 10px;text-decoration:none;position:relative;top:-1px}.header__navigation-menu li>a:hover{color:var(--color-main-300);text-decoration:none}.header__navigation-menu li.active{background-color:var(--color-main-500);margin:0 10px}.header__navigation-menu li.active a{color:var(--color-white)}.header__navigation-menu--right li.action>a{background-color:var(--color-accent);color:var(--color-main-900);padding:5px 15px;padding-bottom:7.5px;margin-left:10px;border-radius:10rem}.header__responsive-button{cursor:pointer !important;width:24px;height:22px;display:flex;align-items:center;justify-content:flex-end;position:relative;top:1px}@media only screen and (min-width: 768px){.header__responsive-button{display:none}}.header__responsive-button:before,.header__responsive-button:after{cursor:pointer;position:absolute;display:block;content:"";height:2px;z-index:1;background-color:var(--color-main-200);opacity:1;border-radius:var(--radius-sm);transform-origin:center;transition:all .3s ease-in-out}.header__responsive-button:before{top:3px;width:20px}.header__responsive-button:after{width:16px;bottom:3px}.header__responsive-button__icon{cursor:pointer;display:block;width:25px;height:2px;background-color:var(--color-main-200);border-radius:var(--radius-sm);z-index:1;transition:all .3s ease-in-out}.header__responsive-button.active:before,.header__responsive-button.active:after{width:24px;transform-origin:center}.header__responsive-button.active:before{top:10px;transform:rotate(45deg)}.header__responsive-button.active:after{bottom:10px;transform:rotate(-45deg)}.header__responsive-button.active .header__responsive-button__icon{transform:translateX(10px);opacity:0}@media only screen and (min-width: 997px){.help-faqs{padding-top:2.5rem}}.help-faqs h2{margin-top:0;margin-bottom:5px;color:var(--color-gray-300)}.help-faqs ul{margin:0;padding:0;display:flex;flex-direction:column;gap:4px}.help-faqs ul li{display:flex;line-height:30px;list-style:none}.help-faqs ul li::before{display:inline-block;content:"‣";padding-right:5px;color:var(--color-gray-600);font-size:22px}.help-faqs ul li a{text-decoration:underline}.help-faqs__link{font-weight:400;font-size:1.5rem;color:var(--color-gray-400)}.help-overview__tickets{margin-block:4rem}.help-overview__ticket{border-bottom:1px solid var(--color-gray-400);margin-block-end:2rem}.help-overview__ticket-title{cursor:pointer;font-weight:400;font-size:15px;line-height:20px;color:var(--color-main-500)}.help-support-tickets__box{border:1px solid var(--color-dark-400);background:var(--color-dark-500);padding:1.5rem;border-radius:2.5px}.help-support-tickets__box h4{font-size:1.8rem;margin-bottom:10px}.help-support-tickets__box:last-child{margin-top:2.4rem}.light-theme .help-support-tickets__box{border:1px solid var(--color-dark-200);background-color:var(--color-dark-400)}.help-topic-list{--ifm-spacing-horizontal: 10px;margin-top:4rem}.help-topic-list h3{margin-bottom:0;color:var(--color-gray-400)}.help-topic-list__wrapper{padding:0 10px}.help-topic-list-card{padding:1rem;min-height:60px;background-color:var(--color-dark-700);border:1px solid var(--color-dark-600);border-radius:var(--radius-sm);position:relative;transition:var(--transition);display:flex;flex-direction:row;justify-content:center;align-items:center}.help-topic-list-card:hover{border-color:var(--color-main-500)}.help-topic-list-card:hover h4{color:var(--color-main-500)}.help-topic-list-card__link{display:block;position:absolute;top:0;left:0;bottom:0;right:0;z-index:0}.help-topic-list-card__info{margin:0;font-weight:var(--font-medium);font-size:15px;line-height:20px;color:var(--color-gray-400)}.light-theme .help-topic-list-card{border-color:var(--color-dark-200);background-color:var(--color-dark-700)}.light-theme .help-topic-list-card:hover{border-color:var(--color-main-500)}.homepage-get-started{display:flex;flex-direction:column;background:linear-gradient(45deg, transparent 49%, var(--color-dark-700) 49% 51%, transparent 51%),linear-gradient(-45deg, transparent 49%, var(--color-dark-700) 49% 51%, transparent 51%);background-size:5em 5em;border-bottom:1px solid var(--color-dark-700)}.homepage-get-started__wrapper{padding-top:6rem;padding-bottom:6rem;background:radial-gradient(circle, rgba(9, 157, 253, 0.1254901961) 0%, rgba(1, 5, 9, 0.3137254902) 30%)}.homepage-get-started__section-title{font-weight:var(--font-medium);color:var(--color-gray-400);margin-bottom:2rem;margin-top:4rem}.homepage-get-started__box{display:flex;justify-content:space-between;gap:2rem;flex-wrap:wrap}.homepage-get-started__box>*{flex-basis:100%}@media only screen and (min-width: 997px){.homepage-get-started__box>*{flex:1}}.homepage-get-started__item{position:relative;background-color:var(--color-dark-700);border:1px solid var(--color-dark-500);border-radius:var(--radius-md);overflow:hidden}.homepage-get-started__item:hover{border:1px solid var(--color-main-800)}.homepage-get-started__item:hover .homepage-get-started__title{color:var(--color-main-500)}.homepage-get-started__item:hover .homepage-get-started__content{color:var(--color-gray-200)}.homepage-get-started__item:nth-child(2) .homepage-get-started__img{box-shadow:0px 1px 15px 1px rgba(8,155,253,.05)}.homepage-get-started__link{position:absolute;top:0;left:0;bottom:0;right:0;z-index:0}.homepage-get-started__img{background:radial-gradient(100% 100% at 50% 100%, #071838 0%, #0c0f14 100%),#1c1f26;display:flex;justify-content:center;align-items:flex-end;height:16rem;transition:var(--transition);border-bottom:1px solid var(--color-dark-500)}.homepage-get-started__img img{height:90%;width:auto}@media only screen and (min-width: 997px){.homepage-get-started__img img{width:90%;height:auto}}@media only screen and (min-width: 1180px){.homepage-get-started__img img{width:80%}}@media only screen and (min-width: 1920px){.homepage-get-started__img img{width:75%}}.homepage-get-started__title{color:var(--color-main-300);padding:0 20px;padding-top:16px;margin-bottom:8px;transition:var(--transition)}.homepage-get-started__content{color:var(--color-gray-400);transition:var(--transition);padding:0 20px;padding-bottom:16px}.light-theme .homepage-get-started__wrapper{background:radial-gradient(circle, rgba(9, 157, 253, 0.1254901961) 0%, rgba(234, 241, 255, 0.4392156863) 50%, rgba(255, 198, 0, 0.0196078431) 100%)}.light-theme .homepage-get-started__item{background-color:var(--color-dark-800);border-color:var(--color-dark-50)}.light-theme .homepage-get-started__item:hover{border:1px solid var(--color-main-300)}.light-theme .homepage-get-started__img{background:radial-gradient(100% 100% at 50% 100%, #e8f6ff 0%, rgba(141, 209, 252, 0.1254901961) 100%);border-color:var(--color-dark-50)}.light-theme .homepage-get-started__title{color:var(--color-gray-100)}.products{display:flex;gap:2rem;flex-wrap:wrap}.products .product__info{font-size:2.2rem}.products .product__label{font-size:1.8rem}.products--core{margin-right:-2rem}.products--core>*{flex-basis:calc(100% - 2rem)}@media only screen and (min-width: 520px){.products--core>*{flex-basis:calc(50% - 2rem)}}@media only screen and (min-width: 997px){.products--core>*{flex-basis:calc(33.3333333333% - 2rem)}}.products--core .product{background:var(--color-dark-700);border:1px solid var(--color-dark-600);align-items:center;min-height:9rem}.products--core .product__info{color:var(--color-gray-300);flex:1;align-items:center;display:flex;gap:2rem;justify-content:space-between}.products--core .product__label{margin-bottom:0}.products--core .product__action-icon{color:var(--color-dark-50)}.products--core .product:hover{border-color:var(--color-main-500)}.products--core .product:hover .product__action-icon{color:var(--color-main-500)}.products--addons,.products--gallery{margin-right:-2rem}.products--addons>*,.products--gallery>*{flex-basis:calc(100% - 2rem)}@media only screen and (min-width: 520px){.products--addons>*,.products--gallery>*{flex-basis:calc(50% - 2rem)}}@media only screen and (min-width: 997px){.products--addons>*,.products--gallery>*{flex-basis:calc(33.3333333333% - 2rem)}}@media only screen and (min-width: 1180px){.products--addons>*,.products--gallery>*{flex-basis:calc(25% - 2rem)}}.products--addons .product,.products--gallery .product{background:var(--color-dark-600);border:1px solid var(--color-dark-500)}.products--addons .product__label,.products--gallery .product__label{color:var(--color-gray-200);margin-bottom:1rem}.products--addons .product:hover,.products--gallery .product:hover{border-color:var(--color-main-500)}.products--addons .product:hover .products--addons .product__label,.products--addons .product:hover .products--gallery .product__label,.products--gallery .product:hover .products--addons .product__label,.products--gallery .product:hover .products--gallery .product__label{color:var(--color-main-500)}.products--marketplace{margin-right:-2rem}.products--marketplace>*{flex-basis:calc(100% - 2rem)}@media only screen and (min-width: 768px){.products--marketplace>*{flex-basis:calc(50% - 2rem)}}.products--marketplace .product{background-color:var(--color-dark-600);border:1px solid var(--color-dark-500)}.products--marketplace .product:hover{border-color:var(--color-main-500)}.products--marketplace .product__label{margin-bottom:1rem;color:var(--color-gray-200)}.products--gallery .product{background-color:var(--color-dark-600);border:1px solid var(--color-dark-500)}.products--gallery .product:hover{border-color:var(--color-main-500)}.light-theme .products .product__action-icon{color:var(--color-gray-700)}.light-theme .products--core .product{background:var(--color-dark-700);border-color:var(--color-dark-200)}.light-theme .products--core .product:hover{border-color:var(--color-main-500)}.light-theme .products--addons .product,.light-theme .products--gallery .product,.light-theme .products--marketplace .product{background:var(--color-dark-600);border-color:var(--color-dark-200)}.light-theme .products--addons .product:hover,.light-theme .products--gallery .product:hover,.light-theme .products--marketplace .product:hover{border-color:var(--color-main-500)}.launch-placeholder{height:83vh;margin:4rem 0;background-color:var(--color-light-200);border-radius:1rem;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4rem}.launch-placeholder__img{text-align:center}.launch-placeholder__img img{width:auto;height:55vh}.navbar{--ifm-navbar-height: auto;padding:8px 20px;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);background-color:rgba(28,31,38,.9);border:1px solid rgba(255,255,255,.1)}.light-theme .navbar{background-color:rgba(255,255,255,.85);border:1px solid rgba(255,255,255,.03)}.light-theme .navbar-sidebar__back svg>path{fill:var(--color-gray-500)}main .navbar__item{display:none}.navbar__title{display:none}.navbar__logo{display:flex;align-items:center;height:auto;position:relative;bottom:-2px}@media only screen and (min-width: 1050px){.navbar__logo{bottom:-1px}}.navbar__logo img{height:30px}.navbar__toggle svg{color:var(--color-white);margin-right:1rem}.light-theme .navbar__toggle svg{color:var(--color-grey-50)}.navbar__brand{margin-right:60px}.navbar__brand img{height:32px}.navbar .navbar__item{height:100%;display:flex;align-items:flex-end;padding:15px 20px;color:var(--color-gray-500);font-weight:var(--font-medium);display:none;transition:var(--transition);gap:6px}.navbar .navbar__item:hover{color:var(--color-gray-50)}@media only screen and (min-width: 1050px){.navbar .navbar__item{display:block}}.navbar .navbar__item svg{position:relative;top:1px;width:15px;height:15px;color:var(--color-main-500)}.navbar>*{font-size:16px !important}.navbar .navbar__link--active{font-weight:var(--font-semibold);color:var(--color-main-500)}.navbar .navbar__link--active:hover{color:var(--color-main-500)}.navbar__inner .DocSearch.DocSearch-Button{min-width:200px;color:var(--color-gray-400);background:var(--color-dark-750);border:1px solid var(--color-dark-400);transition:var(--transition);cursor:pointer;padding:8px;height:40px}.navbar__inner .DocSearch.DocSearch-Button:active,.navbar__inner .DocSearch.DocSearch-Button:focus,.navbar__inner .DocSearch.DocSearch-Button:hover{box-shadow:none;border-color:var(--color-main-500)}.navbar__inner .DocSearch.DocSearch-Button .DocSearch-Button-Keys{gap:4px;min-width:auto}.light-theme .navbar__inner .DocSearch.DocSearch-Button{background:rgba(0,0,0,.0196078431);border:1px solid rgba(0,0,0,.062745098)}.light-theme .navbar__inner .DocSearch.DocSearch-Button:active,.light-theme .navbar__inner .DocSearch.DocSearch-Button:focus,.light-theme .navbar__inner .DocSearch.DocSearch-Button:hover{box-shadow:none;border-color:var(--color-main-500)}.navbar__inner .DocSearch-Button-Container>svg{color:var(--color-gray-400)}.navbar__link--active:hover{color:var(--color-main-500)}.navbar__items--right .action{order:1;display:none}@media only screen and (min-width: 1050px){.navbar__items--right .action{display:block}}.navbar .action>a{font-weight:var(--font-semibold);background-color:var(--color-accent);border-radius:10rem;color:var(--color-dark-800);margin-left:10px;padding:9px 24px 11px;gap:4px;display:flex;align-items:center;text-decoration:none}.navbar .action>a svg{width:16px;height:16px}.light-theme .navbar .action>a{color:var(--color-gray-50)}.navbar__toggle svg{height:29px}.navbar__items--right>[class^=toggle]{display:none}.navbar__items--right>a:first-child{order:1}@media only screen and (max-width: 997px){.navbar__items--right .DocSearch-Button{display:none}.navbar__items--right .icon-search{display:block !important}.navbar__items--right .icon-search svg{color:var(--color-main-500)}}@media only screen and (max-width: 996px){.navbar__items--right .theme-toggler{margin-right:5rem}.navbar__items--right .theme-toggler .dropdown__button{margin-left:0px;margin-top:0px}}.search-bar-icon{background-color:var(--color-dark-750);border:1px solid var(--color-dark-400);opacity:.9;border-radius:50%;margin-left:3px;margin-top:.5px;padding:9px;display:flex;justify-content:center;align-items:center;cursor:pointer;transition:var(--transition)}.search-bar-icon:hover{background-color:var(--color-dark-700);border-color:var(--color-main-500)}.search-bar-icon>svg{color:var(--color-gray-900);width:20px;height:20px}.search-bar-icon>svg:hover{color:var(--color-main-500)}.navbar-sidebar{background-color:var(--color-dark-700);min-height:-moz-fit-content;min-height:fit-content}.navbar-sidebar__brand{display:flex;justify-content:space-between}.navbar-sidebar__close{order:-1;margin-left:0;margin-right:1rem}.navbar-sidebar__close svg{height:14px}.navbar-sidebar__close svg g{stroke:var(--color-gray-400);stroke-width:2px}.navbar-sidebar__back{color:var(--color-gray-50);font-size:1.5rem;font-weight:400;padding:1rem;padding-left:2.5rem;padding-top:1.2rem;background:var(--color-dark-400)}.navbar-sidebar .action{display:block;padding:1rem}.navbar-sidebar .action a{display:inline-block;margin-left:0}@media screen and (max-width: 996px){.navbar-sidebar .action{background-color:var(--color-dark-600);margin-left:8px;border-radius:6px;margin-bottom:10px;text-align:center;width:96%;padding:16px}}.navbar-sidebar__item{padding:0 1rem 1rem}.navbar-sidebar__item:last-child{padding:0}.navbar-sidebar__item:last-child>ul{padding:0px 1rem 1rem 3.5rem}.navbar-sidebar__item:last-child .menu__list-item .menu__link:focus{color:var(--color-main-500)}.navbar-sidebar__item:last-child .menu__list-item .menu__link--active{background:var(--color-dark-500)}.navbar-sidebar__item .menu__list{overflow-y:auto;max-height:calc(100vh - 92px)}.navbar-sidebar__item .menu__list-item .menu__link{padding:1rem;color:var(--color-gray-500);border-radius:.5rem;font-size:1.5rem;font-weight:400}@media screen and (max-width: 996px){.navbar-sidebar__item .menu__list-item .menu__link{margin:16px 8px;background:var(--color-dark-500);border:1px solid var(--color-dark-50);padding:12px 20px}.navbar-sidebar__item .menu__list-item .menu__link span{display:flex;align-items:center;flex-direction:row-reverse;gap:4px}.navbar-sidebar__item .menu__list-item .menu__link svg{width:16px;height:16px}}.navbar-sidebar__item .menu__list-item .menu__link--active{color:var(--color-main-500)}@media screen and (max-width: 996px){.theme-doc-sidebar-menu .menu__list-item .menu__link{margin:8px 0;background:unset;padding:10px}}.menu__list-item--collapsed .menu__link--sublist:after,.menu__list-item--collapsed .menu__caret:before{transform:scale(0.9) rotateZ(90deg)}@media only screen and (max-width: 996px){.menu__link--sublist-caret:after{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9ImZlYXRoZXIgZmVhdGhlci1jaGV2cm9uLWRvd24iPjxwb2x5bGluZSBwb2ludHM9IjYgOSAxMiAxNSAxOCA5Ij48L3BvbHlsaW5lPjwvc3ZnPg==)}}@media only screen and (max-width: 996px){.light-theme .menu__link--sublist-caret:after{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImdyYXkiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWNoZXZyb24tZG93biI+PHBvbHlsaW5lIHBvaW50cz0iNiA5IDEyIDE1IDE4IDkiPjwvcG9seWxpbmU+PC9zdmc+)}}.navbar-sidebar .menu__list-item--collapsed .menu__link--sublist:after{transform:scale(0.9) rotateZ(270deg)}.preferred-search-results{word-wrap:break-word;margin-top:8px;margin-bottom:0px}.preferred-search-results__title.typography{font-size:18px;line-height:1.2;font-weight:600;color:var(--color-gray-200)}.preferred-search-results__items{margin-top:15px;margin-bottom:20px;gap:15px;display:flex;flex-direction:column}.preferred-search-results__item h3.typography{font-size:16px;line-height:1.3;margin-bottom:8px;font-weight:var(--font-semibold);color:var(--color-gray-500)}.preferred-search-results__links{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:5px}.preferred-search-results__link>a{display:flex;align-items:flex-start;gap:8px;font-size:14px;transition:var(--transition);color:var(--color-gray-200)}.preferred-search-results__link>a span.text{display:block;word-break:break-word;white-space:pre-line;overflow-wrap:break-word;-ms-word-break:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.preferred-search-results__link>a span.icon{display:flex;flex-direction:row;justify-content:center;align-items:center;padding:3px;background-color:var(--color-dark-200);border-radius:50%;border:1px solid var(--color-dark-50)}.preferred-search-results__link>a span.icon svg{color:var(--color-main-500);width:12px;height:12px}.preferred-search-results__link>a:hover span.text{text-decoration:underline}.preferred-search-results__link>a:hover span.icon{background-color:var(--color-main-500);border:1px solid var(--color-main-500)}.preferred-search-results__link>a:hover span.icon svg{color:var(--color-white)}.preferred-search-results__help{font-size:14px !important;line-height:1.3;padding-top:4px;color:var(--color-gray-300);border-top:1px solid var(--color-dark-50)}.preferred-search-results__help a{font-weight:600}.product-overview__header{display:flex;justify-content:space-between;margin-top:1rem}.product-overview__header>*:first-child{flex:2;margin-bottom:1.875rem}.product-overview__content-box{display:flex;gap:2rem;flex-direction:column}@media only screen and (min-width: 1025px){.product-overview__content-box{flex-direction:row}}.product-overview__content-box+h2{margin-top:2rem;color:var(--color-gray-300)}.product-overview__content{flex-basis:66.66%}.product-overview__img{flex-shrink:0}@media only screen and (min-width: 1025px){.product-overview__img{flex-basis:33.33%}}.product-overview__action-container{display:flex;flex-direction:column;gap:.65rem;margin-top:3rem}@media only screen and (min-width: 520px){.product-overview__action-container{gap:1rem}}.product-overview__action-groups{display:flex;flex-wrap:wrap;gap:.65rem}@media only screen and (min-width: 520px){.product-overview__action-groups{gap:1rem}}.product-overview__action-groups .btn{justify-content:center;align-items:center}.product-overview__action-groups .btn--medium{font-size:14px;padding:5px 8px}@media only screen and (min-width: 997px){.product-overview__action-groups .btn--medium{font-size:1.6rem;padding:1rem 1.5rem}}.product-overview__features{display:flex;flex-wrap:wrap}@media only screen and (min-width: 1025px){.product-overview__features.grid-3{gap:2rem}}.product-overview__features.grid-3>*:nth-child(odd){padding-right:0px}@media only screen and (min-width: 768px){.product-overview__features.grid-3>*:nth-child(odd){padding-right:1rem}}@media only screen and (min-width: 1025px){.product-overview__features.grid-3>*:nth-child(odd){padding:0px}}.product-overview__features.grid-3>*:nth-child(even){padding-left:0px}@media only screen and (min-width: 768px){.product-overview__features.grid-3>*:nth-child(even){padding-left:1rem}}@media only screen and (min-width: 1025px){.product-overview__features.grid-3>*:nth-child(even){padding:0px}}@media only screen and (min-width: 768px){.product-overview__features.grid-3>*{width:50%}}@media only screen and (min-width: 1025px){.product-overview__features.grid-3>*{flex-basis:calc(33.33% - 2rem);width:auto}}.product-overview__features.grid-2>*{flex-basis:calc(50% - 2rem)}.product-overview__feature-item h4{font-size:1.6rem;margin-bottom:.5rem;color:var(--color-main-300)}.product-overview__feature-item p{margin-bottom:3rem;color:var(--color-gray-300)}.light-theme .product-overview__feature-item h4{color:var(--color-gray-200)}html[class$="/overview/product-overview"] .markdown h1:first-child{position:absolute;left:-9999px}html[class$="/overview/product-overview"] .product-overview h2:first-child{font-weight:400;font-size:3.2rem;line-height:3rem}@media(min-width: 997px){html[class$="/overview/product-overview"] .row>.col{max-width:100% !important}}html[class$="/overview/product-overview"] .platform-selecter{display:none}html[class$="/overview/core-concepts"] .markdown h1:first-child{margin-top:.75rem}.sdks-list-card{height:100%;padding:1.5rem;border:1px solid var(--color-dark-600);background:var(--color-dark-700);border-radius:var(--radius-md)}.sdks-list-card--all{border:1px solid var(--color-dark-100);background:var(--color-main-50)}.sdks-list-card--community{border:1px solid var(--color-gray-100)}.sdks-list-card--all,.sdks-list-card--community{padding:0}.sdks-list-card--all .sdks-list-card__wrapper,.sdks-list-card--community .sdks-list-card__wrapper{display:flex;flex-direction:row;justify-content:center;align-items:strech;position:relative;min-height:7.5rem}.sdks-list-card--all .sdks-list-card__link,.sdks-list-card--community .sdks-list-card__link{display:block;position:absolute;top:0;left:0;bottom:0;right:0;z-index:0}.sdks-list-card--all .sdks-list-card__info__label,.sdks-list-card--community .sdks-list-card__info__label{margin:0}.sdks-list-card__wrapper{display:flex;flex-direction:row;gap:1.5rem}.sdks-list-card--core .core{display:flex;flex-direction:row;align-items:center;gap:11px;padding:1.5rem}@media only screen and (min-width: atMediumMd){.sdks-list-card--core .core{padding-right:7rem}}.sdks-list-card__icon{width:3.6rem;height:3.6rem}.sdks-list-card__info{width:100%;display:flex;flex-direction:column;gap:16px}.sdks-list-card__info__header{display:flex;align-items:center;justify-content:space-between}.sdks-list-card__info__header div{display:flex;align-items:center;gap:12px}.sdks-list-card__info__label{margin:0px;font-weight:var(--font-semibold);font-size:20px;line-height:24px;color:var(--color-gary-800)}.sdks-list-card__info__description{margin-block:0px;color:var(--color-gray-800)}.sdks-list-card__info__actions{margin-top:8px;display:flex;flex-direction:row;justify-content:flex-end;align-items:center;gap:.5rem;flex-wrap:wrap;text-align:right}@media only screen and (min-width: atExtraSmall){.sdks-list-card__info__actions{flex-wrap:wrap}}.light-theme .sdks-list-card{padding:1.5rem;background-color:var(--color-dark-700);border-color:var(--color-dark-200)}.light-theme .sdks-list-card__info__label,.light-theme .sdks-list-card__info__description{color:var(--color-gray-300)}.sdks-platform-list{margin-top:4rem}.sdks-platform-list h3{margin-bottom:0}.sdks-platform-list>.row>.col{padding:var(--ifm-spacing-horizontal)}.sdks-product-list{margin-top:4rem}.sdks-product-list h3{margin-bottom:0}.sdks-product-list>.row>.col{padding:var(--ifm-spacing-horizontal)}.sdks-version-selecter .dropdown{width:100%}.sdks-version-selecter .dropdown button{font-size:14px;padding:8px;padding-left:8px;padding-right:4px;background-color:var(--color-dark-400);border-color:var(--color-dark-300)}.sdks-version-selecter .dropdown button:hover{border-color:var(--color-dark-50)}.light-theme .sdks-version-selecter .dropdown>button{border-color:var(--color-dark-100);background:var(--color-dark-400)}.searchbar-modal{--docsearch-modal-width: 720px;--docsearch-searchbox-height: 42px;-webkit-backdrop-filter:blur(1px);backdrop-filter:blur(1px);background-color:rgba(0,0,0,.5843137255);height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:9999}.searchbar-modal__wrapper{position:absolute;width:var(--docsearch-modal-width);left:50%;transform:translateX(-50%);overflow:hidden;top:68px;z-index:202;background-color:var(--color-dark-500);border-radius:6px;border-bottom:1px solid var(--color-dark-200)}.searchbar-modal__wrapper .typography{font-size:15px;font-weight:600;margin-bottom:0;display:flex;justify-content:space-between;align-items:center;gap:4px;color:var(--color-dark-500)}.searchbar-modal__wrapper .typography svg{width:15px;height:15px;fill:var(--color-accent);stroke:var(--color-accent);stroke-width:1px}.searchbar-modal__header{display:flex;justify-content:space-between;align-items:center;padding:10px 12px;background-color:var(--color-dark-400);border-bottom:1px solid var(--color-dark-50)}.searchbar-modal__header .typography{color:var(--color-main-500)}.searchbar-modal__header-action{display:flex;flex-direction:row;justify-content:center;gap:5px}.searchbar-modal__header-action .dropdown__menu{overflow:hidden}.searchbar-modal__header-dropdown{display:flex;align-items:center;gap:10px}.searchbar-modal__header-dropdown p.typography{font-size:13px;font-weight:var(--font-regular)}.searchbar-modal__results{display:flex}.searchbar-modal__results>*:first-child{flex:3}.searchbar-modal__results>*:last-child{flex:2}.searchbar-modal__results-box{position:relative}.searchbar-modal__results-box .dropdown-container{position:absolute;top:14px;right:16px;z-index:111}.searchbar-modal__results-box button.dropdown__box{display:flex;align-self:center;justify-content:space-between;font-size:15px;gap:2.5px;border:none;background-color:var(--color-dark-200);padding:8px 6px;padding-top:7px}.searchbar-modal__results-box button.dropdown__box svg{stroke:var(--color-main-500);width:16px;position:relative;top:2px}.searchbar-modal__results-box ul.dropdown__menu{min-width:120px;left:unset;right:-9px}@media screen and (min-width: 746px){.searchbar-modal__results-box ul.dropdown__menu{right:-3px}}.searchbar-modal__preferred{background-color:var(--color-dark-500);padding:8px 12px;max-height:calc(var(--docsearch-modal-height));overflow-y:auto}.searchbar-modal__preferred h2.typography{font-size:16px;margin-bottom:5px;color:var(--color-main-300);justify-content:flex-start}.searchbar-modal .DocSearch-Container{background-color:rgba(0,0,0,0);height:unset;left:unset;position:unset;top:unset;width:420px;height:100%;max-width:420px;border-right:1px solid var(--color-dark-50)}.searchbar-modal .DocSearch-Container .DocSearch-Form{background-color:var(--color-dark-200)}.searchbar-modal .DocSearch-Container .DocSearch-Modal{margin:0;background:var(--color-dark-750);box-shadow:none;display:flex;height:100%;justify-content:space-between}.searchbar-modal .DocSearch-Container .DocSearch-Input{width:calc(100% - 124px);flex:none;font-size:15px;color:var(--color-gray-100)}.searchbar-modal .DocSearch-Container .DocSearch-Footer{--docsearch-footer-height: 48px;box-shadow:none;border-radius:0;flex-direction:row;justify-content:flex-start;border-top:1px solid var(--color-dark-50);background-color:var(--color-dark-500)}.searchbar-modal .DocSearch-Container .DocSearch-Footer .DocSearch-Commands-Key{background:rgba(255,255,255,.062745098);border:1px solid var(--color-dark-50);box-shadow:none}.searchbar-modal .DocSearch-Container .DocSearch-Footer .DocSearch-Commands-Key svg{color:var(--color-gray-300)}.searchbar-modal .DocSearch-Container .DocSearch-Search-Icon{width:18px;height:18px}.searchbar-modal .DocSearch-Container .DocSearch-Dropdown{flex:1}.searchbar-modal .DocSearch-Container .DocSearch-Logo{display:none}.searchbar-modal .DocSearch-Container .DocSearch-Reset,.searchbar-modal .DocSearch-Container .DocSearch-Cancel{display:none}.searchbar-modal .DocSearch-Container .DocSearch-NoResults-Prefill-List::after{content:"Trying changing the filter";position:relative;top:-10px;color:var(--color-gray-600)}.searchbar-modal .DocSearch-Container .DocSearch-NoResults-Prefill-List p,.searchbar-modal .DocSearch-Container .DocSearch-NoResults-Prefill-List ul{display:none}.searchbar-modal .DocSearch-Container .DocSearch-Hit-Container,.searchbar-modal .DocSearch-Container .DocSearch-Hit>a{background-color:var(--color-dark-300);box-shadow:none}.searchbar-modal .DocSearch-Container .DocSearch-Hit>a{border:1px solid var(--color-dark-50)}.searchbar-modal .DocSearch-Container .DocSearch-Hit[aria-selected=true] .DocSearch-Hit-Container,.searchbar-modal .DocSearch-Container .DocSearch-Hit[aria-selected=true]>a{background-color:var(--color-dark-100)}.searchbar-modal .DocSearch-Container .DocSearch-Hit[aria-selected=true] .DocSearch-Hit-Container .DocSearch-Hit-title,.searchbar-modal .DocSearch-Container .DocSearch-Hit[aria-selected=true]>a .DocSearch-Hit-title{color:var(--color-gray-300)}.searchbar-modal .DocSearch-Container .DocSearch-Hit[aria-selected=true] .DocSearch-Hit-title{color:var(--color-main-300) !important}.searchbar-modal .DocSearch-Container .DocSearch-Hit-title{color:var(--color-gray-300)}.searchbar-modal .DocSearch-Container .DocSearch-Hit-path{color:var(--color-gray-500)}.searchbar-modal .DocSearch-Container .DocSearch-Hit-source{background-color:var(--color-dark-500)}.light-theme.searchbar-modal .searchbar-modal__wrapper,.light-theme.searchbar-modal .searchbar-modal__preferred,.light-theme.searchbar-modal .DocSearch-Hit-source{background-color:var(--color-dark-800)}.light-theme.searchbar-modal .searchbar-modal__header-action button:last-child{border:1px solid var(--color-gray-700)}.light-theme.searchbar-modal .searchbar-modal__header-action button:last-child:hover{border-color:var(--color-main-500)}.light-theme.searchbar-modal .preferred-search-results__title{color:var(--color-gray-200)}.light-theme.searchbar-modal .DocSearch-Hit-title{color:var(--color-gray-300) !important}.light-theme.searchbar-modal mark{font-style:italic}.light-theme.searchbar-modal .DocSearch-Hit[aria-selected=true] .DocSearch-Hit-icon,.light-theme.searchbar-modal .DocSearch-Hit[aria-selected=true] mark,.light-theme.searchbar-modal .DocSearch-Hit[aria-selected=true] svg{color:var(--color-main-500) !important}.light-theme.searchbar-modal .DocSearch-Hit[aria-selected=true] .DocSearch-Hit-title{color:var(--color-gray-300) !important}.light-theme.searchbar-modal .DocSearch-Hit[aria-selected=true] .DocSearch-Hit-path{color:var(--color-gray-500) !important}.light-theme.searchbar-modal .DocSearch-Commands-Key{background:#fff !important}.searchpage__placeholder{display:flex;justify-content:center;align-items:center;height:30vh;color:var(--color-gray-400);font-size:20px;text-align:center;line-height:3rem}.beta-search-tag{background-color:var(--color-main-500);color:var(--color-dark-500);padding:0 4px;padding-bottom:1px;border-top-right-radius:4px;border-bottom-left-radius:4px;font-size:11px;line-height:1.4;font-weight:var(--font-bold);margin-left:4px;position:absolute;top:0;right:0}.search-filter-category{display:flex;flex-direction:column;flex:1;color:var(--color-gray-600)}.search-filter-category_label{font-size:14px;line-height:20px;margin-bottom:8px}.search-filters{position:sticky;top:0;min-width:220px;height:calc(100vh - 70px);overflow-y:auto;padding-right:10px;padding-bottom:30px}.search-filters::-webkit-scrollbar{width:8px;background-color:var(--color-dark-500)}.search-filters::-webkit-scrollbar-thumb{border-radius:1rem;background-color:var(--color-dark-50)}.search-filters__options-toggle{display:inline-flex;align-items:center;gap:5px;font-size:15px;background-color:rgba(0,0,0,0);color:var(--color-main-500);outline:none;border:none;position:relative;margin-left:28px}.search-filters__options-toggle::after{content:"";display:inline-block;height:1px;z-index:111;width:20%;right:0;top:55%;position:absolute;background-color:var(--color-dark-100)}.search-filters__options-toggle svg{width:16px;height:16px}.search-filters__header{position:sticky;top:0;z-index:999;background-color:var(--color-dark-750);display:flex;justify-content:space-between;align-items:center;padding-bottom:10px;border-bottom:1px solid var(--color-dark-50);box-shadow:0 1px 1px rgba(0,0,0,.05)}.search-filters__header h3{margin-bottom:0;font-size:18px;line-height:1;font-weight:var(--font-semibold)}.search-filters__reset{background:rgba(0,0,0,0);border:none;outline:none;font-size:15px;font-weight:400;line-height:1;color:var(--color-main-500)}.search-filters__reset:hover{color:var(--color-main-500)}.search-filters__body{margin-top:20px;display:flex;flex-direction:column;gap:20px}.search-filters__section-header{display:flex;justify-content:space-between;align-items:center;padding-bottom:5px;margin-bottom:10px;border-bottom:1px solid var(--color-dark-50)}.search-filters__section-header h4{margin-bottom:0;font-size:16px;color:var(--color-gray-500)}.search-filters__options{display:flex;flex-direction:column;gap:10px}.search-filters__option [type=radio]:checked,.search-filters__option [type=radio]:not(:checked){position:absolute;left:-9999px}.search-filters__option [type=radio]:checked+label,.search-filters__option [type=radio]:not(:checked)+label{position:relative;padding-left:28px;cursor:pointer;line-height:18px;display:inline-block}.search-filters__option [type=radio]:checked+label:before,.search-filters__option [type=radio]:not(:checked)+label:before{content:"";position:absolute;left:0;top:-1px;width:16px;height:16px;border:1px solid var(--color-main-500);border-radius:100%;background:var(--color-dark-500)}.search-filters__option [type=radio]:checked+label:after,.search-filters__option [type=radio]:not(:checked)+label:after{content:"";width:10px;height:10px;background:var(--color-main-500);position:absolute;top:3px;left:4px;border-radius:100%;transition:all .2s ease}.search-filters__option [type=radio]:not(:checked)+label:after{opacity:0;transform:scale(0)}.search-filters__option [type=radio]:checked+label:after{opacity:1;transform:scale(1)}.search-filters__option label{font-size:15px;font-weight:400;color:var(--color-gray-200)}.light-theme .search-filters::-webkit-scrollbar-thumb{border-radius:1rem;background-color:var(--color-main-300)}.light-theme .search-filters label{color:var(--color-gray-200)}.docs-search-page{width:100%}.docs-search-page>h1{font-size:20px;font-weight:600}.docs-search-page>.row>.col{padding:4px}.docs-search-page .search-page-form{position:relative}.docs-search-page .search-page-form__beforeicon{position:absolute;top:10px;left:12px}.docs-search-page .search-page-form input{width:100%;padding:9px 44px;background:var(--color-dark-700);border:1px solid var(--color-gray-900);color:var(--color-gray-600);border-radius:var(--radius-sm);font-weight:500;outline:none;transition:border-color .3s ease-in-out;white-space:nowrap}.docs-search-page .search-page-form input:hover,.docs-search-page .search-page-form input:focus{border-color:var(--color-main-500)}.docs-search-page .search-page-form__aftericon{position:absolute;top:10px;right:12px;background:rgba(0,0,0,0);outline:none;border:none}.docs-search-page .search-page-form__aftericon svg{fill:var(--color-dark-400)}.docs-search-page .search-page-result__heading{margin-bottom:16px}.docs-search-page .search-page-result__group{max-width:100%}@media screen and (max-width: 768px){.docs-search-page .search-page-result__group{padding-right:8px}}.docs-search-page .search-page-result__group-meta{display:flex;justify-content:space-between;margin-bottom:4px}.docs-search-page .search-page-result__group .infinite-scroll-component{display:flex;flex-wrap:wrap;gap:8px;margin-right:-8px;margin-bottom:32px;margin-top:16px}.docs-search-page .search-page-result__group .infinite-scroll-component ul{list-style:none;margin:0;padding:0;display:flex}.docs-search-page .search-page-result__group .infinite-scroll-component ul li{display:flex;flex-direction:row;color:var(--color-gray-400);font-size:13px}.docs-search-page .search-page-result__group .infinite-scroll-component ul li:not(:last-child)::after{content:"·";display:block;padding:0 4px;font-size:16px;font-weight:var(--font-bold)}.docs-search-page .search-page-result__group .infinite-scroll-component .result-label{display:inline-block;background:var(--color-dark-600);border:1px solid var(--color-main-500);font-size:12px;font-weight:var(--font-semibold);padding:0 6px;border-radius:4px;margin:0;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;overflow:hidden;text-overflow:ellipsis;white-space:normal}.docs-search-page .search-page-result__group .infinite-scroll-component mark{color:var(--color-main-500);border-radius:2px;font-style:italic;background:rgba(0,0,0,0)}.docs-search-page .search-page-result__group .infinite-scroll-component article{position:relative;border-radius:4px;margin-bottom:0px !important;padding:12px;width:100%;max-width:768px}@media screen and (min-width: 768px){.docs-search-page .search-page-result__group .infinite-scroll-component article{width:calc(50% - 8px);flex-basis:calc(50% - 8px);max-width:432px}}.docs-search-page .search-page-result__group .infinite-scroll-component article h2{font-size:16px;margin-bottom:0;line-height:1.2;word-wrap:break-word;font-weight:500;color:var(--color-gray-50);max-width:85%}.docs-search-page .search-page-result__group .infinite-scroll-component article p{font-size:13px;color:var(--color-gray-500);margin-top:0;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;text-overflow:ellipsis;white-space:wrap;font-style:normal;margin-bottom:4px}.docs-search-page .search-page-result__wrapper{display:flex;gap:24px;align-items:flex-start;flex-direction:row-reverse;position:relative;z-index:0}@media screen and (max-width: 996px){.docs-search-page .search-page-result__wrapper{flex-direction:column-reverse}}.docs-search-page .search-page-result__wrapper>div:first-child{flex:1}.docs-search-page .search-page-result__wrapper>.custom-search-result{width:100%;flex:1}.docs-search-page .search-page-result__wrapper div:first-child+.custom-search-result{max-width:320px;word-wrap:break-word}@media screen and (max-width: 996px){.docs-search-page .search-page-result__wrapper div:first-child+.custom-search-result{max-width:100%}}.docs-search-page .custom-search-result{position:sticky;top:80px;background-color:var(--color-dark-700);border:1px solid var(--color-dark-400);padding:16px;border-radius:8px;margin-top:16px}@media screen and (max-width: 996px){.docs-search-page .custom-search-result{position:relative;top:0}}.docs-search-page .custom-search-result__header{font-size:16px;font-weight:var(--font-semibold);color:var(--color-gray-50)}.docs-search-page .custom-search-result__box{margin-bottom:16px}.docs-search-page .custom-search-result__box__label{font-weight:var(--font-semibold);font-size:14px;display:inline-block;padding:0px 8px;border-radius:4px;background-color:var(--color-dark-400);border:1px solid var(--color-main-800);color:var(--color-main-500)}.docs-search-page .no-result-found{display:flex;justify-content:center;align-items:center;flex:1;width:100%;font-size:18px;text-align:center;padding:64px;background:var(--color-dark-600);border:1px solid var(--color-light-600);border-radius:4px;height:480px}.docs-search-page .search-page-heading{display:flex;justify-content:space-between;align-items:center;gap:1rem;margin-top:5px}.docs-search-page .search-page-heading h1{margin-top:16px;margin-bottom:32px;flex-basis:70%;line-height:.4;font-weight:var(--font-medium);font-size:28px}@media screen and (max-width: 1440px){.docs-search-page .search-page-heading h1{font-size:2.8rem}}@media screen and (max-width: 1080px){.docs-search-page .search-page-heading h1{flex-basis:70%;line-height:1.2;font-size:2.4rem;margin-top:8px;margin-bottom:16px}}@media screen and (max-width: 420px){.docs-search-page .search-page-heading h1{font-size:1.8rem}}@media screen and (max-width: 380px){.docs-search-page .search-page-heading h1{font-size:1.6rem}}.docs-search-page .search-page-heading button{display:flex;align-items:center;justify-content:center;font-size:14px}.docs-search-page .search-page-heading button svg{display:inline-block;height:14px;width:14px}@media screen and (min-width: 997px){.docs-search-page .search-page-heading button{display:none}}.docs-search-page .search-page-filter-container{display:flex;gap:12px;flex-direction:column;flex:1;border:1px solid var(--color-dark-50);width:100%;margin-bottom:16px;border-radius:8px;padding:32px}@media screen and (max-width: 720px){.docs-search-page .search-page-filter-container{padding:16px}}.docs-search-page .search-page-filter-container .dropdown__box>svg{width:18px;height:18px}.docs-search-page .search-page-filter-container__header{display:flex;flex-direction:row;justify-content:space-between;margin-top:8px}.docs-search-page .search-page-filter-container__header-label{display:inline-block;font-size:18px;line-height:28px;letter-spacing:-0.18px;font-weight:600}.docs-search-page .search-page-filter-container__header-reset{background:rgba(0,0,0,0);border:none;outline:none;font-size:14px;font-weight:600;line-height:22px;color:var(--color-main-500)}.docs-search-page .search-page-filter-container__content{display:flex;flex-direction:row;justify-content:space-between;gap:16px;flex-wrap:wrap}.docs-search-page .search-page-filter-container__content>div{flex-basis:calc(25% - 48px)}@media screen and (max-width: 720px){.docs-search-page .search-page-filter-container__content>div{flex-basis:calc(50% - 32px)}}@media screen and (max-width: 420px){.docs-search-page .search-page-filter-container__content>div{flex-basis:100%}}.docs-search-page .search-page-filter-container__content-category{display:flex;flex-direction:column}.docs-search-page .search-page-content-filter-area{display:flex;align-items:center}.docs-search-page .search-page-content-filter-area__heading{font-size:16px;font-weight:semibold;top:5px;position:relative}.docs-search-page .search-page-content-filter-area__list{display:flex;align-items:center}.docs-search-page .filter-column{display:none}@media screen and (min-width: 997px){.docs-search-page .filter-column{display:block}}.docs-search-page article em{background-color:var(--color-dark-100);border:1px solid var(--color-dark-50);color:var(--color-main-500);font-weight:var(--font-semibold);display:inline-block;padding:0 2px;border-radius:4px;margin:0 2px}.docs-search-page__result-count{font-size:16px !important;font-weight:400 !important;color:var(--color-gray-400)}.docs-search-page__result-count strong{color:var(--color-main-500)}@media screen and (max-width: 520px){.docs-search-page__result-count p{padding-left:10px}}.docs-search-page span.search-result-match{background:var(--color-main-200);border-radius:2.5px;padding:1px 2px;padding-right:0}.docs-search-page main>h2{font-size:16px;line-height:1.2;margin-bottom:0;font-weight:500;color:var(--color-main-500);margin-top:20px;margin-bottom:10px;border-bottom:1px solid var(--color-dark-400);padding-bottom:8px}.docs-search-page article{border:1px solid var(--color-dark-100);position:relative;transition:all .5s ease-in-out}.docs-search-page article:hover{border:1px solid var(--color-main-300)}.docs-search-page article a{display:block;position:absolute;top:0;left:0;right:0;bottom:0;z-index:999}.docs-search-page article>p{color:var(--color-gray-300);font-weight:400;font-size:16px;font-style:normal}.docs-search-page .breadcrumbs{margin-bottom:2.5px}.docs-search-page .breadcrumbs__item{color:var(--color-main-300);font-size:14px}.docs-search-page.container{max-width:768px}.docs-search-page__form{--ifm-spacing-horizontal: 0;position:relative;width:100%}.docs-search-page__filters{margin-top:5px;margin-bottom:15px;--ifm-spacing-horizontal: 0}.docs-search-page .search-platform-selecter{min-width:220px}.docs-search-page .search-product-selecter{transition:all .3s ease-in-out;opacity:1;min-width:220px}.docs-search-page .search-product-selecter--hide{min-width:0px;transform:translateX(50%);opacity:0;pointer-events:none}.docs-search-page .search-product-selecter .dropdown__menu{overflow-x:hidden}.docs-search-page .docs-search-page__form input{background-color:var(--color-dark-300);border:1px solid var(--color-dark-50);color:var(--color-gray-100);border-radius:2.5px}@media only screen and (max-width: 996px){.docs-search-page .docs-search-page__form input{max-width:100% !important}}.docs-search-page .breadcrumbs__item:not(:last-child):after{filter:invert(50%)}.light-theme .docs-search-page .search-page-form input{width:100%;color:var(--color-gray-50)}.light-theme .docs-search-page .custom-search-result__box__label{border-color:var(--color-dark-50)}.light-theme .docs-search-page .no-result-found{background:var(--color-light-200)}.light-theme .docs-search-page .search-page-heading h1{color:var(--color-gray-400)}.light-theme .docs-search-page .breadcrumbs__item{color:var(--color-main-500)}.light-theme .docs-search-page article em{background-color:var(--color-dark-500)}.search-filter-modal .search-filter-modal-container{padding:0 25px 15px;z-index:1;position:absolute;height:calc(100vh - 50px);width:100%;top:50px}.search-filter-modal .search-filter-modal-container .search-filters__header{padding-top:16px}.search-filter-modal .apply-btn{position:fixed;bottom:30px;right:30px}.api-reference{margin-top:2.5rem}.api-reference__product{margin-bottom:5rem}.api-reference__product h3{margin-bottom:5px;color:var(--color-gray-200)}.api-reference__product p{color:var(--color-gray-500)}.help .page-header .col:last-child{margin-bottom:25px}.help__sidebar{display:flex;flex-direction:column;gap:20px}@media only screen and (min-width: 997px){.help__sidebar{flex-direction:row;gap:0}}.sdks__community-projects{margin-top:.5rem}.sdks__community-projects a{display:inline-flex;padding-bottom:0;gap:.5rem;align-items:center;padding-bottom:.25rem;border-bottom:2px solid var(--color-dark-100);transition:var(--transition);font-weight:var(--font-medium);font-size:15px;color:var(--color-gray-300);text-decoration:none}.sdks__community-projects a:hover{border-bottom-color:var(--color-main-500)}.sdks__community-projects a:hover strong{color:var(--color-main-500)}.sdks__community-projects a svg{width:1.8rem;height:1.8rem;stroke:var(--color-main-500)}.sdks__community-projects a strong{font-weight:var(--font-semibold);transition:var(--transition)}
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: pointer;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  flex: 1;
}
.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

body:not(.navigation-with-keyboard) *:not(input):focus {
  outline: none;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

#docusaurus-base-url-issue-banner-container {
  display: none;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.skipToContent_fXgn {
  position: fixed;
  top: 1rem;
  left: 100%;
  z-index: calc(var(--ifm-z-index-fixed) + 1);
  padding: calc(var(--ifm-global-spacing) / 2) var(--ifm-global-spacing);
  color: var(--ifm-color-emphasis-900);
  background-color: var(--ifm-background-surface-color);
}

.skipToContent_fXgn:focus {
  left: 1rem;
  box-shadow: var(--ifm-global-shadow-md);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.closeButton_CVFx {
  padding: 0;
  line-height: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.content_knG7 {
  font-size: 85%;
  text-align: center;
  padding: 5px 0;
}

.content_knG7 a {
  color: inherit;
  text-decoration: underline;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --docusaurus-announcement-bar-height: auto;
}

.announcementBar_mb4j {
  display: flex;
  align-items: center;
  height: var(--docusaurus-announcement-bar-height);
  background-color: var(--ifm-color-white);
  color: var(--ifm-color-black);
  box-shadow: var(--ifm-global-shadow-lw);
  z-index: calc(var(--ifm-z-index-fixed) + 1); /* just above the navbar */
}

html[data-announcement-bar-initially-dismissed='true'] .announcementBar_mb4j {
  display: none;
}

.announcementBarPlaceholder_vyr4 {
  flex: 0 0 10px;
}

.announcementBarClose_gvF7 {
  flex: 0 0 30px;
  align-self: stretch;
}

.announcementBarContent_xLdY {
  flex: 1 1 auto;
}

@media print {
  .announcementBar_mb4j {
    display: none;
  }
}

@media (min-width: 997px) {
  :root {
    --docusaurus-announcement-bar-height: 30px;
  }

  .announcementBarPlaceholder_vyr4,
  .announcementBarClose_gvF7 {
    flex-basis: 50px;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.toggle_vylO {
  width: 2rem;
  height: 2rem;
}

.toggleButton_gllP {
  -webkit-tap-highlight-color: transparent;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: background var(--ifm-transition-fast);
}

.toggleButton_gllP:hover {
  background: var(--ifm-color-emphasis-200);
}

[data-theme='light'] .darkToggleIcon_wfgR,
[data-theme='dark'] .lightToggleIcon_pyhR {
  display: none;
}

.toggleButtonDisabled_aARS {
  cursor: not-allowed;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.themedImage_ToTc {
  display: none;
}

[data-theme='light'] .themedImage--light_HNdA {
  display: initial;
}

[data-theme='dark'] .themedImage--dark_i4oU {
  display: initial;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.iconLanguage_nlXk {
  vertical-align: text-bottom;
  margin-right: 5px;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (max-width: 996px) {
  .searchBox_ZlJk {
    position: absolute;
    right: var(--ifm-navbar-padding-horizontal);
  }
}

@media (min-width: 997px) {
  .searchBox_ZlJk {
    padding: var(--ifm-navbar-item-padding-vertical)
      var(--ifm-navbar-item-padding-horizontal);
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.navbarHideable_m1mJ {
  transition: transform var(--ifm-transition-fast) ease;
}

.navbarHidden_jGov {
  transform: translate3d(0, calc(-100% - 2px), 0);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/*
Hide color mode toggle in small viewports
 */
@media (max-width: 996px) {
  .colorModeToggle_DEke {
    display: none;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

html,
body {
  height: 100%;
}

.mainWrapper_z2l0 {
  flex: 1 0 auto;
}

/* Docusaurus-specific utility class */
.docusaurus-mt-lg {
  margin-top: 3rem;
}

#__docusaurus {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.cardContainer_S8oU {
  --ifm-link-color: var(--ifm-color-emphasis-800);
  --ifm-link-hover-color: var(--ifm-color-emphasis-700);
  --ifm-link-hover-decoration: none;

  box-shadow: 0 1.5px 3px 0 rgb(0 0 0 / 15%);
  border: 1px solid var(--ifm-color-emphasis-200);
  transition: all var(--ifm-transition-fast) ease;
  transition-property: border, box-shadow;
}

.cardContainer_S8oU:hover {
  border-color: var(--ifm-color-primary);
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 20%);
}

.cardContainer_S8oU *:last-child {
  margin-bottom: 0;
}

.cardTitle_HoSo {
  font-size: 1.2rem;
}

.cardDescription_c27F {
  font-size: 0.8rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.iconEdit_Z9Sw {
  margin-right: 0.3em;
  vertical-align: sub;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --docusaurus-tag-list-border: var(--ifm-color-emphasis-300);
}

.tag_zVej {
  border: 1px solid var(--docusaurus-tag-list-border);
  transition: border var(--ifm-transition-fast);
}

.tag_zVej:hover {
  --docusaurus-tag-list-border: var(--ifm-link-color);
  text-decoration: none;
}

.tagRegular_sFm0 {
  border-radius: 0.5rem;
  padding: 0.2rem 0.5rem 0.3rem;
  font-size: 90%;
}

.tagWithCount_h2kH {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0.5rem 0 1rem;
  border-left: 0;
}

.tagWithCount_h2kH::before,
.tagWithCount_h2kH::after {
  content: '';
  position: absolute;
  top: 50%;
  border: 1px solid var(--docusaurus-tag-list-border);
  transition: inherit;
}

.tagWithCount_h2kH::before {
  right: 100%;
  transform: translate(50%, -50%) rotate(-45deg);
  width: 1.18rem;
  height: 1.18rem;
  border-right: 0;
  border-bottom: 0;
}

.tagWithCount_h2kH::after {
  left: 0;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.tagWithCount_h2kH span {
  background: var(--ifm-color-secondary);
  color: var(--ifm-color-black);
  font-size: 0.7rem;
  line-height: 1.2;
  border-radius: var(--ifm-global-radius);
  padding: 0.1rem 0.4rem;
  margin-left: 0.3rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tags_jXut {
  display: inline;
}

.tag_QGVx {
  margin: 0 0.4rem 0.5rem 0;
  display: inline-block;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.lastUpdated_vwxv {
  margin-top: 0.2rem;
  font-style: italic;
  font-size: smaller;
}

@media (min-width: 997px) {
  .lastUpdated_vwxv {
    text-align: right;
  }
}

.searchQueryInput_cpyO,
.searchVersionInput_wf2r {
  width: 100%;
  border-radius: var(--ifm-global-radius);
  border: 2px solid var(--ifm-toc-border-color);
  font: var(--ifm-font-size-base) var(--ifm-font-family-base);
  padding: 0.8rem;
  width: 100%;
  background: var(--docsearch-searchbox-focus-background);
  color: var(--docsearch-text-color);
  margin-bottom: 0.5rem;
  transition: border var(--ifm-transition-fast) ease;
}

.searchQueryInput_cpyO:focus,
.searchVersionInput_wf2r:focus {
  border-color: var(--docsearch-primary-color);
  outline: none;
}

.searchQueryInput_cpyO::placeholder {
  color: var(--docsearch-muted-color);
}

.searchResultsColumn_PLpb {
  font-size: 0.9rem;
  font-weight: bold;
}

.algoliaLogo_YElR {
  max-width: 150px;
}

.algoliaLogoPathFill_grp5 {
  fill: var(--ifm-font-color-base);
}

.searchResultItem_AlWU {
  padding: 1rem 0;
  border-bottom: 1px solid var(--ifm-toc-border-color);
}

.searchResultItemHeading_HJFH {
  font-weight: 400;
  margin-bottom: 0;
}

.searchResultItemPath_x9Ef {
  font-size: 0.8rem;
  color: var(--ifm-color-content-secondary);
  --ifm-breadcrumb-separator-size-multiplier: 1;
}

.searchResultItemSummary_jej3 {
  margin: 0.5rem 0 0;
  font-style: italic;
}

.searchQueryColumn_hQFc {
  width: 100%;
}

@media only screen and (max-width: 996px) {
  .searchQueryColumn_hQFc {
    /* max-width: 60% !important; */
    width: 100%;
  }

  .searchVersionColumn_GkmC {
    max-width: 40% !important;
  }

  .searchResultsColumn_PLpb {
    max-width: 60% !important;
  }

  .searchLogoColumn_Mj_0 {
    max-width: 40% !important;
    padding-left: 0 !important;
  }
}

@media screen and (max-width: 576px) {
  .searchQueryColumn_hQFc {
    max-width: 100% !important;
  }

  .searchVersionColumn_GkmC {
    max-width: 100% !important;
    padding-left: var(--ifm-spacing-horizontal) !important;
  }
}

.loadingSpinner_E_zt {
  width: 3rem;
  height: 3rem;
  border: 0.4em solid #eee;
  border-top-color: var(--ifm-color-primary);
  border-radius: 50%;
  animation: loading-spin_hlTL 1s linear infinite;
  margin: 0 auto;
}

@keyframes loading-spin_hlTL {
  100% {
    transform: rotate(360deg);
  }
}

.loader_ujSQ {
  margin-top: 2rem;
}

.search-result-match {
  color: var(--docsearch-hit-color);
  background: rgb(255 215 142 / 25%);
  padding: 0.09em 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.backToTopButton_sjWU {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  border-radius: 50%;
  background-color: var(--ifm-color-emphasis-200);
  width: 3rem;
  height: 3rem;
  z-index: calc(var(--ifm-z-index-fixed) - 1);
  box-shadow: var(--ifm-global-shadow-lw);
  transition: all var(--ifm-transition-fast)
    var(--ifm-transition-timing-default);
  opacity: 0;
  transform: scale(0);
  visibility: hidden;
}

.backToTopButton_sjWU::after {
  content: ' ';
  display: inline-block;
  -webkit-mask: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem no-repeat;
          mask: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem no-repeat;
  background-color: var(--ifm-color-emphasis-1000);
  width: 100%;
  height: 100%;
}

@media (hover: hover) {
  .backToTopButton_sjWU:hover {
    background-color: var(--ifm-color-emphasis-300);
  }
}

.backToTopButtonShow_xfvO {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --docusaurus-collapse-button-bg: transparent;
  --docusaurus-collapse-button-bg-hover: rgb(0 0 0 / 10%);
}

[data-theme='dark']:root {
  --docusaurus-collapse-button-bg: rgb(255 255 255 / 5%);
  --docusaurus-collapse-button-bg-hover: rgb(255 255 255 / 10%);
}

@media (min-width: 997px) {
  .collapseSidebarButton_PEFL {
    display: block !important;
    background-color: var(--docusaurus-collapse-button-bg);
    height: 40px;
    position: sticky;
    bottom: 0;
    border-radius: 0;
    border: 1px solid var(--ifm-toc-border-color);
  }

  .collapseSidebarButtonIcon_kv0_ {
    transform: rotate(180deg);
    margin-top: 4px;
  }

  [dir='rtl'] .collapseSidebarButtonIcon_kv0_ {
    transform: rotate(0);
  }

  .collapseSidebarButton_PEFL:hover,
  .collapseSidebarButton_PEFL:focus {
    background-color: var(--docusaurus-collapse-button-bg-hover);
  }
}

.collapseSidebarButton_PEFL {
  display: none;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.iconExternalLink_nPIU {
  margin-left: 0.3rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.menuExternalLink_NmtK {
  align-items: center;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  .menuHtmlItem_M9Kj {
    padding: var(--ifm-menu-link-padding-vertical)
      var(--ifm-menu-link-padding-horizontal);
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  .menu_SIkG {
    flex-grow: 1;
    padding: 0.5rem;
  }
  @supports (scrollbar-gutter: stable) {
    .menu_SIkG {
      padding: 0.5rem 0 0.5rem 0.5rem;
      scrollbar-gutter: stable;
    }
  }

  .menuWithAnnouncementBar_GW3s {
    margin-bottom: var(--docusaurus-announcement-bar-height);
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  .sidebar_njMd {
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    height: 100%;
    position: sticky;
    top: 0;
    padding-top: var(--ifm-navbar-height);
    width: var(--doc-sidebar-width);
    transition: opacity 50ms ease;
  }

  .sidebarWithHideableNavbar_wUlq {
    padding-top: 0;
  }

  .sidebarHidden_VK0M {
    opacity: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }

  .sidebarLogo_isFc {
    display: flex !important;
    align-items: center;
    margin: 0 var(--ifm-navbar-padding-horizontal);
    min-height: var(--ifm-navbar-height);
    max-height: var(--ifm-navbar-height);
    color: inherit !important;
    text-decoration: none !important;
  }

  .sidebarLogo_isFc img {
    margin-right: 0.5rem;
    height: 2rem;
  }
}

.sidebarLogo_isFc {
  display: none;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  .expandButton_m80_ {
    position: sticky;
    top: 0;
    height: 100%;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--ifm-transition-fast) ease;
    background-color: var(--docusaurus-collapse-button-bg);
  }

  .expandButton_m80_:hover,
  .expandButton_m80_:focus {
    background-color: var(--docusaurus-collapse-button-bg-hover);
  }

  .expandButtonIcon_BlDH {
    transform: rotate(0);
  }

  [dir='rtl'] .expandButtonIcon_BlDH {
    transform: rotate(180deg);
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --doc-sidebar-width: 300px;
  --doc-sidebar-hidden-width: 30px;
}

.docSidebarContainer_b6E3 {
  display: none;
}

@media (min-width: 997px) {
  .docSidebarContainer_b6E3 {
    display: block;
    width: var(--doc-sidebar-width);
    margin-top: calc(-1 * var(--ifm-navbar-height));
    border-right: 1px solid var(--ifm-toc-border-color);
    will-change: width;
    transition: width var(--ifm-transition-fast) ease;
    clip-path: inset(0);
  }

  .docSidebarContainerHidden_b3ry {
    width: var(--doc-sidebar-hidden-width);
    cursor: pointer;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.docMainContainer_gTbr {
  display: flex;
  width: 100%;
}

@media (min-width: 997px) {
  .docMainContainer_gTbr {
    flex-grow: 1;
    max-width: calc(100% - var(--doc-sidebar-width));
  }

  .docMainContainerEnhanced_Uz_u {
    max-width: calc(100% - var(--doc-sidebar-hidden-width));
  }

  .docItemWrapperEnhanced_czyv {
    max-width: calc(
      var(--ifm-container-width) + var(--doc-sidebar-width)
    ) !important;
  }
}

.docPage_qMb8 {
  display: flex;
  width: 100%;
}

.docsWrapper_W2AM {
  display: flex;
}

.feedbackBtn_Wmb6 {
  width: auto;
  height: auto;
  padding: 12px;
  background: var(--ifm-color-primary);
  border-radius: 40px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  
  /* New styles to position the button at the bottom right corner */
  position: fixed;
  bottom: 30px; /* Adjust this value to control the distance from the bottom */
  right: 25px; /* Adjust this value to control the distance from the right */
  z-index: 1000; /* Ensure it appears above other elements */
}

.innerDiv_VYUI {
  width: 24px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.icon_dt_C {
  width: 23.50px;
  height: 21.22px;
  background: white;
}

  .customComponentModalOverlay_DZxE {
    position: fixed;
    z-index: 999;
    bottom: 85px; /* Moved up 10px from the bottom */
    right: 10px; /* Optional: Adjusted for spacing from the right */
    width: auto; /* Adjusted width for positioning */
    height: auto; /* Adjusted height for positioning */
    display: flex;
    justify-content: flex-end; /* Align to the right */
    align-items: flex-end; /* Align to the bottom */
  }

  .modelClass_LA4C {
    width: auto;
    box-sizing: border-box;
    border-radius: 10px;
  }

  .modalContent_dNyI {
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    min-width: 300px; /* Set a minimum width for the modal */
    max-width: 400px; /* Optionally limit the maximum width */
    border-radius: 10px;
  }
  
  .modalHeader_Yrgj {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .modalText_QB9A {
    font-size: 16px;
    font-family: var(--ifm-font-family-base);
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.20px;
    word-wrap: break-word;
  }
  
  .modalClose_wz_g {
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
  
  .modalButtons_ZPPW {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 10px;
  }
  
  .modalButton_VwOJ {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;

  }
  
  .modalButtonIcon_hmS0 {
    color: white;
    font-size: 24px;
    font-family: var(--ifm-font-family-base);
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.32px;
    padding: 5px;

  }
  
  .modalButtonText_XcyA {
    font-size: 16px;
    font-family: var(--ifm-font-family-base);
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.16px;
  }

  .closeIconColor_XKoN {
    color: var(--color-gray-50);
  }
  
.modalOverlay_Craw {
  position: fixed;
  bottom: 75px; /* Ensure the modal starts from the bottom */
  right: 10px; /* Adjust as needed */
  width: 500px;
  background: transparent;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 5px;
  z-index: 1000; /* Ensure the modal is on top */
}

.centered_hmq3 {
  justify-content: center;
  align-items: center;
  right: 0;
  bottom: 0; /* Ensure the modal is aligned to the bottom */
  left: 0;
  padding: 0; /* Adjust padding if needed */
  width: 100%;
  height: 100%; /* Set the height to 100% */
  overflow-y: auto; /* Make the modal scrollable if content exceeds height */
  overflow: visible !important;
  max-height: 100vh; /* Optional: Adjust the maximum height */
}

.modalContent_p9oI {
  border-radius: var(--ifm-global-radius);
  overflow: hidden;
  flex-direction: column;
  display: flex;
  width: 450px; /* Adjust as needed */
  height: auto; /* Set to auto to allow content to determine height */
  max-height: 100%; /* Ensure it does not exceed the parent's height */
  transition: all 0.3s ease;
}

.innerContainer_m6Kr {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  overflow-y: auto; /* Allow the modal content to scroll */
  font-family: var(--ifm-font-family-base);
}

.header_Qnn4 {
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid var(--feedback-modal-border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0; /* Keep the header at the top when scrolling */
  z-index: 198;
}

.body_jQHM {
  align-self: stretch;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  overflow-y: auto; /* Ensure the body content is scrollable if necessary */
}

.title_x2gE {
  color: var(--feedback-modal-font-color);
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.01em;
  font-weight: 600;
  letter-spacing: 0.20px;
  word-wrap: break-word;
}

.closeIcon_Dh2v {
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer; /* cursor-pointer in Tailwind */
  display: flex; /* flex in Tailwind */
  align-items: center; /* items-center in Tailwind */
}

.innerCloseIcon_GjQ1 {
  width: 12.69px;
  height: 12.69px;
  left: 5.66px;
  top: 5.66px;
  position: absolute;
  background: var(--feedback-modal-bg);
}

.body_jQHM {
  align-self: stretch;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.issueContainer_uFyZ {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2px;
}

.issueTitle_owjE {
  align-self: stretch;
  color: var(--feedback-modal-font-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.20px;
  word-wrap: break-word;
}

.issueList_KC0V {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.issueItem_Y_1R {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.issueCheckbox__nX8 {
  width: 24px;
  height: 24px;
  position: relative;
}

.issueCheckboxInner_hQWJ {
  width: 17px;
  height: 17px;
  left: 3.50px;
  top: 3.50px;
  position: absolute;
  background: var(--feedback-modal-bg);
}

.issueCheckboxInnerSelected_K4by {
  width: 17px;
  height: 17px;
  left: 3.50px;
  top: 3.50px;
  position: absolute;
  background: #3BCBFA;
}

.issueText_ggbs {
  color: var(--feedback-modal-font-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 19.60px;
  letter-spacing: 0.14px;
  word-wrap: break-word;
  box-sizing: border-box;
}

.commentsContainer_Z0Hv {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
}

.commentsTitle_ua7w {
  align-self: stretch;
  color: var(--feedback-modal-font-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.20px;
  word-wrap: break-word;
}

.commentsBox_cuTR {
  align-self: stretch;
  height: 80px;
  padding: 12px;
  border-radius: var(--ifm-global-radius);
  border: 1px solid var(--feedback-modal-border-color);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: var(--ifm-font-family-base);
}

.contactContainer_xgEv {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
}

.contactTitle__NGE {
  align-self: stretch;
  color: var(--feedback-modal-font-color);
  font-size: 16px;
  font: var(--ifm-font-size-base) var(--ifm-font-family-base);
  font-weight: 500;
  line-height: 19.20px;
  word-wrap: break-word;
}

.contactBox_JoHi {
  align-self: stretch;
  height: 48px;
  padding: 12px;
  border-radius: var(--ifm-global-radius);
  border: 1px solid var(--feedback-modal-border-color);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.contactPlaceholder_Wjmh {
  color: var(--feedback-modal-font-color);
  font-size: 14px;
  font: var(--ifm-font-size-base) var(--ifm-font-family-base);
  font-weight: 500;
  line-height: 16.80px;
  word-wrap: break-word;
}

.screenshotContainer_yqi4 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.screenshotTitle_Uo6i {
  color: var(--feedback-modal-font-color);
  font-size: 16px;
  font: var(--ifm-font-size-base) var(--ifm-font-family-base);
  font-weight: 600;
  line-height: 19.20px;
  word-wrap: break-word;
}

.screenshotToggle_G_oa {
  width: 32px;
  height: 20px;
  position: relative;
}

.screenshotToggleBackground_FkQv {
  width: 32px;
  height: 20px;
  left: 0px;
  top: 0px;
  position: absolute;
  background: #A8A4A4;
  border-radius: 40px;
}

.screenshotToggleCircle_bdTy {
  width: 16px;
  height: 16px;
  left: 2px;
  top: 2px;
  position: absolute;
  background: white;
  border-radius: 9999px;
}

.footer_kCNM {
  width: 100%;
  padding: 10px;
  border-top: 1px solid var(--feedback-modal-border-color);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  position: sticky;
  bottom: 0; /* Stick the footer to the bottom of the scrollable area */
  z-index: 10; /* Ensure it stays above other content */
}


.cancelButton_lNCL {
  color: var(--feedback-modal-font-color);
  background: var(--feedback-modal-bg);
}

.submitButton_mxZD {
  color: var(--feedback-modal-font-color);
  background: #099DFD;
}

.scrollableContainer_zEqL {
  overflow-y: auto;
  max-height: 200px
}

.customContainerNested_Y94b {
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
}


.screenshotSpinner_EsvX {
  position: relative;
}

.markContent_MMUZ {
  display: flex;
  justify-content: center;
  position: relative;
  border: 1px solid var(--feedback-modal-border-color);
  cursor: pointer;
  font-size: 13px;
}

.revertButton_PeA1 {
  display: flex;
  justify-content: center;
  position: relative;
  border: 1px solid var(--feedback-modal-border-color);
  cursor: pointer;
  font-size: 13px;
  padding: 1px;
}

.ImageBox_h0Rz {
  align-self: stretch;
  position: relative;
  object-fit: cover;
  flex-shrink: 0;
}




/*! @docsearch/css 3.1.1 | MIT License | © Algolia, Inc. and contributors | https://docsearch.algolia.com */
:root{--docsearch-primary-color:#5468ff;--docsearch-text-color:#1c1e21;--docsearch-spacing:12px;--docsearch-icon-stroke-width:1.4;--docsearch-highlight-color:var(--docsearch-primary-color);--docsearch-muted-color:#969faf;--docsearch-container-background:rgba(101,108,133,0.8);--docsearch-logo-color:#5468ff;--docsearch-modal-width:560px;--docsearch-modal-height:600px;--docsearch-modal-background:#f5f6f7;--docsearch-modal-shadow:inset 1px 1px 0 0 hsla(0,0%,100%,0.5),0 3px 8px 0 #555a64;--docsearch-searchbox-height:56px;--docsearch-searchbox-background:#ebedf0;--docsearch-searchbox-focus-background:#fff;--docsearch-searchbox-shadow:inset 0 0 0 2px var(--docsearch-primary-color);--docsearch-hit-height:56px;--docsearch-hit-color:#444950;--docsearch-hit-active-color:#fff;--docsearch-hit-background:#fff;--docsearch-hit-shadow:0 1px 3px 0 #d4d9e1;--docsearch-key-gradient:linear-gradient(-225deg,#d5dbe4,#f8f8f8);--docsearch-key-shadow:inset 0 -2px 0 0 #cdcde6,inset 0 0 1px 1px #fff,0 1px 2px 1px rgba(30,35,90,0.4);--docsearch-footer-height:44px;--docsearch-footer-background:#fff;--docsearch-footer-shadow:0 -1px 0 0 #e0e3e8,0 -3px 6px 0 rgba(69,98,155,0.12)}html[data-theme=dark]{--docsearch-text-color:#f5f6f7;--docsearch-container-background:rgba(9,10,17,0.8);--docsearch-modal-background:#15172a;--docsearch-modal-shadow:inset 1px 1px 0 0 #2c2e40,0 3px 8px 0 #000309;--docsearch-searchbox-background:#090a11;--docsearch-searchbox-focus-background:#000;--docsearch-hit-color:#bec3c9;--docsearch-hit-shadow:none;--docsearch-hit-background:#090a11;--docsearch-key-gradient:linear-gradient(-26.5deg,#565872,#31355b);--docsearch-key-shadow:inset 0 -2px 0 0 #282d55,inset 0 0 1px 1px #51577d,0 2px 2px 0 rgba(3,4,9,0.3);--docsearch-footer-background:#1e2136;--docsearch-footer-shadow:inset 0 1px 0 0 rgba(73,76,106,0.5),0 -4px 8px 0 rgba(0,0,0,0.2);--docsearch-logo-color:#fff;--docsearch-muted-color:#7f8497}.DocSearch-Button{align-items:center;background:var(--docsearch-searchbox-background);border:0;border-radius:40px;color:var(--docsearch-muted-color);cursor:pointer;display:flex;font-weight:500;height:36px;justify-content:space-between;margin:0 0 0 16px;padding:0 8px;-webkit-user-select:none;user-select:none}.DocSearch-Button:active,.DocSearch-Button:focus,.DocSearch-Button:hover{background:var(--docsearch-searchbox-focus-background);box-shadow:var(--docsearch-searchbox-shadow);color:var(--docsearch-text-color);outline:none}.DocSearch-Button-Container{align-items:center;display:flex}.DocSearch-Search-Icon{stroke-width:1.6}.DocSearch-Button .DocSearch-Search-Icon{color:var(--docsearch-text-color)}.DocSearch-Button-Placeholder{font-size:1rem;padding:0 12px 0 6px}.DocSearch-Button-Keys{display:flex;min-width:calc(40px + .8em)}.DocSearch-Button-Key{align-items:center;background:var(--docsearch-key-gradient);border-radius:3px;box-shadow:var(--docsearch-key-shadow);color:var(--docsearch-muted-color);display:flex;height:18px;justify-content:center;margin-right:.4em;position:relative;padding:0 0 2px;border:0;top:-1px;width:20px}@media (max-width:750px){.DocSearch-Button-Keys,.DocSearch-Button-Placeholder{display:none}}.DocSearch--active{overflow:hidden!important}.DocSearch-Container,.DocSearch-Container *{box-sizing:border-box}.DocSearch-Container{background-color:var(--docsearch-container-background);height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:200}.DocSearch-Container a{text-decoration:none}.DocSearch-Link{appearance:none;background:none;border:0;color:var(--docsearch-highlight-color);cursor:pointer;font:inherit;margin:0;padding:0}.DocSearch-Modal{background:var(--docsearch-modal-background);border-radius:6px;box-shadow:var(--docsearch-modal-shadow);flex-direction:column;margin:60px auto auto;max-width:var(--docsearch-modal-width);position:relative}.DocSearch-SearchBar{display:flex;padding:var(--docsearch-spacing) var(--docsearch-spacing) 0}.DocSearch-Form{align-items:center;background:var(--docsearch-searchbox-focus-background);border-radius:4px;box-shadow:var(--docsearch-searchbox-shadow);display:flex;height:var(--docsearch-searchbox-height);margin:0;padding:0 var(--docsearch-spacing);position:relative;width:100%}.DocSearch-Input{appearance:none;background:transparent;border:0;color:var(--docsearch-text-color);flex:1;font:inherit;font-size:1.2em;height:100%;outline:none;padding:0 0 0 8px;width:80%}.DocSearch-Input::placeholder{color:var(--docsearch-muted-color);opacity:1}.DocSearch-Input::-webkit-search-cancel-button,.DocSearch-Input::-webkit-search-decoration,.DocSearch-Input::-webkit-search-results-button,.DocSearch-Input::-webkit-search-results-decoration{display:none}.DocSearch-LoadingIndicator,.DocSearch-MagnifierLabel,.DocSearch-Reset{margin:0;padding:0}.DocSearch-MagnifierLabel,.DocSearch-Reset{align-items:center;color:var(--docsearch-highlight-color);display:flex;justify-content:center}.DocSearch-Container--Stalled .DocSearch-MagnifierLabel,.DocSearch-LoadingIndicator{display:none}.DocSearch-Container--Stalled .DocSearch-LoadingIndicator{align-items:center;color:var(--docsearch-highlight-color);display:flex;justify-content:center}@media screen and (prefers-reduced-motion:reduce){.DocSearch-Reset{animation:none;appearance:none;background:none;border:0;border-radius:50%;color:var(--docsearch-icon-color);cursor:pointer;right:0;stroke-width:var(--docsearch-icon-stroke-width)}}.DocSearch-Reset{animation:fade-in .1s ease-in forwards;appearance:none;background:none;border:0;border-radius:50%;color:var(--docsearch-icon-color);cursor:pointer;padding:2px;right:0;stroke-width:var(--docsearch-icon-stroke-width)}.DocSearch-Reset[hidden]{display:none}.DocSearch-Reset:focus{outline:none}.DocSearch-Reset:hover{color:var(--docsearch-highlight-color)}.DocSearch-LoadingIndicator svg,.DocSearch-MagnifierLabel svg{height:24px;width:24px}.DocSearch-Cancel{display:none}.DocSearch-Dropdown{max-height:calc(var(--docsearch-modal-height) - var(--docsearch-searchbox-height) - var(--docsearch-spacing) - var(--docsearch-footer-height));min-height:var(--docsearch-spacing);overflow-y:auto;overflow-y:overlay;padding:0 var(--docsearch-spacing);scrollbar-color:var(--docsearch-muted-color) var(--docsearch-modal-background);scrollbar-width:thin}.DocSearch-Dropdown::-webkit-scrollbar{width:12px}.DocSearch-Dropdown::-webkit-scrollbar-track{background:transparent}.DocSearch-Dropdown::-webkit-scrollbar-thumb{background-color:var(--docsearch-muted-color);border:3px solid var(--docsearch-modal-background);border-radius:20px}.DocSearch-Dropdown ul{list-style:none;margin:0;padding:0}.DocSearch-Label{font-size:.75em;line-height:1.6em}.DocSearch-Help,.DocSearch-Label{color:var(--docsearch-muted-color)}.DocSearch-Help{font-size:.9em;margin:0;-webkit-user-select:none;user-select:none}.DocSearch-Title{font-size:1.2em}.DocSearch-Logo a{display:flex}.DocSearch-Logo svg{color:var(--docsearch-logo-color);margin-left:8px}.DocSearch-Hits:last-of-type{margin-bottom:24px}.DocSearch-Hits mark{background:none;color:var(--docsearch-highlight-color)}.DocSearch-HitsFooter{color:var(--docsearch-muted-color);display:flex;font-size:.85em;justify-content:center;margin-bottom:var(--docsearch-spacing);padding:var(--docsearch-spacing)}.DocSearch-HitsFooter a{border-bottom:1px solid;color:inherit}.DocSearch-Hit{border-radius:4px;display:flex;padding-bottom:4px;position:relative}@media screen and (prefers-reduced-motion:reduce){.DocSearch-Hit--deleting{transition:none}}.DocSearch-Hit--deleting{opacity:0;transition:all .25s linear}@media screen and (prefers-reduced-motion:reduce){.DocSearch-Hit--favoriting{transition:none}}.DocSearch-Hit--favoriting{transform:scale(0);transform-origin:top center;transition:all .25s linear;transition-delay:.25s}.DocSearch-Hit a{background:var(--docsearch-hit-background);border-radius:4px;box-shadow:var(--docsearch-hit-shadow);display:block;padding-left:var(--docsearch-spacing);width:100%}.DocSearch-Hit-source{background:var(--docsearch-modal-background);color:var(--docsearch-highlight-color);font-size:.85em;font-weight:600;line-height:32px;margin:0 -4px;padding:8px 4px 0;position:sticky;top:0;z-index:10}.DocSearch-Hit-Tree{color:var(--docsearch-muted-color);height:var(--docsearch-hit-height);opacity:.5;stroke-width:var(--docsearch-icon-stroke-width);width:24px}.DocSearch-Hit[aria-selected=true] a{background-color:var(--docsearch-highlight-color)}.DocSearch-Hit[aria-selected=true] mark{text-decoration:underline}.DocSearch-Hit-Container{align-items:center;color:var(--docsearch-hit-color);display:flex;flex-direction:row;height:var(--docsearch-hit-height);padding:0 var(--docsearch-spacing) 0 0}.DocSearch-Hit-icon{height:20px;width:20px}.DocSearch-Hit-action,.DocSearch-Hit-icon{color:var(--docsearch-muted-color);stroke-width:var(--docsearch-icon-stroke-width)}.DocSearch-Hit-action{align-items:center;display:flex;height:22px;width:22px}.DocSearch-Hit-action svg{display:block;height:18px;width:18px}.DocSearch-Hit-action+.DocSearch-Hit-action{margin-left:6px}.DocSearch-Hit-action-button{appearance:none;background:none;border:0;border-radius:50%;color:inherit;cursor:pointer;padding:2px}svg.DocSearch-Hit-Select-Icon{display:none}.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-Select-Icon{display:block}.DocSearch-Hit-action-button:focus,.DocSearch-Hit-action-button:hover{background:rgba(0,0,0,.2);transition:background-color .1s ease-in}@media screen and (prefers-reduced-motion:reduce){.DocSearch-Hit-action-button:focus,.DocSearch-Hit-action-button:hover{transition:none}}.DocSearch-Hit-action-button:focus path,.DocSearch-Hit-action-button:hover path{fill:#fff}.DocSearch-Hit-content-wrapper{display:flex;flex:1 1 auto;flex-direction:column;font-weight:500;justify-content:center;line-height:1.2em;margin:0 8px;overflow-x:hidden;position:relative;text-overflow:ellipsis;white-space:nowrap;width:80%}.DocSearch-Hit-title{font-size:.9em}.DocSearch-Hit-path{color:var(--docsearch-muted-color);font-size:.75em}.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-action,.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-icon,.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-path,.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-text,.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-title,.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-Tree,.DocSearch-Hit[aria-selected=true] mark{color:var(--docsearch-hit-active-color)!important}@media screen and (prefers-reduced-motion:reduce){.DocSearch-Hit-action-button:focus,.DocSearch-Hit-action-button:hover{background:rgba(0,0,0,.2);transition:none}}.DocSearch-ErrorScreen,.DocSearch-NoResults,.DocSearch-StartScreen{font-size:.9em;margin:0 auto;padding:36px 0;text-align:center;width:80%}.DocSearch-Screen-Icon{color:var(--docsearch-muted-color);padding-bottom:12px}.DocSearch-NoResults-Prefill-List{display:inline-block;padding-bottom:24px;text-align:left}.DocSearch-NoResults-Prefill-List ul{display:inline-block;padding:8px 0 0}.DocSearch-NoResults-Prefill-List li{list-style-position:inside;list-style-type:"» "}.DocSearch-Prefill{appearance:none;background:none;border:0;border-radius:1em;color:var(--docsearch-highlight-color);cursor:pointer;display:inline-block;font-size:1em;font-weight:700;padding:0}.DocSearch-Prefill:focus,.DocSearch-Prefill:hover{outline:none;text-decoration:underline}.DocSearch-Footer{align-items:center;background:var(--docsearch-footer-background);border-radius:0 0 8px 8px;box-shadow:var(--docsearch-footer-shadow);display:flex;flex-direction:row-reverse;flex-shrink:0;height:var(--docsearch-footer-height);justify-content:space-between;padding:0 var(--docsearch-spacing);position:relative;-webkit-user-select:none;user-select:none;width:100%;z-index:300}.DocSearch-Commands{color:var(--docsearch-muted-color);display:flex;list-style:none;margin:0;padding:0}.DocSearch-Commands li{align-items:center;display:flex}.DocSearch-Commands li:not(:last-of-type){margin-right:.8em}.DocSearch-Commands-Key{align-items:center;background:var(--docsearch-key-gradient);border-radius:2px;box-shadow:var(--docsearch-key-shadow);display:flex;height:18px;justify-content:center;margin-right:.4em;padding:0 0 1px;color:var(--docsearch-muted-color);border:0;width:20px}@media (max-width:750px){:root{--docsearch-spacing:10px;--docsearch-footer-height:40px}.DocSearch-Dropdown{height:100%}.DocSearch-Container{height:100vh;height:-webkit-fill-available;height:calc(var(--docsearch-vh, 1vh)*100);position:absolute}.DocSearch-Footer{border-radius:0;bottom:0;position:absolute}.DocSearch-Hit-content-wrapper{display:flex;position:relative;width:80%}.DocSearch-Modal{border-radius:0;box-shadow:none;height:100vh;height:-webkit-fill-available;height:calc(var(--docsearch-vh, 1vh)*100);margin:0;max-width:100%;width:100%}.DocSearch-Dropdown{max-height:calc(var(--docsearch-vh, 1vh)*100 - var(--docsearch-searchbox-height) - var(--docsearch-spacing) - var(--docsearch-footer-height))}.DocSearch-Cancel{appearance:none;background:none;border:0;color:var(--docsearch-highlight-color);cursor:pointer;display:inline-block;flex:none;font:inherit;font-size:1em;font-weight:500;margin-left:var(--docsearch-spacing);outline:none;overflow:hidden;padding:0;-webkit-user-select:none;user-select:none;white-space:nowrap}.DocSearch-Commands,.DocSearch-Hit-Tree{display:none}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}
:root {
  --docsearch-primary-color: var(--ifm-color-primary);
  --docsearch-text-color: var(--ifm-font-color-base);
}

.DocSearch-Button {
  margin: 0;
  transition: all var(--ifm-transition-fast)
    var(--ifm-transition-timing-default);
}

.DocSearch-Button .DocSearch-Button-Key {
  background-color: transparent;
}

.DocSearch-Container {
  z-index: calc(var(--ifm-z-index-fixed) + 1);
}

/* Mobile Search Wrapper */

.mobile-searchbar-close {
  display: none;
}

/* Move this to another place */

/* .DocSearch-SearchBar{
  position: sticky;
  top: 0;
  z-index: 99;
} */

@media screen and (max-width: 745px) {
  .searchbar-modal {
    z-index: 999;
  }

  header.header {
    z-index: 99;
  }

  .DocSearch-Help {
    font-size: 1em;
  }

  .DocSearch-SearchBar {
    max-width: calc(100% - 40px);
    padding: 1rem;
  }

  .searchbar-modal__results-box .dropdown-container {
    top: 13px;
    right: 60px;
  }

  .DocSearch-Dropdown {
    overflow: visible;
    max-height: -moz-fit-content !important;
    max-height: fit-content !important;
    background-color: var(--color-dark-400);
    min-height: 35vh;
    display: flex;
    align-items: center;
  }

  .DocSearch-Dropdown-Container {
    width: 100%;
  }

  .DocSearch-Help {
    text-transform: capitalize;
  }

  .mobile-searchbar-close {
    display: inline-block;
    position: absolute;
    z-index: 99;
    right: 10px;
    top: 15px;
    background-color: transparent !important;
    border: none;
  }

  .mobile-searchbar-close svg {
    height: 21px;
    width: 21px;
  }

  .searchbar-modal__wrapper {
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }

  .searchbar-modal__header,
  .DocSearch-Footer {
    display: none;
  }

  .searchbar-modal__results {
    flex-direction: column;
    min-height: 100vh;
  }

  .searchbar-modal__results > *:last-child {
    flex: 0;
  }

  .searchbar-modal .DocSearch-Container {
    max-width: 100%;
    width: 100%;
    background-color: white;
  }

  /** Hide topics on mobile filter */
  .hide-on-mobile-term {
    display: none;
  }

  .searchbar-modal__preferred {
    padding: 0;
  }

  .preferred-search-results__group {
    padding: 12px;
  }

  .preferred-search-results__help {
    border-top: 1px solid var(--color-dark-50);
    text-align: center;
    padding: 12px;
  }
}
.icon-search {
  margin-left: auto;
}

.icon-search svg {
  color: var(--color-white);
}

.icon-search:not(.always-show) {
  display: none;
}

.DocSearch-Button-Key svg {
  height: 16px;
  width: 16px;
}

.activeTOC_JZNd{
  color: var(--ifm-color-primary);
  text-decoration: none;
}
/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tocCollapsibleButton_TO0P {
  font-size: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0.8rem;
  width: 100%;
}

.tocCollapsibleButton_TO0P::after {
  content: '';
  background: var(--ifm-menu-link-sublist-icon) 50% 50% / 2rem 2rem no-repeat;
  filter: var(--ifm-menu-link-sublist-icon-filter);
  height: 1.25rem;
  width: 1.25rem;
  transform: rotate(180deg);
  transition: transform var(--ifm-transition-fast);
}

.tocCollapsibleButtonExpanded_MG3E::after {
  transform: none;
}

.tocCollapsible_IbkY {
  background-color: var(--ifm-menu-color-background-active);
  border-radius: var(--ifm-global-radius);
  margin: 1rem 0;
}

.tocCollapsibleContent_UGTc > ul {
  border-left: none;
  border-top: 1px solid var(--ifm-color-emphasis-300);
  padding: 0.2rem 0;
  font-size: 15px;
}

.tocCollapsibleContent_UGTc ul li {
  margin: 0.4rem 0.8rem;
}

.tocCollapsibleContent_UGTc a {
  display: block;
}

.tocCollapsibleExpanded_kfaH {
  transform: none;
}

.mobile-collapsible {
  margin-bottom: 2rem;
}

.mobile-collapsible button {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  padding: 9px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-gray-900);
  background: var(--color-dark-700);
}

.light-theme .mobile-collapsible button {
  border-color: var(--color-gray-800);
  color: var(--color-gray-300);
}

.tocCollapsibleButtonExpanded_node_modules-\@docusaurus-theme-classic-lib-theme-TOCCollapsible-CollapseButton-styles-module {
  border: 1px solid var(--color-dark-100) !important;
}

.mobile-collapsible button::after {
  background: var(--ifm-menu-link-sublist-icon) 50% 50% / 3rem 2.3rem no-repeat;
}

.mobile-collapsible ul.table-of-contents {
  background: white;
  width: 100%;
  box-shadow: none;
  border: 1px solid var(--color-dark-100);
  border-top: 1px solid var(--color-dark-100) !important;
  border-radius: var(--radius-sm);
  background: var(--color-dark-700);
}

.mobile-collapsible .table-of-contents li {
  color: var(--color-gray-700);
  margin: 0;
  padding: 9px 15px;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  /* Prevent hydration FOUC, as the mobile TOC needs to be server-rendered */
  .tocMobile_ITEo {
    display: none;
  }
}

@media print {
  .tocMobile_ITEo {
    display: none;
  }
}

.tableOfContents_jeP5 {
  max-height: calc(100vh - (var(--ifm-navbar-height) + 2rem));
  overflow-y: auto;
  position: sticky;
  top: calc(var(--ifm-navbar-height) + 1rem);
}

@media (max-width: 996px) {
  .tableOfContents_jeP5 {
    display: none;
  }

  .docItemContainer_hgFs {
    padding: 0 0.3rem;
  }
}

/*
When the navbar is sticky, ensure that on anchor click,
the browser does not scroll that anchor behind the navbar
See https://twitter.com/JoshWComeau/status/1332015868725891076
 */
.anchorWithStickyNavbar_loeA {
  scroll-margin-top: calc(var(--ifm-navbar-height) + 0.5rem);
}

.anchorWithHideOnScrollNavbar_emO8 {
  scroll-margin-top: 0.5rem;
}

.hash-link {
  text-decoration: none;
  color: var(--ifm-color-dark);
}

.hash-link:hover {
  text-decoration: none;
  color: var(--ifm-color-dark);
}

.hash-link > span {
  padding-left: 0.5rem;
  transition: opacity var(--ifm-transition-fast);
  -webkit-user-select: none;
          user-select: none;
}

.hash-link span::after {
  opacity: 0;
  content: '#';
  text-decoration: underline;
  color: var(--ifm-color-primary);
}

.hash-link:hover span::after {
  opacity: 1;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.codeBlockContainer_Ckt0 {
  background: var(--prism-background-color);
  color: var(--prism-color);
  margin-bottom: var(--ifm-leading);
  box-shadow: var(--ifm-global-shadow-lw);
  border-radius: var(--ifm-code-border-radius);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.codeBlockContent_biex {
  position: relative;
  /* rtl:ignore */
  direction: ltr;
  border-radius: inherit;
}

.codeBlockTitle_Ktv7 {
  border-bottom: 1px solid var(--ifm-color-emphasis-300);
  font-size: var(--ifm-code-font-size);
  font-weight: 500;
  padding: 0.75rem var(--ifm-pre-padding);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.codeBlock_bY9V {
  --ifm-pre-background: var(--prism-background-color);
  margin: 0;
  padding: 0;
}

.codeBlockTitle_Ktv7 + .codeBlockContent_biex .codeBlock_bY9V {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.codeBlockStandalone_MEMb {
  padding: 0;
}

.codeBlockLines_e6Vv {
  font: inherit;
  /* rtl:ignore */
  float: left;
  min-width: 100%;
  padding: var(--ifm-pre-padding);
}

.codeBlockLinesWithNumbering_o6Pm {
  display: table;
  padding: var(--ifm-pre-padding) 0;
}

@media print {
  .codeBlockLines_e6Vv {
    white-space: pre-wrap;
  }
}

.buttonGroup__atx {
  display: flex;
  column-gap: 0.2rem;
  position: absolute;
  right: calc(var(--ifm-pre-padding) / 2);
  top: calc(var(--ifm-pre-padding) / 2);
}

.buttonGroup__atx button {
  display: flex;
  align-items: center;
  background: var(--prism-background-color);
  color: var(--prism-color);
  border: 1px solid var(--ifm-color-emphasis-300);
  border-radius: var(--ifm-global-radius);
  padding: 0.4rem;
  line-height: 0;
  transition: opacity 200ms ease-in-out;
  opacity: 0;
}

.buttonGroup__atx button:focus-visible,
.buttonGroup__atx button:hover {
  opacity: 1 !important;
}

.theme-code-block:hover .buttonGroup__atx button {
  opacity: 0.4;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/* Intentionally has zero specificity, so that to be able to override
the background in custom CSS file due bug https://github.com/facebook/docusaurus/issues/3678 */
:where(:root) {
  --docusaurus-highlighted-code-line-bg: rgb(72 77 91);
}

:where([data-theme='dark']) {
  --docusaurus-highlighted-code-line-bg: rgb(100 100 100);
}

.theme-code-block-highlighted-line {
  background-color: var(--docusaurus-highlighted-code-line-bg);
  display: block;
  margin: 0 calc(-1 * var(--ifm-pre-padding));
  padding: 0 var(--ifm-pre-padding);
}

.codeLine_lJS_ {
  display: table-row;
  counter-increment: line-count;
}

.codeLineNumber_Tfdd {
  display: table-cell;
  text-align: right;
  width: 1%;
  position: sticky;
  left: 0;
  padding: 0 var(--ifm-pre-padding);
  background: var(--ifm-pre-background);
  overflow-wrap: normal;
}

.codeLineNumber_Tfdd::before {
  content: counter(line-count);
  opacity: 0.4;
}

.theme-code-block-highlighted-line .codeLineNumber_Tfdd::before {
  opacity: 0.8;
}

.codeLineContent_feaV {
  padding-right: var(--ifm-pre-padding);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tabList__CuJ {
  margin-bottom: var(--ifm-leading);
}

.tabItem_LNqP {
  margin-top: 0 !important;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.theme-code-block:hover .copyButtonCopied_obH4 {
  opacity: 1 !important;
}

.copyButtonIcons_eSgA {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
}

.copyButtonIcon_y97N,
.copyButtonSuccessIcon_LjdS {
  position: absolute;
  top: 0;
  left: 0;
  fill: currentColor;
  opacity: inherit;
  width: inherit;
  height: inherit;
  transition: all 0.15s ease;
}

.copyButtonSuccessIcon_LjdS {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.33);
  opacity: 0;
  color: #00d600;
}

.copyButtonCopied_obH4 .copyButtonIcon_y97N {
  transform: scale(0.33);
  opacity: 0;
}

.copyButtonCopied_obH4 .copyButtonSuccessIcon_LjdS {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition-delay: 0.075s;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tabItem_Ymn6 > *:last-child {
  margin-bottom: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.wordWrapButtonIcon_Bwma {
  width: 1.2rem;
  height: 1.2rem;
}

.wordWrapButtonEnabled_EoeP .wordWrapButtonIcon_Bwma {
  color: var(--ifm-color-primary);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/*
CSS variables, meant to be overridden by final theme
 */
.details_lb9f {
  --docusaurus-details-summary-arrow-size: 0.38rem;
  --docusaurus-details-transition: transform 200ms ease;
  --docusaurus-details-decoration-color: grey;
}

.details_lb9f > summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding-left: 1rem;
}

/* TODO: deprecation, need to remove this after Safari will support `::marker` */
.details_lb9f > summary::-webkit-details-marker {
  display: none;
}

.details_lb9f > summary::before {
  position: absolute;
  top: 0.45rem;
  left: 0;

  /* CSS-only Arrow */
  content: '';
  border-width: var(--docusaurus-details-summary-arrow-size);
  border-style: solid;
  border-color: transparent transparent transparent
    var(--docusaurus-details-decoration-color);

  /* Arrow rotation anim */
  transform: rotate(0deg);
  transition: var(--docusaurus-details-transition);
  transform-origin: calc(var(--docusaurus-details-summary-arrow-size) / 2) 50%;
}

/* When JS disabled/failed to load: we use the open property for arrow animation: */
.details_lb9f[open]:not(.isBrowser_bmU9) > summary::before,

.details_lb9f[data-collapsed='false'].isBrowser_bmU9 > summary::before {
  transform: rotate(90deg);
}

.collapsibleContent_i85q {
  margin-top: 1rem;
  border-top: 1px solid var(--docusaurus-details-decoration-color);
  padding-top: 1rem;
}

.collapsibleContent_i85q > *:last-child {
  margin-bottom: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.details_b_Ee {
  --docusaurus-details-decoration-color: var(--ifm-alert-border-color);
  --docusaurus-details-transition: transform var(--ifm-transition-fast) ease;
  margin: 0 0 var(--ifm-spacing-vertical);
  border: 1px solid var(--ifm-alert-border-color);
}

.anchorNavSticky {
  scroll-margin-top: calc(var(--ifm-navbar-height) + 1rem);
}

.hash-link span {
  opacity: 0;
}

.hash-link span svg {
  width: 20px;
  height: 20px;
}

.hash-link span::after {
  opacity: 0;
  content: '';
  text-decoration: underline;
  color: var(--ifm-color-primary);
}

.hash-link:hover span {
  opacity: 1;
  transition: opacity 300ms;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.containsTaskList_mC6p {
  list-style: none;
}

:not(.containsTaskList_mC6p > li) > .containsTaskList_mC6p {
  padding-left: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.img_ev3q {
  height: auto;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.admonition_LlT9 {
  margin-bottom: 1em;
}

.admonitionHeading_tbUL {
  font: var(--ifm-heading-font-weight) var(--ifm-h5-font-size) /
    var(--ifm-heading-line-height) var(--ifm-heading-font-family);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.admonitionHeading_tbUL code {
  text-transform: none;
}

.admonitionIcon_kALy {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4em;
}

.admonitionIcon_kALy svg {
  display: inline-block;
  height: 1.6em;
  width: 1.6em;
  fill: var(--ifm-alert-foreground-color);
}

.admonitionContent_S0QG > :last-child {
  margin-bottom: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.breadcrumbsContainer_Z_bl {
  --ifm-breadcrumb-size-multiplier: 0.8;
  margin-bottom: 0.8rem;
}

.breadcrumbHomeIcon_OVgt {
  position: relative;
  top: 1px;
  vertical-align: top;
  height: 1.1rem;
  width: 1.1rem;
}

.productSelecterWrapper {
  display: none;
}
@media only screen and (max-width: 996px) {
  .doc-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .doc-breadcrumbs > div {
    margin: 0;
    margin-bottom: 0 !important;
    flex: 1;
  }

  @media only screen and (max-width: 599px) {
    .doc-breadcrumbs {
      position: relative;
    }

    .mobile-collapsible > div:last-child {
      top: 5rem;
    }

    .mobile-collapsible > div:last-child > ul {
      border-top: 1px solid var(--color-gray-100);
    }
  }

  @media only screen and (min-width: 600px) {
    .doc-breadcrumbs .mobile-collapsible {
      position: relative;
    }
  }

  .doc-breadcrumbs .mobile-collapsible > div:last-child {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
  }

  .productSelecterWrapper {
    display: block;
  }
  .productSelecterWrapper .product-selecter {
    margin-left: 0px !important;
  }

  .doc-breadcrumbs .platform-selecter {
    display: none;
  }
}

.doc-breadcrumbs .mobile-collapsible {
  display: block;
}

/* .doc-breadcrumbs .mobile-collapsible button {
  color: var(--color-gray-900);
} */

.doc-breadcrumbs .dropdown-container {
  margin-bottom: 1.5rem;
  display: block;
}

.doc-breadcrumbs .dropdown__box {
  padding-top: 8px;
  padding-bottom: 8px;
}

@media only screen and (min-width: 997px) {
  .doc-breadcrumbs .mobile-collapsible {
    display: none;
  }

  .doc-breadcrumbs .dropdown-container {
    display: none;
  }
}

@media (min-width: 997px) {
  .generatedIndexPage_jE6W {
    max-width: 75% !important;
  }

  .list_XVd1 article:nth-last-child(-n + 2) {
    margin-bottom: 0 !important;
  }
}

/* Duplicated from .markdown h1 */
.title__lw4 {
  --ifm-h1-font-size: 3rem;
  margin-bottom: calc(1.25 * var(--ifm-leading));
}

.list_XVd1 article:last-child {
  margin-bottom: 0 !important;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.docItemContainer_Djhp header + *,
.docItemContainer_Djhp article > *:first-child {
  margin-top: 0;
}

@media (min-width: 997px) {
  .docItemCol_VOVn {
    max-width: 75% !important;
  }
}

