@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;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 {
    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[href].breadcrumbs__link: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: var(--ifm-transition-fast);
    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: var(--ifm-transition-fast);
      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 (prefers-reduced-motion: reduce) {
  :root {
    --ifm-transition-fast: 0ms;
    --ifm-transition-slow: 0ms;
  }
}

@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);
}

@font-face{font-family:"JetBrainsMono";src:url(/assets/fonts/JetBrainsMono-Regular-1d9e47ce7f6576ce7bae14ffc63d9b29.woff2) format("woff2");font-display:swap}html:has(body):has(div):has(div):has(.homepage){scroll-behavior:smooth}:root{--ifm-color-primary: #000000;--ifm-color-primary-dark: #000000;--ifm-color-primary-darker: #000000;--ifm-color-primary-darkest: #000000;--ifm-color-primary-light: #333333;--ifm-color-primary-lighter: #525252;--ifm-color-primary-lightest: #737373;--ifm-color-gray-0: #ffffff;--ifm-color-gray-100: #fafafa;--ifm-color-gray-200: #f5f5f5;--ifm-color-gray-300: #e5e5e5;--ifm-color-gray-400: #d4d4d4;--ifm-color-gray-500: #a3a3a3;--ifm-color-gray-600: #737373;--ifm-color-gray-700: #525252;--ifm-color-gray-800: #262626;--ifm-color-gray-900: #171717;--ifm-color-gray-1000: #0a0a0a;--ifm-button-background-color: var(--ifm-color-emphasis-0);--ifm-color-secondary: #0a644e;--ifm-color-secondary-dark: #0a5f4a;--ifm-color-secondary-darker: #095a46;--ifm-color-secondary-darkest: #095542;--ifm-color-secondary-light: #0b6952;--ifm-color-secondary-lighter: #0b6e56;--ifm-color-secondary-lightest: #0c735a;--ifm-color-info: #0074d3;--ifm-color-warning: #a36700;--ifm-color-danger: #d13c3c;--ifm-color-success: #1db846;--doc-sidebar-width: 300px !important;--ifm-font-family-base: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;--ifm-font-family-monospace: "JetBrainsMono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--ifm-font-size-base: 100%;--openapi-input-background: var(--ifm-color-emphasis-0) !important;--ifm-pre-background: #f6f8fa;--ifm-navbar-background-color: #000000;--ifm-navbar-height: 87px;--ifm-footer-background-color: #000000;--ifm-footer-color: #ffffff;--ifm-container-width-xl: calc(1600px - var(--doc-sidebar-width));--ifm-github-logo: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E");--ifm-medium-logo: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 1770 1000"><circle cx="500" cy="500" r="500"/><ellipse ry="475" rx="250" cy="501" cx="1296"/><ellipse cx="1682" cy="502" rx="88" ry="424"/></svg>');--aa-primary-color-rgb: 0, 0, 0 !important;--aa-input-background-color-rgb: 255, 255, 255 !important;--aa-input-border-color-rgb: 229, 229, 229 !important;--ifm-toc-border-color: #e5e5e5}body{font-size:16px;line-height:1.75;color:#374151;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}h1,h2,h3,h4,h5,h6{color:#111;font-weight:600}h1{font-size:3rem;letter-spacing:-0.035em;line-height:1.2}h2{font-size:1.5rem;letter-spacing:-0.025em;line-height:1.3}h3{font-size:1.25rem;letter-spacing:-0.02em;line-height:1.4}h4{font-size:1.125rem;letter-spacing:-0.02em}@media screen and (max-width: 768px){h1{font-size:1.75rem}h2{font-size:1.25rem}h3{font-size:1.125rem}}@media screen and (max-width: 480px){h1{font-size:1.5rem}h2{font-size:1.125rem}}html[data-theme=dark]{--ifm-color-primary: #f9fafb;--ifm-color-primary-dark: #e5e7eb;--ifm-color-primary-darker: #d1d5db;--ifm-color-primary-darkest: #9ca3af;--ifm-color-primary-light: #f9fafb;--ifm-color-primary-lighter: #ffffff;--ifm-color-primary-lightest: #ffffff;--ifm-color-secondary: #25c2a0;--ifm-color-secondary-dark: #23b898;--ifm-color-secondary-darker: #21af90;--ifm-color-secondary-darkest: #1fa588;--ifm-color-secondary-light: #27cca8;--ifm-color-secondary-lighter: #29d5b0;--ifm-color-secondary-lightest: #32d8b4;--ifm-color-info: #007ce2;--ifm-color-warning: #ef9700;--ifm-color-danger: #d54d4d;--ifm-color-success: #158633;--ifm-background-surface-color: var(--ifm-color-gray-1000);--ifm-background-color: var(--ifm-color-gray-1000);--ifm-pre-background: var(--ifm-color-gray-900);--ifm-toc-border-color: rgba(84, 84, 84, 0.48);--ifm-navbar-background-color: #000000;--ifm-card-background-color: var(--ifm-color-gray-900);--prism-background-color: var(--ifm-background-color) !important;--ifm-footer-background-color: black}html[data-theme=dark] .header-blog-link:before{filter:invert(1)}html[data-theme=dark] .header-github-link:before{filter:invert(1)}html[data-theme=dark] .tabs__item--active{background-color:var(--ifm-color-gray-800) !important}html[data-theme=dark] .mimeTabActive_node_modules-docusaurus-theme-openapi-docs-lib-next-theme-MimeTabs-styles-module{background-color:var(--ifm-color-gray-800) !important}html[data-theme=dark] .theme-doc-sidebar-container button[class*=collapseSidebarButton_]::before,html[data-theme=dark] .theme-doc-sidebar-container div[class*=collapsedDocSidebar_]::before{background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1IDlMNi4wMDAwMSA5IiBzdHJva2U9IiNGM0Y1RjciIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0zIDEzTDMgNS4wMDAwMSIgc3Ryb2tlPSIjRjNGNUY3IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTAgNUw2IDlMMTAgMTMiIHN0cm9rZT0iI0YzRjVGNyIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==) no-repeat}html[data-theme=dark] .theme-doc-sidebar-container button[class*=collapseSidebarButton_]:hover,html[data-theme=dark] .theme-doc-sidebar-container div[class*=collapsedDocSidebar_]:hover{background-color:var(--ifm-color-gray-700)}html[data-theme=dark] .theme-doc-sidebar-menu .theme-doc-sidebar-item-category .theme-doc-sidebar-item-link .menu__link{border-left:.1rem solid var(--ifm-color-gray-500)}html[data-theme=dark] .theme-doc-sidebar-menu .theme-doc-sidebar-item-category .theme-doc-sidebar-item-link .menu__link--active{border-left:.1rem solid var(--ifm-color-gray-400)}html[data-theme=dark] .theme-doc-sidebar-menu .theme-doc-sidebar-item-link-level-1.menu__list-item .menu__link,html[data-theme=dark] .theme-doc-sidebar-menu .theme-doc-sidebar-item-link-level-2.menu__list-item .menu__link{border-left:none}html[data-theme=dark] .table-of-contents.table-of-contents__left-border{border-left:1px solid var(--ifm-color-gray-500)}html[data-theme=dark] .table-of-contents .table-of-contents__link--active{border-left:.125rem solid var(--ifm-color-gray-400)}html[data-theme=dark] .admonition.alert{background-color:var(--ifm-color-gray-800)}html[data-theme=dark] .admonition .admonition-icon svg{fill:var(--ifm-alert-border-color);stroke:var(--ifm-alert-border-color)}html[data-theme=dark] .theme-edit-this-page,html[data-theme=dark] .issue-button{color:var(--ifm-color-gray-100)}html[data-theme=dark] .theme-edit-this-page::before,html[data-theme=dark] .theme-edit-this-page::after,html[data-theme=dark] .issue-button::before,html[data-theme=dark] .issue-button::after{filter:invert(1)}html[data-theme=dark] .theme-edit-this-page:hover,html[data-theme=dark] .issue-button:hover{color:var(--ifm-color-gray-0)}html[data-theme=dark] .pagination-nav .pagination-nav__item:not(:empty){background-color:var(--ifm-color-gray-800)}html[data-theme=dark] .pagination-nav .pagination-nav__item:not(:empty):hover{background-color:var(--ifm-color-gray-700)}html[data-theme=dark] .pagination-nav .pagination-nav__item:not(:empty) .pagination-nav__link{color:var(--ifm-color-content-secondary)}html[data-theme=dark] .pagination-nav .pagination-nav__item:first-child .pagination-nav__label::before,html[data-theme=dark] .pagination-nav .pagination-nav__item--next .pagination-nav__label::after{background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMgOEwxMiA4IiBzdHJva2U9IiNGM0Y1RjciIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTguMTY3OTcgMTIuNUwxMi42NjggNy45OTk5NUw4LjE2Nzk3IDMuNDk5OSIgc3Ryb2tlPSIjRjNGNUY3IiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=) no-repeat}html[data-theme=dark] .dropdown__menu .network-security::before,html[data-theme=dark] .dropdown__menu .prisma::before,html[data-theme=dark] .dropdown__menu .panos::before,html[data-theme=dark] .dropdown__menu .cortex::before,html[data-theme=dark] .dropdown__menu .xsoar::before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDI0IDI0IiB3aWR0aD0iMjRweCIgZmlsbD0iI2YwZjRmNyI+PHBhdGggZD0iTTAgMGgyNHYyNEgwVjB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTEyIDZjMi42MiAwIDQuODggMS44NiA1LjM5IDQuNDNsLjMgMS41IDEuNTMuMTFjMS41Ni4xIDIuNzggMS40MSAyLjc4IDIuOTYgMCAxLjY1LTEuMzUgMy0zIDNINmMtMi4yMSAwLTQtMS43OS00LTQgMC0yLjA1IDEuNTMtMy43NiAzLjU2LTMuOTdsMS4wNy0uMTEuNS0uOTVDOC4wOCA3LjE0IDkuOTQgNiAxMiA2bTAtMkM5LjExIDQgNi42IDUuNjQgNS4zNSA4LjA0IDIuMzQgOC4zNiAwIDEwLjkxIDAgMTRjMCAzLjMxIDIuNjkgNiA2IDZoMTNjMi43NiAwIDUtMi4yNCA1LTUgMC0yLjY0LTIuMDUtNC43OC00LjY1LTQuOTZDMTguNjcgNi41OSAxNS42NCA0IDEyIDR6Ii8+PC9zdmc+)}html[data-theme=dark] .theme-doc-version-badge{color:#000}html[data-theme=dark] .openapi-demo__server-container{background:var(--ifm-pre-background)}.tabs__item--active{background-color:var(--ifm-color-gray-200) !important}.responseTabsListContainer_node_modules-docusaurus-theme-openapi-docs-lib-next-theme-ApiTabs-styles-module li{border:1px solid var(--ifm-color-primary);color:var(--ifm-color-primary)}.responseTabsListContainer_node_modules-docusaurus-theme-openapi-docs-lib-next-theme-ApiTabs-styles-module li:not(.responseTabActive_node_modules-docusaurus-theme-openapi-docs-lib-next-theme-ApiTabs-styles-module){opacity:.6}.responseTabsListContainer_node_modules-docusaurus-theme-openapi-docs-lib-next-theme-ApiTabs-styles-module li:hover{opacity:1;border:1px solid var(--ifm-color-primary);color:var(--ifm-color-primary) !important;background-color:rgba(0,0,0,0)}.mimeTabActive_node_modules-docusaurus-theme-openapi-docs-lib-next-theme-MimeTabs-styles-module{background-color:var(--ifm-color-gray-200) !important}.schemaTabsListContainer_node_modules-docusaurus-theme-openapi-docs-lib-next-theme-SchemaTabs-styles-module li{border:1px solid var(--ifm-color-primary);color:var(--ifm-color-primary)}.schemaTabsListContainer_node_modules-docusaurus-theme-openapi-docs-lib-next-theme-SchemaTabs-styles-module li:not(.schemaTabActive_node_modules-docusaurus-theme-openapi-docs-lib-next-theme-SchemaTabs-styles-module){opacity:.6}.schemaTabsListContainer_node_modules-docusaurus-theme-openapi-docs-lib-next-theme-SchemaTabs-styles-module li:hover{opacity:1;border:1px solid var(--ifm-color-primary);color:var(--ifm-color-primary) !important;background-color:rgba(0,0,0,0)}.button.button--secondary{color:var(--ifm-button-color) !important}.main-wrapper{width:100%;align-self:center;overflow:visible}[class*=docItemCol]{max-width:100% !important}[class*=docMainContainer]>.container{margin-left:0;padding-left:1.5rem;max-width:100%}.navbar{border-bottom:1px solid var(--ifm-toc-border-color);box-shadow:none}.navbar .navbar__inner{margin:0 auto}.navbar__link{color:#fff;font-weight:var(--ifm-font-weight-semibold);font-size:14px}.navbar__link:hover,.navbar__link--active{color:#fff;text-decoration:none;font-size:14px}.navbar__logo img{height:55px;width:210px}@media screen and (max-width: 996px){.navbar__logo img{height:40px;width:155px}}.navbar__logo{height:55px}@media screen and (max-width: 996px){.navbar__logo{height:40px}}.dropdown .navbar__link{color:var(--ifm-navbar-link-color);font-weight:var(--ifm-font-weight-bold);text-transform:uppercase;letter-spacing:.25px;font-size:14px}.dropdown .navbar__link::after{display:none}.dropdown__menu.mega{display:grid;grid-template-columns:1fr 1fr;justify-content:space-between;background-color:var(--ifm-navbar-background-color);border-radius:8px;box-shadow:0 4px 16px rgba(0,0,0,.08)}.dropdown__menu ul{list-style:none;padding:1rem}.dropdown__link{display:flex;align-items:center;text-align:left;margin-top:0}.dropdown__link:hover{cursor:pointer}.navbar-section-title{font-size:.75rem;padding-left:.5rem;line-height:135%;font-weight:600;letter-spacing:.025rem;text-transform:uppercase;color:#a3a3a3}.navbar-doc-items{margin:.5rem 0}.section__docs{font-weight:bolder;cursor:inherit;background-color:rgba(0,0,0,0) !important;border-radius:0;border-bottom:1px solid var(--ifm-color-emphasis-400)}.indent{padding-left:1rem}.navbar-sidebar{font-size:14px;background:#000}.theme-doc-sidebar-item-link-level-1{font-weight:600}.theme-doc-sidebar-menu{font-size:14px;font-weight:var(--ifm-font-weight-normal)}.theme-doc-sidebar-menu .menu__link{color:#525252;border-radius:6px;padding:.35rem .75rem;transition:all .15s ease}.theme-doc-sidebar-menu .menu__link:hover{background-color:#f5f5f5;color:#111}.theme-doc-sidebar-menu .menu__link .menu__link--active,.theme-doc-sidebar-menu .menu__link.menu__link--active{font-weight:600;color:#000;background-color:rgba(0,0,0,.06)}.menu__list-item--collapsed .menu__list-item-collapsible::before{transform:rotate(0deg) !important;transition:all var(--ifm-transition-fast) ease-in-out}.theme-doc-sidebar-menu .theme-doc-sidebar-item-category .menu__list-item-collapsible+.menu__list{padding-left:1.1rem}.theme-doc-sidebar-menu .theme-doc-sidebar-item-category .theme-doc-sidebar-item-link{margin-top:0}.theme-doc-sidebar-menu .theme-doc-sidebar-item-category .theme-doc-sidebar-item-link .menu__link{border-left:1px solid #e5e5e5;border-radius:0 6px 6px 0;padding-left:1.05rem}.theme-doc-sidebar-menu .theme-doc-sidebar-item-category .theme-doc-sidebar-item-link .menu__link--active{border-left:2px solid #000}.theme-doc-sidebar-menu .theme-doc-sidebar-item-link-level-1.menu__list-item,.theme-doc-sidebar-menu .theme-doc-sidebar-item-link-level-2.menu__list-item{display:flex;align-items:center}.theme-doc-sidebar-menu .theme-doc-sidebar-item-link-level-1.menu__list-item .menu__link,.theme-doc-sidebar-menu .theme-doc-sidebar-item-link-level-2.menu__list-item .menu__link{border-left:none;justify-content:flex-start}.theme-doc-sidebar-menu .menu__list-item .menu__caret{display:flex;align-items:center;justify-content:center;position:absolute;top:0px;left:0px;padding:0 0}.theme-doc-sidebar-menu .menu__list-item .menu__caret::before,.theme-doc-sidebar-menu .menu__list-item .menu__link--sublist::after{min-width:1.5rem;width:1.5rem;height:1.5rem;background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDEwTDggNkw0IDEwIiBzdHJva2U9IiMxQjI3MzgiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==) no-repeat;background-position:center center;min-height:29.5px;padding-left:var(--ifm-menu-link-padding-horizontal)}.theme-doc-sidebar-menu .menu__list-item .menu__link--sublist::after{position:absolute;left:0;top:0}.theme-doc-sidebar-menu .menu__list-item .menu__list-item-collapsible::before{content:"";width:1.5rem;height:1.5rem;height:auto;background-position:center center;transform:rotate(90deg);transition:all .3s ease-in-out}.theme-doc-sidebar-menu .menu__list-item .menu__list-item-collapsible .menu__link--active{background:rgba(0,0,0,.06) !important}.table-of-contents{margin-left:0;padding-left:var(--ifm-toc-padding-horizontal)}.table-of-contents.table-of-contents__left-border{border-left:1px solid #e5e5e5}.table-of-contents .table-of-contents__link{display:block;font-size:.75rem;color:#737373;transition:color .15s ease}.table-of-contents .table-of-contents__link:hover{color:#000}.table-of-contents .table-of-contents__link--active{font-weight:600;border-left:2px solid #000;color:#000;margin-left:-1rem;padding-left:.75rem}a:any-link:hover{text-decoration:none}.markdown{max-width:100%}.markdown>h1:first-child{margin-bottom:1.5rem}.markdown>h2{margin-top:2.5rem;padding-bottom:.5rem;border-bottom:1px solid #e5e5e5}.markdown>h3{margin-top:2rem}.markdown p{margin-bottom:1.25rem}.markdown div[class*=tableContainer],.markdown .table-container{overflow-x:auto;-webkit-overflow-scrolling:touch}.markdown table{display:table;border-collapse:collapse;width:auto;font-size:.875rem;border:1px solid #e5e5e5;border-radius:8px;overflow:hidden}.markdown table th{background:#fafafa;font-weight:600;color:#111;padding:.75rem 1rem;border-bottom:1px solid #e5e5e5;text-align:left;white-space:nowrap}.markdown table td{padding:.75rem 1rem;border-bottom:1px solid #f5f5f5;color:#374151}.markdown table tr:last-child td{border-bottom:none}.markdown table tr:hover td{background-color:#fafafa}@media screen and (max-width: 768px){.markdown table{font-size:.8125rem}.markdown table th,.markdown table td{padding:.5rem .75rem}}.markdown blockquote{border-left:3px solid #000;background:#fafafa;padding:1rem 1.25rem;margin:1.5rem 0;color:#525252;border-radius:0 8px 8px 0}.markdown blockquote p:last-child{margin-bottom:0}.admonition{border:none;border-left:4px solid;border-radius:0 8px 8px 0;background:#fafafa;padding:1rem 1.25rem}.admonition .admonition-heading{font-weight:600;margin-bottom:.5rem}.admonition .admonition-content p:last-child{margin-bottom:0}code{background-color:#f6f8fa !important;border:1px solid #e5e5e5;border-radius:4px;padding:.15em .35em;font-size:.875em}pre code{border:none;padding:0}.prism-code{border-radius:10px !important;border:1px solid #e5e5e5}div[class*=codeBlockContainer]{border-radius:10px;border:1px solid #e5e5e5;overflow:hidden;box-shadow:none}.api-method>.menu__link{align-items:center;justify-content:start}.api-method>.menu__link::after{width:40px;height:20px;font-size:12px;line-height:20px;text-transform:uppercase;font-weight:600;border-radius:.25rem;align-content:start;margin-left:auto;text-align:right;flex-shrink:0;border-color:rgba(0,0,0,0)}.get>.menu__link::after{content:"get";color:var(--ifm-color-secondary)}.post>.menu__link::after{content:"post";color:var(--ifm-color-success)}.delete>.menu__link::after{content:"del";color:var(--ifm-color-danger)}.put>.menu__link::after{content:"put";color:var(--ifm-color-info)}.patch>.menu__link::after{content:"patch";color:var(--ifm-color-warning)}.head>.menu__link::after{content:"head";color:var(--ifm-color-secondary-darkest)}.openapi-demo__request-form .openapi-demo__request-btn{opacity:.75;background-color:var(--ifm-color-success)}.openapi-demo__request-form .openapi-demo__request-btn:hover{opacity:1;background-color:var(--ifm-color-success)}.openapi-demo__response-container>div:nth-child(2){padding:1rem;background-color:var(--ifm-pre-background) !important}.openapi-demo__response-container .openapi-tabs__schema-container{margin-top:0}.openapi-demo__response-container .openapi-demo__code-block code{padding-top:var(--ifm-pre-padding) !important}.openapi-demo__playground-editor .prism-code{font-size:var(--openapi-demo-font-size-input)}.openapi-explorer__request-btn{background-color:var(--ifm-color-success) !important}.openapi-explorer__request-btn:hover{background-color:var(--ifm-color-success-light) !important}.openapi-explorer__response-placeholder-message{color:#374151 !important;text-align:left !important}.openapi-explorer__response-placeholder-message code{background-color:unset !important}.openapi-explorer__form-item{font-size:.9rem !important}.header-github-link:before{background:var(--ifm-github-logo) no-repeat;content:"";display:flex;height:24px;width:24px}.header-blog-link:before{background:var(--ifm-medium-logo) no-repeat;content:"";display:flex;height:24px;width:24px}.theme-doc-version-badge{margin-bottom:var(--ifm-leading);color:#fff}.result{padding:0 var(--ifm-spacing-horizontal)}.dummy-search>button{pointer-events:none}.theme-edit-this-page{display:flex;justify-content:flex-start}@media screen and (max-width: 997px){.theme-edit-this-page{justify-content:flex-start}}.theme-api-markdown>div:first-child summary::before{content:"";background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 24 24"><path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"></path></svg>') 50%/1.2rem 1.2rem;filter:var(--ifm-menu-link-sublist-icon-filter);height:.75rem;transform:rotate(90deg) !important;width:.75rem;transition:transform var(--ifm-transition-fast) linear !important;border:none !important;transform-origin:unset !important}.theme-api-markdown>div:first-child details[data-collapsed=false]>summary::before{transform:rotate(180deg) !important}.pagination-nav .pagination-nav__link{border:1px solid #e5e5e5;border-radius:8px;padding:1rem 1.25rem;transition:all .15s ease}.pagination-nav .pagination-nav__link:hover{border-color:#000;box-shadow:0 2px 8px rgba(0,0,0,.08)}.pagination-nav .pagination-nav__sublabel{font-size:.75rem;color:#a3a3a3;text-transform:uppercase;letter-spacing:.04em;font-weight:500}.pagination-nav .pagination-nav__label{font-weight:600;color:#111}.breadcrumbs__item:first-child .breadcrumbs__link{padding-left:0}.breadcrumbs__link{color:#737373;font-size:.8125rem}.breadcrumbs__link:hover{color:#000}.breadcrumbs__item--active .breadcrumbs__link{color:#374151;font-weight:500}.footer{background-color:#000;color:#fff;border-top:none;padding:var(--ifm-footer-padding-vertical) var(--ifm-footer-padding-horizontal)}.footer--dark{--ifm-footer-background-color: #000000;--ifm-footer-color: white;--ifm-footer-link-color: white;--ifm-footer-title-color: white}.footer__title{color:#fff;font-weight:600;font-size:.875rem;text-transform:uppercase;letter-spacing:.04em}.footer__link-item{color:rgba(255,255,255,.7);font-size:.875rem;transition:color .15s ease}.footer__link-item:hover{color:#fff}.footer__copyright{color:rgba(255,255,255,.5);font-size:.8125rem}html[data-theme=light] .openapi-explorer__code-block-word-wrap-btn-icon,html[data-theme=light] .openapi-explorer__code-block-copy-btn,html[data-theme=light] .openapi-explorer__code-block-exit-btn,html[data-theme=light] .openapi-explorer__code-block-expand-btn{color:#374151 !important}html[data-theme=light] .tabs__item--active{border-bottom-color:#000;color:#000}html[data-theme=light] .table-of-contents__link:hover,html[data-theme=light] .table-of-contents__link:hover code,html[data-theme=light] .table-of-contents__link--active,html[data-theme=light] .table-of-contents__link--active code{color:#000;text-decoration:none}html[data-theme=light] a:hover{color:#3f6396}html[data-theme=light] a{color:#3f6396}html[data-theme=light] nav__link:hover{border-color:#000;text-decoration:none}html[data-theme=light] .navbar__link,html[data-theme=light] .navbar__link:hover{color:#fff;font-size:14px}html[data-theme=light] .navbar__link:hover,html[data-theme=light] .navbar__link--active{color:#fff}html[data-theme=light] .footer__link-item,html[data-theme=light] .footer__link-item:hover{color:rgba(255,255,255,.7)}html[data-theme=light] .footer__link-item:hover{color:#fff}html[data-theme=light] .pagination-nav__link:hover{border-color:#000;text-decoration:none}html[data-theme=light] .openapi-explorer__response-placeholder-message{color:#374151 !important;text-align:left !important}html[data-theme=light] .custom-code-copy-button{color:#374151 !important}html[data-theme=light] .clean-btn{color:#fff}html[data-theme=light] .theme-doc-toc-mobile .clean-btn{color:#000}@media screen and (max-width: 996px){html[data-theme=light] .menu__link{color:#fff !important}html[data-theme=light] .menu__link--active{color:#fff !important}html[data-theme=light] .menu__link--active:hover{color:#fff !important}html[data-theme=light] .menu__list-item-collapsible .menu__link:hover,html[data-theme=light] .menu__list-item-collapsible .menu__link--active{color:#fff !important}html[data-theme=light] .theme-doc-sidebar-menu .theme-doc-sidebar-item-category .theme-doc-sidebar-item-link .menu__link{color:#fff !important}}@media screen and (min-width: 997px){html[data-theme=light] .menu__link{color:#525252}html[data-theme=light] .menu__link--active{color:#000}html[data-theme=light] .menu__link--active:hover{color:#000}}html[data-theme=light] .tocCollapsibleButton_TO0P{color:#374151 !important}html[data-theme=light] .card{color:#111}html[data-theme=light] .pagination-nav__link{color:#111}html[data-theme=light] .table-of-contents .table-of-contents__link{color:#737373}html[data-theme=light] .breadcrumbs__link{color:#737373}html[data-theme=light] .theme-code-block-highlighted-line{background-color:rgba(72,77,91,.0509803922)}html[data-theme=dark] h1,html[data-theme=dark] h2,html[data-theme=dark] h3,html[data-theme=dark] h4,html[data-theme=dark] h5,html[data-theme=dark] h6{color:#f9fafb}html[data-theme=dark] body{color:#d1d5db}html[data-theme=dark] .navbar__link,html[data-theme=dark] .navbar__link:hover,html[data-theme=dark] .navbar__link--active{color:#fff !important}html[data-theme=dark] .custom-navbar-action{color:#fff !important}html[data-theme=dark] a{color:#93c5fd}html[data-theme=dark] a:hover{color:#bfdbfe;text-decoration:underline}html[data-theme=dark] code{background-color:#1f2937 !important;border-color:#374151;color:#e5e7eb}html[data-theme=dark] .prism-code{border-color:#374151}html[data-theme=dark] div[class*=codeBlockContainer]{border-color:#374151}html[data-theme=dark] .markdown>h2{border-bottom-color:#374151}html[data-theme=dark] .markdown p{color:#d1d5db}html[data-theme=dark] .markdown blockquote{background:#1f2937;border-left-color:#9ca3af;color:#d1d5db}html[data-theme=dark] .admonition{background:#1f2937}html[data-theme=dark] .markdown table{border-color:#374151}html[data-theme=dark] .markdown table th{background:#1f2937;color:#f9fafb;border-bottom-color:#374151}html[data-theme=dark] .markdown table td{color:#d1d5db;border-bottom-color:#374151}html[data-theme=dark] .markdown table tr:hover td{background-color:#1f2937}html[data-theme=dark] .theme-doc-sidebar-menu .menu__link{color:#9ca3af}html[data-theme=dark] .theme-doc-sidebar-menu .menu__link:hover{background-color:#1f2937;color:#f9fafb}html[data-theme=dark] .theme-doc-sidebar-menu .menu__link--active,html[data-theme=dark] .theme-doc-sidebar-menu .menu__link.menu__link--active{color:#f9fafb;background-color:rgba(255,255,255,.08)}html[data-theme=dark] .theme-doc-sidebar-menu .theme-doc-sidebar-item-category .theme-doc-sidebar-item-link .menu__link{border-left-color:#374151}html[data-theme=dark] .theme-doc-sidebar-menu .theme-doc-sidebar-item-category .theme-doc-sidebar-item-link .menu__link--active{border-left-color:#f9fafb}html[data-theme=dark] .table-of-contents.table-of-contents__left-border{border-left-color:#374151}html[data-theme=dark] .table-of-contents .table-of-contents__link{color:#9ca3af}html[data-theme=dark] .table-of-contents .table-of-contents__link:hover,html[data-theme=dark] .table-of-contents .table-of-contents__link:hover code,html[data-theme=dark] .table-of-contents .table-of-contents__link--active,html[data-theme=dark] .table-of-contents .table-of-contents__link--active code{color:#f9fafb;text-decoration:none}html[data-theme=dark] .table-of-contents .table-of-contents__link--active{border-left-color:#f9fafb}html[data-theme=dark] .theme-doc-toc-mobile .clean-btn{color:#f9fafb}html[data-theme=dark] .breadcrumbs__link{color:#9ca3af}html[data-theme=dark] .breadcrumbs__link:hover{color:#f9fafb}html[data-theme=dark] .breadcrumbs__item--active .breadcrumbs__link{background:var(--ifm-breadcrumb-item-background-active);color:#f9fafb}html[data-theme=dark] .pagination-nav .pagination-nav__link{border-color:#374151}html[data-theme=dark] .pagination-nav .pagination-nav__link:hover{border-color:#9ca3af}html[data-theme=dark] .pagination-nav__sublabel{color:#6b7280}html[data-theme=dark] .pagination-nav__label{color:#f9fafb}html[data-theme=dark] .tabs__item--active{border-bottom-color:#f9fafb;color:#f9fafb}html[data-theme=dark] .openapi-explorer__code-block-word-wrap-btn-icon,html[data-theme=dark] .openapi-explorer__code-block-copy-btn,html[data-theme=dark] .openapi-explorer__code-block-exit-btn,html[data-theme=dark] .openapi-explorer__code-block-expand-btn{color:#fff !important}html[data-theme=dark] .custom-code-copy-button{color:#fff !important}html[data-theme=dark] .openapi-explorer__response-placeholder-message{color:#d1d5db !important;text-align:left !important}html[data-theme=dark] .openapi-explorer__code-block-container,html[data-theme=dark] .openapi-explorer__code-block,html[data-theme=dark] .prism-code.openapi-explorer__code-block{background-color:#1e1e1e !important;color:#d4d4d4 !important}html[data-theme=dark] .openapi-explorer__code-block-code-line-number{background-color:#1e1e1e !important;color:#858585 !important}html[data-theme=dark] .openapi-explorer__code-block .token-line,html[data-theme=dark] .openapi-explorer__code-block .openapi-explorer__code-block-code-line,html[data-theme=dark] .openapi-explorer__code-block .openapi-explorer__code-block-code-line-content{color:#d4d4d4 !important}html[data-theme=dark] .openapi-explorer__code-block .token.plain,html[data-theme=dark] .openapi-explorer__code-block .token.punctuation{color:#d4d4d4 !important}html[data-theme=dark] .openapi-explorer__code-block .token.string{color:#ce9178 !important}html[data-theme=dark] .openapi-explorer__code-block .token.function{color:#dcdcaa !important}html[data-theme=dark] .openapi-explorer__code-block .token.parameter.variable{color:#9cdcfe !important}html[data-theme=dark] .openapi-explorer__request-form .monaco-editor,html[data-theme=dark] .openapi-explorer__request-form .monaco-editor .margin,html[data-theme=dark] .openapi-explorer__request-form .monaco-editor .monaco-editor-background,html[data-theme=dark] .openapi-explorer__request-form .monaco-editor .inputarea.ime-input{background-color:#1e1e1e !important}html[data-theme=dark] .openapi-explorer__request-form .monaco-editor .view-lines,html[data-theme=dark] .openapi-explorer__request-form .monaco-editor .view-line span{color:#d4d4d4 !important}html[data-theme=dark] .openapi-explorer__request-form .monaco-editor .line-numbers{color:#858585 !important}html[data-theme=dark] .openapi-explorer__request-form .monaco-editor .mtk1{color:#d4d4d4 !important}html[data-theme=dark] .openapi-explorer__request-form .monaco-editor .mtk5{color:#ce9178 !important}html[data-theme=dark] .openapi-explorer__request-form .monaco-editor .mtk6{color:#b5cea8 !important}html[data-theme=dark] .openapi-explorer__request-form .monaco-editor .mtk9{color:#9cdcfe !important}html[data-theme=dark] .openapi-explorer__request-form .monaco-editor .bracket-highlighting-0,html[data-theme=dark] .openapi-explorer__request-form .monaco-editor .bracket-highlighting-1,html[data-theme=dark] .openapi-explorer__request-form .monaco-editor .bracket-highlighting-2{color:gold !important}html[data-theme=dark] .openapi-explorer__request-form .monaco-editor .minimap canvas{opacity:.6}html[data-theme=dark] .openapi-explorer__request-form .monaco-editor .scroll-decoration{box-shadow:none !important}html[data-theme=dark] .aa-DetachedSearchButtonIcon{color:#fff}html[data-theme=dark] .aa-DetachedContainer{background:#000}html[data-theme=dark] .aa-Input{color:#fff}html[data-theme=dark] .aa-Label svg,html[data-theme=dark] .aa-LoadingIndicator svg{color:#fff}html[data-theme=dark] .prism-code,html[data-theme=dark] [class*=codeBlockContainer]{background-color:#1e1e1e !important;color:#d4d4d4 !important}html[data-theme=dark] [class*=codeBlockLines]{background-color:#1e1e1e !important;color:#d4d4d4 !important}html[data-theme=dark] .prism-code .token-line{color:#d4d4d4 !important}html[data-theme=dark] .prism-code .token.plain{color:#d4d4d4 !important}html[data-theme=dark] .prism-code .token.punctuation{color:#d4d4d4 !important}html[data-theme=dark] .prism-code .token.property{color:#9cdcfe !important}html[data-theme=dark] .prism-code .token.string{color:#ce9178 !important}html[data-theme=dark] .prism-code .token.number{color:#b5cea8 !important}html[data-theme=dark] .prism-code .token.boolean{color:#569cd6 !important}html[data-theme=dark] .prism-code .token.keyword{color:#569cd6 !important}html[data-theme=dark] .prism-code .token.operator{color:#d4d4d4 !important}html[data-theme=dark] .prism-code .token.function{color:#dcdcaa !important}html[data-theme=dark] .prism-code .token.comment{color:#6a9955 !important}html[data-theme=dark] .theme-code-block-highlighted-line{background-color:rgba(72,77,91,.5)}html[data-theme=dark] .card{color:#f9fafb;border-color:#374151;background-color:#111827}html[data-theme=dark] .ant-input,html[data-theme=dark] .ant-input-affix-wrapper{background-color:#1f2937 !important;border-color:#374151 !important;color:#f9fafb !important}html[data-theme=dark] .ant-input::placeholder,html[data-theme=dark] .ant-input-affix-wrapper::placeholder{color:#6b7280 !important}html[data-theme=dark] .ant-input-disabled,html[data-theme=dark] .ant-input-affix-wrapper-disabled{background-color:#111827 !important;color:#6b7280 !important}html[data-theme=dark] .ant-btn-primary{background-color:#f9fafb !important;border-color:#f9fafb !important;color:#111827 !important}html[data-theme=dark] .ant-btn-primary:hover{background-color:#e5e7eb !important;border-color:#e5e7eb !important;color:#111827 !important}html[data-theme=dark] .ant-btn-primary:disabled,html[data-theme=dark] .ant-btn-primary[disabled]{background-color:#374151 !important;border-color:#374151 !important;color:#6b7280 !important}html[data-theme=dark] .ant-btn-default{background-color:rgba(0,0,0,0) !important;border-color:#4b5563 !important;color:#f9fafb !important}html[data-theme=dark] .ant-btn-default:hover{background-color:#f9fafb !important;border-color:#f9fafb !important;color:#111827 !important}html[data-theme=dark] .ant-btn-default:disabled,html[data-theme=dark] .ant-btn-default[disabled]{background-color:rgba(0,0,0,0) !important;border-color:#374151 !important;color:#6b7280 !important}html[data-theme=dark] .ant-select-selector{background-color:#1f2937 !important;border-color:#374151 !important;color:#f9fafb !important}html[data-theme=dark] .ant-select-arrow{color:#9ca3af !important}html[data-theme=dark] .ant-select-dropdown{background-color:#1f2937 !important;border-color:#374151 !important}html[data-theme=dark] .ant-select-item{color:#d1d5db !important}html[data-theme=dark] .ant-select-item-option-active:not(.ant-select-item-option-disabled){background-color:#374151 !important}html[data-theme=dark] .ant-select-item-option-selected:not(.ant-select-item-option-disabled){background-color:#374151 !important;color:#f9fafb !important}html[data-theme=dark] .ant-layout{background-color:rgba(0,0,0,0) !important}html[data-theme=dark] .ant-form-item-label>label{color:#d1d5db !important}html[data-theme=dark] .ant-typography{color:#f9fafb !important}html[data-theme=dark] .ant-typography.ant-typography-danger{color:#f87171 !important}html[data-theme=dark] .ant-tooltip-inner{background-color:#374151 !important;color:#f9fafb !important}html[data-theme=dark] .ant-card{background-color:#111827 !important;border-color:#374151 !important;color:#d1d5db !important}html[data-theme=dark] .ant-card-head{border-bottom-color:#374151 !important;color:#f9fafb !important}html[data-theme=dark] .ant-table{background-color:#111827 !important;color:#d1d5db !important}html[data-theme=dark] .ant-table-thead>tr>th,html[data-theme=dark] .ant-table-thead>tr>td{background-color:#1f2937 !important;color:#f9fafb !important;border-bottom-color:#374151 !important}html[data-theme=dark] .ant-table-tbody>tr>td{border-bottom-color:#374151 !important;color:#d1d5db !important}html[data-theme=dark] .ant-table-tbody>tr:hover>td{background-color:#1f2937 !important}html[data-theme=dark] .ant-table-title{color:#f9fafb !important}html[data-theme=dark] .ant-table-wrapper .ant-table{border-color:#374151 !important}html[data-theme=dark] .ant-input-textarea textarea,html[data-theme=dark] textarea.ant-input{background-color:#1f2937 !important;border-color:#374151 !important;color:#f9fafb !important}html[data-theme=dark] .ant-input-textarea textarea::placeholder,html[data-theme=dark] textarea.ant-input::placeholder{color:#6b7280 !important}html[data-theme=dark] .ant-alert{border-color:#374151 !important}html[data-theme=dark] .ant-alert-error{background-color:rgba(248,113,113,.1) !important;border-color:#f87171 !important}html[data-theme=dark] .ant-alert-message{color:#f9fafb !important}html[data-theme=dark] .cm-editor{background-color:#1e1e1e !important;color:#d4d4d4 !important}html[data-theme=dark] .cm-editor .cm-gutters{background-color:#1e1e1e !important;color:#858585 !important;border-right-color:#333 !important}html[data-theme=dark] .cm-editor .cm-activeLineGutter{background-color:#2a2a2a !important}html[data-theme=dark] .cm-editor .cm-activeLine{background-color:rgba(255,255,255,.04) !important}html[data-theme=dark] .cm-editor .cm-cursor{border-left-color:#d4d4d4 !important}html[data-theme=dark] .cm-editor .cm-selectionBackground,html[data-theme=dark] .cm-editor .cm-content ::selection{background-color:rgba(100,150,255,.2) !important}html[data-theme=dark] .cm-editor .cm-foldPlaceholder{background-color:#374151 !important;color:#9ca3af !important}html[data-theme=dark] .tabs__item.active{color:#f9fafb !important;border-bottom-color:#f9fafb !important}html[data-theme=dark] .openapi-tabs__schema-label{color:inherit !important}html[data-theme=dark] .openapi-explorer__floating-btn{color:#f9fafb !important;border-color:#4b5563 !important}html[data-theme=dark] .card-column h3{color:#f9fafb !important}.aa-DetachedSearchButtonQuery{display:none !important}.aa-DetachedSearchButtonPlaceholder[hidden]{display:none !important}.aa-DetachedSearchButtonPlaceholder{display:none !important}.aa-DetachedSearchButton{color:#fff !important;background:rgba(0,0,0,0) !important;border:none !important;box-shadow:none !important}.aa-DetachedSearchButton svg{color:#fff !important;fill:currentColor !important}.aa-DetachedSearchButtonIcon,.aa-DetachedSearchButton{width:-moz-fit-content !important;width:fit-content !important}.custom-navbar-actions{display:inline-flex;align-items:center;gap:.5rem}@media screen and (max-width: 996px){.custom-navbar-actions{gap:0}}.custom-navbar-action{display:inline-flex;align-items:center;justify-content:center;padding:.25rem;line-height:1}.custom-navbar-action-icon{width:1.25rem;height:1.25rem}@media screen and (max-width: 996px){.menu__link--active{color:#fff}.menu__link--active:hover{color:#fff}.menu__link{color:#fff}.navbar-sidebar__back{color:#fff}.navbar-sidebar{background:#000}.menu__list-item .menu__caret::before,.menu__list-item .menu__link--sublist::after{min-width:1.5rem;width:1.5rem;height:1.5rem;background-position:center center;min-height:21.5px !important;padding-left:var(--ifm-menu-link-padding-horizontal);background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzUiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDEwTDggNkw0IDEwIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=) no-repeat !important}.menu__link--sublist-caret:after{filter:none !important}.menu__caret:before{filter:none !important}.navbar__toggle{color:#fff}}@media screen and (max-width: 768px){.markdown{max-width:100%}.pagination-nav{flex-direction:column;gap:.75rem}.pagination-nav .pagination-nav__link{padding:.75rem 1rem}.breadcrumbs__link{font-size:.75rem}}@media screen and (max-width: 480px){.markdown{max-width:100%}.markdown>h2{margin-top:1.75rem}.markdown>h3{margin-top:1.25rem}.footer{padding:2rem 1rem}.footer__title{font-size:.8125rem}.footer__link-item{font-size:.8125rem}}.demoscenariovideo-container{position:relative;width:100%;padding-bottom:56.25%;overflow:hidden;margin-bottom:20px;border-radius:10px}.demoscenariovideo-container iframe{position:absolute;top:0;left:0;width:100%;height:100%}
:root{--bash-background-color: transparent;--bash-border-radius: none;--code-tab-logo-width: 24px;--code-tab-logo-height: 24px}[data-theme=dark]{--bash-background-color: lightgrey;--bash-border-radius: 20px}.openapi-tabs__code-container{margin-bottom:1rem}.openapi-tabs__code-container:not(.openapi-tabs__code-container-inner){padding:1rem;background-color:var(--ifm-pre-background);border-radius:var(--ifm-global-radius);border:1px solid var(--openapi-explorer-border-color);box-shadow:0 2px 3px rgba(101,106,118,.1),0 8px 16px -10px rgba(101,106,118,.2);transition:300ms}.openapi-tabs__code-container:not(.openapi-tabs__code-container-inner):hover{box-shadow:0 0 0 2px rgba(38,53,61,.15),0 2px 3px rgba(101,106,118,.15),0 16px 16px -10px rgba(101,106,118,.2)}.openapi-tabs__code-container .openapi-tabs__code-item{display:flex;flex-direction:column-reverse;flex:0 0 80px;align-items:center;padding:.5rem 0 !important;margin-top:0 !important;margin-right:.5rem;border:1px solid rgba(0,0,0,0);transition:300ms}.openapi-tabs__code-container .openapi-tabs__code-item:not(.active):hover{border:1px solid var(--openapi-code-tab-border-color)}.openapi-tabs__code-container .openapi-tabs__code-item:hover{background-color:rgba(0,0,0,0)}.openapi-tabs__code-container .openapi-tabs__code-item span{padding-top:.5rem;color:var(--ifm-font-color-secondary);font-size:10px;text-transform:uppercase}.openapi-tabs__code-list-container{display:flex;justify-content:flex-start;padding:.25rem;padding-bottom:.6rem}.openapi-tabs__code-content{margin-top:unset !important}.openapi-explorer__code-block code{max-height:200px;font-size:var(--openapi-explorer-font-size-code);padding-top:var(--ifm-pre-padding)}body[class=ReactModal__Body--open] .openapi-explorer__code-block code{max-height:600px}.openapi-tabs__code-item--variant{color:var(--ifm-color-secondary)}.openapi-tabs__code-item--variant.active{border-color:var(--ifm-toc-border-color)}.openapi-tabs__code-item--variant>span{padding-top:unset !important;padding-left:.5rem !important;padding-right:.5rem !important}.openapi-tabs__code-item--sample{color:var(--ifm-color-secondary)}.openapi-tabs__code-item--sample.active{border-color:var(--ifm-toc-border-color)}.openapi-tabs__code-item--sample>span{padding-top:unset !important;padding-left:.5rem !important;padding-right:.5rem !important}.openapi-tabs__code-item--python{color:var(--ifm-color-success)}.openapi-tabs__code-item--python::after{content:"";width:var(--code-tab-logo-width);height:var(--code-tab-logo-height);background:url("https://raw.githubusercontent.com/devicons/devicon/master/icons/python/python-original.svg") no-repeat;margin-block:auto}.openapi-tabs__code-item--python.active{box-shadow:0 0 0 3px var(--openapi-code-tab-shadow-color-python);border-color:var(--openapi-code-tab-border-color-python)}.openapi-tabs__code-item--go{color:var(--ifm-color-info)}.openapi-tabs__code-item--go::after{content:"";width:var(--code-tab-logo-width);height:var(--code-tab-logo-height);background:url("https://raw.githubusercontent.com/devicons/devicon/master/icons/go/go-original-wordmark.svg") no-repeat;margin-block:auto}.openapi-tabs__code-item--go.active{box-shadow:0 0 0 3px var(--openapi-code-tab-shadow-color-go);border-color:var(--openapi-code-tab-border-color-go)}.openapi-tabs__code-item--javascript{color:var(--ifm-color-warning)}.openapi-tabs__code-item--javascript::after{content:"";width:var(--code-tab-logo-width);height:var(--code-tab-logo-height);background:url("https://raw.githubusercontent.com/devicons/devicon/master/icons/javascript/javascript-original.svg") no-repeat;margin-block:auto}.openapi-tabs__code-item--javascript.active{box-shadow:0 0 0 3px var(--openapi-code-tab-shadow-color-js);border-color:var(--openapi-code-tab-border-color-js)}.openapi-tabs__code-item--bash{color:var(--ifm-color-danger)}.openapi-tabs__code-item--bash::after{content:"";width:var(--code-tab-logo-width);height:var(--code-tab-logo-height);background:url("https://raw.githubusercontent.com/devicons/devicon/master/icons/bash/bash-plain.svg") no-repeat;margin-block:auto;background-color:var(--bash-background-color);border-radius:var(--bash-border-radius)}.openapi-tabs__code-item--bash.active{box-shadow:0 0 0 3px var(--openapi-code-tab-shadow-color-bash);border-color:var(--ifm-color-danger)}.openapi-tabs__code-item--ruby{color:var(--ifm-color-danger)}.openapi-tabs__code-item--ruby::after{content:"";width:var(--code-tab-logo-width);height:var(--code-tab-logo-height);background:url("https://raw.githubusercontent.com/devicons/devicon/master/icons/ruby/ruby-plain.svg") no-repeat;margin-block:auto}.openapi-tabs__code-item--ruby.active{box-shadow:0 0 0 3px var(--openapi-code-tab-shadow-color-ruby);border-color:var(--openapi-code-tab-border-color-ruby)}.openapi-tabs__code-item--csharp{color:var(--ifm-color-gray-500)}.openapi-tabs__code-item--csharp::after{content:"";width:var(--code-tab-logo-width);height:var(--code-tab-logo-height);background:url("https://raw.githubusercontent.com/devicons/devicon/master/icons/csharp/csharp-original.svg") no-repeat;margin-block:auto}.openapi-tabs__code-item--csharp.active{box-shadow:0 0 0 3px var(--openapi-code-tab-shadow-color-csharp);border-color:var(--openapi-code-tab-border-color-csharp)}.openapi-tabs__code-item--nodejs{color:var(--ifm-color-success)}.openapi-tabs__code-item--nodejs::after{content:"";width:var(--code-tab-logo-width);height:var(--code-tab-logo-height);background:url("https://raw.githubusercontent.com/devicons/devicon/master/icons/nodejs/nodejs-original.svg") no-repeat;margin-block:auto}.openapi-tabs__code-item--nodejs.active{box-shadow:0 0 0 3px var(--opeanpi-code-tab-shadow-color-nodejs);border-color:var(--openapi-code-tab-border-color-nodejs)}.openapi-tabs__code-item--php{color:var(--ifm-color-gray-500)}.openapi-tabs__code-item--php::after{content:"";width:var(--code-tab-logo-width);height:var(--code-tab-logo-height);background:url("https://raw.githubusercontent.com/devicons/devicon/master/icons/php/php-original.svg") no-repeat;margin-block:auto}.openapi-tabs__code-item--php.active{box-shadow:0 0 0 3px var(--openapi-code-tab-shadow-color-php);border-color:var(--openapi-code-tab-border-color-php)}.openapi-tabs__code-item--java{color:var(--ifm-color-warning)}.openapi-tabs__code-item--java::after{content:"";width:var(--code-tab-logo-width);height:var(--code-tab-logo-height);background:url("https://raw.githubusercontent.com/devicons/devicon/master/icons/java/java-original.svg") no-repeat;margin-block:auto}.openapi-tabs__code-item--java.active{box-shadow:0 0 0 3px var(--openapi-code-tab-shadow-color-java);border-color:var(--openapi-code-tab-border-color-java)}.openapi-tabs__code-item--powershell{color:var(--ifm-color-info)}.openapi-tabs__code-item--powershell::after{content:"";width:var(--code-tab-logo-width);height:var(--code-tab-logo-height);background:url("https://raw.githubusercontent.com/devicons/devicon/master/icons/windows8/windows8-original.svg") no-repeat;margin-block:auto}.openapi-tabs__code-item--powershell.active{box-shadow:0 0 0 3px var(--opeanpi-code-tab-shadow-color-powershell);border-color:var(--openapi-code-tab-border-color-powershell)}@media only screen and (min-width: 768px)and (max-width: 996px){.openapi-tabs__code-list{justify-content:space-around}}.ReactModal__Body--open{overflow:hidden !important}.openapi-modal--open{background-color:rgba(0,0,0,.7) !important}.openapi-explorer__floating-btn{position:relative}.openapi-explorer__floating-btn button{position:relative;background:var(--ifm-color-emphasis-900);border:none;border-radius:var(--ifm-global-radius);color:var(--ifm-color-emphasis-100);cursor:pointer;padding:.4rem .5rem;opacity:0;visibility:hidden;transition:opacity .2s ease-in-out,visibility .2s ease-in-out,bottom .2s ease-in-out;position:absolute;right:calc(var(--ifm-pre-padding)/2)}.openapi-explorer__floating-btn:hover button,.openapi-explorer__floating-btn:focus-visible button,.openapi-explorer__floating-btn button:focus-visible{visibility:visible;opacity:1}.openapi-explorer__dropzone{display:inline-flex;align-items:center;justify-content:center;cursor:pointer;border:2px dashed var(--openapi-monaco-border-color);background-color:var(--openapi-input-background);width:100%;border-radius:4px;padding:var(--ifm-pre-padding);font-size:var(--ifm-code-font-size)}.openapi-explorer__dropzone:hover{border:2px dashed var(--ifm-color-primary);background:linear-gradient(var(--openapi-dropzone-hover-shim), var(--openapi-dropzone-hover-shim)),linear-gradient(var(--ifm-color-primary), var(--ifm-color-primary))}.openapi-explorer__dropzone:hover .openapi-explorer__dropzone-content{color:var(--ifm-pre-color)}.openapi-explorer__dropzone-hover{display:inline-flex;align-items:center;justify-content:center;cursor:pointer;border:2px dashed var(--openapi-monaco-border-color);background-color:var(--openapi-input-background);width:100%;border-radius:4px;padding:var(--ifm-pre-padding);font-size:var(--ifm-code-font-size);border:2px dashed var(--ifm-color-primary);background:linear-gradient(var(--openapi-dropzone-hover-shim), var(--openapi-dropzone-hover-shim)),linear-gradient(var(--ifm-color-primary), var(--ifm-color-primary))}.openapi-explorer__dropzone-hover .openapi-explorer__dropzone-content{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;margin:var(--ifm-pre-padding) 0;color:var(--ifm-pre-color)}.openapi-explorer__dropzone-hover .openapi-explorer__file-name{margin:0 calc(var(--ifm-pre-padding)*1.5);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;flex:1}.openapi-explorer__dropzone-content{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;margin:var(--ifm-pre-padding) 0;color:var(--openapi-dropzone-color)}.openapi-explorer__form-item{padding:var(--openapi-explorer-padding-input);font-size:var(--openapi-explorer-font-size-input)}.openapi-explorer__form-item:first-child{margin-top:0}.openapi-explorer__form-item .required{color:var(--openapi-required)}.openapi-explorer__form-item-body-container{padding:0}.openapi-explorer__form-item-label{font-family:var(--ifm-font-family-monospace);font-weight:bold}.openapi-explorer__multi-select-input{width:100%;margin-top:calc(var(--ifm-pre-padding)/2);padding:1rem;border-radius:4px;border:1px solid rgba(0,0,0,0);background-color:var(--openapi-input-background);outline:none;font-size:var(--openapi-explorer-font-size-input);color:var(--ifm-pre-color);appearance:none}.openapi-explorer__multi-select-input:focus{border:1px solid var(--openapi-input-border)}.openapi-explorer__multi-select-input.error{border:1px solid var(--ifm-color-danger)}.openapi-explorer__multi-select-input option{border-radius:.25rem;color:var(--ifm-menu-color);margin:.25rem 0;padding:var(--ifm-menu-link-padding-vertical) var(--ifm-menu-link-padding-horizontal)}html[data-theme=dark] .openapi-explorer__select-input{margin-top:calc(var(--ifm-pre-padding)/2);background-color:var(--openapi-input-background);border:none;outline:none;width:100%;color:var(--ifm-pre-color);border-radius:4px;appearance:none;background-image:url('data:image/svg+xml;charset=US-ASCII,<svg focusable="false" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" aria-hidden="true" fill="white"><path d="M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z"></path></svg>');background-repeat:no-repeat;background-position:right var(--ifm-pre-padding) top 50%;background-size:auto auto}.openapi-explorer__select-input{width:100%;margin-top:calc(var(--ifm-pre-padding)/2);padding:var(--openapi-explorer-padding-input);border:none;outline:none;border-radius:4px;background-color:var(--openapi-input-background);font-size:var(--openapi-explorer-font-size-input);font-family:var(--ifm-font-family-monospace);color:var(--ifm-pre-color);appearance:none;background-image:url('data:image/svg+xml;charset=US-ASCII,<svg focusable="false" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" aria-hidden="true"><path d="M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z"></path></svg>');background-repeat:no-repeat;background-position:right var(--ifm-pre-padding) top 50%;background-size:auto auto}.openapi-explorer__select-input:focus{box-shadow:inset 0px 0px 0px 2px var(--openapi-input-border)}.openapi-explorer__form-item-input{margin-top:calc(var(--ifm-pre-padding)/2);background-color:var(--openapi-input-background);border:1px solid rgba(0,0,0,0);outline:none;width:100%;color:var(--ifm-pre-color);padding:var(--openapi-explorer-padding-input);border-radius:4px}.openapi-explorer__form-item-input:hover{border:1px solid var(--ifm-toc-border-color)}.openapi-explorer__form-item-input:focus{border:1px solid var(--ifm-color-primary);box-shadow:none}.openapi-explorer__form-item-input.error{border:1px solid var(--openapi-required)}.openapi-explorer__input-error{font-size:var(--openapi-explorer-font-size-input);color:var(--openapi-required);padding-top:var(--openapi-explorer-padding-input)}.openapi-explorer__input-error::before{display:inline;content:"⚠ "}.openapi-explorer__playground-container{margin-top:1rem;margin-bottom:var(--ifm-leading);border-radius:var(--ifm-global-radius);box-shadow:var(--ifm-global-shadow-lw);overflow:auto;max-height:500px}.openapi-explorer__playground-editor{font:var(--ifm-code-font-size)/var(--ifm-pre-line-height) var(--ifm-font-family-monospace) !important;direction:ltr}.openapi__method-endpoint{display:flex;align-items:center;max-width:100%;width:-moz-fit-content;width:fit-content;padding:.65rem;border:1px solid var(--ifm-toc-border-color)}.openapi__method-endpoint-path{margin-bottom:0;margin-left:.5rem;font-size:12px;font-weight:normal;font-family:var(--ifm-font-family-monospace)}.openapi__divider{width:100%;margin:1.5rem 0;border-bottom:1px solid var(--ifm-toc-border-color)}.openapi-explorer__plus-btn--expanded{transition:transform .2s ease;display:inline-block;transform:rotate(0deg);transform-origin:center;margin-right:6px;transform:rotate(45deg)}.openapi-explorer__show-more-btn{width:100%;appearance:none;margin-left:.25rem;margin-bottom:.5rem;padding:0;cursor:pointer;font-size:var(--openapi-explorer-font-size-input);-webkit-user-select:none;user-select:none;white-space:nowrap;border:0px solid rgba(0,0,0,0);display:block;background-color:rgba(0,0,0,0);color:var(--ifm-color-primary);text-align:left}.openapi-explorer__show-more-btn:hover{color:var(--ifm-color-primary-hover)}.openapi-explorer__show-more-btn:first-child{margin-top:0}.openapi-explorer__delete-btn{appearance:none;cursor:pointer;font-size:calc(.875rem*var(--ifm-button-size-multiplier));font-weight:normal;line-height:1.5;transition-property:color,background,border-color,box-shadow;transition-duration:100ms,100ms,100ms,var(--ifm-button-transition-duration);transition-timing-function:cubic-bezier(0.08, 0.52, 0.52, 1);-webkit-user-select:none;user-select:none;white-space:nowrap;display:flex;align-items:center;justify-content:center;padding:0 12px;margin-top:calc(var(--ifm-pre-padding)/2);background-color:var(--openapi-input-background);border:none;outline:none;color:var(--ifm-pre-color);border-radius:4px;margin-left:4px}.openapi-explorer__delete-btn:focus{outline:0}.openapi-explorer__delete-btn:active{box-shadow:inset 0px 0px 0px 2px var(--openapi-input-border)}.openapi-explorer__thin-btn{-webkit-appearance:none;-moz-appearance:none;cursor:pointer;font-weight:bold;padding:.5rem 1rem;font-size:12px;transition-property:color,background,border-color,box-shadow;transition-duration:100ms,100ms,100ms,var(--ifm-button-transition-duration);transition-timing-function:cubic-bezier(0.08, 0.52, 0.52, 1);-webkit-user-select:none;user-select:none;white-space:nowrap;background-color:rgba(0,0,0,0);color:var(--openapi-input-border);border:1px solid var(--openapi-input-border);border-radius:var(--ifm-pre-border-radius);margin-top:calc(var(--ifm-pre-padding)/2);text-transform:uppercase}.openapi-explorer__thin-btn:hover{color:var(--openapi-inverse-color);background-color:var(--openapi-input-border)}.openapi-explorer__thin-btn:focus{outline:0}.openapi-explorer__thin-btn:active{box-shadow:inset 0 0 0 1px var(--openapi-input-border),inset 0 0 0 2px var(--openapi-inverse-color)}.openapi-explorer__show-options{visibility:visible}.openapi-explorer__hide-options{display:none;visibility:hidden}.openapi-explorer__request-form{background-color:var(--ifm-pre-background);border-radius:var(--openapi-card-border-radius);border:1px solid var(--openapi-explorer-border-color);box-shadow:0 2px 3px rgba(101,106,118,.1),0 8px 16px -10px rgba(101,106,118,.2);color:var(--ifm-pre-color);line-height:var(--ifm-pre-line-height);margin-bottom:var(--ifm-spacing-vertical);margin-top:0;overflow:auto;transition:300ms;position:relative}.openapi-explorer__request-form:empty{display:none}.openapi-explorer__request-form:hover{box-shadow:0 0 0 2px rgba(38,53,61,.15),0 2px 3px rgba(101,106,118,.15),0 16px 16px -10px rgba(101,106,118,.2)}.openapi-explorer__request-form .required{font-size:var(--ifm-code-font-size);color:var(--openapi-required)}.openapi-explorer__request-form .required.request-body{padding-left:.25rem}.openapi-explorer__request-header-container{display:flex;justify-content:space-between;border-bottom:1px solid var(--openapi-explorer-border-color);margin:0;padding:.75rem var(--ifm-pre-padding);text-transform:uppercase;font-size:12px;font-weight:bold}.openapi-explorer__expand-details-btn:hover{cursor:pointer}.openapi-explorer__details-outer-container{padding:1rem}.openapi-explorer__details-container[open] .openapi-explorer__details-summary::before{transform:rotate(180deg);margin-top:.25rem}.openapi-explorer__details-summary{display:inline-flex;align-items:center;padding:.35rem 0;font-size:14px;list-style:none}.openapi-explorer__details-summary:hover{cursor:pointer}.openapi-explorer__details-summary::-webkit-details-marker{display:none}.openapi-explorer__details-summary::before{margin-right:.25rem;margin-bottom:.25rem;margin-top:.25rem;background-image:var(--openapi-explorer-caret-bg);border:none !important;transform:rotate(90deg);content:"";height:1rem;width:1rem}.openapi-explorer__request-btn{border:none;border-radius:var(--ifm-global-radius);padding:.5rem 1rem;margin-top:1rem;background-color:var(--ifm-color-primary-light);text-transform:uppercase;font-weight:bold;font-size:12px;color:#fff;cursor:pointer;transition:300ms}.openapi-explorer__request-btn:hover{background-color:var(--ifm-color-primary-lightest)}.openapi-explorer__request-btn:active{background-color:var(--ifm-color-primary-light)}.openapi-security__summary-container{background:var(--ifm-pre-background)}@media screen and (-webkit-min-device-pixel-ratio: 0)and (max-device-width: 1024px){.prism-code,select,input{font-size:1rem}}.openapi-explorer__response-container{background-color:var(--ifm-pre-background);border-radius:var(--openapi-card-border-radius);border:1px solid var(--openapi-explorer-border-color);box-shadow:0 2px 3px rgba(101,106,118,.1),0 8px 16px -10px rgba(101,106,118,.2);color:var(--ifm-pre-color);line-height:var(--ifm-pre-line-height);margin-bottom:var(--ifm-spacing-vertical);margin-top:0;overflow:auto;transition:300ms}.openapi-explorer__response-container:hover{box-shadow:0 0 0 2px rgba(38,53,61,.15),0 2px 3px rgba(101,106,118,.15),0 16px 16px -10px rgba(101,106,118,.2)}.openapi-explorer__response-container .openapi-explorer__code-block code{padding-top:0}.openapi-explorer__response-title-container{display:flex;justify-content:space-between;border-bottom:1px solid var(--openapi-explorer-border-color);margin:0;padding:.75rem var(--ifm-pre-padding);text-transform:uppercase;font-size:12px;font-weight:bold}.openapi-explorer__response-placeholder-message{font-size:12px;padding:1.25rem;margin-bottom:0;text-align:center}.openapi-explorer__response-clear-btn:hover{cursor:pointer}.openapi-explorer__loading-container{width:100%;display:flex;justify-content:center}.openapi-response__dot::before{margin-right:.2rem;margin-bottom:.15rem;content:"⬤";color:var(--ifm-color-primary);font-size:8px}.openapi-response__dot--danger::before{color:var(--ifm-color-danger)}.openapi-response__dot--success::before{color:var(--ifm-color-success)}.openapi-response__dot--info::before{color:var(--ifm-color-info)}.openapi-response__status-code{margin-left:-1rem}.openapi-response__status-headers{margin-left:-1rem}.openapi-response__lds-ring{display:inline-block;position:relative;width:80px;height:80px}.openapi-response__lds-ring div{box-sizing:border-box;display:block;position:absolute;width:64px;height:64px;margin:8px;border:5px solid #dfc;border-radius:50%;animation:openapi-response__lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;border-color:var(--ifm-color-primary) rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0)}.openapi-response__lds-ring div:nth-child(1){animation-delay:-0.45s}.openapi-response__lds-ring div:nth-child(2){animation-delay:-0.3s}.openapi-response__lds-ring div:nth-child(3){animation-delay:-0.15s}@keyframes openapi-response__lds-ring{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.openapi-explorer__server-container{background:var(--openapi-card-background-color);border-radius:var(--openapi-card-border-radius);color:var(--ifm-pre-color);line-height:var(--ifm-pre-line-height);margin-bottom:var(--ifm-spacing-vertical);margin-top:0;overflow:auto;position:relative}.openapi-explorer__server-container:empty{display:none}.openapi-explorer__server-url{font-size:var(--openapi-explorer-font-size-input);font-family:var(--ifm-font-family-monospace)}.openapi-explorer__server-description{padding-left:.5rem;font-weight:var(--ifm-font-weight-bold)}.openapi-explorer__code-block-container{height:100%;background:var(--prism-background-color);color:var(--prism-color);margin-bottom:unset;box-shadow:var(--ifm-global-shadow-lw)}.openapi-explorer__code-block-content{height:100%;position:relative;direction:ltr;border-radius:inherit}.openapi-explorer__code-block-title{border-bottom:1px solid var(--ifm-color-emphasis-300);font-size:var(--ifm-code-font-size);font-weight:500;padding:.75rem var(--ifm-pre-padding);border-top-left-radius:inherit;border-top-right-radius:inherit}.openapi-explorer__code-block{height:100%;border-radius:var(--ifm-global-radius);--ifm-pre-background: var(--prism-background-color);margin:0;padding:0}.openapi-explorer__code-block-title+.openapi-explorer__code-block-content .openapi-explorer__code-block{border-top-left-radius:0;border-top-right-radius:0}.openapi-explorer__code-block-standalone{padding:0}.openapi-explorer__code-block-lines{font:inherit;float:left;min-width:100%;padding:var(--ifm-pre-padding)}.openapi-explorer__code-block-lines-numbering{padding:var(--ifm-pre-padding) 0}@media print{.openapi-explorer__code-block-lines{white-space:pre-wrap}}.openapi-explorer__code-block-btn-group{display:flex;column-gap:.2rem;position:absolute;right:calc(var(--ifm-pre-padding)/2);top:calc(var(--ifm-pre-padding)/2)}.openapi-explorer__code-block-btn-group 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:.4rem;line-height:0;transition:opacity 200ms ease-in-out;opacity:0}.openapi-explorer__code-block-btn-group button:focus-visible,.openapi-explorer__code-block-btn-group button:hover{opacity:1 !important}.theme-code-block:hover .openapi-explorer__code-block-btn-group button{opacity:.4}@media screen and (max-width: 996px){.openapi-explorer__expand-btn{display:none !important}}.theme-code-block:hover .openapi-explorer__code-block-copy-btn--copied{opacity:1 !important}.openapi-explorer__code-block-copy-btn-icons{position:relative;width:1.125rem;height:1.125rem}.openapi-explorer__code-block-copy-btn-icon,.openapi-explorer__code-block-copy-btn-icon--success{position:absolute;top:0;left:0;fill:currentColor;opacity:inherit;width:inherit;height:inherit;transition:all .15s ease}.openapi-explorer__code-block-copy-btn-icon--success{top:50%;left:50%;transform:translate(-50%, -50%) scale(0.33);opacity:0;color:#00d600}.openapi-explorer__code-block-copy-btn--copied .openapi-explorer__code-block-copy-btn-icon{transform:scale(0.33);opacity:0}.openapi-explorer__code-block-copy-btn--copied .openapi-explorer__code-block-copy-btn-icon--success{transform:translate(-50%, -50%) scale(1);opacity:1;transition-delay:.075s}.openapi-explorer__code-block-exit-btn-icons{position:relative;width:1.125rem;height:1.125rem}.openapi-explorer__code-block-exit-btn-icon{position:absolute;top:0;left:0;fill:currentColor;opacity:inherit;width:inherit;height:inherit;transition:all .15s ease}.openapi-explorer__expand-modal-content{padding:none;border:thin solid var(--ifm-toc-border-color);border-radius:var(--ifm-global-radius);max-width:95%;width:65vw;height:65vh;overflow:auto}.openapi-explorer__expand-modal-overlay{display:flex;align-items:center;justify-content:center;position:fixed;inset:0px;background-color:rgba(0,0,0,.9);z-index:201}.theme-code-block:hover .openapi-explorer__code-block-expand-btn--copied{opacity:1 !important}.openapi-explorer__code-block-expand-btn-icons{position:relative;width:1.125rem;height:1.125rem}.openapi-explorer__code-block-expand-btn-icon,.openapi-explorer__code-block-expand-btn-icon--success{position:absolute;top:0;left:0;fill:currentColor;opacity:inherit;width:inherit;height:inherit;transition:all .15s ease}.openapi-explorer__code-block-expand-btn-icon--success{top:50%;left:50%;transform:translate(-50%, -50%) scale(0.33);opacity:0;color:#00d600}.openapi-explorer__code-block-expand-btn--copied .openapi-explorer__code-block-expand-btn-icon{transform:scale(0.33);opacity:0}.openapi-explorer__code-block-expand-btn--copied .openapi-explorer__code-block-expand-btn-icon--success{transform:translate(-50%, -50%) scale(1);opacity:1;transition-delay:.075s}: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)}.openapi-explorer__code-block-code-line{display:table-row;counter-increment:line-count}.openapi-explorer__code-block-code-line-number{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}.openapi-explorer__code-block-code-line-number::before{content:counter(line-count);opacity:.4}:global(.theme-code-block-highlighted-line) .openapi-explorer__code-block-code-line-number::before{opacity:.8}.openapi-explorer__code-block-code-line-number{padding-right:var(--ifm-pre-padding)}.openapi-explorer__code-block-word-wrap-btn-icon{width:1.2rem;height:1.2rem}.openapi-explorer__code-block-word-wrap-btn--enabled .openapi-explorer__code-block-word-wrap-btn-icon{color:var(--ifm-color-primary)}.openapi-params__list-item{margin:0 0 0 1rem !important;position:relative;padding-left:1rem;border-left:thin solid var(--openapi-tree-line-color) !important;margin-top:unset !important}.openapi-params__list-item::before{position:absolute;top:5px;left:0;width:.7rem;height:.5rem;vertical-align:top;border-bottom:thin solid var(--openapi-tree-line-color);content:"";display:inline-block}.openapi-params__list-item:hover .openapi-schema__property{color:var(--ifm-color-primary)}.openapi-schema__type{opacity:.6;padding-left:.3rem}.openapi-schema__required{display:inline-flex;align-items:center;font-size:10.5px;font-weight:bold;color:var(--openapi-required);margin-left:1%;background-color:rgba(0,0,0,0);text-transform:uppercase}.openapi-schema__divider{flex-grow:1;border-bottom:thin solid var(--ifm-toc-border-color);margin:10px}.openapi-schema__container{display:flex}.openapi-schema__container:hover .openapi-schema__property{color:var(--ifm-color-primary)}.openapi-schema__list-item{list-style:none;position:relative;margin:0 !important;padding:5px 0 5px 1rem;border-left:thin solid var(--openapi-tree-line-color) !important}.openapi-schema__list-item::before{position:absolute;top:10px;left:0;width:.7rem;height:.5rem;vertical-align:top;border-bottom:thin solid var(--openapi-tree-line-color);content:"";display:inline-block}.openapi-schema__name{opacity:.6;padding-left:.3rem}.openapi-schema__required{display:inline-flex;align-items:center;font-size:10.5px;font-weight:bold;text-transform:uppercase;color:var(--openapi-required);margin-left:1%;background-color:rgba(0,0,0,0)}.openapi-schema__deprecated{display:flex;align-items:center;font-size:10.5px;font-weight:bold;text-transform:uppercase;color:var(--openapi-deprecated);margin-left:1%;background-color:rgba(0,0,0,0)}.openapi-schema__nullable{display:flex;align-items:center;font-size:10.5px;font-weight:bold;text-transform:uppercase;color:var(--openapi-nullable);margin-left:1%;background-color:rgba(0,0,0,0)}.openapi-schema__strikethrough{text-decoration:line-through}.openapi-schema__property{margin-top:1.25px;font-family:var(--ifm-font-family-monospace);transition:300ms}.openapi-schema__divider{flex-grow:1;border-bottom:thin solid var(--ifm-toc-border-color);margin:10px}.openapi-schema__container{display:flex;align-items:center}.openapi-tabs__container{margin-left:-1px;margin-bottom:var(--ifm-leading)}.openapi-tabs__response-header{margin-bottom:0}.openapi-tabs__response-code-item{border:1px solid rgba(0,0,0,0);margin-top:0 !important;margin-right:.5rem;padding:.35rem .85rem;border-radius:var(--ifm-global-radius);font-weight:var(--ifm-font-weight-bold);font-size:12px;transition:300ms;color:var(--ifm-font-color-secondary)}.openapi-tabs__response-code-item.success.active{background-color:var(--ifm-color-success);color:var(--ifm-color-white)}.openapi-tabs__response-code-item.danger.active{background-color:var(--ifm-color-danger);color:var(--ifm-color-white)}.openapi-tabs__response-code-item.info.active{background-color:var(--ifm-color-info);color:var(--ifm-color-white)}.openapi-tabs__response-code-item.active,.openapi-tabs__response-code-item:hover{opacity:1}.openapi-tabs__response-code-item:hover:not(.active){background-color:rgba(0,0,0,0);border:1px solid var(--ifm-toc-border-color)}.openapi-tabs__response-code-item:not(.active){opacity:.65}.openapi-tabs__response-code-item:hover{opacity:1}.openapi-tabs__response-code-item:last-child{margin-right:0 !important}.openapi-tabs__response-header-section{border-top:1px solid var(--ifm-toc-border-color);margin-top:2rem;padding-top:2rem;display:flex;justify-content:space-between;align-items:center}.openapi-tabs__response-container{display:flex;align-items:center;max-width:390px;padding-left:1rem;overflow:hidden}.openapi-tabs__response-list-container{padding:0 .25rem;overflow-y:hidden;overflow-x:scroll;scroll-behavior:smooth}.openapi-tabs__response-list-container::-webkit-scrollbar{display:none}.openapi-tabs__response-dot{width:12.5px;height:12.5px;margin-right:5px;border-radius:50%}.openapi-tabs__response-schema-container{max-width:600px}.openapi-tabs__arrow{content:"";height:1.25rem;width:1.25rem;border:none;min-width:1.25rem;background:var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem;filter:var(--ifm-menu-link-sublist-icon-filter)}.openapi-tabs__arrow:hover{cursor:pointer}.openapi-tabs__arrow.left{transform:rotate(270deg)}.openapi-tabs__arrow.right{transform:rotate(90deg)}@media screen and (max-width: 500px){.openapi-tabs__response-header-section{flex-direction:column;align-items:flex-start}.openapi-tabs__response-container{width:100%;margin-top:var(--ifm-spacing-vertical);padding:0}}.openapi-tabs__discriminator-item{display:flex;align-items:center;justify-content:center;padding:.35rem .7rem;border:1px solid rgba(0,0,0,0);margin-top:0 !important;margin-right:.5rem;font-weight:var(--ifm-font-weight-bold);font-size:10px;font-family:var(--ifm-font-family-monospace);white-space:nowrap;transition:300ms}.openapi-tabs__discriminator-item:hover{background-color:rgba(0,0,0,0);border:1px solid var(--ifm-toc-border-color)}.openapi-tabs__discriminator-item.active{border:1px solid var(--ifm-color-primary);color:var(--ifm-color-primary)}.openapi-tabs__discriminator-item:last-child{margin-right:0 !important}.openapi-tabs__discriminator-top-section{margin-top:1rem;margin-left:.9rem;display:flex;justify-content:space-between;align-items:center}.openapi-tabs__discriminator-top-section+hr{display:none}.openapi-tabs__discriminator-container{display:flex;align-items:center;max-width:600px;padding-left:3px;overflow:hidden}.openapi-tabs__discriminator-list-container{padding:0 .25rem;overflow-y:hidden;overflow-x:scroll;scroll-behavior:smooth}.openapi-tabs__discriminator-list-container::-webkit-scrollbar{display:none}.openapi-tabs__discriminator-tab-label{white-space:nowrap}.openapi-discriminator__item{list-style:none;position:relative;margin:0 !important;padding:5px 0 5px 0 !important;border-left:thin solid var(--openapi-tree-line-color) !important}.openapi-discriminator__name{padding-left:1rem}@media screen and (max-width: 500px){.openapi-tabs__discriminator-top-section{flex-direction:column;align-items:flex-start}.openapi-tabs__discriminator-container{width:100%}.openapi-tabs__discriminator-item{height:100%}}.openapi-tabs__mime-container{display:flex;align-items:center;margin-top:1rem;overflow:hidden}.openapi-tabs__mime-item{display:flex;align-items:center;justify-content:center;padding:.35rem .7rem;border:1px solid rgba(0,0,0,0);margin-top:0 !important;margin-right:.5rem;font-weight:var(--ifm-font-weight-bold);font-size:10px;text-transform:uppercase;white-space:nowrap;transition:300ms}.openapi-tabs__mime-item:hover{background-color:rgba(0,0,0,0);border:1px solid var(--ifm-toc-border-color)}.openapi-tabs__mime-item.active{border:1px solid var(--ifm-tabs-color-active-border);color:var(--ifm-tabs-color-active)}.openapi-tabs__mime-item:last-child{margin-right:0 !important}.openapi-tabs__mime-list-container{overflow-y:hidden;overflow-x:scroll;scroll-behavior:smooth}.openapi-tabs__mime-list-container::-webkit-scrollbar{display:none}.openapi-tabs__mime-schema-container{max-width:600px}@media screen and (max-width: 500px){.mimeTabsTopSection{flex-direction:column;align-items:flex-start}.mimeTabsContainer{width:100%;margin-top:var(--ifm-spacing-vertical);padding:0}}.openapi-tabs__schema-container{margin-top:1rem}.openapi-tabs__schema-item{display:flex;align-items:center;justify-content:center;padding:.35rem .7rem;border:1px solid rgba(0,0,0,0);margin-top:0 !important;margin-right:.5rem;font-weight:var(--ifm-font-weight-bold);font-family:var(--ifm-font-family-monospace);font-size:10px;white-space:nowrap;transition:300ms}.openapi-tabs__schema-item:hover{background-color:rgba(0,0,0,0);border:1px solid var(--ifm-toc-border-color)}.openapi-tabs__schema-item.active{border:1px solid var(--ifm-color-primary);color:var(--ifm-color-primary)}.openapi-tabs__schema-item:last-child{margin-right:0 !important}.openapi-tabs__schema-list-container{overflow-y:hidden;overflow-x:scroll;scroll-behavior:smooth}.openapi-tabs__schema-list-container::-webkit-scrollbar{display:none}.openapi-tabs__schema-list-container.active{background-color:var(--ifm-color-emphasis-100)}.openapi-tabs__schema-label{white-space:nowrap}.openapi-tabs__schema-tabs-container{width:100%;display:flex;align-items:center;overflow:hidden}.openapi-tabs__operation-container{display:flex;align-items:center;margin-top:1rem;overflow:hidden}.openapi-tabs__operation-item{display:flex;align-items:center;justify-content:center;padding:.35rem .7rem;border:1px solid rgba(0,0,0,0);margin-top:0 !important;margin-right:.5rem;font-weight:var(--ifm-font-weight-bold);font-size:12px;white-space:nowrap;transition:300ms}.openapi-tabs__operation-item:hover{background-color:rgba(0,0,0,0);border:1px solid var(--ifm-toc-border-color)}.openapi-tabs__operation-item.active{border:1px solid var(--ifm-tabs-color-active-border);color:var(--ifm-tabs-color-active)}.openapi-tabs__operation-item:last-child{margin-right:0 !important}.openapi-tabs__operation-list-container{overflow-y:hidden;overflow-x:scroll;scroll-behavior:smooth}.openapi-tabs__operation-list-container::-webkit-scrollbar{display:none}.openapi-tabs__operation-schema-container{max-width:600px}@media screen and (max-width: 500px){.operationTabsTopSection{flex-direction:column;align-items:flex-start}.operationTabsContainer{width:100%;margin-top:var(--ifm-spacing-vertical);padding:0}}.openapi-code__response-samples-container{margin-top:2rem}.openapi-left-panel__container>.openapi-markdown__details>summary,.openapi-markdown__details.mime>summary,.openapi-markdown__details.response>summary{text-transform:uppercase;font-size:12px}.openapi-left-panel__container>.openapi-markdown__details,.openapi-markdown__details.mime,.openapi-markdown__details.response{margin-bottom:1rem !important}.openapi-markdown__details-summary-header-params,.openapi-markdown__details-summary-header-body{font-size:12px;margin-bottom:0}.openapi-left-panel__container>.openapi-markdown__details>summary::before,.openapi-markdown__details.mime>summary::before,.openapi-markdown__details.response>summary::before{top:.1rem}.openapi-markdown__details{margin:unset !important;background-color:rgba(0,0,0,0);color:var(--ifm-font-color-base);padding:unset;border:unset !important;box-shadow:unset !important;--docusaurus-details-decoration-color: var(--ifm-font-color-base) !important}.openapi-markdown__details>summary::before{content:"";background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 24 24"><path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"></path></svg>') 50%/1.2rem 1.2rem;filter:var(--ifm-menu-link-sublist-icon-filter);height:.75rem;transform:rotate(90deg) !important;width:.75rem;transition:transform var(--ifm-transition-fast) linear !important;border:none !important;transform-origin:unset !important}.openapi-markdown__details ul{padding-left:0;font-size:14px}.openapi-markdown__details li{list-style:none;padding-top:5px}.theme-api-markdown details[data-collapsed=false]>summary::before{transform:rotate(180deg) !important}.openapi-markdown__details>div>div{padding-top:unset !important;border-top:unset !important}.openapi-markdown__details p{margin-bottom:0}.openapi-markdown__details-summary-mime{display:flex}details summary::-webkit-details-marker{display:none}.openapi-security__details{font-size:12px;margin-bottom:1rem;background-color:rgba(0,0,0,0);color:var(--ifm-font-color-base);padding:unset;border:thin solid var(--ifm-toc-border-color);border-radius:var(--ifm-pre-border-radius);box-shadow:unset !important;--docusaurus-details-decoration-color: var(--ifm-font-color-base) !important}.openapi-security__details pre{margin-bottom:unset;border-top-left-radius:0;border-top:thin solid var(--ifm-toc-border-color);border-top-right-radius:0}.openapi-security__summary-header{font-size:12px;text-transform:uppercase;margin-bottom:unset}.openapi-security__summary-container{padding:1rem;list-style-type:none}.openapi-security__summary-container:hover{cursor:pointer}:root{--openapi-required: var(--ifm-color-danger);--openapi-deprecated: var(--ifm-color-warning);--openapi-nullable: var(--ifm-color-info);--openapi-code-blue: var(--ifm-color-info);--openapi-code-red: var(--ifm-color-danger);--openapi-code-orange: var(--ifm-color-warning);--openapi-code-green: var(--ifm-color-success);--openapi-card-background-color: var(--ifm-color-gray-100);--openapi-card-border-radius: var(--ifm-pre-border-radius);--openapi-input-border: var(--ifm-color-primary);--openapi-input-background: var(--openapi-card-background-color);--openapi-tree-line-color: var(--ifm-toc-border-color);--openapi-code-tab-border-color: var(--ifm-toc-border-color);--openapi-code-tab-border-color-python: #ffdb50;--openapi-code-tab-border-color-bash: var(--ifm-color-danger);--openapi-code-tab-border-color-go: var(--ifm-color-info);--openapi-code-tab-border-color-js: var(--ifm-color-warning);--openapi-code-tab-border-color-ruby: var(--ifm-color-danger);--openapi-code-tab-border-color-csharp: #9b4f96;--openapi-code-tab-border-color-nodejs: var(--ifm-color-success);--openapi-code-tab-border-color-php: #6181b6;--openapi-code-tab-border-color-java: #0374bd;--openapi-code-tab-border-color-powershell: #00adef;--openapi-code-tab-shadow-color-python: rgba(255, 219, 80, 0.25);--openapi-code-tab-shadow-color-bash: rgba(250, 56, 62, 0.25);--openapi-code-tab-shadow-color-go: rgba(84, 199, 236, 0.25);--openapi-code-tab-shadow-color-js: rgba(255, 186, 0, 0.25);--openapi-code-tab-shadow-color-ruby: rgba(250, 56, 62, 0.25);--openapi-code-tab-shadow-color-csharp: rgba(155, 79, 150, 0.25);--opeanpi-code-tab-shadow-color-nodejs: rgba(0, 164, 0, 0.25);--openapi-code-tab-shadow-color-php: rgba(97, 129, 182, 0.25);--openapi-code-tab-shadow-color-java: rgba(3, 116, 189, 0.25);--opeanpi-code-tab-shadow-color-powershell: rgba(3, 116, 189, 0.25);--openapi-explorer-font-size-input: 12px;--openapi-explorer-font-size-code: 12px;--openapi-explorer-padding-input: 0.5rem;--openapi-explorer-border-color: var(--ifm-toc-border-color);--openapi-explorer-caret-bg: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 24 24"><path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"></path></svg>')}[data-theme=dark]{--openapi-card-background-color: var(--ifm-color-gray-900) !important;--openapi-explorer-caret-bg: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 24 24" fill="white"><path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"></path></svg>') !important}.docs-wrapper{height:100%}@media(min-width: 997px){.docItemCol{max-width:75% !important}.tocMobile{display:none}}.openapi__logo{width:250px}.openapi__heading{font-size:2rem;margin-bottom:.5rem !important}.openapi-left-panel__container{border-right:thin solid var(--ifm-toc-border-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.
 */

.cardContainer_fWXF {
  --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_fWXF:hover {
  border-color: var(--ifm-color-primary);
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 20%);
}

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

.cardTitle_rnsV {
  font-size: 1.2rem;
}

.cardDescription_PWke {
  font-size: 0.8rem;
}

.reg-overview{padding:24px 0 40px}.reg-header{display:grid;grid-template-columns:1fr;column-gap:24px;row-gap:12px;align-items:center;margin-bottom:32px}.reg-header__title{grid-column:1/-1;margin:0;font-size:clamp(28px,4.2vw,48px);line-height:1.1;font-weight:700;letter-spacing:-0.025em;color:#111}.reg-header__subtitle{grid-column:1/-1;margin:0;color:#525252}.reg-header__search{grid-column:1/-1;justify-self:stretch;align-self:start}.search-field{position:relative;width:100%;background:#fff;border:1px solid #e5e5e5;box-shadow:0 2px 8px rgba(0,0,0,.04);border-radius:10px;transition:border-color .15s ease,box-shadow .15s ease}.search-field:focus-within{border-color:#000;box-shadow:0 0 0 3px rgba(0,85,164,.08)}.search-field__icon{position:absolute;inset-inline-start:16px;inset-block-start:50%;transform:translateY(-36%);color:#a3a3a3}.search-field__input{width:100%;border:none;outline:none;padding:12px 16px 12px 44px;background:rgba(0,0,0,0);font-size:14px;color:#374151}.reg-grid{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:20px;grid-auto-rows:auto 1fr;justify-content:initial;justify-items:stretch;align-items:stretch}@media(min-width: 1500px){.reg-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}}@media(max-width: 1270px){.reg-grid{grid-template-columns:repeat(2, minmax(0, 1fr));justify-content:initial;justify-items:stretch}}.reg-card{background:#fff;border:1px solid #e5e5e5;border-radius:12px;padding:20px;box-shadow:none;width:100%;grid-row:span 2;display:grid;grid-template-rows:subgrid;row-gap:12px;transition:all .2s ease}.reg-card:hover{border-color:#d4d4d4;box-shadow:0 4px 16px rgba(0,0,0,.06);transform:translateY(-1px)}.reg-card__title{margin:0;font-size:20px;font-weight:700;letter-spacing:-0.02em;color:#111}.reg-card__content{display:flex;flex-direction:column}.reg-card__desc{background:#fafafa;color:#525252;border-radius:10px;padding:14px;font-size:14px;margin-bottom:14px}.reg-card__desc-text{overflow:hidden}.reg-card__readmore{color:#000;font-weight:600}.reg-card__cta{margin-top:auto;padding:14px 16px;border:1px solid #e5e5e5;text-decoration:none;border-radius:10px;display:inline-flex;align-items:center;gap:8px;font-size:14px;background-color:rgba(0,0,0,0);transition:background-color .2s ease,border-color .2s ease}.reg-card__cta span{color:#111;font-weight:600;transition:color .2s ease}.reg-card__cta svg path{transition:stroke .2s ease;stroke:#111}.reg-card__cta:hover{background-color:#111;border-color:#111;text-decoration:none}.reg-card__cta:hover span{color:#fff}.reg-card__cta:hover svg path{stroke:#fff}html[data-theme=dark] .reg-header__title{color:#f9fafb}html[data-theme=dark] .reg-header__subtitle{color:#9ca3af}html[data-theme=dark] .reg-card{background:#111827;border-color:#374151}html[data-theme=dark] .reg-card:hover{border-color:#4b5563;box-shadow:0 4px 16px rgba(0,0,0,.3)}html[data-theme=dark] .reg-card__title{color:#f9fafb}html[data-theme=dark] .reg-card__desc{background:#1f2937;color:#d1d5db}html[data-theme=dark] .reg-card__readmore{color:#93c5fd}html[data-theme=dark] .search-field{background:#1f2937;border-color:#374151}html[data-theme=dark] .search-field:focus-within{border-color:#60a5fa}html[data-theme=dark] .search-field__input{color:#f9fafb}html[data-theme=dark] .reg-card__cta{border-color:#4b5563}html[data-theme=dark] .reg-card__cta span{color:#f9fafb}html[data-theme=dark] .reg-card__cta svg path{stroke:#f9fafb}html[data-theme=dark] .reg-card__cta:hover{background-color:#f9fafb;border-color:#f9fafb;text-decoration:none}html[data-theme=dark] .reg-card__cta:hover span{color:#111827}html[data-theme=dark] .reg-card__cta:hover svg path{stroke:#111827}@media(max-width: 1100px){.reg-header{grid-template-columns:1fr}.reg-header__search{grid-column:1/-1;justify-self:stretch}}@media(max-width: 700px){.reg-grid{grid-template-columns:1fr}.reg-card__title{font-size:18px}.reg-card__desc{font-size:13px}.reg-header__search{justify-self:stretch}.search-field{width:100%}}@media(max-width: 480px){.reg-overview{padding:16px 0 24px}.reg-header{margin-bottom:20px}.reg-card{padding:16px}.reg-card__title{font-size:16px}.reg-grid{gap:14px}}
/**
 * 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;
}

.card{border:1px solid #e5e5e5;border-radius:12px;padding:1.5rem;margin:.5rem;background-color:#fff;transition:all .2s ease}.card:hover{border-color:#d4d4d4;box-shadow:0 4px 16px rgba(0,0,0,.06);transform:translateY(-1px)}.card h2{margin-bottom:1rem;color:#111}.card .card-columns{display:flex;justify-content:space-between}.card .card-columns .card-column{flex:1;margin-right:1rem}.card .card-columns .card-column:last-child{margin-right:0}.card .card-columns .card-column h3{margin-bottom:.5rem;color:#111}.card .card-columns .card-column ul{list-style:none;padding:0}.card .card-columns .card-column ul li{margin-bottom:.5rem}.card .card-columns .card-column ul a{color:#3f6396;text-decoration:none}.card .card-columns .card-column ul a:hover{color:#2d4a73}@media(max-width: 768px){.card{padding:1.25rem;margin:.25rem}.card .card-columns{flex-direction:column}.card .card-columns .card-column{margin-right:0;margin-bottom:1rem}.card .card-columns .card-column:last-child{margin-bottom:0}}@media(max-width: 480px){.card{padding:1rem;margin:.25rem 0}}html[data-theme=dark] .card{background-color:#111827;border-color:#374151}html[data-theme=dark] .card:hover{border-color:#4b5563;box-shadow:0 4px 16px rgba(0,0,0,.3)}html[data-theme=dark] .card h2,html[data-theme=dark] .card h3{color:#f9fafb}html[data-theme=dark] .card .card-columns .card-column ul a{color:#93c5fd}html[data-theme=dark] .card .card-columns .card-column ul a:hover{color:#bfdbfe}.cards-layout{display:flex;flex-direction:column;gap:1rem}@media(max-width: 768px){.cards-layout{gap:.75rem}}
/**
 * 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);

  /*
  Unfortunately we can't make announcement bar render above the navbar
  IE need to use border-bottom instead of shadow
  See https://github.com/facebookincubator/infima/issues/275

  box-shadow: var(--ifm-global-shadow-lw);
  z-index: calc(var(--ifm-z-index-fixed) + 1);
  */
  border-bottom: 1px solid var(--ifm-color-emphasis-100);
}

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.
 */

.darkNavbarColorModeToggle_X3D1:hover {
  background: var(--ifm-color-gray-800);
}

/**
 * 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.
 */

.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.
 */

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

/*! @algolia/autocomplete-theme-classic 1.17.0 | MIT License | © Algolia, Inc. and contributors | https://github.com/algolia/autocomplete */
:root{--aa-search-input-height:44px;--aa-input-icon-size:20px;--aa-base-unit:16;--aa-spacing-factor:1;--aa-spacing:calc(var(--aa-base-unit)*var(--aa-spacing-factor)*1px);--aa-spacing-half:calc(var(--aa-spacing)/2);--aa-panel-max-height:650px;--aa-base-z-index:9999;--aa-font-size:calc(var(--aa-base-unit)*1px);--aa-font-family:inherit;--aa-font-weight-medium:500;--aa-font-weight-semibold:600;--aa-font-weight-bold:700;--aa-icon-size:20px;--aa-icon-stroke-width:1.6;--aa-icon-color-rgb:119,119,163;--aa-icon-color-alpha:1;--aa-action-icon-size:20px;--aa-text-color-rgb:38,38,39;--aa-text-color-alpha:1;--aa-primary-color-rgb:62,52,211;--aa-primary-color-alpha:0.2;--aa-muted-color-rgb:128,126,163;--aa-muted-color-alpha:0.6;--aa-panel-border-color-rgb:128,126,163;--aa-panel-border-color-alpha:0.3;--aa-input-border-color-rgb:128,126,163;--aa-input-border-color-alpha:0.8;--aa-background-color-rgb:255,255,255;--aa-background-color-alpha:1;--aa-input-background-color-rgb:255,255,255;--aa-input-background-color-alpha:1;--aa-selected-color-rgb:179,173,214;--aa-selected-color-alpha:0.205;--aa-description-highlight-background-color-rgb:245,223,77;--aa-description-highlight-background-color-alpha:0.5;--aa-detached-media-query:(max-width:680px);--aa-detached-modal-media-query:(min-width:680px);--aa-detached-modal-max-width:680px;--aa-detached-modal-max-height:500px;--aa-overlay-color-rgb:115,114,129;--aa-overlay-color-alpha:0.4;--aa-panel-shadow:0 0 0 1px rgba(35,38,59,0.1),0 6px 16px -4px rgba(35,38,59,0.15);--aa-scrollbar-width:13px;--aa-scrollbar-track-background-color-rgb:234,234,234;--aa-scrollbar-track-background-color-alpha:1;--aa-scrollbar-thumb-background-color-rgb:var(--aa-background-color-rgb);--aa-scrollbar-thumb-background-color-alpha:1}@media (hover:none) and (pointer:coarse){:root{--aa-spacing-factor:1.2;--aa-action-icon-size:22px}}body.dark,body[data-theme=dark]{--aa-text-color-rgb:183,192,199;--aa-primary-color-rgb:146,138,255;--aa-muted-color-rgb:146,138,255;--aa-input-background-color-rgb:0,3,9;--aa-background-color-rgb:21,24,42;--aa-selected-color-rgb:146,138,255;--aa-selected-color-alpha:0.25;--aa-description-highlight-background-color-rgb:0 255 255;--aa-description-highlight-background-color-alpha:0.25;--aa-icon-color-rgb:119,119,163;--aa-panel-shadow:inset 1px 1px 0 0 #2c2e40,0 3px 8px 0 #000309;--aa-scrollbar-track-background-color-rgb:44,46,64;--aa-scrollbar-thumb-background-color-rgb:var(--aa-background-color-rgb)}.aa-Autocomplete *,.aa-DetachedFormContainer *,.aa-Panel *{box-sizing:border-box}.aa-Autocomplete,.aa-DetachedFormContainer,.aa-Panel{color:rgba(38, 38, 39,1);color:rgba(var(--aa-text-color-rgb),var(--aa-text-color-alpha));font-family:inherit;font-family:var(--aa-font-family);font-size:calc(16 * 1px);font-size:var(--aa-font-size);font-weight:400;line-height:1em;margin:0;padding:0;text-align:left}.aa-Form{align-items:center;background-color:rgba(255, 255, 255,1);background-color:rgba(var(--aa-input-background-color-rgb),var(--aa-input-background-color-alpha));border:1px solid rgba(128, 126, 163,0.8);border:1px solid rgba(var(--aa-input-border-color-rgb),var(--aa-input-border-color-alpha));border-radius:3px;display:flex;line-height:1em;margin:0;position:relative;width:100%}.aa-Form:focus-within{border-color:rgba(62, 52, 211,1);border-color:rgba(var(--aa-primary-color-rgb),1);box-shadow:rgba(62, 52, 211,0.2) 0 0 0 2px,inset rgba(62, 52, 211,0.2) 0 0 0 2px;box-shadow:rgba(var(--aa-primary-color-rgb),var(--aa-primary-color-alpha)) 0 0 0 2px,inset rgba(var(--aa-primary-color-rgb),var(--aa-primary-color-alpha)) 0 0 0 2px;outline:medium none currentColor}.aa-InputWrapperPrefix{align-items:center;display:flex;flex-shrink:0;height:44px;height:var(--aa-search-input-height);order:1}.aa-Label,.aa-LoadingIndicator{cursor:auto;flex-shrink:0;height:100%;padding:0;text-align:left}.aa-Label svg,.aa-LoadingIndicator svg{color:rgba(62, 52, 211,1);color:rgba(var(--aa-primary-color-rgb),1);height:auto;max-height:20px;max-height:var(--aa-input-icon-size);stroke-width:1.6;stroke-width:var(--aa-icon-stroke-width);width:20px;width:var(--aa-input-icon-size)}.aa-LoadingIndicator,.aa-SubmitButton{height:100%;padding-left:calc((16 * 1 * 1px)*0.75 - 1px);padding-left:calc(calc(16 * 1 * 1px)*0.75 - 1px);padding-left:calc(var(--aa-spacing)*0.75 - 1px);padding-right:calc((16 * 1 * 1px) / 2);padding-right:calc(calc(16 * 1 * 1px) / 2);padding-right:var(--aa-spacing-half);width:calc((16 * 1 * 1px)*1.75 + 20px - 1px);width:calc(calc(16 * 1 * 1px)*1.75 + 20px - 1px);width:calc(var(--aa-spacing)*1.75 + var(--aa-icon-size) - 1px)}@media (hover:none) and (pointer:coarse){.aa-LoadingIndicator,.aa-SubmitButton{padding-left:calc(((16 * 1 * 1px) / 2)/2 - 1px);padding-left:calc(calc(calc(16 * 1 * 1px) / 2)/2 - 1px);padding-left:calc(var(--aa-spacing-half)/2 - 1px);width:calc(20px + (16 * 1 * 1px)*1.25 - 1px);width:calc(20px + calc(16 * 1 * 1px)*1.25 - 1px);width:calc(var(--aa-icon-size) + var(--aa-spacing)*1.25 - 1px)}}.aa-SubmitButton{appearance:none;background:none;border:0;margin:0}.aa-LoadingIndicator{align-items:center;display:flex;justify-content:center}.aa-LoadingIndicator[hidden]{display:none}.aa-InputWrapper{order:3;position:relative;width:100%}.aa-Input{appearance:none;background:none;border:0;color:rgba(38, 38, 39,1);color:rgba(var(--aa-text-color-rgb),var(--aa-text-color-alpha));font:inherit;height:44px;height:var(--aa-search-input-height);padding:0;width:100%}.aa-Input::placeholder{color:rgba(128, 126, 163,0.6);color:rgba(var(--aa-muted-color-rgb),var(--aa-muted-color-alpha));opacity:1}.aa-Input:focus{border-color:none;box-shadow:none;outline:none}.aa-Input::-webkit-search-cancel-button,.aa-Input::-webkit-search-decoration,.aa-Input::-webkit-search-results-button,.aa-Input::-webkit-search-results-decoration{appearance:none}.aa-InputWrapperSuffix{align-items:center;display:flex;height:44px;height:var(--aa-search-input-height);order:4}.aa-ClearButton{align-items:center;background:none;border:0;color:rgba(128, 126, 163,0.6);color:rgba(var(--aa-muted-color-rgb),var(--aa-muted-color-alpha));cursor:pointer;display:flex;height:100%;margin:0;padding:0 calc((16 * 1 * 1px)*0.83333 - .5px);padding:0 calc(calc(16 * 1 * 1px)*0.83333 - .5px);padding:0 calc(var(--aa-spacing)*0.83333 - .5px)}@media (hover:none) and (pointer:coarse){.aa-ClearButton{padding:0 calc((16 * 1 * 1px)*0.66667 - .5px);padding:0 calc(calc(16 * 1 * 1px)*0.66667 - .5px);padding:0 calc(var(--aa-spacing)*0.66667 - .5px)}}.aa-ClearButton:focus,.aa-ClearButton:hover{color:rgba(38, 38, 39,1);color:rgba(var(--aa-text-color-rgb),var(--aa-text-color-alpha))}.aa-ClearButton[hidden]{display:none}.aa-ClearButton svg{stroke-width:1.6;stroke-width:var(--aa-icon-stroke-width);width:20px;width:var(--aa-icon-size)}.aa-Panel{background-color:rgba(255, 255, 255,1);background-color:rgba(var(--aa-background-color-rgb),var(--aa-background-color-alpha));border-radius:calc((16 * 1 * 1px)/4);border-radius:calc(calc(16 * 1 * 1px)/4);border-radius:calc(var(--aa-spacing)/4);box-shadow:0 0 0 1px rgba(35, 38, 59, 0.1),
    0 6px 16px -4px rgba(35, 38, 59, 0.15);box-shadow:var(--aa-panel-shadow);margin:8px 0 0;overflow:hidden;position:absolute;transition:opacity .2s ease-in,filter .2s ease-in}@media screen and (prefers-reduced-motion){.aa-Panel{transition:none}}.aa-Panel button{appearance:none;background:none;border:0;margin:0;padding:0}.aa-PanelLayout{height:100%;margin:0;max-height:650px;max-height:var(--aa-panel-max-height);overflow-y:auto;padding:0;position:relative;text-align:left}.aa-PanelLayoutColumns--twoGolden{display:grid;grid-template-columns:39.2% auto;overflow:hidden;padding:0}.aa-PanelLayoutColumns--two{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));overflow:hidden;padding:0}.aa-PanelLayoutColumns--three{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));overflow:hidden;padding:0}.aa-Panel--stalled .aa-Source{filter:grayscale(1);opacity:.8}.aa-Panel--scrollable{margin:0;max-height:650px;max-height:var(--aa-panel-max-height);overflow-x:hidden;overflow-y:auto;padding:calc((16 * 1 * 1px) / 2);padding:calc(calc(16 * 1 * 1px) / 2);padding:var(--aa-spacing-half);scrollbar-color:rgba(255, 255, 255,1) rgba(234, 234, 234,1);scrollbar-color:rgba(var(--aa-scrollbar-thumb-background-color-rgb),var(--aa-scrollbar-thumb-background-color-alpha)) rgba(var(--aa-scrollbar-track-background-color-rgb),var(--aa-scrollbar-track-background-color-alpha));scrollbar-width:thin}.aa-Panel--scrollable::-webkit-scrollbar{width:13px;width:var(--aa-scrollbar-width)}.aa-Panel--scrollable::-webkit-scrollbar-track{background-color:rgba(234, 234, 234,1);background-color:rgba(var(--aa-scrollbar-track-background-color-rgb),var(--aa-scrollbar-track-background-color-alpha))}.aa-Panel--scrollable::-webkit-scrollbar-thumb{background-color:rgba(255, 255, 255,1);background-color:rgba(var(--aa-scrollbar-thumb-background-color-rgb),var(--aa-scrollbar-thumb-background-color-alpha));border-radius:9999px;border:3px solid rgba(234, 234, 234,1);border:3px solid rgba(var(--aa-scrollbar-track-background-color-rgb),var(--aa-scrollbar-track-background-color-alpha));border-right-width:2px}.aa-Source{margin:0;padding:0;position:relative;width:100%}.aa-Source:empty{display:none}.aa-SourceNoResults{font-size:1em;margin:0;padding:calc(16 * 1 * 1px);padding:var(--aa-spacing)}.aa-List{list-style:none;margin:0}.aa-List,.aa-SourceHeader{padding:0;position:relative}.aa-SourceHeader{margin:calc((16 * 1 * 1px) / 2) .5em calc((16 * 1 * 1px) / 2) 0;margin:calc(calc(16 * 1 * 1px) / 2) .5em calc(calc(16 * 1 * 1px) / 2) 0;margin:var(--aa-spacing-half) .5em var(--aa-spacing-half) 0}.aa-SourceHeader:empty{display:none}.aa-SourceHeaderTitle{background:rgba(255, 255, 255,1);background:rgba(var(--aa-background-color-rgb),var(--aa-background-color-alpha));color:rgba(62, 52, 211,1);color:rgba(var(--aa-primary-color-rgb),1);display:inline-block;font-size:.8em;font-weight:600;font-weight:var(--aa-font-weight-semibold);margin:0;padding:0 calc((16 * 1 * 1px) / 2) 0 0;padding:0 calc(calc(16 * 1 * 1px) / 2) 0 0;padding:0 var(--aa-spacing-half) 0 0;position:relative;z-index:9999;z-index:var(--aa-base-z-index)}.aa-SourceHeaderLine{border-bottom:1px solid rgba(62, 52, 211,1);border-bottom:1px solid rgba(var(--aa-primary-color-rgb),1);display:block;height:2px;left:0;margin:0;opacity:.3;padding:0;position:absolute;right:0;top:calc((16 * 1 * 1px) / 2);top:calc(calc(16 * 1 * 1px) / 2);top:var(--aa-spacing-half);z-index:calc(9999 - 1);z-index:calc(var(--aa-base-z-index) - 1)}.aa-SourceFooterSeeAll{background:linear-gradient(180deg,rgba(255, 255, 255,1),rgba(128,126,163,.14));background:linear-gradient(180deg,rgba(var(--aa-background-color-rgb),var(--aa-background-color-alpha)),rgba(128,126,163,.14));border:1px solid rgba(128, 126, 163,0.6);border:1px solid rgba(var(--aa-muted-color-rgb),var(--aa-muted-color-alpha));border-radius:5px;box-shadow:inset 0 0 2px #fff,0 2px 2px -1px rgba(76,69,88,.15);color:inherit;font-size:.95em;font-weight:500;font-weight:var(--aa-font-weight-medium);padding:.475em 1em .6em;-webkit-text-decoration:none;text-decoration:none}.aa-SourceFooterSeeAll:focus,.aa-SourceFooterSeeAll:hover{border:1px solid rgba(62, 52, 211,1);border:1px solid rgba(var(--aa-primary-color-rgb),1);color:rgba(62, 52, 211,1);color:rgba(var(--aa-primary-color-rgb),1)}.aa-Item{align-items:center;border-radius:3px;cursor:pointer;display:grid;min-height:calc((16 * 1 * 1px)*2.5);min-height:calc(calc(16 * 1 * 1px)*2.5);min-height:calc(var(--aa-spacing)*2.5);padding:calc(((16 * 1 * 1px) / 2)/2);padding:calc(calc(calc(16 * 1 * 1px) / 2)/2);padding:calc(var(--aa-spacing-half)/2)}.aa-Item[aria-selected=true]{background-color:rgba(179, 173, 214,0.205);background-color:rgba(var(--aa-selected-color-rgb),var(--aa-selected-color-alpha))}.aa-Item[aria-selected=true] .aa-ActiveOnly,.aa-Item[aria-selected=true] .aa-ItemActionButton{visibility:visible}.aa-ItemIcon{align-items:center;background:rgba(255, 255, 255,1);background:rgba(var(--aa-background-color-rgb),var(--aa-background-color-alpha));border-radius:3px;box-shadow:inset 0 0 0 1px rgba(128, 126, 163,0.3);box-shadow:inset 0 0 0 1px rgba(var(--aa-panel-border-color-rgb),var(--aa-panel-border-color-alpha));color:rgba(119, 119, 163,1);color:rgba(var(--aa-icon-color-rgb),var(--aa-icon-color-alpha));display:flex;flex-shrink:0;font-size:.7em;height:calc(20px + ((16 * 1 * 1px) / 2));height:calc(20px + calc(calc(16 * 1 * 1px) / 2));height:calc(var(--aa-icon-size) + var(--aa-spacing-half));justify-content:center;overflow:hidden;stroke-width:1.6;stroke-width:var(--aa-icon-stroke-width);text-align:center;width:calc(20px + ((16 * 1 * 1px) / 2));width:calc(20px + calc(calc(16 * 1 * 1px) / 2));width:calc(var(--aa-icon-size) + var(--aa-spacing-half))}.aa-ItemIcon img{height:auto;max-height:calc(20px + ((16 * 1 * 1px) / 2) - 8px);max-height:calc(20px + calc(calc(16 * 1 * 1px) / 2) - 8px);max-height:calc(var(--aa-icon-size) + var(--aa-spacing-half) - 8px);max-width:calc(20px + ((16 * 1 * 1px) / 2) - 8px);max-width:calc(20px + calc(calc(16 * 1 * 1px) / 2) - 8px);max-width:calc(var(--aa-icon-size) + var(--aa-spacing-half) - 8px);width:auto}.aa-ItemIcon svg{height:20px;height:var(--aa-icon-size);width:20px;width:var(--aa-icon-size)}.aa-ItemIcon--alignTop{align-self:flex-start}.aa-ItemIcon--noBorder{background:none;box-shadow:none}.aa-ItemIcon--picture{height:96px;width:96px}.aa-ItemIcon--picture img{max-height:100%;max-width:100%;padding:calc((16 * 1 * 1px) / 2);padding:calc(calc(16 * 1 * 1px) / 2);padding:var(--aa-spacing-half)}.aa-ItemContent{align-items:center;cursor:pointer;display:grid;gap:calc((16 * 1 * 1px) / 2);gap:calc(calc(16 * 1 * 1px) / 2);grid-gap:calc((16 * 1 * 1px) / 2);grid-gap:calc(calc(16 * 1 * 1px) / 2);grid-gap:var(--aa-spacing-half);gap:var(--aa-spacing-half);grid-auto-flow:column;line-height:1.25em;overflow:hidden}.aa-ItemContent:empty{display:none}.aa-ItemContent mark{background:none;color:rgba(38, 38, 39,1);color:rgba(var(--aa-text-color-rgb),var(--aa-text-color-alpha));font-style:normal;font-weight:700;font-weight:var(--aa-font-weight-bold)}.aa-ItemContent--dual{display:flex;flex-direction:column;justify-content:space-between;text-align:left}.aa-ItemContent--dual .aa-ItemContentSubtitle,.aa-ItemContent--dual .aa-ItemContentTitle{display:block}.aa-ItemContent--indented{padding-left:calc(20px + (16 * 1 * 1px));padding-left:calc(20px + calc(16 * 1 * 1px));padding-left:calc(var(--aa-icon-size) + var(--aa-spacing))}.aa-ItemContentBody{display:grid;gap:calc(((16 * 1 * 1px) / 2)/2);gap:calc(calc(calc(16 * 1 * 1px) / 2)/2);grid-gap:calc(((16 * 1 * 1px) / 2)/2);grid-gap:calc(calc(calc(16 * 1 * 1px) / 2)/2);grid-gap:calc(var(--aa-spacing-half)/2);gap:calc(var(--aa-spacing-half)/2)}.aa-ItemContentTitle{display:inline-block;margin:0 .5em 0 0;max-width:100%;overflow:hidden;padding:0;text-overflow:ellipsis;white-space:nowrap}.aa-ItemContentSubtitle{font-size:.92em}.aa-ItemContentSubtitleIcon:before{border-color:rgba(128, 126, 163,.64);border-color:rgba(var(--aa-muted-color-rgb),.64);border-style:solid;content:"";display:inline-block;left:1px;position:relative;top:-3px}.aa-ItemContentSubtitle--inline .aa-ItemContentSubtitleIcon:before{border-width:0 0 1.5px;margin-left:calc((16 * 1 * 1px) / 2);margin-left:calc(calc(16 * 1 * 1px) / 2);margin-left:var(--aa-spacing-half);margin-right:calc(((16 * 1 * 1px) / 2)/2);margin-right:calc(calc(calc(16 * 1 * 1px) / 2)/2);margin-right:calc(var(--aa-spacing-half)/2);width:calc(((16 * 1 * 1px) / 2) + 2px);width:calc(calc(calc(16 * 1 * 1px) / 2) + 2px);width:calc(var(--aa-spacing-half) + 2px)}.aa-ItemContentSubtitle--standalone{align-items:center;color:rgba(38, 38, 39,1);color:rgba(var(--aa-text-color-rgb),var(--aa-text-color-alpha));display:grid;gap:calc((16 * 1 * 1px) / 2);gap:calc(calc(16 * 1 * 1px) / 2);grid-gap:calc((16 * 1 * 1px) / 2);grid-gap:calc(calc(16 * 1 * 1px) / 2);grid-gap:var(--aa-spacing-half);gap:var(--aa-spacing-half);grid-auto-flow:column;justify-content:start}.aa-ItemContentSubtitle--standalone .aa-ItemContentSubtitleIcon:before{border-radius:0 0 0 3px;border-width:0 0 1.5px 1.5px;height:calc((16 * 1 * 1px) / 2);height:calc(calc(16 * 1 * 1px) / 2);height:var(--aa-spacing-half);width:calc((16 * 1 * 1px) / 2);width:calc(calc(16 * 1 * 1px) / 2);width:var(--aa-spacing-half)}.aa-ItemContentSubtitleCategory{color:rgba(128, 126, 163,1);color:rgba(var(--aa-muted-color-rgb),1);font-weight:500}.aa-ItemContentDescription{color:rgba(38, 38, 39,1);color:rgba(var(--aa-text-color-rgb),var(--aa-text-color-alpha));font-size:.85em;max-width:100%;overflow-x:hidden;text-overflow:ellipsis}.aa-ItemContentDescription:empty{display:none}.aa-ItemContentDescription mark{background:rgba(245, 223, 77,0.5);background:rgba(var(--aa-description-highlight-background-color-rgb),var(--aa-description-highlight-background-color-alpha));color:rgba(38, 38, 39,1);color:rgba(var(--aa-text-color-rgb),var(--aa-text-color-alpha));font-style:normal;font-weight:500;font-weight:var(--aa-font-weight-medium)}.aa-ItemContentDash{color:rgba(128, 126, 163,0.6);color:rgba(var(--aa-muted-color-rgb),var(--aa-muted-color-alpha));display:none;opacity:.4}.aa-ItemContentTag{background-color:rgba(62, 52, 211,0.2);background-color:rgba(var(--aa-primary-color-rgb),var(--aa-primary-color-alpha));border-radius:3px;margin:0 .4em 0 0;padding:.08em .3em}.aa-ItemLink,.aa-ItemWrapper{align-items:center;color:inherit;display:grid;gap:calc(((16 * 1 * 1px) / 2)/2);gap:calc(calc(calc(16 * 1 * 1px) / 2)/2);grid-gap:calc(((16 * 1 * 1px) / 2)/2);grid-gap:calc(calc(calc(16 * 1 * 1px) / 2)/2);grid-gap:calc(var(--aa-spacing-half)/2);gap:calc(var(--aa-spacing-half)/2);grid-auto-flow:column;justify-content:space-between;width:100%}.aa-ItemLink{color:inherit;-webkit-text-decoration:none;text-decoration:none}.aa-ItemActions{display:grid;grid-auto-flow:column;height:100%;justify-self:end;margin:0 calc((16 * 1 * 1px)/-3);margin:0 calc(calc(16 * 1 * 1px)/-3);margin:0 calc(var(--aa-spacing)/-3);padding:0 2px 0 0}.aa-ItemActionButton{align-items:center;background:none;border:0;color:rgba(128, 126, 163,0.6);color:rgba(var(--aa-muted-color-rgb),var(--aa-muted-color-alpha));cursor:pointer;display:flex;flex-shrink:0;padding:0}.aa-ItemActionButton:focus svg,.aa-ItemActionButton:hover svg{color:rgba(38, 38, 39,1);color:rgba(var(--aa-text-color-rgb),var(--aa-text-color-alpha))}@media (hover:none) and (pointer:coarse){.aa-ItemActionButton:focus svg,.aa-ItemActionButton:hover svg{color:inherit}}.aa-ItemActionButton svg{color:rgba(128, 126, 163,0.6);color:rgba(var(--aa-muted-color-rgb),var(--aa-muted-color-alpha));margin:0;margin:calc(calc(16 * 1 * 1px)/3);margin:calc(var(--aa-spacing)/3);stroke-width:1.6;stroke-width:var(--aa-icon-stroke-width);width:20px;width:var(--aa-action-icon-size)}.aa-ActiveOnly{visibility:hidden}.aa-PanelHeader{align-items:center;background:rgba(62, 52, 211,1);background:rgba(var(--aa-primary-color-rgb),1);color:#fff;display:grid;height:var(--aa-modal-header-height);margin:0;padding:calc((16 * 1 * 1px) / 2) calc(16 * 1 * 1px);padding:calc(calc(16 * 1 * 1px) / 2) calc(16 * 1 * 1px);padding:var(--aa-spacing-half) var(--aa-spacing);position:relative}.aa-PanelHeader:after{background-image:linear-gradient(rgba(255, 255, 255,1),rgba(255, 255, 255,0));background-image:linear-gradient(rgba(var(--aa-background-color-rgb),1),rgba(var(--aa-background-color-rgb),0));bottom:calc(((16 * 1 * 1px) / 2)*-1);bottom:calc(calc(calc(16 * 1 * 1px) / 2)*-1);bottom:calc(var(--aa-spacing-half)*-1);content:"";height:calc((16 * 1 * 1px) / 2);height:calc(calc(16 * 1 * 1px) / 2);height:var(--aa-spacing-half);left:0;pointer-events:none;position:absolute;right:0;z-index:9999;z-index:var(--aa-base-z-index)}.aa-PanelFooter{background-color:rgba(255, 255, 255,1);background-color:rgba(var(--aa-background-color-rgb),var(--aa-background-color-alpha));box-shadow:inset 0 1px 0 rgba(128, 126, 163,0.3);box-shadow:inset 0 1px 0 rgba(var(--aa-panel-border-color-rgb),var(--aa-panel-border-color-alpha));display:flex;justify-content:space-between;margin:0;padding:calc(16 * 1 * 1px);padding:var(--aa-spacing);position:relative;z-index:9999;z-index:var(--aa-base-z-index)}.aa-PanelFooter:after{background-image:linear-gradient(rgba(255, 255, 255,0),rgba(128, 126, 163,0.6));background-image:linear-gradient(rgba(var(--aa-background-color-rgb),0),rgba(var(--aa-muted-color-rgb),var(--aa-muted-color-alpha)));content:"";height:calc(16 * 1 * 1px);height:var(--aa-spacing);left:0;opacity:.12;pointer-events:none;position:absolute;right:0;top:calc((16 * 1 * 1px)*-1);top:calc(calc(16 * 1 * 1px)*-1);top:calc(var(--aa-spacing)*-1);z-index:calc(9999 - 1);z-index:calc(var(--aa-base-z-index) - 1)}.aa-DetachedContainer{background:rgba(255, 255, 255,1);background:rgba(var(--aa-background-color-rgb),var(--aa-background-color-alpha));bottom:0;box-shadow:0 0 0 1px rgba(35, 38, 59, 0.1),
    0 6px 16px -4px rgba(35, 38, 59, 0.15);box-shadow:var(--aa-panel-shadow);display:flex;flex-direction:column;left:0;margin:0;overflow:hidden;padding:0;position:fixed;right:0;top:0;z-index:9999;z-index:var(--aa-base-z-index)}.aa-DetachedContainer:after{height:32px}.aa-DetachedContainer .aa-SourceHeader{margin:calc((16 * 1 * 1px) / 2) 0 calc((16 * 1 * 1px) / 2) 2px;margin:calc(calc(16 * 1 * 1px) / 2) 0 calc(calc(16 * 1 * 1px) / 2) 2px;margin:var(--aa-spacing-half) 0 var(--aa-spacing-half) 2px}.aa-DetachedContainer .aa-Panel{background-color:rgba(255, 255, 255,1);background-color:rgba(var(--aa-background-color-rgb),var(--aa-background-color-alpha));border-radius:0;box-shadow:none;flex-grow:1;margin:0;padding:0;position:relative}.aa-DetachedContainer .aa-PanelLayout{bottom:0;box-shadow:none;left:0;margin:0;max-height:none;overflow-y:auto;position:absolute;right:0;top:0;width:100%}.aa-DetachedFormContainer{border-bottom:1px solid rgba(128, 126, 163,0.3);border-bottom:1px solid rgba(var(--aa-panel-border-color-rgb),var(--aa-panel-border-color-alpha));display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:calc((16 * 1 * 1px) / 2);padding:calc(calc(16 * 1 * 1px) / 2);padding:var(--aa-spacing-half)}.aa-DetachedCancelButton{background:none;border:0;border-radius:3px;color:inherit;color:rgba(38, 38, 39,1);color:rgba(var(--aa-text-color-rgb),var(--aa-text-color-alpha));cursor:pointer;font:inherit;margin:0 0 0 calc((16 * 1 * 1px) / 2);margin:0 0 0 calc(calc(16 * 1 * 1px) / 2);margin:0 0 0 var(--aa-spacing-half);padding:0 calc((16 * 1 * 1px) / 2);padding:0 calc(calc(16 * 1 * 1px) / 2);padding:0 var(--aa-spacing-half)}.aa-DetachedCancelButton:focus,.aa-DetachedCancelButton:hover{box-shadow:inset 0 0 0 1px rgba(128, 126, 163,0.3);box-shadow:inset 0 0 0 1px rgba(var(--aa-panel-border-color-rgb),var(--aa-panel-border-color-alpha))}.aa-DetachedContainer--modal{border-radius:6px;bottom:inherit;height:auto;margin:0 auto;max-width:680px;max-width:var(--aa-detached-modal-max-width);position:absolute;top:3%}.aa-DetachedContainer--modal .aa-PanelLayout{max-height:500px;max-height:var(--aa-detached-modal-max-height);padding-bottom:calc((16 * 1 * 1px) / 2);padding-bottom:calc(calc(16 * 1 * 1px) / 2);padding-bottom:var(--aa-spacing-half);position:static}.aa-DetachedContainer--modal .aa-PanelLayout:empty{display:none}.aa-DetachedSearchButton{align-items:center;background-color:rgba(255, 255, 255,1);background-color:rgba(var(--aa-input-background-color-rgb),var(--aa-input-background-color-alpha));border:1px solid rgba(128, 126, 163,0.8);border:1px solid rgba(var(--aa-input-border-color-rgb),var(--aa-input-border-color-alpha));border-radius:3px;color:rgba(128, 126, 163,0.6);color:rgba(var(--aa-muted-color-rgb),var(--aa-muted-color-alpha));cursor:pointer;display:flex;font:inherit;font-family:inherit;font-family:var(--aa-font-family);font-size:calc(16 * 1px);font-size:var(--aa-font-size);height:44px;height:var(--aa-search-input-height);margin:0;padding:0 calc(44px/8);padding:0 calc(var(--aa-search-input-height)/8);position:relative;text-align:left;width:100%}.aa-DetachedSearchButton:focus{border-color:rgba(62, 52, 211,1);border-color:rgba(var(--aa-primary-color-rgb),1);box-shadow:rgba(62, 52, 211,0.2) 0 0 0 3px,inset rgba(62, 52, 211,0.2) 0 0 0 2px;box-shadow:rgba(var(--aa-primary-color-rgb),var(--aa-primary-color-alpha)) 0 0 0 3px,inset rgba(var(--aa-primary-color-rgb),var(--aa-primary-color-alpha)) 0 0 0 2px;outline:medium none currentColor}.aa-DetachedSearchButtonIcon{align-items:center;color:rgba(62, 52, 211,1);color:rgba(var(--aa-primary-color-rgb),1);cursor:auto;display:flex;flex-shrink:0;height:100%;justify-content:center;width:calc(20px + (16 * 1 * 1px));width:calc(20px + calc(16 * 1 * 1px));width:calc(var(--aa-icon-size) + var(--aa-spacing))}.aa-DetachedSearchButtonQuery{color:rgba(38, 38, 39,1);color:rgba(var(--aa-text-color-rgb),1);line-height:1.25em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.aa-DetachedSearchButtonPlaceholder[hidden]{display:none}.aa-Detached{height:100vh;overflow:hidden}.aa-DetachedOverlay{background-color:rgba(115, 114, 129,0.4);background-color:rgba(var(--aa-overlay-color-rgb),var(--aa-overlay-color-alpha));height:100vh;left:0;margin:0;padding:0;position:fixed;right:0;top:0;z-index:calc(9999 - 1);z-index:calc(var(--aa-base-z-index) - 1)}.aa-GradientBottom,.aa-GradientTop{height:calc((16 * 1 * 1px) / 2);height:calc(calc(16 * 1 * 1px) / 2);height:var(--aa-spacing-half);left:0;pointer-events:none;position:absolute;right:0;z-index:9999;z-index:var(--aa-base-z-index)}.aa-GradientTop{background-image:linear-gradient(rgba(255, 255, 255,1),rgba(255, 255, 255,0));background-image:linear-gradient(rgba(var(--aa-background-color-rgb),1),rgba(var(--aa-background-color-rgb),0));top:0}.aa-GradientBottom{background-image:linear-gradient(rgba(255, 255, 255,0),rgba(255, 255, 255,1));background-image:linear-gradient(rgba(var(--aa-background-color-rgb),0),rgba(var(--aa-background-color-rgb),1));border-bottom-left-radius:calc((16 * 1 * 1px)/4);border-bottom-left-radius:calc(calc(16 * 1 * 1px)/4);border-bottom-left-radius:calc(var(--aa-spacing)/4);border-bottom-right-radius:calc((16 * 1 * 1px)/4);border-bottom-right-radius:calc(calc(16 * 1 * 1px)/4);border-bottom-right-radius:calc(var(--aa-spacing)/4);bottom:0}@media (hover:none) and (pointer:coarse){.aa-DesktopOnly{display:none}}@media (hover:hover){.aa-TouchOnly{display:none}}
:root {
  --aa-search-input-height: 36px;
}

body.dark,
body[data-theme="dark"] {
  --aa-muted-color-alpha: 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.
 */

@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.
 */

.errorBoundaryError_a6uf {
  white-space: pre-wrap;
  color: red;
}

/**
 * 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.
 */

.footerLogoLink_BH7S {
  opacity: 0.5;
  transition: opacity var(--ifm-transition-fast)
    var(--ifm-transition-timing-default);
}

.footerLogoLink_BH7S:hover {
  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.
 */

html,
body {
  height: 100%;
}

.mainWrapper_z2l0 {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

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

#__docusaurus {
  min-height: 100%;
  display: flex;
  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.
 */

.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;
  margin: 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.
 */

.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;
    height: 100%;
    padding-top: var(--ifm-navbar-height);
    width: var(--doc-sidebar-width);
  }

  .sidebarWithHideableNavbar_wUlq {
    padding-top: 0;
  }

  .sidebarHidden_VK0M {
    opacity: 0;
    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: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    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;
  }

  .sidebarViewport_Xe31 {
    top: 0;
    position: sticky;
    height: 100%;
    max-height: 100vh;
  }
}

/**
 * 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;
  }
}

/**
 * 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.
 */

.docPage__5DB {
  display: flex;
  width: 100%;
  flex: 1 0;
}

.docsWrapper_BCFX {
  display: flex;
  flex: 1 0 auto;
}

/*
JS disabled??? Show light version by default => better than showing nothing
TODO bad, but we currently always show light mode when there's no data-theme
 */
html:not([data-theme]) .themedComponent--light_NU7w {
  display: initial;
}

/* Landing page — Apple/Stripe-inspired design */

/* ── Page ── */
.page_d635 {
  --landing-accent: #000000;
  --landing-accent-light: #e8f1fa;
  --landing-border: #e5e5e5;
  --landing-bg-subtle: #fafafa;
  --landing-text: #111;
  --landing-text-secondary: #525252;
  --landing-card-bg: #ffffff;
  --landing-badge-get: #059669;
  --landing-badge-post: #2563eb;
  --landing-badge-event: #7c3aed;
}

html[data-theme='dark'] .page_d635 {
  --landing-accent: #60a5fa;
  --landing-accent-light: rgba(96, 165, 250, 0.1);
  --landing-border: #1f2937;
  --landing-bg-subtle: #111827;
  --landing-text: #f9fafb;
  --landing-text-secondary: #9ca3af;
  --landing-card-bg: #1a1a2e;
  --landing-badge-get: #34d399;
  --landing-badge-post: #60a5fa;
  --landing-badge-event: #a78bfa;
}

/* ── Hero ── */
.hero_syme {
  border-bottom: 1px solid var(--landing-border);
  padding: 5rem 0 4.5rem;
}

.heroInner_VWeJ {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.heroContent_wj1u {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.heroIllustration_thst {
  width: 300px;
  height: auto;
  flex-shrink: 0;
  align-self: center;
  max-width: 100%;
}

.heroIllustrationLight_t7dM {
  display: block;
}

.heroIllustrationDark_MpUp {
  display: none;
}

html[data-theme='dark'] .heroIllustrationLight_t7dM {
  display: none;
}

html[data-theme='dark'] .heroIllustrationDark_MpUp {
  display: block;
}

@media screen and (max-width: 950px) {
  .heroInner_VWeJ {
    flex-direction: column;
  }

  .heroIllustration_thst {
    display: none !important;
  }
}

.heroEyebrow_h4OS {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--landing-accent);
  margin-bottom: 0.75rem;
}

.heroTitle_ohkl {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--landing-text);
  margin: 0 0 1.25rem;
}

.heroSubtitle_GKHc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--landing-text-secondary);
  margin: 0 0 2rem;
  max-width: 740px;
}

.heroCtas_Xyf1 {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ctaPrimary_VJd2 {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 10px 48px;
  font-size: 16px;
  font-weight: 500;
  height: 48px;
  color: #ffffff !important;
  background: #000000;
  border: 1px solid #000000;
  border-radius: 8px;
  transition: background 0.15s, border-color 0.15s;
  text-decoration: none !important;
}

.ctaPrimary_VJd2:hover {
  background: #333333;
  border-color: #333333;
  color: #ffffff !important;
  text-decoration: none !important;
}

html[data-theme='dark'] .ctaPrimary_VJd2 {
  background: #ffffff;
  color: #000000 !important;
  border-color: #ffffff;
}

html[data-theme='dark'] .ctaPrimary_VJd2:hover {
  background: #e0e0e0;
  border-color: #e0e0e0;
  color: #000000 !important;
}

.ctaSecondary_r5Z4 {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 10px 48px;
  font-size: 16px;
  font-weight: 500;
  height: 48px;
  color: #000000 !important;
  background: transparent;
  border: 1px solid #dfdfdf;
  border-radius: 8px;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  text-decoration: none !important;
}

.ctaSecondary_r5Z4:hover {
  border-color: #000000;
  background: #000000;
  color: #ffffff !important;
  text-decoration: none !important;
}

html[data-theme='dark'] .ctaSecondary_r5Z4 {
  color: #ffffff !important;
  border-color: #4b5563;
}

html[data-theme='dark'] .ctaSecondary_r5Z4:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* ── Main content ── */
.main_MeqP {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

/* ── Section ── */
.section_rC2D {
  margin-bottom: 4rem;
}

.section_rC2D:last-child {
  margin-bottom: 0;
}

.sectionHeader_QZur {
  margin-bottom: 1.5rem;
}

.sectionTitle_czhA {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--landing-text);
  margin: 0 0 0.375rem;
}

.sectionDescription_hX8Y {
  font-size: 0.9375rem;
  color: var(--landing-text-secondary);
  margin: 0;
}

/* ── Grid ── */
.grid_UK5W {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 996px) {
  .grid_UK5W {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid_UK5W {
    grid-template-columns: 1fr;
  }
}

/* ── Card ── */
.card_UXd2 {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  color: var(--landing-text) !important;
  text-decoration: none !important;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.card_UXd2:hover {
  border-color: #d4d4d4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
  text-decoration: none !important;
  color: var(--landing-text) !important;
}

html[data-theme='dark'] .card_UXd2:hover {
  border-color: #374151;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cardBody_vgJ6 {
  flex: 1;
  min-width: 0;
}

.cardHeader_i7R3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cardTitle_kvC4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0;
  color: var(--landing-text);
  line-height: 1.4;
}

.cardDescription_l8Cv {
  font-size: 0.8125rem;
  color: var(--landing-text-secondary);
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

.cardArrow_wyZ4 {
  display: none;
}

/* ── Badges ── */
.badge_oX1U {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  line-height: 1.6;
  white-space: nowrap;
  flex-shrink: 0;
}

.badgeGet_RP2N {
  color: var(--landing-badge-get);
  background: rgba(5, 150, 105, 0.1);
}

.badgePost_qcQD {
  color: var(--landing-badge-post);
  background: rgba(37, 99, 235, 0.1);
}

.badgeEvent_g3zS {
  color: var(--landing-badge-event);
  background: rgba(124, 58, 237, 0.1);
}

html[data-theme='dark'] .badgeGet_RP2N {
  background: rgba(52, 211, 153, 0.12);
}

html[data-theme='dark'] .badgePost_qcQD {
  background: rgba(96, 165, 250, 0.12);
}

html[data-theme='dark'] .badgeEvent_g3zS {
  background: rgba(167, 139, 250, 0.12);
}

/* ── Responsive ── */
@media screen and (max-width: 950px) {
  .heroIllustration_thst {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .heroTitle_ohkl {
    font-size: 2rem;
  }

  .heroSubtitle_GKHc {
    font-size: 1rem;
  }

  .hero_syme {
    padding: 3rem 0 2.5rem;
  }

  .main_MeqP {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .section_rC2D {
    margin-bottom: 2.5rem;
  }

  .sectionTitle_czhA {
    font-size: 1.125rem;
  }

  .card_UXd2 {
    padding: 1rem;
  }

  .ctaPrimary_VJd2,
  .ctaSecondary_r5Z4 {
    padding: 10px 32px;
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .heroTitle_ohkl {
    font-size: 1.625rem;
  }

  .heroSubtitle_GKHc {
    font-size: 0.9375rem;
  }

  .hero_syme {
    padding: 2rem 0 2rem;
  }

  .main_MeqP {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .heroCtas_Xyf1 {
    flex-direction: column;
    gap: 0.5rem;
  }

  .ctaPrimary_VJd2,
  .ctaSecondary_r5Z4 {
    justify-content: center;
    width: 100%;
    padding: 10px 24px;
    font-size: 14px;
    height: 44px;
  }

  .sectionTitle_czhA {
    font-size: 1rem;
  }

  .card_UXd2 {
    padding: 0.875rem;
  }

  .cardTitle_kvC4 {
    font-size: 0.875rem;
  }

  .cardDescription_l8Cv {
    font-size: 0.75rem;
  }
}

/**
 * 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.
 */

/*
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_LWe7 {
  scroll-margin-top: calc(var(--ifm-navbar-height) + 0.5rem);
}

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

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

.hash-link::before {
  content: '#';
}

.hash-link:focus,
*:hover > .hash-link {
  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);
}

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

.codeBlockTitle_P25_ {
  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_qGQc {
  --ifm-pre-background: var(--prism-background-color);
  margin: 0;
  padding: 0;
}

.codeBlockTitle_P25_ + .codeBlockContent_m3Ux .codeBlock_qGQc {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.codeBlockStandalone_zC50 {
  padding: 0;
}

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

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

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

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

.buttonGroup_6DOT 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 var(--ifm-transition-fast) ease-in-out;
  opacity: 0;
}

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

.theme-code-block:hover .buttonGroup_6DOT 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.
 */

.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.
 */

.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 var(--ifm-transition-fast) 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.
 */

: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: var(--ifm-global-radius);
  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.
 */

.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.
 */

.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;
  }
}

/**
 * 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;
}

/**
 * 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.
 */

.breadcrumbHomeIcon_YNFT {
  position: relative;
  top: 1px;
  vertical-align: top;
  height: 1.1rem;
  width: 1.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.
 */

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

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

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

.tocCollapsibleContent_vkbj a {
  display: block;
}

.tocCollapsibleExpanded_sAul {
  transform: 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.
 */

.breadcrumbsContainer_Z_bl {
  --ifm-breadcrumb-size-multiplier: 0.8;
  margin-bottom: 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.
 */

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

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

/* Duplicated from .markdown h1 */
.title_kItE {
  --ifm-h1-font-size: 3rem;
  margin-bottom: calc(1.25 * var(--ifm-leading));
}

.list_eTzJ 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.
 */

/*
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);
}

/**
 * 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.
 */

@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;
  }
}

/**
 * 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.
 */

.tableOfContents_bqdL {
  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_bqdL {
    display: none;
  }

  .docItemContainer_F8PC {
    padding: 0 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.
 */

.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.
 */

.docItemContainer_Djhp header + *,
.docItemContainer_Djhp article > *:first-child {
  margin-top: 0;
}

@media (min-width: 997px) {
  .docItemCol_VOVn {
    max-width: 75% !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_jfFK header + *,
.docItemContainer_jfFK article > *:first-child {
  margin-top: 0;
}

@media (min-width: 997px) {
  .docItemCol_xLCN {
    max-width: 75% !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.
 */

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

