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

/**
 * Any CSS included here will be global. The classic template
 * bundles Infima by default. Infima is a CSS framework designed to
 * work well for content-centric websites.
 */
/* You can override the default Infima variables here. */
:root {
  --ifm-font-family-base: "Inter", sans-serif;
  --ifm-color-primary: #0f62fe;
  --ifm-color-primary-dark: #29784c;
  --ifm-color-primary-darker: #277148;
  --ifm-color-primary-darkest: #205d3b;
  --ifm-color-primary-light: #33925d;
  --ifm-color-primary-lighter: #359962;
  --ifm-color-primary-lightest: #3cad6e;
  --ifm-code-font-size: 95%;
  --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
  --ifm-h1-font-size: 2rem;
  --ifm-breadcrumb-border-radius: 0.4rem;
  --ifm-navbarsidebar-height: 7rem;
  --ifm-tabs-padding-vertical: 0.3rem;
  --ifm-footer-padding-vertical: 0.5rem;
  --Primary-Primary-100: #eef4ff;
  --ifm-font-weight-semibold: 400;
  --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(103, 104, 132, 1)" d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"></path></svg>');
}

/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme="dark"] {
  --ifm-font-family-base: "Inter", sans-serif;
  --ifm-color-primary: #676ab8;
  --ifm-color-primary-dark: #21af90;
  --ifm-color-primary-darker: #1fa588;
  --ifm-color-primary-darkest: #1a8870;
  --ifm-color-primary-light: #29d5b0;
  --ifm-color-primary-lighter: #32d8b4;
  --ifm-color-primary-lightest: #4fddbf;
  --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
  --ifm-breadcrumb-border-radius: 0.4rem;
}

body {
  font-family: "Inter", sans-serif;
}

.iframe-mode .navbar__brand {
  display: none !important;
}

.iframe-mode .login-blocks {
  display: none !important;
}

html[data-theme="dark"] .navbar .navbar__logo {
  content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwcHgiIGhlaWdodD0iOTFweCIgdmlld0JveD0iMCAwIDIwMCA5MSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCB4MT0iNTAlIiB5MT0iMCUiIHgyPSI1MCUiIHkyPSIxMDAlIiBpZD0ibGluZWFyR3JhZGllbnQtMSI+CiAgICAgICAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiMzOEJFQzIiIG9mZnNldD0iMCUiPjwvc3RvcD4KICAgICAgICAgICAgPHN0b3Agc3RvcC1jb2xvcj0iIzRFNEI5RSIgb2Zmc2V0PSIxMDAlIj48L3N0b3A+CiAgICAgICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIAogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImxvZ28iPgogICAgICAgICAgICA8ZyBpZD0idGV4dCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTA1LjAwMDAwMCwgMjkuMDAwMDAwKSIgZmlsbD0iI2ZmZiIgZmlsbC1ydWxlPSJub256ZXJvIj4KICAgICAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJGaWxsLTEiIHBvaW50cz0iOTUgMzIuNjkxNTQyMyA3MC45NDQ3MDYgMC44NTA3NDYyNjkgNjUuMTQ5MjUzNyAwLjg1MDc0NjI2OSA2NS4xNDkyNTM3IDMyLjY5MTU0MjMgNzIuMTIxNDM1OCAzMi42OTE1NDIzIDcyLjEyMTQzNTggMTMuMzc0NTE5MyA4Ny4yODIzOTU1IDMyLjY5MTU0MjMiPjwvcG9seWdvbj4KICAgICAgICAgICAgICAgIDxwb2x5bGluZSBpZD0iRmlsbC0yIiBwb2ludHM9Ijg3LjAzOTgwMSAxNS42ODUxNzk5IDg3LjAzOTgwMSAwLjg1MDc0NjI2OSA5NSAwLjg1MDc0NjI2OSA5NSAyNC43MzEzNDMzIj48L3BvbHlsaW5lPgogICAgICAgICAgICAgICAgPHBvbHlnb24gaWQ9IkZpbGwtMyIgcG9pbnRzPSIzMy4zMDg0NTc3IDYuODIwODk1NTIgNjAuMTc0MTI5NCA2LjgyMDg5NTUyIDYwLjE3NDEyOTQgMC44NTA3NDYyNjkgMzMuMzA4NDU3NyAwLjg1MDc0NjI2OSI+PC9wb2x5Z29uPgogICAgICAgICAgICAgICAgPHBvbHlnb24gaWQ9IkZpbGwtNCIgcG9pbnRzPSI0My4yNTg3MDY1IDMwLjcwMTQ5MjUgNTEuMjE4OTA1NSAzMC43MDE0OTI1IDUxLjIxODkwNTUgOS44MDU5NzAxNSA0My4yNTg3MDY1IDkuODA1OTcwMTUiPjwvcG9seWdvbj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0yOS43NTI4MjM3LDE2LjI4NDQwMTYgTDE3LjQ4Mzk3MDgsMTYuMjg0NDAxNiBMMTcuNDgzOTcwOCwyMS4xMTcyODUxIEwyMy4yNjEzNDE0LDIxLjExNzI4NTEgTDIzLjI2MTM0MTQsMjUuMjg0NTkxOCBDMTQuOTQ4NjkxOSwzMC4wODkxMjk3IDQuNjAzMTk2MjIsMjEuODQ4NDM0MiA4LjQ5ODU3MjE5LDEyLjc3MzY2OTIgQzExLjEwMDc2MTEsNS45MjU4MDY3NyAyMS4xNDMzMzcxLDUuMDY4NTAwOTIgMjUuNzYwMTI0MSwxMC40MDU3Njc5IEwzMC4zMjMzODMxLDYuMTkzNDQ4NjggQzIyLjkxNzA1OTQsLTIuMzcwMjQxODEgNi4xODgzNTM4MywtMC40MDM4MDM1MjggMS44Mjk4MzkzNiwxMC40MDU4ODk1IEMtNS4xMjQ0MTY0NiwyNy45NTE0MDA1IDE2LjIzOTQ0NTgsMzkuMDE1OTYxNyAyOS43NTI4MjM3LDI4Ljc0Mzg2NCBMMjkuNzUyODIzNywxNi4yODQ0MDE2IFoiIGlkPSJGaWxsLTUiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8ZyBpZD0ic2hhcGUiIGZpbGw9IiNmZmYiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTE1LjY3Mjk5MDUsMTAuODQzODAzNCBDMTMuOTk1MjM0OCwxMi4zODY3MzM5IDEyLjM4MzUxNjksMTMuOTk4NDExMyAxMC44NDA2NjU0LDE1LjY3NjI1MjkgQzQuMDgyNDIsMjMuNTQzNTI2IDAsMzMuNzgxNzY2NyAwLDQ0Ljk3ODg5NyBDMCw0Ny42NTQ4NTk1IDAuMjMzNDA3NjMyLDUwLjI3Mjc3NDUgMC42ODExNjE2ODMsNTIuODE5MjM3MSBDMy42NTIyNTE0NSw0MS4wMDU1OTg3IDkuNTQzMjczMTgsMzAuMzU4Njg5NCAxNy41NDA4NjY1LDIxLjY4NjI1MzkgQzE4LjgwNzI2ODgsMjAuMTkzMjU0IDIwLjE5MjIxOTcsMTguODA4MTA5MiAyMS42ODM5MTM0LDE3LjU0Mjk5NDggQzMwLjM1NzEzNDQsOS41NDM2MzkwMyA0MS4wMDQ5NzQxLDMuNjUzNjY4MzcgNTIuODE5MjM3MSwwLjY4MTA3MzU5MiBDNTAuMjczMDI4LDAuMjMzMjk2NjA2IDQ3LjY1MjQxODYsMCA0NC45NzY3MTYsMCBDMzMuNzc2MTAxMiwwLjAwMTIyOTgxODY5IDIzLjU0MTA5MDUsNC4wODM5ODE5MiAxNS42NzI5OTA1LDEwLjg0MzgwMzQgWiIgaWQ9InBhdGgtMyI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTUzLjQwMjczNjIsMTAuMDA0NDU2IEw1My40MDEzNzQ2LDEwLjAwMzIxNzUgQzQzLjY4OTAyNywxMi43ODE4MjQgMzQuOTY2ODkxNCwxNy43ODA2NDA4IDI3Ljc3Mjg0NCwyNC40NjQwNTgyIEMyNi42MTg4NTUyLDI1LjUzNDQxMDUgMjUuNTE5NTgyMywyNi42MzM5ODkzIDI0LjQ0OTY0ODIsMjcuNzg4NTUzIEMxNy43Njc2MDQ2LDM0Ljk4NjY1MDkgMTIuNzQ3MjIwNyw0My43MzU4NDk2IDkuOTcyMTc1NzcsNTMuNDQ5MzkzMyBDOC40Mzk1MDcyMiw1OC44MTUzOTY4IDcuNTk4NDY0NDgsNjQuNDcyNTQ5IDcuNTQ1NjA1MzEsNzAuMzI0OTk3NCBDMTAuMjcyOTkwMyw3NC40MzA2NzczIDEzLjY1NjU5NjYsNzguMDYxOTI0NyAxNy41NDIwNTU2LDgxLjA3NDQ2NTcgQzIwLjkyOTM3NTYsODMuNzAyMjM0NiAyNC43MDAzMjY5LDg1Ljg1NjkzMzQgMjguNzU2ODY2NSw4Ny40NDU5MjkyIEMzMi4zOTY1OTg0LDg4Ljg3MDcxMjcgMzYuMjY2MzM1OCw4OS44MzcyODY4IDQwLjI5NDQwMzEsOTAuMjc1OTI5NCBDNDEuOTI4OTUyNSw5MC40NTUwMDI3IDQzLjU4ODEzNjUsOTAuNTQ3MjYzNyA0NS4yNzE3MDc0LDkwLjU0NzI2MzcgQzQ3LjQ0Mzg4NTQsOTAuNTQ3MjYzNyA0OS41ODA3ODI2LDkwLjM5NDk0MDEgNTEuNjcxNjI5Miw5MC4wOTg5NjE1IEM1NS41Mjg2MTYxLDg5LjU1NDE4NzggNTkuMjI4MTM5NCw4OC41MjM1ODgyIDYyLjcwNzY4NDUsODcuMDcxNjgzNiBDNjcuODQyMzI4NSw4NC45MzExMDI3IDcyLjQ5NjE2NDMsODEuODcwMDE2MyA3Ni40NjQ2ODc3LDc4LjA5NTM2MTcgQzc3LjAyNTIxNzcsNzcuNTY0NTgxOCA3Ny41Njk2NTQ4LDc3LjAxOTgwNzkgNzguMTAwMzUxMSw3Ni40NTkwNTg4IEM4MS44NzMyODMxLDcyLjQ4OTEwNzkgODQuOTMwNjk3Nyw2Ny44MzM0NTI5IDg3LjA3MTY4LDYyLjY5NTU2MzMgQzg4LjUyMzAxNzEsNTkuMjE3MzgyNiA4OS41NTMzMzc4LDU1LjUxNjQxMyA5MC4wOTkxMzY3LDUxLjY1OTAzMyBDOTAuMzkzNjM3OSw0OS41NjYyNTQ0IDkwLjU0NTkwMiw0Ny40Mjg1MjIgOTAuNTQ3MjYzNyw0NS4yNTQxMzI2IEM5MC41NDcyNjM3LDQzLjU3MjYyOCA5MC40NTYxNTI4LDQxLjkxMTY4MDkgOTAuMjc1NTQwMiw0MC4yNzc4NTQ4IEM4OS44MzcwNjksMzYuMjQ1NjEyMiA4OC44NzA1MDEzLDMyLjM3NDczMzYgODcuNDQ2Mzk4MiwyOC43MzM1Nzg4IEM4My44MDUzMDQ3LDI3LjMwNzU1NjkgNzkuOTM2MDYyNCwyNi4zNDA0ODc1IDc1LjkwNTI3MTYsMjUuOTAxNTk3MyBDNzQuMjcyMDg0MSwyNS43MjExNjE4IDcyLjYxMTY2MjEsMjUuNjMwMTM5MSA3MC45MzA4MTQ2LDI1LjYzMDEzOTEgQzY4Ljc1NzI3NDksMjUuNjMxNTAxNCA2Ni42MjAzNzc3LDI1Ljc4MzU3NzQgNjQuNTI4MjkzMiwyNi4wNzg0NDEyIEM2MC42NzI3OTE5LDI2LjYyNDQ1MzQgNTYuOTc0NTA2NSwyNy42NTM2OTA5IDUzLjQ5NzY4NDcsMjkuMTA1NzE5MiBDNDguMzYxOTI2OCwzMS4yNDc0MTQ4IDQzLjcwNjQ4MTYsMzQuMzA3Mzg2NSAzOS43MzgyMDU4LDM4LjA4MTU0NTggQzM5LjE3NzU1MiwzOC42MTI4MjEgMzguNjMzMTE0OCwzOS4xNTcyMjMzIDM4LjEwMjE3MSwzOS43MTgzNDQgQzM0LjMyOTQ4NjUsNDMuNjg4MTcxMSAzMS4yNzA3MTAzLDQ4LjM0NTMxMjIgMjkuMTI5ODUxNyw1My40ODMwNzc5IEMyNy42NzcxNTI5LDU2Ljk2MjYyMDkgMjYuNjQ3OTQ2Miw2MC42NjIzNTIxIDI2LjEwMzYzMyw2NC41MjA5NzA1IEMyOC41NTY4MTg3LDY2Ljk2NDIxNzIgMzEuNDc3MDcxNiw2OC45NDAzMzgxIDM0LjcxNzY5ODEsNzAuMzA1MzA2NyBDMzcuNTM0ODMyMyw3MS40OTM1NTUxIDQwLjU5NjMzMTcsNzIuMjIwMjUwNSA0My44MDU2MzksNzIuMzkxMjc0IEM0NC4yOTE2NDYzLDcyLjQxNTc5NDQgNDQuNzgwMzc3MSw3Mi40MjkyOTMgNDUuMjcxOTU1MSw3Mi40MjkyOTMgQzQ3Ljg5NDg1OTUsNzIuNDI5MjkzIDUwLjQyOTUwMDUsNzIuMDU4NjM4NyA1Mi44MjcxMDM2LDcxLjM2NTc1MTkgQzUyLjgyNDI1NjMsNzEuMjE5MjQ4NyA1Mi44MjE1MzMsNzEuMDcyMzc0MSA1Mi44MjE2NTY3LDcwLjkyMzE0NjMgQzUyLjgyMTUzMyw2NS45MTcwMjMgNTQuODQ1Nzc5NCw2MS4zODc0Mzc1IDU4LjEyMTY4NjcsNTguMTEwMjQ5NyBDNjEuMzk3NTkzOSw1NC44MzMxODU2IDY1LjkyNTI4NTgsNTIuODA4MDIzOSA3MC45MzA4MTQ2LDUyLjgwNjY2MTggQzcxLjA4MDIzMTYsNTIuODA2NjYxOCA3MS4yMjY4MDEyLDUyLjgwOTM4NjIgNzEuMzczNDk0Nyw1Mi44MTIxMTA2IEM3Mi4wNjU4NjMzLDUwLjQxMzgxOCA3Mi40MzY0OTY1LDQ3Ljg3ODE4NjMgNzIuNDM2NDk2NSw0NS4yNTQxMzI2IEM3Mi40MzY0OTY1LDQ0Ljc2MjQ4NjMgNzIuNDIyODc5NCw0NC4yNzM1NjQ1IDcyLjM5ODQ5MjMsNDMuNzg3MzY3MiBDNzEuOTEzNzIyOSw0My43NjE0ODQ1IDcxLjQyMjI2ODgsNDMuNzQ3OTg1OSA3MC45MzA4MTQ2LDQzLjc0Nzk4NTkgQzY4LjMwODAzMzksNDMuNzQ3OTg1OSA2NS43NzMyNjkxLDQ0LjExODY0MDIgNjMuMzc1Nzg5OCw0NC44MTExNTU3IEM1OC45MDc3NjU4LDQ2LjEwMDIxIDU0LjkxNTEwMyw0OC41MDI3MTMzIDUxLjcxNjQ0Miw1MS43MDI1MDEgQzQ4LjUxOTI2NjQsNTQuOTAxMTczOSA0Ni4xMTc3MDE4LDU4Ljg5NTM5NzUgNDQuODI5MTUxMiw2My4zNjUwNDQ0IEM0MS42NTI1MjUsNjMuMjg5MDA2NCAzOC42ODA2NTA5LDYyLjM5NjYxMjcgMzYuMTE0NjkwNyw2MC44ODkxMDM5IEMzNi45NzQxNzgzLDU3Ljg5NzEyMDMgMzguMjA2Nzc1MSw1NS4wNjQwMjQxIDM5Ljc1OTg2OTQsNTIuNDQyNjk0OCBDNDIuODYwNzM0Nyw0Ny4yMTkyMzE2IDQ3LjIzNTA0ODMsNDIuODQzNDU1OSA1Mi40NTYzNDY1LDM5Ljc0MTI1NDUgQzU1LjA3NTI4OTgsMzguMTg2MTkwOSA1Ny45MDg2NDA2LDM2Ljk1MTYyNjIgNjAuOTAwODE2OCwzNi4wOTMyODg1IEM2My44OTU3MTYzLDM1LjIzMjQ3NDEgNjcuMDUyMTY0MSwzNC43NDc1MTUyIDcwLjMxMzIxNjQsMzQuNjk1NzQ5OSBDNzAuNTE4MjE1OSwzNC42OTE3ODcxIDcwLjcyNDU3NzIsMzQuNjg5MDYyNSA3MC45MzA4MTQ2LDM0LjY4OTA2MjUgQzc0LjE2MzM5NDYsMzQuNjkwNDI0OCA3Ny4yOTY4MTc0LDM1LjExMTM1ODIgODAuMjc2NzM3OSwzNS45MDU3OTQyIEM4MS4wNjk1MDE5LDM4Ljg4ODM2NTkgODEuNDkxNzU2Myw0Mi4wMjE1MjczIDgxLjQ5MTc1NjMsNDUuMjU0MTMyNiBDODEuNDkxNzU2Myw0NS40NjA0NTA2IDgxLjQ4OTE1NjcsNDUuNjY3MTQwMyA4MS40ODQ5NDc4LDQ1Ljg3MjA5NjEgQzgxLjQzMzU3NCw0OS4xMzQyOTkzIDgwLjk0NzQ0MjksNTIuMjkwNjE4OSA4MC4wODY3MTcyLDU1LjI4NjY4OSBDNzkuMjI4NzE1MSw1OC4yODAxNTg2IDc3Ljk5NDUwODksNjEuMTE0NjE3MSA3Ni40NDAxNzY5LDYzLjczNDMzNjQgQzczLjM0MDY3MzEsNjguOTU5Mjg1NyA2OC45NjY0ODM0LDczLjMzNTE4NTMgNjMuNzQzNTc1OSw3Ni40MzU3NzY3IEM2MS4xMjQ3NTY0LDc3Ljk5MDk2NDIgNTguMjkyNzY3Miw3OS4yMjQxNjY3IDU1LjMwMDcxNDksODAuMDgyNjI4MSBDNTIuMzA1ODE1NCw4MC45NDM1NjY1IDQ5LjE1MDYwNTUsODEuNDI3MDM5MiA0NS44ODk2NzcxLDgxLjQ4MTI4MTQgQzQ1LjY4NDY3NzUsODEuNDg1NjE1NyA0NS40NzgxOTI0LDgxLjQ4ODIxNjQgNDUuMjcxODMxMiw4MS40ODgyMTY0IEM0Mi4wNDA3MzY3LDgxLjQ4ODIxNjQgMzguOTA3NDM3OCw4MS4wNjcxNTkxIDM1LjkyNjAzMTcsODAuMjczOTYxNiBDMzIuMzQ0NjA1OCw3OS4zMjA1MTQ1IDI4Ljk4MTc5NjUsNzcuODMzMzE1NSAyNS45MjcxMDU1LDc1LjkwMjE0ODcgQzIyLjM5MzIxNTgsNzMuNjY1MjE5OSAxOS4yNzIwNDg1LDcwLjgzMzQ4NTkgMTYuNzA0ODUwNCw2Ny41NDU1MjM5IEMxNi45OTkzNTE1LDYyLjY5ODI4NzggMTcuOTI4MDM5LDU4LjAyNjE2MjEgMTkuNDEwNDQ4LDUzLjYwNjc5NDMgQzIxLjkxNTM3ODgsNDYuMTMwMDU1NiAyNi4wMDAzOTA0LDM5LjM4MTM3NDMgMzEuMjY5MzQ4NiwzMy43NTcyODc2IEMzMi4wMjI4NzA0LDMyLjg0MDYyMTIgMzIuODYzMjk0MiwzMS45OTk4Njg5IDMzLjc3ODI0MDgsMzEuMjQ3NDE0OCBDMzkuNDAwMTI5OCwyNS45NzY1MjA2IDQ2LjE0NDgxMjMsMjEuODkxMTUwNSA1My42MTcyNjc4LDE5LjM4NDAwMjEgQzU4LjAzNjE0NjQsMTcuOTAyMTI4MiA2Mi43MDc4MDgzLDE2Ljk3MTk2MzEgNjcuNTU0NTEyMSwxNi42NzU5ODQ2IEM2OC42NzAzNzI5LDE2LjYwNzg3MjQgNjkuNzk0NTI4MSwxNi41NzI3MDE4IDcwLjkyOTU3NjYsMTYuNTcyNzAxOCBDNzQuMzk5NTg5NywxNi41NzI3MDE4IDc3Ljc5MjM1NjcsMTYuODk3NDExMiA4MS4wNzkxNTc3LDE3LjUxNzcyNzcgQzc4LjA2NzkxNzYsMTMuNjMwODczNyA3NC40MDg1MDI5LDEwLjI3NTQxODcgNzAuMzA1Nzg4OCw3LjU0NTYwNTMxIEM2NC40NTU3NTExLDcuNTk4NjA4OTkgNTguODQ4MDk4MSw4LjM4OTU3NzQ2IDUzLjQwMjczNjIsMTAuMDA0NDU2IFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+);
}

html[data-theme="dark"] .markdown h1:first-child,
html[data-theme="dark"]
  .title_node_modules-\@docusaurus-theme-classic-lib-theme-DocCategoryGeneratedIndexPage-styles-module {
  color: #fff;
}

.theme-doc-version-badge {
  display: none;
}

.menu__link {
  font-size: 0.875rem;
  line-height: 1.375rem;
  margin-bottom: 1px;
  margin-top: 1px;
}

.navbar__link {
  margin-right: 16px;
}

/* Sidebar Method labels */
.api-method > .menu__link {
  align-items: center;
  justify-content: start;
  position: relative;
  padding-right: 4rem;
  border-radius: 0;
  font-weight: 400;
  border-top-right-radius: 14.5px;
  border-bottom-right-radius: 14.5px;
}

.theme-doc-markdown .badge {
  font-size: 10px;
  text-transform: uppercase;
  text-align: center;
  flex-shrink: 0;
  border-color: transparent;
  color: #fff;
  padding: 3.5px 10px;
  border-radius: 10px;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 0.313px;
  height: 20px !important;
  width: auto;
  font-family: "Inter", sans-serif;
}

.api-method > .menu__link::after {
  font-size: 10px;
  text-transform: uppercase;
  margin-right: var(--ifm-spacing-horizontal);
  text-align: center;
  flex-shrink: 0;
  border-color: transparent;
  color: #fff;
  position: absolute;
  right: 0;
  padding: 3.5px 10px;
  border-radius: 10px;
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 0.313px;
}

.get > .menu__link::after {
  content: "get";
  background: var(--Alerts-Porsitive-Positive, #14c39b);
}

.put > .menu__link::after {
  content: "put";
  color: #a59400;
  background: #eff4c8;
}

.post > .menu__link::after {
  content: "post";
  background: var(--Primary-Primary-60, #3f81fe);
}

.delete > .menu__link::after {
  content: "delete";
  background: var(--Alerts-Negative-Grey-60, #ff897d);
}

.event > .menu__link::after {
  content: "Webhook";
  background: var(--Tertiary-Tertiary-60, #a165fd);
}

.api-method > .menu__link--active::after {
  filter: none;
}

.badge--secondary {
  color: #000;
  background: #a165fd;
  text-transform: uppercase;
  width: auto !important;
}

.patch > .menu__link::after {
  content: "patch";
  color: #a54800;
  background: #f7eab5;
}

.websocket > .menu__link::after {
  content: "wss";
  color: #8642e0; /* A purple hue for visibility */
  background: #e4d9fa; /* Light purple for contrast in light mode */
}

.openapi-explorer__form-item-input,
.openapi-explorer__select-input {
  background-color: #fff !important;
  border: 1px solid #dfdfdf !important;
}

blockquote {
  border-left: 3px solid #dfdfdf;
  padding: 0.625rem 1rem;
  color: #34383e;
  margin-bottom: 1.5em;
}

blockquote p strong,
.row p strong {
  border: none;
  font-family: "Inter" !important;
  font-size: 1rem;
  text-transform: none;
  color: #000;
}

.confluenceTd p a strong,
.col.col--12 p > strong,
.col.col--12 p a strong {
  font-size: 0.875rem;
  padding-left: 0;
}

.confluenceTd p a strong,
.confluenceTd p strong,
.col.col--12 p a strong {
  color: var(--ifm-color-primary);
}

.col.col--12 ul li p {
  margin-top: 0;
  margin-bottom: 0;
}

.table-wrap {
  margin-bottom: 1.5rem;
}

blockquote p {
  text-transform: none !important;
  margin-bottom: 10px;
  color: #090b38;
}

blockquote p code {
  color: #093b98 !important;
}

blockquote p a {
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.21px;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  font-weight: 500;
}

blockquote a strong {
  font-size: 14px;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  line-height: 28px;
}

blockquote a:hover {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

blockquote p:has(strong) {
  margin-bottom: 0.3rem;
}

.contentLayout2 {
  border-left: 3px solid var(--Primary-Primary, #0f62fe);
  padding: 10px 16px;
  margin-bottom: 24px;
}
.contentLayout2 p {
  margin: 0;
  font-weight: 400;
  line-height: 24px;
  font-size: 1rem !important;
}

.callouts .panelContent {
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.callouts .panelContent p:first-child strong {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.panelContent span + p,
.panelContent code + p {
  margin-top: 0.625rem;
  margin-bottom: 0;
}
.panelContent > p {
  margin-bottom: 0.625rem;
}

.callouts .panelContent span.status-macro,
span.status-macro {
  padding: 5px 10px 5px;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 0.313px;
  text-transform: capitalize;
}

.callouts .panelContent span.aui-lozenge-success,
span.status-macro.aui-lozenge-success {
  background: var(--Alerts-Porsitive-Positive, #14c39b);
}

.callouts .panelContent span.aui-lozenge-complete,
span.status-macro.aui-lozenge-complete {
  background: var(--Primary-Primary-60, #3f81fe);
}

.callouts .panelContent span.aui-lozenge-progress,
span.status-macro.aui-lozenge-progress {
  background: var(--Tertiary-Tertiary-60, #a165fd);
}

.callouts .panelContent span.aui-lozenge-error,
span.status-macro.aui-lozenge-error {
  background: var(--Tertiary-Tertiary-60, #ff897d);
}

blockquote code,
.theme-doc-markdown.markdown code {
  font-size: 12px;
  border-radius: 4px;
  background: var(--Grey-Grey-100, #f5f7f9);
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  color: #090b38;
  padding: 4px 6px;
  font-family: "Inter";
  border: none;
  color: #093b98;
}

code.path {
  border-radius: 5px;
  border: 1px dashed var(--Grey-Grey-80, #dfdfdf) !important;
  background: var(--Grey-Grey-100, #f5f7f9);
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  color: #090b38;
  padding: 0.1875rem 0.3125rem;
}

code.path {
  font-size: 12px;
  color: #090b38 !important;
}

.col.col--12 p code,
.col.col--12 ul li code {
  /* font-size: 0.875rem; */
  vertical-align: baseline;
}

h3 {
  color: #090b38;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: none;
}

/* .img_node_modules-\@docusaurus-theme-classic-lib-theme-MDXComponents-Img-styles-module {
  text-align: center;
} */

.confluence-embedded-file-wrapper.image-center-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.openapi-security__summary-container {
  background: rgb(239 239 239) !important;
}

[data-theme="dark"] .openapi-security__summary-container,
[data-theme="dark"] .openapi-explorer__response-title-container,
[data-theme="dark"] .openapi-explorer__request-header-container {
  background: rgb(64, 64, 64) !important;
}

/* .markdown h1:first-child,  TODO*/
.title_node_modules-\@docusaurus-theme-classic-lib-theme-DocCategoryGeneratedIndexPage-styles-module {
  font-size: 1.5rem;
  color: #384248;
  border-bottom: 1px solid #0000001a;
  text-transform: capitalize;
  padding-bottom: 1rem;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 0px !important;
}

em {
  font-weight: 400;
  background: #f6f6f6;
  padding: 0.5px 4px;
  border: 1px dashed #d0d0d0;
  font-size: 14px;
}

strong {
  font-weight: 600;
  color: #555555;
}
a strong {
  font-weight: 600;
  color: var(--ifm-color-primary);
}

.codeBlockContainer_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Container-styles-module {
  font-size: 0.8rem;
}

.openapi-code__response-samples-container
  .codeBlockContainer_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Container-styles-module {
  margin-top: -1.2rem;
}

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

.table-of-contents__link--active {
  font-weight: 600;
}

.table-of-contents__link--active::before {
  content: "";
  border: 1.5px solid var(--ifm-color-primary);
  position: absolute;
  left: 0;
  height: 16px;
}

/* ul ul:has(.table-of-contents__link--active) {
  border-left: 1.5px solid var(--ifm-color-primary);
} */

ul ul li.table-of-contents__link--active::before {
  left: 16px;
}

.hide-me-cat {
  display: none;
}

.gtn-intro {
  margin: 0 auto;
  text-align: center;
  padding-top: 3rem;
}

.bg-logo {
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0%;
}

.home-page {
  background: #f5f6f9;
}

article > header {
  background: #fff;
}
article {
  margin-left: 0.375rem;
}

.container-top {
  position: relative;
  width: 100%;
  padding: 0;
  height: 27vh;
}

.text-blue-800 {
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-right: 1rem;
}

html[data-theme="dark"] .gtn-intro {
  color: #3345a3;
}

html[data-theme="dark"] .button--secondary {
  background: #676ab8;
  color: #fff;
}

[data-theme="dark"] .description,
[data-theme="dark"] .icon-circle h3 {
  color: #fff;
}

.login-text {
  font-size: 1rem;
  padding-right: 1rem;
}

html[data-theme="dark"] .gtn-sidebarVersion {
  background-color: #1c1c1d;
}

html[data-theme="dark"]
  .featureSvg_src-components-HomepageFeatures-styles-module {
  /* filter: invert(30%); */
}

html[data-theme="dark"] .openapi-explorer__form-item-input,
html[data-theme="dark"] .openapi-explorer__select-input {
  color: #2b2a69 !important;
}

html[data-theme="dark"] .hero__title {
  color: var(--ifm-link-color);
}

html[data-theme="dark"] article > header,
html[data-theme="dark"] .home-page {
  background-color: #1c1c1d;
}

html[data-theme="dark"]
  .features_src-components-HomepageFeatures-styles-module {
  background: #252526;
}

.gtn-sidebarVersion {
  padding: 4.4rem 0 0.5rem 0.5rem;
  font-size: 16px;
  font-weight: 500;
  background-color: #fff;
  position: fixed;
  width: var(--doc-sidebar-width);
  z-index: 99999;
  /* border-right: 1px solid #dbdde1; */
}
.gtn-sidebarVersion span {
  display: inline-block;
  padding: var(--ifm-navbar-item-padding-vertical)
    var(--ifm-navbar-item-padding-horizontal);
}

.gtn-sidebarVersion .dropdown--hoverable {
  width: 100%;
  border-radius: 0.9375rem;
  border: 1px solid var(--Grey-Grey-80, #dfdfdf);
}

.gtn-sidebarVersion .dropdown--hoverable a {
  display: inline-block;
  width: 100%;
  font-family: "Inter";
}

.gtn-sidebarVersion .dropdown--hoverable a::before {
  content: "v ";
}

.gtn-sidebarVersion .dropdown__menu {
  width: 100%;
  box-shadow: none;
  border: 1px solid #8787871a;
}

.openapi-schema__list-item p {
  font-size: 0.75rem;
}

.openapi-schema__list-item .openapi-schema__name,
.openapi-schema__container .openapi-schema__type,
.gtn-openapi-schema__list-item .openapi-schema__name {
  transition: 300ms;
  padding: 4px 6px;
  border-radius: 4px;
  background: var(--Grey-Grey-100, #f5f7f9);
  font-size: 0.875rem;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  color: #383a5e;
  opacity: 1;
  margin-left: 4px;
}

.openapi-schema__list-item code {
  border-radius: 0;
}

.openapi-schema__property,
.openapi-schema__name {
  transition: 300ms;
  padding: 4px 6px;
  border-radius: 4px;
  background: var(--Grey-Grey-100, #f5f7f9);
  font-size: 0.875rem;
  height: 24px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}

.openapi-schema__property {
  font-family: "Inter" !important;
  margin-top: 0 !important;
  color: #093b98;
}

.theme-api-markdown code {
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  margin: 0px 0.3rem;
  background: #f3ecff;
  color: #6e32ca;
  font-size: 0.75rem;
  border: none;
  font-weight: 400;
  line-height: 16px;
  font-family: "Inter";
}

.openapi-explorer__response-placeholder-message {
  color: #fff;
}

.openapi-explorer__response-placeholder-message code {
  color: #34383e;
  padding: 0 0.3rem;
  margin: 0 0.3rem;
  border-radius: 0;
}

.openapi-explorer__form-item:has(.openapi-explorer__server-url) {
  border: 1px solid rgb(172, 172, 172);
  border-radius: 5px;
}

.openapi-tabs__code-item--bash.active {
  border-color: rgb(98, 98, 98) !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .openapi-markdown__details {
  background: #2b2b2b !important;
}

html[data-theme="dark"] .openapi-markdown__details.mime,
.openapi-markdown__details.alert,
.openapi-markdown__details.response {
  border: 1px solid var(--openapi-explorer-border-color) !important;
}

.openapi-markdown__details.mime,
.openapi-markdown__details.alert,
.openapi-markdown__details.response {
  border: none !important;
  padding-bottom: 0 !important;
}

.gtn-openapi-schema__list-item,
.gtn-openapi-params__list-item {
  margin: 0 -1rem 1.5rem -2rem !important;
  padding: 0 1rem 0;
  border-left: none !important;
  border-bottom: none !important;
}

/* .gtn-openapi-params__list-item {
  margin: 0 -1rem 1rem -1rem !important;
  padding: 1.5rem 1rem 0;
  border-left: none !important;
  border-bottom: none !important;
} */

.gtn-openapi-schema__list-item:last-child,
.gtn-openapi-params__list-item:last-child {
  border-bottom: none !important;
}

.openapi-markdown__details p {
  line-height: 1.5rem;
}

.openapi-markdown__details ul:nth-child(1) {
  padding-left: 34px;
  font-size: 14px;
}
.openapi-markdown__details > div > div {
  margin-top: 0 !important;
}

.openapi-markdown__details ul li {
  list-style: disc;
  margin-left: 1rem;
}

.openapi-markdown__details ul li::marker {
  color: #0055cc;
}

.openapi-schema__container {
  margin-bottom: 0.5rem;
}

.openapi-tabs__code-container:not(.openapi-tabs__code-container-inner):hover,
.openapi-explorer__response-container:hover,
.openapi-explorer__request-form:hover {
  box-shadow: none !important;
}

.menu__list-item--collapsed .menu__link--sublist:after,
.menu__list-item--collapsed .menu__caret:before {
  opacity: 1;
  transform: scale(0.6) rotate(90deg);
}
.menu__link--sublist-caret:after,
.menu__caret:before {
  transform: scale(0.6) rotate(180deg);
  opacity: 1;
}

.openapi-schema__type {
  font-weight: 600;
}
.openapi-schema__required {
  text-transform: lowercase !important;
  color: #6e32ca !important;
  margin-left: 10px !important;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 16px !important;
}

.button--secondary {
  z-index: 99999;
}

.theme-api-markdown h2#responses,
.theme-api-markdown h2#request {
  font-size: 0.875rem;
  font-weight: 400;
  padding-top: 24px !important;
  margin-bottom: 16px !important;
}

.openapi-explorer__floating-btn button {
  top: 0.3rem;
}

.theme-doc-sidebar-item-category-level-1 > .menu__list-item-collapsible a {
  font-weight: 500;
  color: #383a5e;
  /* color: #2e2e2e; TODO */
}

.theme-doc-sidebar-item-category-level-1
  > .menu__list-item-collapsible
  a.menu__link--active {
  color: var(--ifm-color-primary);
}

.theme-doc-sidebar-item-category-level-1,
.theme-doc-sidebar-item-category-level-2 {
  margin-bottom: 1px !important;
}

.gtn-sidebarVersion .navbar__link {
  pointer-events: none;
}

.gtn-sidebarVersion .navbar__item {
  padding: 1.8px 10px;
}

/* .menu__list {
  margin-top: 3rem;
} */

.features_src-components-HomepageFeatures-styles-module {
  width: 80% !important;
  margin: -4rem auto 4rem auto;
  margin-top: -4rem;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  flex-direction: column;
}

.features_src-components-HomepageFeatures-styles-module .button {
  font-size: 1.8rem !important;
  color: #626262 !important;
}

.features_src-components-HomepageFeatures-styles-module .button:hover {
  color: #e8443a;
}

.icon-circle {
  display: flex;
  align-items: flex-end;
}

.icon-circle h3 {
  padding-left: 1rem;
  margin-block-end: 1.5rem;
  color: #2b2a69;
}

.icon-circle span {
  border-radius: 50%;
  background-color: #e8443a;
  height: 4.125rem;
}

.description {
  padding: 1rem 0 3rem;
}

.text-more {
  color: #5282a7;
  font-weight: 700;
  cursor: pointer;
}

.hero__title {
  color: #484848;
}

.hero__title span {
  border-bottom: 5px solid red;
}

.openapi-explorer__server-description {
  padding-left: 0.5rem;
  font-weight: var(--ifm-font-weight-bold);
  margin: 4px 0;
  padding: 3px;
  background: #6c7dd16b;
  border-radius: 4px;
  border: 1px solid #6c7dd1;
  display: block;
}

.footer {
  display: none;
}

.custom-footer {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 160% */
  letter-spacing: 0.313px;
  color: #676884;
  margin-top: 4px;
  margin-left: 2.5rem;
  padding-top: 10px;
  border-top: 2px solid #dfdfdf;
}

.custom-footer .copyright {
  padding-bottom: 4px;
}

.step-points {
  list-style-type: "⭕";
}

.step-points li {
  text-indent: 0.7rem;
}

.react-form-wizard .wizard-tab-content {
  text-align: left !important;
}

.react-form-wizard {
  padding: 0 !important;
}

.order-type-tab-section {
  position: sticky;
  top: 3.7rem;
  width: 100%;
  background-color: #fff;
  padding-top: 1rem;
  z-index: 1;
}

.tabs__item--active {
  background-color: var(--ifm-color-emphasis-200);
}

.openapi-tabs__response-container .tabs__item {
  border-radius: 0 !important;
}

[data-theme="dark"] .order-type-tab-section {
  background-color: var(--ifm-color-gray-900);
}

.eq-table {
  border: none;
}
.eq-table td,
.eq-table th {
  border: none;
  vertical-align: top;
}
.eq-table-inner td,
.eq-table-inner th {
  padding: 0.4rem 0.7rem;
  border: var(--ifm-table-border-width) solid var(--ifm-table-border-color);
}

.eq-table-inner,
.eq-table {
  table-layout: fixed;
  width: 100%;
}

.theme-code-block-highlighted-line {
  background-color: rgb(27 51 71) !important;
}

.request-block {
  position: sticky;
  top: 4rem;
}

.MuiIcon-root {
  vertical-align: text-bottom;
  color: #6b7cd1;
}

.info-bubble {
  text-align: left;
}
.info-bubble .seperator {
  width: 100%;
  border: 1px solid #fff;
}
.info-bubble span {
  font-size: 1rem;
}

.branding-wizard {
  padding: 0;
}

.branding-wizard .form-wizard-steps {
  border-top: 1px solid rgb(26, 171, 255);
  border-top-right-radius: 5px;
  border-right: 1px solid rgb(26, 171, 255);
  border-left: 1px solid rgb(26, 171, 255);
  border-top-left-radius: 5px;
  padding: 1rem 0.5rem 0;
  border-color: rgb(26, 171, 255) !important;
}

.branding-wizard .wizard-tab-content {
  border-right: 1px solid rgb(26, 171, 255);
  border-left: 1px solid rgb(26, 171, 255);
}

.branding-wizard .wizard-card-footer {
  border-color: rgb(26, 171, 255);
  border-bottom: 1px solid rgb(26, 171, 255);
  border-bottom-right-radius: 5px;
  border-right: 1px solid rgb(26, 171, 255);
  border-left: 1px solid rgb(26, 171, 255);
  border-bottom-left-radius: 5px;
}

.branding-wizard .wizard-card-footer div {
  margin-bottom: 1rem;
}

#branding-guideline {
  margin-bottom: 0;
}

.react-form-wizard .wizard-navigation .wizard-progress-with-circle {
  top: 45px !important;
}

.docsWrapper_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-styles-module {
  margin-bottom: 2.5rem;
}

.download-block {
  display: flex;
  width: 50%;
  margin: 2rem !important;
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #32bfc2;
  color: #fff;
  border: 2px solid #32bfc2;
  padding: 1rem;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.download-block:hover {
  text-decoration: none;
  background: #238789;
  border-color: #238789;
  color: #fff;
}

.branding-resources {
  display: flex;
}

.docsRating {
  display: flex;
  text-align: right;
  line-height: 32px;
  align-items: center;
  font-size: 12px;
  flex-direction: row-reverse;
}

.inner {
  border-radius: 5px;
  padding: 0 0.6rem;
  min-width: 16rem;
  color: #383a5e;
}

.inner svg {
  height: 1.5em;
  width: 1.5em;
  margin: 0 0 0 6px;
}

.inner svg:hover,
.inner svg:focus {
  cursor: pointer;
  fill: var(--ifm-color-primary);
}

.i_thumbsup {
  transform: translateY(0.25em);
  margin-left: 12px;
}

.i_thumbsdown {
  transform: translateY(0.55em);
}

html[data-theme="dark"] .docsRating {
  color: #cee9f3;
}

.ai-bot {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  position: fixed;
  bottom: 0.6rem;
  right: -14rem;
  z-index: 50;
}

.openapi__method-endpoint-path {
  font-size: 12px !important;
  border: 1px dashed #c7c7c75c !important;
  padding: 2px 5px !important;
  background: #afafaf1c !important;
  border-radius: 5px !important;
  line-height: normal !important;
  margin-bottom: 0 !important;
  font-weight: 500 !important;
}

h2.openapi__method-endpoint-path span {
  font-weight: 500;
  font-size: 12px;
}

@media (max-width: 768px) {
  .openapi__method-endpoint-path {
    font-size: 0 !important;
  }

  .openapi__method-endpoint-path span {
    font-size: 16px;
    display: inline;
  }
}

.navbar-icon-docs,
.navbar-icon-api,
.navbar-icon-changelog {
  display: flex;
  align-items: center;
}

.menu__list-item-collapsible--active,
.menu__list-item-collapsible--active:hover {
  background: var(--Primary-Primary-100);
}
.menu__link--active:not(.menu__link--sublist) {
  background-color: var(--Primary-Primary-100);
}

.menu__link--active:not(.menu__link--sublist),
.menu__list-item-collapsible:hover,
.menu__link:hover {
  color: var(--ifm-color-primary);
  border-radius: 0.25rem;
  margin-bottom: 1px;
}

.menu__link:not(.menu__link--active):hover,
.menu__list-item-collapsible:not(.menu__list-item-collapsible--active):hover {
  background: none;
}

.menu__caret:hover {
  background: none;
}

.menu__link--active::after {
  filter: invert(19%) sepia(98%) saturate(3572%) hue-rotate(206deg)
    brightness(97%) contrast(104%);
  opacity: 1;
}

.menu__list-item-collapsible
  > .menu__link--active
  + .clean-btn.menu__caret::before {
  filter: invert(19%) sepia(98%) saturate(3572%) hue-rotate(206deg)
    brightness(97%) contrast(104%);
  opacity: 1;
}

.navbar__link.navbar__link--active.navbar-icon-docs::before,
.menu__link.menu__link--active.navbar-icon-docs::before,
.navbar__link:hover.navbar-icon-docs::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%230F62FE'%3E%3Cpath d='M560-564v-68q33-14 67.5-21t72.5-7q26 0 51 4t49 10v64q-24-9-48.5-13.5T700-600q-38 0-73 9.5T560-564Zm0 220v-68q33-14 67.5-21t72.5-7q26 0 51 4t49 10v64q-24-9-48.5-13.5T700-380q-38 0-73 9t-67 27Zm0-110v-68q33-14 67.5-21t72.5-7q26 0 51 4t49 10v64q-24-9-48.5-13.5T700-490q-38 0-73 9.5T560-454ZM260-320q47 0 91.5 10.5T440-278v-394q-41-24-87-36t-93-12q-36 0-71.5 7T120-692v396q35-12 69.5-18t70.5-6Zm260 42q44-21 88.5-31.5T700-320q36 0 70.5 6t69.5 18v-396q-33-14-68.5-21t-71.5-7q-47 0-93 12t-87 36v394Zm-40 118q-48-38-104-59t-116-21q-42 0-82.5 11T100-198q-21 11-40.5-1T40-234v-482q0-11 5.5-21T62-752q46-24 96-36t102-12q58 0 113.5 15T480-740q51-30 106.5-45T700-800q52 0 102 12t96 36q11 5 16.5 15t5.5 21v482q0 23-19.5 35t-40.5 1q-37-20-77.5-31T700-240q-60 0-116 21t-104 59ZM280-494Z'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  content: " ";
  padding-left: 0;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  margin-right: 8px;
}

.navbar__link.navbar-icon-docs::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%235f6368'%3E%3Cpath d='M560-564v-68q33-14 67.5-21t72.5-7q26 0 51 4t49 10v64q-24-9-48.5-13.5T700-600q-38 0-73 9.5T560-564Zm0 220v-68q33-14 67.5-21t72.5-7q26 0 51 4t49 10v64q-24-9-48.5-13.5T700-380q-38 0-73 9t-67 27Zm0-110v-68q33-14 67.5-21t72.5-7q26 0 51 4t49 10v64q-24-9-48.5-13.5T700-490q-38 0-73 9.5T560-454ZM260-320q47 0 91.5 10.5T440-278v-394q-41-24-87-36t-93-12q-36 0-71.5 7T120-692v396q35-12 69.5-18t70.5-6Zm260 42q44-21 88.5-31.5T700-320q36 0 70.5 6t69.5 18v-396q-33-14-68.5-21t-71.5-7q-47 0-93 12t-87 36v394Zm-40 118q-48-38-104-59t-116-21q-42 0-82.5 11T100-198q-21 11-40.5-1T40-234v-482q0-11 5.5-21T62-752q46-24 96-36t102-12q58 0 113.5 15T480-740q51-30 106.5-45T700-800q52 0 102 12t96 36q11 5 16.5 15t5.5 21v482q0 23-19.5 35t-40.5 1q-37-20-77.5-31T700-240q-60 0-116 21t-104 59ZM280-494Z'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  content: " ";
  padding-left: 0;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  margin-right: 8px;
}

.navbar__link.navbar__link--active.navbar-icon-api::before,
.navbar__link:hover.navbar-icon-api::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24' fill='%230F62FE'%3E%3Cpath d='M320-240L80-480l240-240 57 57-184 184 183 183-56 56zm320 0l-57-57 184-184-183-183 56-56 240 240-240 240z' /%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  content: " ";
  padding-left: 0;
  margin-right: 8px;
  background-size: 24px 24px;
  background-repeat: no-repeat;
}

.navbar__link.navbar-icon-api::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24' fill='%235f6368'%3E%3Cpath d='M320-240L80-480l240-240 57 57-184 184 183 183-56 56zm320 0l-57-57 184-184-183-183 56-56 240 240-240 240z' /%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  content: " ";
  padding-left: 0rem;
  margin-right: 8px;
  background-size: 24px 24px;
  background-repeat: no-repeat;
}

.navbar__link.navbar__link--active.navbar-icon-changelog::before,
.navbar__link:hover.navbar-icon-changelog::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24' fill='%233345a3'%3E%3Cpath d='M720-440v-80h160v80H720zm48 280l-128-96 48-64 128 96-48 64zm-80-480l-48-64 128-96 48 64-128 96zM200-200v-160h-40q-33 0-56.5-23.5T80-440v-80q0-33 23.5-56.5T160-600h160l200-120v480L320-360h-40v160h-80zm240-182v-196l-98 58H160v80h182l98 58zm120 36v-268q27 24 43.5 58.5T620-480q0 41-16.5 75.5T560-346zM300-480z' /%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  content: " ";
  padding-left: 0rem;
  margin-right: 8px;
  background-size: 24px 24px;
  background-repeat: no-repeat;
}

.navbar__link.navbar-icon-changelog::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24' fill='%235f6368'%3E%3Cpath d='M720-440v-80h160v80H720zm48 280l-128-96 48-64 128 96-48 64zm-80-480l-48-64 128-96 48 64-128 96zM200-200v-160h-40q-33 0-56.5-23.5T80-440v-80q0-33 23.5-56.5T160-600h160l200-120v480L320-360h-40v160h-80zm240-182v-196l-98 58H160v80h182l98 58zm120 36v-268q27 24 43.5 58.5T620-480q0 41-16.5 75.5T560-346zM300-480z' /%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  content: " ";
  padding-left: 0rem;
  margin-right: 8px;
  background-size: 24px 24px;
  background-repeat: no-repeat;
}

/* .production ul.dropdown__menu li:first-child::after{
  content: "Production";
}

ul.dropdown__menu li:first-child::after{
  content: "Production";
} */

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

  .pagination-nav__link.pagination-nav__link--prev {
    padding-left: 0 !important;
  }
  .custom-footer {
    margin-left: 0 !important;
  }
}

@media (max-width: 600px) {
  .searchBox_node_modules-\@docusaurus-theme-classic-lib-theme-Navbar-Search-styles-module {
    display: none;
  }
}

.openapi-left-panel__container {
  border-right: none !important;
}

.badge--success {
  --ifm-badge-background-color: #14c39b;
  color: #206e4e;
  width: 3rem;
  height: 1rem;
  font-size: 0.6rem;
  font-weight: 100;
  line-height: 0.8;
}

.badge--primary {
  --ifm-badge-background-color: #3f81fe;
}

.badge--warning {
  --ifm-badge-background-color: #f7eab5;
  color: #a54800;
}

.badge--danger {
  --ifm-badge-background-color: #ff897d;
  color: #af2e25;
}

.badge {
  width: 3rem;
  height: 1rem;
  font-size: 0.6rem;
  font-weight: 100;
  line-height: 0.8;
  text-align: center;
}

.theme-doc-markdown.markdown p {
  font-size: 0.875rem;
  font-weight: 400;
}

.theme-doc-markdown.markdown h2 {
  color: #090b38;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 34px; /* 141.667% */
  letter-spacing: -0.797px;
  margin-bottom: 1.5rem;
}
.col.col--12 > p {
  margin-bottom: 1.5rem;
}

pre.openapi__method-endpoint {
  background-color: #fff;
  border: none;
  padding-left: 0;
  padding-bottom: 0;
}

html[data-theme="dark"] pre.openapi__method-endpoint {
  background-color: #1c1e21;
}

li.breadcrumbs__item:first-child,
li.breadcrumbs__item:last-child {
  display: none;
}

.breadcrumbs__item:not(:last-child):after {
  display: none;
}

.breadcrumbs__link span::before {
  content: " > " !important;
}

.breadcrumbs__link:any-link:hover {
  background: none;
}

a.breadcrumbs__link {
  color: #676884;
}

.breadcrumbs__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ifm-color-primary);
  padding-left: 0;
  padding-bottom: 0;
  line-height: 20px;
  text-transform: initial;
  padding-right: 5px;
}
/* 
li.openapi-tabs__schema-item:nth-child(2) {
  display: none;
} */

.pagination-nav__label {
  font-weight: 400;
  color: var(--ifm-color-primary);
}
.pagination-nav__sublabel {
  display: none;
}

.pagination-nav__link {
  border: none;
}

.docItemContainer_src-theme-ApiItem-Layout-styles-module header + *,
.docItemContainer_src-theme-ApiItem-Layout-styles-module
  article
  > *:first-child {
  margin-bottom: 0;
  /* text-transform: lowercase; TODO ISSUE*/
}

span.enum-list,
.gtn-openapi-schema > div > p > code,
.list-header code {
  background: var(--Tertiary-Tertiary-100, #f3ecff) !important;
  padding: 4px 6px !important;
  border-radius: 2px !important;
  margin-right: 8px !important;
  color: #6e32ca !important;
  margin-bottom: 0.3125rem !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 16px !important;
}

html[data-theme="dark"] span.enum-list {
  background-color: #2b57ff3f;
  color: #ecf2ff; /* Light text color */
}

.gtn-openapi-schema__list-item
  > .alert--info
  div.collapsibleContent_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module {
  /* background-color: red !important; */
  padding-left: 1rem;
}

.gtn-openapi-schema__list-item
  > .alert--info
  div.collapsibleContent_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module::before {
  /* content: "Array Content";
  border-bottom: 1px solid green; */
  display: block;
  margin-left: -1rem;
  padding: 1px 10px;
  margin-top: -1rem;
}

.gtn-openapi-schema__list-item
  > .alert--info
  div.collapsibleContent_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module
  > div
  > div
  > p {
  /* margin-left: -4rem; */
}

.gtn-openapi-schema__list-item
  > .alert--info
  li:has(> div[style*="opacity: 0.6;"]) {
  display: none;
}

.gtn-openapi-schema__list-item > .alert--info > div {
  margin-left: 0rem;
}

.gtn-openapi-schema__list-item > .alert--info > div > div {
  padding-left: 0 !important;
}

.gtn-openapi-schema__list-item
  > .alert--info
  > div
  > div
  .gtn-openapi-schema__list-item {
  margin-left: 0 !important;
}

.openapi-tabs__response-header-section {
  display: flex;
  flex-direction: column; /* stack vertically */
  gap: 12px; /* space between heading and tabs */
  border-top: none !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 1rem;
}

.openapi-tabs__response-header {
  margin: 0; /* remove extra margins if needed */
}

.openapi-tabs__response-container {
  overflow-x: auto; /* enable horizontal scroll if tabs overflow */
}

.openapi-tabs__response-list-container {
  display: flex;
  flex-direction: row; /* horizontal tabs */
  align-items: center;
  padding: 0 !important;
  margin: 0;
  list-style: none;
}

.openapi-tabs__response-container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  border-bottom: 2px solid var(--Primary-Primary-100, #eef4ff);
  margin-bottom: 1rem;
}

.openapi-tabs__response-header-section {
  align-items: flex-start !important;
}

.openapi-tabs__mime-item.active {
  display: none !important;
}

.list-header p,
.gtn-openapi-schema > div > p > strong,
.list-header.api-enum,
.gtn-openapi-schema__list-item div div p > strong {
  color: #525252;
  font-family: Inter;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 16px;
  margin-right: 8px;
  margin-bottom: 5px !important;
}

.gtn-openapi-schema > div > p > strong {
  padding-top: 4px !important;
}

.list-header p {
  margin-top: 0.5rem;
}

.list-header.api-enum {
  margin-top: 4px;
}

.list-header {
  /* padding-bottom: 1px !important; */
}

.content-type-block {
  margin-bottom: 10px;
}

.content-type,
.content-type-drop {
  display: inline;
}

.content-type {
  color: #525252;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}

.content-type-drop {
  padding: 4px 6px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: var(--Grey-Grey-100, #f5f7f9);
  color: var(--Typography-Typography-10, #383a5e);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.request-tab-wrapper {
  padding: 0 1rem;
  margin-top: -1rem !important;
}

.openapi-tabs__container .content-type-drop {
  margin-top: 12px;
}

.collapseSidebarButton_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-CollapseButton-styles-module {
  visibility: hidden;
  height: 0 !important;
}

.gtn-openapi-schema__list-item
  .details_node_modules-\@docusaurus-theme-classic-lib-theme-Details-styles-module {
  padding-left: 0 !important;
}

.details_node_modules-\@docusaurus-theme-classic-lib-theme-Details-styles-module,
.gtn-expand {
  padding: 5px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border: 1px solid var(--Grey-Grey-90, #e8eaec) !important;
  background: var(--Grey-Grey-100, #f5f7f9);
  min-height: 35px;
  border-radius: 4px;
}

.details_node_modules-\@docusaurus-theme-classic-lib-theme-Details-styles-module
  summary,
.gtn-expand summary {
  font-size: 0.875rem;
  color: #676884;
}

.details_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module
  > summary::before,
.gtn-expand > summary::before {
  display: none;
}

.details_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module
  > summary {
  position: absolute;
  cursor: pointer;
  list-style: none;
  width: 100%;
  right: 0px;
  padding: 0px 0px !important;
  top: 0;
}

.gtn-openapi-schema p {
  display: flex;
  align-items: flex-start;
}

.enum-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 90%;
}

.theme-doc-sidebar-item-category {
  margin-bottom: 1rem;
}

.docSidebarContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Sidebar-styles-module {
  border-right: none !important;
}

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

.menu__list .menu__list {
  margin-top: 0;
}

.tabItem_node_modules-\@docusaurus-theme-classic-lib-theme-TabItem-styles-module
  summary {
  display: none;
}

.openapi-tabs__response-container.open-request-header {
  margin-bottom: 0rem;
}

.details_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module.openapi-markdown__details {
  padding-top: 0 !important;
}

.details_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module.openapi-markdown__details
  > div
  > .collapsibleContent_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module {
  margin-top: 0;
}

.details_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module.openapi-markdown__details
  > div
  > .collapsibleContent_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module
  > div {
  margin-left: 0 !important;
}

.collapsibleContent_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module
  ul
  details
  > div
  > div
  > div
  div.gtn-openapi-schema__list-item:before {
  content: "";
  display: block;
  border-left: 2px solid #eef4ff;
  position: absolute;
  height: calc(100% + 25px);
  margin: -1rem;
  top: 1rem;
}

.collapsibleContent_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module
  ul
  details
  > div
  > div
  > div
  div.gtn-openapi-schema__list-item:has(+ li)::before,
.collapsibleContent_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module
  ul
  details
  > div
  > div
  > div
  div.gtn-openapi-schema__list-item:last-child::before {
  height: calc(100%);
}

.gtn-openapi-schema__list-item
  > .alert--info
  > div
  > div
  .gtn-openapi-schema__list-item {
  position: relative;
}

.open-request-header > li {
  font-weight: 400;
}

.theme-doc-sidebar-container {
  border-right: none !important;
}

.openapi-accordion__container {
  border-radius: 4px;
  border: 1px solid var(--Grey-Grey-90, #e8eaec);
  background: var(--Primary-Primary-100, #eef4ff);
  overflow: hidden;
}

.openapi-accordion__list {
  margin: 0;
  padding: 0;
}

.openapi-accordion__item {
  list-style: none;
  border-bottom: 1px solid #eee;
  background-color: #fdfdfd;
  transition: background 0.2s ease;
}

.openapi-accordion__item:last-child {
  border-bottom: none;
}

.openapi-accordion__button {
  width: 100%;
  text-align: left;
  padding: 0.625rem 1.25rem;
  font-size: 14px;
  font-weight: 500;
  background: #fcfcfc;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  height: 35px;
}

.openapi-accordion__button.active {
  border-radius: 4px 4px 0 0;
  background: var(--Primary-Primary-100, #eef4ff);
}

.openapi-accordion__button:hover {
  background-color: #eef4ff;
}

.openapi-accordion__button::after {
  content: "›";
  font-size: 1.2rem;
  transition: transform 0.2s ease;
  color: var(--ifm-color-primary);
}

.openapi-accordion__button.active::after {
  transform: rotate(90deg);
}

.openapi-accordion__content {
  padding: 1rem;
  background-color: #fff;
  font-size: 14px;
  color: #444;
}

.openapi-accordion__content .content-type-drop {
  left: 56%;
}

@media (max-width: 996px) {
  .openapi-accordion__container {
    width: 100%;
  }

  .docsRating {
    margin-top: 2rem;
  }
  article {
    margin-left: 0rem;
  }
  .hero__title {
    font-size: 32px;
  }
  .description {
    width: 100%;
  }
}

.openapi-markdown__details-summary-mime {
  display: none !important;
}
/* details > summary { 
  display: none !important;
}*/

.gtn-openapi-schema__list-item summary {
  display: block !important;
}

.margin-top--md details {
  padding-top: 0 !important;
}

.margin-top--md {
  margin-top: unset !important;
}

.last-updated {
  font-style: normal;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4em;
  justify-content: flex-start;
  margin-right: 1rem;
  color: #383a5e;
}

.last-updated .material-symbols-outlined {
  color: var(--ifm-color-primary);
  line-height: 1;
  transform: scaleX(-1) rotate(359deg);
  vertical-align: middle;
  font-size: 1.25rem;
}

.pagination-nav__link.pagination-nav__link--prev {
  padding-left: 2.5rem;
}

.openapi-tabs__schema-tabs-container {
  margin-bottom: 1rem;
  border-bottom: 2px solid #eef0ff;
}

.menu.thin-scrollbar {
  padding-left: 0 !important;
}

.secondary-menu .menu-seperator {
  padding-top: 0.5rem;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 1rem;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}

.primary-menu .menu__list-item,
.primary-menu .menu__link {
  margin-bottom: 2px;
}

.primary-menu .menu__link--active,
.primary-menu .menu__link {
  border-radius: 14.5px;
}

.custom-home-link::before {
  font-family: "Material Symbols Outlined";
  content: "home";
  font-weight: normal;
  font-style: normal;
  font-size: 1.2rem;
  vertical-align: middle;
  display: inline-block;
  margin-right: 0.4rem;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.navbar-icon-api:before {
  font-family: "Material Symbols Outlined";
  content: "code";
  font-weight: normal;
  font-style: normal;
  font-size: 1.2rem;
  vertical-align: middle;
  display: inline-block;
  margin-right: 0.4rem;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.primary-menu > ul > li:nth-child(2) > a::before {
  font-family: "Material Symbols Outlined";
  content: "update";
  font-weight: normal;
  font-style: normal;
  font-size: 1.2rem;
  vertical-align: middle;
  display: inline-block;
  margin-right: 0.4rem;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

header h1,
.openapi__heading {
  border-bottom: none;
  margin-left: -2px;
  font-weight: 600;
  color: #090b38;
  font-size: 28px !important;
  font-style: normal;
  line-height: 36px;
  border-bottom: none;
}

.tabs-container.openapi-tabs__code-container {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 32px;
}

/* Custom for api docs */
pre.openapi__method-endpoint + p {
  /* your styles here */
  font-size: 1rem !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 1.5rem; /* 150% */
  letter-spacing: 0.32px;
  padding-bottom: 0rem;
}

.open-api-request-header {
  padding-top: 1.25rem;
}

.open-api-request-header,
.openapi-accordion__heading {
  font-size: 0.875rem !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 20px !important;
  margin-bottom: 1rem !important;
}
.api-request-tab-wrapper {
  /* margin-top: -1rem !important; */
}

.gtn-openapi-description {
  margin-bottom: 1rem;
  padding-left: 1px;
}

.openapi-tabs__response-code-item.info.active,
.openapi-tabs__schema-item.active,
.openapi-tabs__code-item--variant.active {
  padding: 0.625rem 1.25rem !important;
  border-radius: 4px 4px 0 0 !important;
  background-color: var(--Primary-Primary-100, #eef4ff) !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  color: var(--ifm-color-primary) !important;
  opacity: 1;
  border: 0 !important;
  font-family: "Inter";
}

.openapi-tabs__response-code-item.info,
.openapi-tabs__schema-item,
.openapi-tabs__code-item--variant {
  padding: 0.53rem 1.25rem !important;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 20px;
  font-family: "Inter" !important;
  margin-right: 0 !important;
  border: 0 !important;
}

.openapi-tabs__schema-item:hover {
  border: 0 !important;
}

.openapi-tabs__response-code-item.success,
.openapi-tabs__response-code-item.danger {
  color: #828282 !important;
}

.openapi-tabs__response-code-item {
  white-space: nowrap; /* prevent breaking */
  padding: 0.1rem 0.85rem 0.2rem 0 !important;
  font-size: 14px !important;
  cursor: pointer;
  font-weight: 500 !important;
  border: none !important;
  margin-right: 0 !important;
}

.openapi-right-panel__container .openapi-explorer__code-block {
  background-color: #f5f7f9;
  border-radius: 0;
  --ifm-pre-background: #f5f7f9;
  box-shadow: none;
}

.openapi-right-panel__container .openapi-tabs__code-item--variant.active {
  border-radius: 4px 4px 0 0;
  background: var(--Grey-Grey-100, #f5f7f9) !important;
}

.openapi-tabs__code-container .openapi-tabs__code-item span {
  font-size: 14px !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 20px !important;
  text-transform: lowercase !important;
}

.openapi-tabs__code-container .openapi-tabs__code-list-container {
  padding: 0 !important;
  flex-wrap: wrap;
}

.openapi-guide-header,
.openapi-resources-header,
.openapi-sandbox-header {
  color: var(--Typography-Typography-0, #090b38);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  margin-bottom: 1rem;
}

.openapi-security__details {
  display: none;
}

.openapi-tabs__code-container .openapi-tabs__code-item {
  flex-direction: row-reverse !important;
  height: 30px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 25px;
}

.openapi-tabs__code-container .openapi-tabs__code-item::after {
  width: 1rem;
  height: 1rem;
}

.markdown li {
  font-size: 14px;
}

.openapi-markdown__details-summary-header-params,
.openapi-markdown__details summary::before,
.openapi-markdown__details-summary-header-params::before {
  display: none;
}

.gtn-expand:hover {
  background-color: #eef4ff;
}

ul:has(span.placeholder-inline-tasks) {
  list-style-type: none !important;
  padding-left: 0;
  margin-bottom: 0;
}

.placeholder-inline-tasks {
  position: relative;
  padding-left: 1.6em; /* leave room for checkbox */
  cursor: default;
  font-size: 0.875rem;
}

.placeholder-inline-tasks::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid #c6c6c6;
  border-radius: 0.25em;
  transform: translateY(-50%);
  background: #fff;
}

/* Checked state */
.placeholder-inline-tasks.checked::before {
  background: #2563eb; /* blue (Tailwind’s blue-600) */
  border-color: #2563eb;
}

.confluenceTd p:first-child {
  margin-bottom: 0;
}
.confluenceTd p:last-child {
  margin-bottom: 0;
}
.confluenceTd p:first-child strong {
  padding-bottom: 14px;
  display: block;
  color: var(--ifm-color-primary);
  -webkit-text-decoration: dotted;
          text-decoration: dotted;
}
.confluenceTd ul {
  padding-left: 1rem;
}

.placeholder-inline-tasks.checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 45%;
  width: 3px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-55%) rotate(45deg);
}

details:has(+ p) {
  margin-bottom: 24px !important;
}

p:has(+ h2) {
  margin-bottom: 20px;
}

.hashlink-toast {
  position: fixed;
  top: 5.5rem;
  right: 50%;
  background: #ecfdf5; /* light green bg */
  color: #1f2937; /* dark gray text */
  border: 1px solid #a7f3d0; /* green border */
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: system-ui, sans-serif;
  animation: fadeIn 0.3s ease;
  z-index: 9999;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast-icon {
  color: #10b981; /* green tick */
  font-size: 1.25rem;
  margin-top: 8px;
}

.toast-message {
  flex-grow: 1;
  font-size: 0.95rem;
}

.toast-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #9ca3af; /* gray */
  cursor: pointer;
}

.toast-close:hover {
  color: #4b5563;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-out {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
}

.hash-link::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.2rem;

  /* single-color icon via mask */
  background-color: #2563eb; /* icon color (blue) */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13.828 10.172a4 4 0 010 5.656l-3 3a4 4 0 01-5.656-5.656l1.172-1.172M10.172 13.828a4 4 0 010-5.656l3-3a4 4 0 115.656 5.656l-1.172 1.172'/%3E%3C/svg%3E")
    no-repeat center;
  -webkit-mask-size: contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13.828 10.172a4 4 0 010 5.656l-3 3a4 4 0 01-5.656-5.656l1.172-1.172M10.172 13.828a4 4 0 010-5.656l3-3a4 4 0 115.656 5.656l-1.172 1.172'/%3E%3C/svg%3E")
    no-repeat center;
  mask-size: contain;

  opacity: 0;
  transform: translateX(-0.3em);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* show on heading hover */
h1:hover .hash-link::before,
h2:hover .hash-link::before,
h3:hover .hash-link::before,
h4:hover .hash-link::before,
h5:hover .hash-link::before,
h6:hover .hash-link::before {
  opacity: 1;
  transform: translateX(0); /* slide in from text edge */
}

.hash-link {
  font-size: 20px;
  line-height: 20px;
  padding-left: 0 !important;
}

.theme-doc-breadcrumbs {
  margin-bottom: 0px !important;
}

.table-wrap {
  font-size: 0.875rem;
}

.feedback {
  border-radius: 25px;
  border: 1px solid var(--Grey-Grey-80, #dfdfdf);
  background: var(--Background-Background-0, #fff);
  width: 35px;
  padding: 1px 8px;
  justify-content: center;
  align-items: center;
  margin-right: 4px;
}

.feedback.yes {
  margin-left: 0.625rem;
}

.confluenceTable {
  border: 1px solid var(--ifm-table-border-color);
  border-radius: 10px;
}

.confluenceTable tbody {
  display: table;
  width: 100%;
}

table th,
table td {
  border-top: none;
  border-bottom: none;
  border-left: none;
}

.confluenceTd {
  border-bottom: 1px solid var(--ifm-table-border-color);
}

.confluenceTd:last-child {
  border-right: none;
}

table tr {
  border-top: none;
}

.theme-doc-markdown.markdown h3 {
  padding-top: 2.5rem;
}
.theme-doc-markdown.markdown h2 {
  padding-top: 1.8rem;
}

.theme-doc-markdown.markdown h2 + h3,
.theme-doc-markdown.markdown hr + h3 {
  padding-top: 0;
}

blockquote p:has(strong:only-of-type) {
  padding-top: 1rem;
}

details {
  box-shadow: none !important;
  position: relative;
}

.colorModeToggle_DEke {
  display: none;
}

.dropdown > .navbar__link:after {
  content: "";
  background: var(--ifm-menu-link-sublist-icon) 50% / 20px 20px;
  filter: var(--ifm-menu-link-sublist-icon-filter);
  height: 23px;
  transform: rotate(180deg);
  width: 22px;
  transition: transform var(--ifm-transition-fast) linear;
  border: none;
  position: absolute;
  right: 10px;
  top: 5px;
}

.navbar__item.dropdown.dropdown--hoverable {
  width: 5rem;
}

.openapi-schema__divider {
  display: none;
}

.sidebarViewport_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Sidebar-styles-module {
  max-height: none !important;
}

.openapi-left-panel__container p em {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  background: none;
  border: none;
  color: var(--Typography-Typography-50, #0f62fe);
}

pre.openapi__method-endpoint + p strong {
  color: var(--Typography-Typography-0, #090b38);
  font-size: 16px !important;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.32px;
}

.prism-code code {
  font-family: "Roboto Mono", Consolas, "Courier New", monospace !important;
  font-size: 12px !important;
  line-height: 20px !important;
  font-weight: 500 !important;
}

.theme-admonition-info {
  border-radius: 0 10px 10px 0;
  border-left: 3px solid var(--Alerts-Neutral-Neutral-10, #0068e8);
  background: var(--Alerts-Neutral-Neutral-20, #eff6ff);
  box-shadow: none;
  color: #0068e8;
}

.theme-admonition-caution {
  border-radius: 0 10px 10px 0;
  border-left: 3px solid var(--Alerts-Warning-Warning, #ffa724);
  background: var(--Alerts-Warning-Warning-100, #fff6ea);
  box-shadow: none;
  color: #805312;
}

.theme-admonition-tip {
  border-radius: 0 10px 10px 0;
  border-left: 3px solid var(--Alerts-Porsitive-Positive, #14c39b);
  background: var(--Alerts-Porsitive-Positive-100, #e7f9f5);
  box-shadow: none;
  color: #04271f;
}

.theme-admonition-danger {
  border-radius: 0 10px 10px 0;
  border-left: 3px solid #e13238;
  background: #ffebec;
  box-shadow: none;
  color: #4b1013;
}

.admonitionHeading_node_modules-\@docusaurus-theme-classic-lib-theme-Admonition-styles-module {
  display: none;
}

.theme-doc-markdown.markdown a {
  color: var(--Primary-Primary, #0f62fe);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.21px;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.theme-admonition-info a,
.confluenceTd a {
  color: #002d9c;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.21px;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-decoration-color: #002d9c;
}

.navbar__item.dropdown.dropdown--hoverable {
  border-radius: 4px;
  border: 1px solid var(--Grey-Grey-80, #dfdfdf);
  width: 96px;
  height: 30px;
  padding-top: 2px;
  margin-right: 1rem;
}

.navbar__item {
  padding: 4px 10px;
}

table tr:nth-child(2n) {
  background-color: transparent;
}

table th.confluenceTh {
  border-bottom: 1px solid var(--ifm-table-border-color);
}

blockquote > p > strong:first-child {
  color: #090b38;
  line-height: 20px;
  font-weight: 600;
}

blockquote p:first-child:has(strong:only-of-type) {
  padding-top: 0;
}

.theme-code-block code {
  white-space: pre-wrap !important;
  word-break: break-word;
  padding: 10px 5px 15px 15px !important;
  margin: 0 !important;
}

.theme-code-block {
  overflow-x: auto;
}

hr {
  background-color: var(--ifm-toc-border-color);
}

.theme-admonition > div:first-child {
  display: none;
}

.openapi-markdown__details-summary-response {
  display: none;
}

.openapi-accordion__content > details {
  display: none;
}

.gtn-openapi-schema__list-item .openapi-accordion__content details {
  display: block;
}

.details_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module
  > summary::after,
.openapi-markdown__details[data-collapsed="true"] > summary::after {
  position: absolute;
  top: 3px;
  right: -6px;
  content: "";
  background: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem;
  filter: var(--ifm-menu-link-sublist-icon-filter);
  height: 1.25rem;
  width: 1.25rem;
  transition: transform var(--ifm-transition-fast) linear;
  transform: scale(0.6) rotate(90deg);
}

.details_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module[data-collapsed="false"].isBrowser_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module
  > summary::after,
.gtn-expand summary > summary::after {
  transform: scale(0.6) rotate(180deg);
}

.openapi-markdown__details[data-collapsed="false"] > summary::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -6px;
  background: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem;
  filter: var(--ifm-menu-link-sublist-icon-filter);
  height: 1.25rem;
  width: 1.25rem;
  transition: transform var(--ifm-transition-fast) linear;
  transform: scale(0.6) rotate(180deg) !important;
}

.alert--info.gtn-expand {
  background: #fff;
  color: #333;
}

.alert--info.gtn-expand[data-collapsed="true"] > summary {
  padding: 5px 20px !important;
  background: #fcfcfc;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: #333;
}

.alert--info.gtn-expand[data-collapsed="true"] > summary:hover {
  background: #eef4ff;
}

.alert--info.gtn-expand[data-collapsed="false"] > summary {
  padding: 5px 20px !important;
  background: #eef4ff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: #333;
}

.gtn-expand > summary::after {
  position: absolute;
  right: 14px;
  top: 6px;
  content: "";
  background: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem;
  filter: var(--ifm-menu-link-sublist-icon-filter);
  height: 1.25rem;
  width: 1.25rem;
  transition: transform var(--ifm-transition-fast) linear;
  transform: scale(0.6) rotate(90deg);
}

/*styles for right side col */
.gtn-guides h3,
.gtn-sandbox h3 {
  color: var(--Typography-Typography-0, #090b38);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  padding-top: 0 !important;
  text-transform: uppercase;
}

.col.col--4.openapi-right-panel__container {
  margin-top: -1rem;
}
.gtn-guides .gtn-guide-list {
  padding-left: 0;
}

.gtn-guides .gtn-guide-list li {
  list-style: none;
}

.tabs.openapi-tabs__code-list-container {
  flex-wrap: nowrap;
}

.code-button-block {
  margin-bottom: 2rem !important ;
  border: 1px solid var(--Grey-Grey-80, #dfdfdf) !important;
  background: var(--Background-Background-0, #fff);
}

.openapi-tabs__code-item--python.active,
.openapi-tabs__code-item--nodejs.active,
.openapi-tabs__code-item--ruby.active,
.openapi-tabs__code-item--csharp.active,
.openapi-tabs__code-item--php.active,
.openapi-tabs__code-item--java.active,
.openapi-tabs__code-item--powershell.active,
.openapi-tabs__code-item--go.active {
  box-shadow: none !important;
  border: 1px solid var(--Grey-Grey-80, #dfdfdf);
}

.openapi-tabs__code-item--bash span,
.openapi-tabs__code-item--python span,
.openapi-tabs__code-item--nodejs span,
.openapi-tabs__code-item--ruby span,
.openapi-tabs__code-item--csharp span,
.openapi-tabs__code-item--php span,
.openapi-tabs__code-item--java span,
.openapi-tabs__code-item--powershell span,
.openapi-tabs__code-item--go span {
  padding-top: 0.1rem !important;
}

.openapi-tabs__code-item--bash,
.openapi-tabs__code-item--python,
.openapi-tabs__code-item--nodejs,
.openapi-tabs__code-item--ruby,
.openapi-tabs__code-item--csharp,
.openapi-tabs__code-item--php,
.openapi-tabs__code-item--java,
.openapi-tabs__code-item--powershell,
.openapi-tabs__code-item--go {
  margin-bottom: 0 !important;
}

.tabs-container.openapi-tabs__code-container
  > div[role="tabpanel"]
  > div.tabs-container.openapi-tabs__code-container.openapi-tabs__code-container-inner,
.openapi-explorer__response-container {
  margin-top: 2rem !important;
}

.code-button-block.active {
  border-radius: 25px;
  border: 1px solid var(--Grey-Grey-80, #dfdfdf) !important;
  background: var(--Primary-Primary-100, #eef4ff);
}

.openapi-explorer__code-block-btn-group {
  left: calc(var(--ifm-pre-padding) / 2) !important;
  bottom: calc(var(--ifm-pre-padding) / 2) !important;
  top: unset !important;
}

.openapi-explorer__request-btn {
  border-radius: var(--radiusComponent-button, 4px) !important;
  background: var(--Primary-Primary, #0f62fe) !important;
  color: var(--black-white-white, #fff);
  text-align: center;
  padding: 8px !important;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 10px; /* 133.333% */
  height: 24px;
  justify-content: center;
  align-items: center;
}

.openapi-explorer__details-outer-container {
  background: #fff;
}

.openapi-explorer__request-form {
  box-shadow: none !important;
  border-color: #e8eaec !important;
}

.openapi-explorer__details-outer-container {
  border-radius: 0 0 4px 4px !important;
}

.openapi-explorer__request-header-container {
  border-radius: 4px 4px 0 0 !important;
}

.openapi-explorer__request-header-container {
  height: 35px;
  padding: 10px 20px !important;
  justify-content: space-between !important;
  align-items: center !important;
  align-self: stretch;
  color: var(--Primary-Primary, #0f62fe);
  /* Label/Medium/Medium */
  font-family: Inter;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 20px !important;
  text-transform: capitalize !important;
  background: #eef4ff !important;
}

.openapi-explorer__response-results {
  border-radius: 0 0 4px 4px;
  background: var(--Grey-Grey-100, #f5f7f9);
}

.openapi-explorer__response-container {
  box-shadow: none !important;
  border: none !important;
}

.openapi-explorer__response-placeholder-message {
  color: var(--Typography-Typography-10, #383a5e);
  text-align: center;
  font-family: Inter;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 16px; /* 133.333% */
}

.openapi-explorer__response-placeholder-message strong {
  color: var(--Typography-Typography-10, #383a5e);
  font-family: Inter;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}

.openapi-explorer__response-clear-btn {
  border-radius: var(--radiusComponent-button, 4px);
  border: 1px solid var(--Primary-Primary, #0f62fe);
  color: var(--Primary-Primary, #0f62fe);
  text-align: center;

  /* Label/Small/Medium */
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 133.333% */
  padding: 4px 8px;
}

.openapi-explorer__response-title-container {
  border-radius: 4px 4px 0 0;
  background: var(--Grey-Grey-100, #f5f7f9);
  border-bottom: 0 !important;
  width: 35%;
}

.openapi-explorer__response-container {
  background: none !important;
}

.tabs__item.openapi-tabs__code-item.code-button-block.active span,
.tabs__item.openapi-tabs__code-item.openapi-tabs__code-item--variant.active
  span {
  color: var(--Primary-Primary, #0f62fe);

  /* Label/Medium/Medium */
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.openapi-explorer__expand-details-btn {
  visibility: hidden;
}

.openapi-explorer__expand-details-btn::after {
  visibility: visible;
  content: "›";
  font-size: 1.2rem;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
  color: var(--ifm-color-primary);
}

.openapi-explorer__expand-details-btn.active::after {
  transform: rotate(-90deg);
}

.openapi-explorer__response-title {
  color: var(--Primary-Primary, #0f62fe);

  /* Label/Medium/Medium */
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  text-transform: none;
}

.openapi-explorer__response-clear-btn::before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2IiBmaWxsPSJub25lIj4KICA8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfNTEyM18xMjM1MSkiPgogICAgPHBhdGggZD0iTTExLjc2NjcgNC4yMzMxN0MxMC44IDMuMjY2NSA5LjQ3MzM0IDIuNjY2NSA4LjAwMDAxIDIuNjY2NUM1LjA1MzM0IDIuNjY2NSAyLjY3MzM0IDUuMDUzMTcgMi42NzMzNCA3Ljk5OTg0QzIuNjczMzQgMTAuOTQ2NSA1LjA1MzM0IDEzLjMzMzIgOC4wMDAwMSAxMy4zMzMyQzEwLjQ4NjcgMTMuMzMzMiAxMi41NiAxMS42MzMyIDEzLjE1MzMgOS4zMzMxN0gxMS43NjY3QzExLjIyIDEwLjg4NjUgOS43NDAwMSAxMS45OTk4IDguMDAwMDEgMTEuOTk5OEM1Ljc5MzM0IDExLjk5OTggNC4wMDAwMSAxMC4yMDY1IDQuMDAwMDEgNy45OTk4NEM0LjAwMDAxIDUuNzkzMTcgNS43OTMzNCAzLjk5OTg0IDguMDAwMDEgMy45OTk4NEM5LjEwNjY3IDMuOTk5ODQgMTAuMDkzMyA0LjQ1OTg0IDEwLjgxMzMgNS4xODY1TDguNjY2NjcgNy4zMzMxN0gxMy4zMzMzVjIuNjY2NUwxMS43NjY3IDQuMjMzMTdaIiBmaWxsPSIjMEY2MkZFIi8+CiAgPC9nPgogIDxkZWZzPgogICAgPGNsaXBQYXRoIGlkPSJjbGlwMF81MTIzXzEyMzUxIj4KICAgICAgPHJlY3Qgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2IiBmaWxsPSJ3aGl0ZSIvPgogICAgPC9jbGlwUGF0aD4KICA8L2RlZnM+Cjwvc3ZnPg==);
  content: " ";
  padding-left: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  margin-right: 8px;
}

/* .openapi-explorer__playground-editor
  > pre[contenteditable="plaintext-only"]::before {
  content: "Save";
  display: block;
} */
.openapi-explorer__playground-editor > pre[contenteditable="plaintext-only"] {
  background-color: rgb(240 240 240) !important;
}

/* .openapi-explorer__playground-editor
  > pre:not([contenteditable="plaintext-only"])::before {
  content: "edit";
  display: block;
} */

.openapi-explorer__details-summary {
  color: var(--Typography-Typography-10, #383a5e);

  /* Label/Medium/Medium */
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.openapi-explorer__request-form .openapi-explorer__details-summary::before {
  display: none;
}

.openapi-explorer__request-form .openapi-explorer__details-summary::after {
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
  background-image: var(--openapi-explorer-caret-bg);
  border: none !important;
  transform: rotate(90deg);
  content: "";
  height: 1rem;
  width: 1rem;
}

.openapi-explorer__request-form
  .openapi-explorer__details-container[open]
  .openapi-explorer__details-summary::after {
  transform: rotate(180deg);
  margin-top: 0.25rem;
}

.openapi-explorer__form-item-label {
  color: var(--Typography-Typography-10, #383a5e);
  font-family: Inter !important;
  font-size: 12px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 16px;
}

.openapi-explorer__request-form .openapi-explorer__form-item {
  padding-left: 0 !important;
}

.openapi-explorer__request-form .openapi-explorer__details-summary {
  justify-content: space-between;
  width: 100%;
}

.openapi-explorer__request-form .openapi-explorer__details-container {
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 16px;
}

.openapi-explorer__request-form
  .openapi-explorer__details-container:not(:first-child) {
  margin-top: 16px;
}

.openapi-explorer__plus-btn {
  background: #0f62fe;
  height: 18px;
  width: 18px;
  display: block;
  padding: 3px;
  color: #fff;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.openapi-explorer__show-more-btn span {
  margin-right: 4px;
}

.openapi-explorer__response-results {
  padding-top: 0rem !important;
}

.openapi-explorer__response-container .openapi-tabs__schema-container {
  margin-top: 0 !important;
}

.enum-container {
  display: inline-flex;
  gap: 6px;
}

.enum-tooltip {
  cursor: help;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--ifm-color-emphasis-200);
}

/* Popover Card */
.enum-tooltip-card {
  background: var(--ifm-background-surface-color);
  border: 1px solid var(--ifm-color-emphasis-300);
  padding: 12px 14px;
  border-radius: 8px;
  max-width: 260px;
  font-size: 0.82rem;
  box-shadow: var(--ifm-global-shadow-md);
}

.enum-tooltip-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.enum-tooltip-divider {
  height: 1px;
  background: var(--ifm-color-emphasis-300);
  margin: 6px 0;
}

.enum-tooltip-desc {
  line-height: 1.35;
}

.enum-tooltip-arrow {
  fill: var(--ifm-background-surface-color);
}
.list-header.api-enum-title {
  margin-right: 10px;
}

@charset "UTF-8";
/* ============================================================================
 * Copyright (c) Palo Alto Networks
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 * ========================================================================== */
/* API Demo Panel */
: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 hsla(222, 8%, 43%, 0.1), 0 8px 16px -10px hsla(222, 8%, 43%, 0.2);
  transition: 300ms;
}
.openapi-tabs__code-container:not(.openapi-tabs__code-container-inner):hover {
  box-shadow: 0 0 0 2px rgba(38, 53, 61, 0.15), 0 2px 3px hsla(222, 8%, 43%, 0.15), 0 16px 16px -10px hsla(222, 8%, 43%, 0.2);
}
.openapi-tabs__code-container .openapi-tabs__code-item {
  display: flex;
  flex-direction: column-reverse;
  flex: 0 0 80px;
  align-items: center;
  padding: 0.5rem 0 !important;
  margin-top: 0 !important;
  margin-right: 0.5rem;
  border: 1px solid transparent;
  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: transparent;
}
.openapi-tabs__code-container .openapi-tabs__code-item span {
  padding-top: 0.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: 0.25rem;
  padding-bottom: 0.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: 0.5rem !important;
  padding-right: 0.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, 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: 0.4rem 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, bottom 0.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 transparent;
  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: 0.25rem;
  color: var(--ifm-menu-color);
  margin: 0.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 transparent;
  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;
  /* rtl:ignore */
  direction: ltr;
}

.openapi__method-endpoint {
  display: flex;
  align-items: center;
  max-width: 100%;
  width: fit-content;
  padding: 0.65rem;
  border: 1px solid var(--ifm-toc-border-color);
}

.openapi__method-endpoint-path {
  margin-bottom: 0;
  margin-left: 0.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 0.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: 0.25rem;
  margin-bottom: 0.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 transparent;
  display: block;
  background-color: transparent;
  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(0.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: 0.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: transparent;
  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 hsla(222, 8%, 43%, 0.1), 0 8px 16px -10px hsla(222, 8%, 43%, 0.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;
  /* hack for view calculation when monaco is hidden */
  position: relative;
}
.openapi-explorer__request-form:empty {
  display: none;
}
.openapi-explorer__request-form:hover {
  box-shadow: 0 0 0 2px rgba(38, 53, 61, 0.15), 0 2px 3px hsla(222, 8%, 43%, 0.15), 0 16px 16px -10px hsla(222, 8%, 43%, 0.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: 0.25rem;
}

.openapi-explorer__request-header-container {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--openapi-explorer-border-color);
  margin: 0;
  padding: 0.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: 0.25rem;
}

.openapi-explorer__details-summary {
  display: inline-flex;
  align-items: center;
  padding: 0.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: 0.25rem;
  margin-bottom: 0.25rem;
  margin-top: 0.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: 0.5rem 1rem;
  margin-top: 1rem;
  background-color: var(--ifm-color-primary-light);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  color: white;
  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 hsla(222, 8%, 43%, 0.1), 0 8px 16px -10px hsla(222, 8%, 43%, 0.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, 0.15), 0 2px 3px hsla(222, 8%, 43%, 0.15), 0 16px 16px -10px hsla(222, 8%, 43%, 0.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: 0.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: 0.2rem;
  margin-bottom: 0.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;
}

/* loading spinner */
.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) transparent transparent transparent;
}

.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;
  /* hack for view calculation when monaco is hidden */
  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: 0.5rem;
  font-weight: var(--ifm-font-weight-bold);
}

/* Api Demo Panel / ApiCodeBlock */
.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;
  /* rtl:ignore */
  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: 0.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;
  /* rtl:ignore */
  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: 0.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: 0.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: 0.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 0.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: 0.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 0.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, 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 0.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: 0.075s;
}

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

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

:global(.theme-code-block-highlighted-line) .openapi-explorer__code-block-code-line-number::before {
  opacity: 0.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);
}

/* Schema Styling */
.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: 0.7rem;
  /* width of horizontal line */
  height: 0.5rem;
  /* vertical position of line */
  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: 0.6;
  padding-left: 0.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: transparent;
  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: 0.7rem;
  /* width of horizontal line */
  height: 0.5rem;
  /* vertical position of line */
  vertical-align: top;
  border-bottom: thin solid var(--openapi-tree-line-color);
  content: "";
  display: inline-block;
}

.openapi-schema__name {
  opacity: 0.6;
  padding-left: 0.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: transparent;
}

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

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

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

/* Tabs Styling */
/* ============================================================================
 * Copyright (c) Palo Alto Networks
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 * ========================================================================== */
.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 transparent;
  margin-top: 0 !important;
  margin-right: 0.5rem;
  padding: 0.35rem 0.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: transparent;
  border: 1px solid var(--ifm-toc-border-color);
}

.openapi-tabs__response-code-item:not(.active) {
  opacity: 0.65;
}

.openapi-tabs__response-code-item:hover {
  opacity: 1;
}

.openapi-tabs__response-code-item:last-child {
  margin-right: 0 !important;
}

/* Open API Response Code Tabs */
.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 0.25rem;
  overflow-y: hidden;
  overflow-x: scroll;
  scroll-behavior: smooth;
}

.openapi-tabs__response-list-container::-webkit-scrollbar {
  display: none;
}

/* Response Code Tabs - Colored Dots */
.openapi-tabs__response-dot {
  width: 12.5px;
  height: 12.5px;
  margin-right: 5px;
  border-radius: 50%;
}

.openapi-tabs__response-schema-container {
  max-width: 600px;
}

/* Tab Arrows */
.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;
  }
}
/* ============================================================================
 * Copyright (c) Palo Alto Networks
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 * ========================================================================== */
.openapi-tabs__discriminator-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border: 1px solid transparent;
  margin-top: 0 !important;
  margin-right: 0.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: transparent;
  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;
}

/* Open API Discriminator Tabs */
.openapi-tabs__discriminator-top-section {
  margin-top: 1rem;
  margin-left: 0.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 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%;
  }
}
/**
 * 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.
 */
.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: 0.35rem 0.7rem;
  border: 1px solid transparent;
  margin-top: 0 !important;
  margin-right: 0.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: transparent;
  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;
  }
}
/**
 * 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.
 */
.openapi-tabs__schema-container {
  margin-top: 1rem;
}

.openapi-tabs__schema-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border: 1px solid transparent;
  margin-top: 0 !important;
  margin-right: 0.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: transparent;
  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;
}

/* Code Samples */
.openapi-code__response-samples-container {
  margin-top: 2rem;
}

/* Markdown Styling */
/* Markdown Details Styling */
/* Top-Level Details Styling */
.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;
}

/* End of Top-Level Details Styling */
/* Top-Level Details Caret Styling */
.openapi-left-panel__container > .openapi-markdown__details > summary::before,
.openapi-markdown__details.mime > summary::before,
.openapi-markdown__details.response > summary::before {
  top: 0.1rem;
}

/* End of Top-Level Details Caret Styling */
.openapi-markdown__details {
  margin: unset !important;
  background-color: transparent;
  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: 0.75rem;
  transform: rotate(90deg) !important;
  width: 0.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;
}

/* Hide defaul details marker by default */
details summary::-webkit-details-marker {
  display: none;
}

.openapi-security__details {
  font-size: 12px;
  margin-bottom: 1rem;
  background-color: transparent;
  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;
  }
  /* Prevent hydration FOUC, as the mobile TOC needs to be server-rendered */
  .tocMobile {
    display: none;
  }
}
/* Begin OpenAPI theme styles */
/* Demo panel details */
/* Code block */
/* Version button */
.openapi__logo {
  width: 250px;
}

.openapi__heading {
  font-size: 2rem;
  margin-bottom: 0.5rem !important;
}

.openapi-left-panel__container {
  border-right: thin solid var(--ifm-toc-border-color);
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.overlay .overlayDoor:before,
.overlay .overlayDoor:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: #111;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  transition-delay: 0.8s;
}

.overlay .overlayDoor:before {
  left: 0;
}

.overlay .overlayDoor:after {
  right: 0;
}

.overlay.loaded .overlayDoor:before {
  left: -50%;
}

.overlay.loaded .overlayDoor:after {
  right: -50%;
}

.overlay.loaded .overlayContent {
  opacity: 0;
  margin-top: -15px;
}

.overlay .overlayContent {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  background: #fff;
}

.overlay .overlayContent .skip {
  display: block;
  width: 130px;
  text-align: center;
  margin: 50px auto 0;
  cursor: pointer;
  color: #fff;
  font-family: "Nunito";
  font-weight: 700;
  padding: 12px 0;
  border: 2px solid #fff;
  border-radius: 3px;
  transition: 0.2s ease;
}

.overlay .overlayContent .skip:hover {
  background: #ddd;
  color: #444;
  border-color: #ddd;
}

/*.loader {*/
/*    width: 128px;*/
/*    height: 128px;*/
/*    border: 3px solid #222222;*/
/*    border-bottom: 3px solid transparent;*/
/*    border-radius: 50%;*/
/*    position: relative;*/
/*    animation: spin 1s linear infinite;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

/*.loader .inner {*/
/*    width: 64px;*/
/*    height: 64px;*/
/*    border: 3px solid transparent;*/
/*    border-top: 3px solid #222222;*/
/*    border-radius: 50%;*/
/*    animation: spinInner 1s linear infinite;*/
/*}*/

/*@keyframes spin {*/
/*    0% {*/
/*        transform: rotate(0deg);*/
/*    }*/

/*    100% {*/
/*        transform: rotate(360deg);*/
/*    }*/
/*}*/

/*@keyframes spinInner {*/
/*    0% {*/
/*        transform: rotate(0deg);*/
/*    }*/

/*    100% {*/
/*        transform: rotate(-720deg);*/
/*    }*/
/*}*/

.loader {
  width: 60px;
  height: 60px;
  display: inline-block;
  position: relative;
}
.loader::after,
.loader::before {
  content: "";
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #3345a3;
  position: absolute;
  left: 0;
  top: 0;
  animation: animloader 2s linear infinite;
}
.loader::after {
  animation-delay: 1s;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 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.
 */

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

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

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

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

.skipToContent_node_modules-\@docusaurus-theme-classic-lib-theme-SkipToContent-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-SkipToContent-styles-module: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_node_modules-\@docusaurus-theme-classic-lib-theme-AnnouncementBar-CloseButton-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-AnnouncementBar-Content-styles-module {
  font-size: 85%;
  text-align: center;
  padding: 5px 0;
}

.content_node_modules-\@docusaurus-theme-classic-lib-theme-AnnouncementBar-Content-styles-module 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_node_modules-\@docusaurus-theme-classic-lib-theme-AnnouncementBar-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-AnnouncementBar-styles-module {
  display: none;
}

.announcementBarPlaceholder_node_modules-\@docusaurus-theme-classic-lib-theme-AnnouncementBar-styles-module {
  flex: 0 0 10px;
}

.announcementBarClose_node_modules-\@docusaurus-theme-classic-lib-theme-AnnouncementBar-styles-module {
  flex: 0 0 30px;
  align-self: stretch;
}

.announcementBarContent_node_modules-\@docusaurus-theme-classic-lib-theme-AnnouncementBar-styles-module {
  flex: 1 1 auto;
}

@media print {
  .announcementBar_node_modules-\@docusaurus-theme-classic-lib-theme-AnnouncementBar-styles-module {
    display: none;
  }
}

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

  .announcementBarPlaceholder_node_modules-\@docusaurus-theme-classic-lib-theme-AnnouncementBar-styles-module,
  .announcementBarClose_node_modules-\@docusaurus-theme-classic-lib-theme-AnnouncementBar-styles-module {
    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_node_modules-\@docusaurus-theme-classic-lib-theme-ColorModeToggle-styles-module {
  width: 2rem;
  height: 2rem;
}

.toggleButton_node_modules-\@docusaurus-theme-classic-lib-theme-ColorModeToggle-styles-module {
  -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_node_modules-\@docusaurus-theme-classic-lib-theme-ColorModeToggle-styles-module:hover {
  background: var(--ifm-color-emphasis-200);
}

[data-theme='light'] .darkToggleIcon_node_modules-\@docusaurus-theme-classic-lib-theme-ColorModeToggle-styles-module,
[data-theme='dark'] .lightToggleIcon_node_modules-\@docusaurus-theme-classic-lib-theme-ColorModeToggle-styles-module {
  display: none;
}

.toggleButtonDisabled_node_modules-\@docusaurus-theme-classic-lib-theme-ColorModeToggle-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-Navbar-ColorModeToggle-styles-module: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_node_modules-\@docusaurus-theme-classic-lib-theme-ThemedImage-styles-module {
  display: none;
}

[data-theme='light'] .themedImage--light_node_modules-\@docusaurus-theme-classic-lib-theme-ThemedImage-styles-module {
  display: initial;
}

[data-theme='dark'] .themedImage--dark_node_modules-\@docusaurus-theme-classic-lib-theme-ThemedImage-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-Icon-ExternalLink-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-NavbarItem-LocaleDropdownNavbarItem-styles-module {
  vertical-align: text-bottom;
  margin-right: 5px;
}

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

@media (max-width: 996px) {
  .searchBox_node_modules-\@docusaurus-theme-classic-lib-theme-Navbar-Search-styles-module {
    position: absolute;
    right: var(--ifm-navbar-padding-horizontal);
  }
}

@media (min-width: 997px) {
  .searchBox_node_modules-\@docusaurus-theme-classic-lib-theme-Navbar-Search-styles-module {
    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_src-theme-Navbar-Layout-styles-module {
  transition: transform var(--ifm-transition-fast) ease;
}

.navbarHidden_src-theme-Navbar-Layout-styles-module {
  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.
 */

.errorBoundaryError_node_modules-\@docusaurus-theme-common-lib-utils-errorBoundaryUtils-module {
  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.
 */

/*
Hide color mode toggle in small viewports
 */
@media (max-width: 996px) {
  .colorModeToggle_node_modules-\@docusaurus-theme-classic-lib-theme-Navbar-Content-styles-module {
    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_node_modules-\@docusaurus-theme-classic-lib-theme-Footer-Logo-styles-module {
  opacity: 0.5;
  transition: opacity var(--ifm-transition-fast)
    var(--ifm-transition-timing-default);
}

.footerLogoLink_node_modules-\@docusaurus-theme-classic-lib-theme-Footer-Logo-styles-module: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_src-theme-Layout-styles-module {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

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

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

.sidebar_node_modules-\@docusaurus-theme-classic-lib-theme-BlogSidebar-Desktop-styles-module {
  max-height: calc(100vh - (var(--ifm-navbar-height) + 2rem));
  overflow-y: auto;
  position: sticky;
  top: calc(var(--ifm-navbar-height) + 2rem);
}

.sidebarItemTitle_node_modules-\@docusaurus-theme-classic-lib-theme-BlogSidebar-Desktop-styles-module {
  font-size: var(--ifm-h3-font-size);
  font-weight: var(--ifm-font-weight-bold);
}

.sidebarItemList_node_modules-\@docusaurus-theme-classic-lib-theme-BlogSidebar-Desktop-styles-module {
  font-size: 0.9rem;
}

.sidebarItem_node_modules-\@docusaurus-theme-classic-lib-theme-BlogSidebar-Desktop-styles-module {
  margin-top: 0.7rem;
}

.sidebarItemLink_node_modules-\@docusaurus-theme-classic-lib-theme-BlogSidebar-Desktop-styles-module {
  color: var(--ifm-font-color-base);
  display: block;
}

.sidebarItemLink_node_modules-\@docusaurus-theme-classic-lib-theme-BlogSidebar-Desktop-styles-module:hover {
  text-decoration: none;
}

.sidebarItemLinkActive_node_modules-\@docusaurus-theme-classic-lib-theme-BlogSidebar-Desktop-styles-module {
  color: var(--ifm-color-primary) !important;
}

@media (max-width: 996px) {
  .sidebar_node_modules-\@docusaurus-theme-classic-lib-theme-BlogSidebar-Desktop-styles-module {
    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.
 */

.backToTopButton_node_modules-\@docusaurus-theme-classic-lib-theme-BackToTopButton-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-BackToTopButton-styles-module::after {
  content: ' ';
  display: inline-block;
  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_node_modules-\@docusaurus-theme-classic-lib-theme-BackToTopButton-styles-module:hover {
    background-color: var(--ifm-color-emphasis-300);
  }
}

.backToTopButtonShow_node_modules-\@docusaurus-theme-classic-lib-theme-BackToTopButton-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-CollapseButton-styles-module {
    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_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-CollapseButton-styles-module {
    transform: rotate(180deg);
    margin-top: 4px;
  }

  [dir='rtl'] .collapseSidebarButtonIcon_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-CollapseButton-styles-module {
    transform: rotate(0);
  }

  .collapseSidebarButton_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-CollapseButton-styles-module:hover,
  .collapseSidebarButton_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-CollapseButton-styles-module:focus {
    background-color: var(--docusaurus-collapse-button-bg-hover);
  }
}

.collapseSidebarButton_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-CollapseButton-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebarItem-Link-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebarItem-Html-styles-module {
    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_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-Content-styles-module {
    flex-grow: 1;
    padding: 0.5rem;
  }
  @supports (scrollbar-gutter: stable) {
    .menu_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-Content-styles-module {
      padding: 0.5rem 0 0.5rem 0.5rem;
      scrollbar-gutter: stable;
    }
  }

  .menuWithAnnouncementBar_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-Content-styles-module {
    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_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-styles-module {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: var(--ifm-navbar-height);
    width: var(--doc-sidebar-width);
  }

  .sidebarWithHideableNavbar_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-styles-module {
    padding-top: 0;
  }

  .sidebarHidden_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-styles-module {
    opacity: 0;
    visibility: hidden;
  }

  .sidebarLogo_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-styles-module {
    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_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-styles-module img {
    margin-right: 0.5rem;
    height: 2rem;
  }
}

.sidebarLogo_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Sidebar-ExpandButton-styles-module {
    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_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Sidebar-ExpandButton-styles-module:hover,
  .expandButton_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Sidebar-ExpandButton-styles-module:focus {
    background-color: var(--docusaurus-collapse-button-bg-hover);
  }

  .expandButtonIcon_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Sidebar-ExpandButton-styles-module {
    transform: rotate(0);
  }

  [dir='rtl'] .expandButtonIcon_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Sidebar-ExpandButton-styles-module {
    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_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Sidebar-styles-module {
  display: none;
}

@media (min-width: 997px) {
  .docSidebarContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Sidebar-styles-module {
    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_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Sidebar-styles-module {
    width: var(--doc-sidebar-hidden-width);
    cursor: pointer;
  }

  .sidebarViewport_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Sidebar-styles-module {
    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_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Main-styles-module {
  display: flex;
  width: 100%;
}

@media (min-width: 997px) {
  .docMainContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Main-styles-module {
    flex-grow: 1;
    max-width: calc(100% - var(--doc-sidebar-width));
  }

  .docMainContainerEnhanced_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Main-styles-module {
    max-width: calc(100% - var(--doc-sidebar-hidden-width));
  }

  .docItemWrapperEnhanced_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Main-styles-module {
    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_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-styles-module {
  display: flex;
  width: 100%;
  flex: 1 0;
}

.docsWrapper_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-styles-module {
  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.
 */

.title_node_modules-\@docusaurus-theme-classic-lib-theme-BlogPostItem-Header-Title-styles-module {
  font-size: 3rem;
}

/**
  Blog post title should be smaller on smaller devices
**/
@media (max-width: 576px) {
  .title_node_modules-\@docusaurus-theme-classic-lib-theme-BlogPostItem-Header-Title-styles-module {
    font-size: 2rem;
  }
}

/**
 * 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_node_modules-\@docusaurus-theme-classic-lib-theme-BlogPostItem-Header-Info-styles-module {
  font-size: 0.9rem;
}

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

.authorCol_node_modules-\@docusaurus-theme-classic-lib-theme-BlogPostItem-Header-Authors-styles-module {
  max-width: inherit !important;
  flex-grow: 1 !important;
}

.imageOnlyAuthorRow_node_modules-\@docusaurus-theme-classic-lib-theme-BlogPostItem-Header-Authors-styles-module {
  display: flex;
  flex-flow: row wrap;
}

.imageOnlyAuthorCol_node_modules-\@docusaurus-theme-classic-lib-theme-BlogPostItem-Header-Authors-styles-module {
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}

/**
 * CSS files with the .module.css suffix will be treated as CSS modules
 * and scoped locally.
 */

.heroBanner_src-pages-index-module {
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 996px) {
  .heroBanner_src-pages-index-module {
    padding: 2rem;
  }
}

.buttons_src-pages-index-module {
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlayhome_src-pages-index-module {
  position: fixed;
  padding-top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.overlayhome_src-pages-index-module .overlayDoor_src-pages-index-module:before,
.overlayhome_src-pages-index-module .overlayDoor_src-pages-index-module:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: #111;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  transition-delay: 0.8s;
}

.overlayhome_src-pages-index-module .overlayDoor_src-pages-index-module:before {
  left: 0;
}

.overlayhome_src-pages-index-module .overlayDoor_src-pages-index-module:after {
  right: 0;
}

.overlayhome_src-pages-index-module.loaded_src-pages-index-module .overlayDoor_src-pages-index-module:before {
  left: -50%;
}

.overlayhome_src-pages-index-module.loaded_src-pages-index-module .overlayDoor_src-pages-index-module:after {
  right: -50%;
}

.overlayhome_src-pages-index-module.loaded_src-pages-index-module .overlayContent_src-pages-index-module {
  opacity: 0;
  margin-top: -15px;
}

.overlayhome_src-pages-index-module .overlayContent_src-pages-index-module {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  background: #fff;
}

.overlayhome_src-pages-index-module .overlayContent_src-pages-index-module .skip_src-pages-index-module {
  display: block;
  width: 130px;
  text-align: center;
  margin: 50px auto 0;
  cursor: pointer;
  color: #fff;
  font-family: "Nunito";
  font-weight: 700;
  padding: 12px 0;
  border: 2px solid #fff;
  border-radius: 3px;
  transition: 0.2s ease;
}

.overlayhome_src-pages-index-module .overlayContent_src-pages-index-module .skip_src-pages-index-module:hover {
  background: #ddd;
  color: #444;
  border-color: #ddd;
}

.loader_src-pages-index-module {
  width: 60px;
  height: 60px;
  display: inline-block;
  position: relative;
}
.loader_src-pages-index-module::after,
.loader_src-pages-index-module::before {
  content: "";
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #3345a3;
  position: absolute;
  left: 0;
  top: 0;
  animation: animloader_src-pages-index-module 2s linear infinite;
}
.loader_src-pages-index-module::after {
  animation-delay: 1s;
}

@keyframes animloader_src-pages-index-module {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.features_src-components-HomepageFeatures-styles-module {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  width: 100%;
  flex-direction: column;
}

.featureSvg_src-components-HomepageFeatures-styles-module {
  width: 4.125rem;
  height: 4.125rem;
  padding: 1rem;
}

.buttons_src-components-HomepageFeatures-styles-module {
  width: 20rem;
  height: 4rem;
  background: #e8eaed;
  font-family: Manrope;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
  color: #000;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 4rem;
}

.buttons_src-components-HomepageFeatures-styles-module a {
  font-size: 1.8rem;
  color: #626262;
}

.buttons_src-components-HomepageFeatures-styles-module a:hover {
  color: #e8443a;
}

/**
 * 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_node_modules-\@docusaurus-theme-classic-lib-theme-DocCard-styles-module {
  --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_node_modules-\@docusaurus-theme-classic-lib-theme-DocCard-styles-module:hover {
  border-color: var(--ifm-color-primary);
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 20%);
}

.cardContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocCard-styles-module *:last-child {
  margin-bottom: 0;
}

.cardTitle_node_modules-\@docusaurus-theme-classic-lib-theme-DocCard-styles-module {
  font-size: 1.2rem;
}

.cardDescription_node_modules-\@docusaurus-theme-classic-lib-theme-DocCard-styles-module {
  font-size: 0.8rem;
}

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

.breadcrumbHomeIcon_node_modules-\@docusaurus-theme-classic-lib-theme-DocBreadcrumbs-Items-Home-styles-module {
  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.
 */

.breadcrumbsContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocBreadcrumbs-styles-module {
  --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.
 */

.codeBlockContainer_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Container-styles-module {
  background: var(--prism-background-color);
  color: var(--prism-color);
  margin-bottom: var(--ifm-leading);
  box-shadow: var(--ifm-global-shadow-lw);
  border-radius: var(--ifm-code-border-radius);
}

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

.codeBlockContent_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module {
  position: relative;
  /* rtl:ignore */
  direction: ltr;
  border-radius: inherit;
}

.codeBlockTitle_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module {
  --ifm-pre-background: var(--prism-background-color);
  margin: 0;
  padding: 0;
}

.codeBlockTitle_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module + .codeBlockContent_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module .codeBlock_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.codeBlockStandalone_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module {
  padding: 0;
}

.codeBlockLines_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module {
  font: inherit;
  /* rtl:ignore */
  float: left;
  min-width: 100%;
  padding: var(--ifm-pre-padding);
}

.codeBlockLinesWithNumbering_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module {
  display: table;
  padding: var(--ifm-pre-padding) 0;
}

@media print {
  .codeBlockLines_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module {
    white-space: pre-wrap;
  }
}

.buttonGroup_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module 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_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module button:focus-visible,
.buttonGroup_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module button:hover {
  opacity: 1 !important;
}

.theme-code-block:hover .buttonGroup_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module 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_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Line-styles-module {
  display: table-row;
  counter-increment: line-count;
}

.codeLineNumber_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Line-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Line-styles-module::before {
  content: counter(line-count);
  opacity: 0.4;
}

.theme-code-block-highlighted-line .codeLineNumber_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Line-styles-module::before {
  opacity: 0.8;
}

.codeLineContent_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Line-styles-module {
  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.
 */

.theme-code-block:hover .copyButtonCopied_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-CopyButton-styles-module {
  opacity: 1 !important;
}

.copyButtonIcons_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-CopyButton-styles-module {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
}

.copyButtonIcon_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-CopyButton-styles-module,
.copyButtonSuccessIcon_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-CopyButton-styles-module {
  position: absolute;
  top: 0;
  left: 0;
  fill: currentColor;
  opacity: inherit;
  width: inherit;
  height: inherit;
  transition: all var(--ifm-transition-fast) ease;
}

.copyButtonSuccessIcon_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-CopyButton-styles-module {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.33);
  opacity: 0;
  color: #00d600;
}

.copyButtonCopied_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-CopyButton-styles-module .copyButtonIcon_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-CopyButton-styles-module {
  transform: scale(0.33);
  opacity: 0;
}

.copyButtonCopied_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-CopyButton-styles-module .copyButtonSuccessIcon_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-CopyButton-styles-module {
  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.
 */

.wordWrapButtonIcon_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-WordWrapButton-styles-module {
  width: 1.2rem;
  height: 1.2rem;
}

.wordWrapButtonEnabled_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-WordWrapButton-styles-module .wordWrapButtonIcon_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-WordWrapButton-styles-module {
  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.
 */

.tabItem_node_modules-\@docusaurus-theme-classic-lib-theme-TabItem-styles-module > *: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.
 */

/*
CSS variables, meant to be overridden by final theme
 */
.details_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module {
  --docusaurus-details-summary-arrow-size: 0.38rem;
  --docusaurus-details-transition: transform 200ms ease;
  --docusaurus-details-decoration-color: grey;
}

.details_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module > summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding-left: 1rem;
}

/* TODO: deprecation, need to remove this after Safari will support `::marker` */
.details_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module > summary::-webkit-details-marker {
  display: none;
}

.details_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module > 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_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module[open]:not(.isBrowser_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module) > summary::before,

.details_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module[data-collapsed='false'].isBrowser_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module > summary::before {
  transform: rotate(90deg);
}

.collapsibleContent_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module {
  margin-top: 1rem;
  border-top: 1px solid var(--docusaurus-details-decoration-color);
  padding-top: 1rem;
}

.collapsibleContent_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module > *: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.
 */

/*
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_node_modules-\@docusaurus-theme-classic-lib-theme-Heading-styles-module {
  scroll-margin-top: calc(var(--ifm-navbar-height) + 0.5rem);
}

.anchorWithHideOnScrollNavbar_node_modules-\@docusaurus-theme-classic-lib-theme-Heading-styles-module {
  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.
 */

@media (min-width: 997px) {
  .generatedIndexPage_node_modules-\@docusaurus-theme-classic-lib-theme-DocCategoryGeneratedIndexPage-styles-module {
    max-width: 75% !important;
  }

  .list_node_modules-\@docusaurus-theme-classic-lib-theme-DocCategoryGeneratedIndexPage-styles-module article:nth-last-child(-n + 2) {
    margin-bottom: 0 !important;
  }
}

/* Duplicated from .markdown h1 */
.title_node_modules-\@docusaurus-theme-classic-lib-theme-DocCategoryGeneratedIndexPage-styles-module {
  --ifm-h1-font-size: 3rem;
  margin-bottom: calc(1.25 * var(--ifm-leading));
}

.list_node_modules-\@docusaurus-theme-classic-lib-theme-DocCategoryGeneratedIndexPage-styles-module 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.
 */

.details_node_modules-\@docusaurus-theme-classic-lib-theme-Details-styles-module {
  --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_node_modules-\@docusaurus-theme-classic-lib-theme-MDXComponents-Ul-styles-module {
  list-style: none;
}

:not(.containsTaskList_node_modules-\@docusaurus-theme-classic-lib-theme-MDXComponents-Ul-styles-module > li) > .containsTaskList_node_modules-\@docusaurus-theme-classic-lib-theme-MDXComponents-Ul-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-MDXComponents-Img-styles-module {
  height: auto;
}

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

.admonition_node_modules-\@docusaurus-theme-classic-lib-theme-Admonition-styles-module {
  margin-bottom: 1em;
}

.admonitionHeading_node_modules-\@docusaurus-theme-classic-lib-theme-Admonition-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-Admonition-styles-module code {
  text-transform: none;
}

.admonitionIcon_node_modules-\@docusaurus-theme-classic-lib-theme-Admonition-styles-module {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4em;
}

.admonitionIcon_node_modules-\@docusaurus-theme-classic-lib-theme-Admonition-styles-module svg {
  display: inline-block;
  height: 1.6em;
  width: 1.6em;
  fill: var(--ifm-alert-foreground-color);
}

.admonitionContent_node_modules-\@docusaurus-theme-classic-lib-theme-Admonition-styles-module > :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.
 */

.iconEdit_node_modules-\@docusaurus-theme-classic-lib-theme-Icon-Edit-styles-module {
  margin-right: 0.3em;
  vertical-align: sub;
}

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

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

.tag_node_modules-\@docusaurus-theme-classic-lib-theme-Tag-styles-module {
  border: 1px solid var(--docusaurus-tag-list-border);
  transition: border var(--ifm-transition-fast);
}

.tag_node_modules-\@docusaurus-theme-classic-lib-theme-Tag-styles-module:hover {
  --docusaurus-tag-list-border: var(--ifm-link-color);
  text-decoration: none;
}

.tagRegular_node_modules-\@docusaurus-theme-classic-lib-theme-Tag-styles-module {
  border-radius: var(--ifm-global-radius);
  padding: 0.2rem 0.5rem 0.3rem;
  font-size: 90%;
}

.tagWithCount_node_modules-\@docusaurus-theme-classic-lib-theme-Tag-styles-module {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0.5rem 0 1rem;
  border-left: 0;
}

.tagWithCount_node_modules-\@docusaurus-theme-classic-lib-theme-Tag-styles-module::before,
.tagWithCount_node_modules-\@docusaurus-theme-classic-lib-theme-Tag-styles-module::after {
  content: '';
  position: absolute;
  top: 50%;
  border: 1px solid var(--docusaurus-tag-list-border);
  transition: inherit;
}

.tagWithCount_node_modules-\@docusaurus-theme-classic-lib-theme-Tag-styles-module::before {
  right: 100%;
  transform: translate(50%, -50%) rotate(-45deg);
  width: 1.18rem;
  height: 1.18rem;
  border-right: 0;
  border-bottom: 0;
}

.tagWithCount_node_modules-\@docusaurus-theme-classic-lib-theme-Tag-styles-module::after {
  left: 0;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.tagWithCount_node_modules-\@docusaurus-theme-classic-lib-theme-Tag-styles-module 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.
 */

.tag_node_modules-\@docusaurus-theme-classic-lib-theme-TagsListByLetter-styles-module {
  display: inline-block;
  margin: 0.5rem 0.5rem 0 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.
 */

.tags_node_modules-\@docusaurus-theme-classic-lib-theme-TagsListInline-styles-module {
  display: inline;
}

.tag_node_modules-\@docusaurus-theme-classic-lib-theme-TagsListInline-styles-module {
  margin: 0 0.4rem 0.5rem 0;
  display: inline-block;
}

.lastUpdated_src-theme-DocItem-Footer-styles-module {
    margin-top: 0.2rem;
    font-style: italic;
    font-size: smaller;
  }
  
  @media (min-width: 997px) {
    .lastUpdated_src-theme-DocItem-Footer-styles-module {
      text-align: right;
    }
  }
.tippy-touch{cursor:pointer!important}.tippy-notransition{transition:none!important}.tippy-popper{max-width:400px;perspective:800px;z-index:9999;outline:0;transition-timing-function:cubic-bezier(.165,.84,.44,1);pointer-events:none}.tippy-popper.html-template{max-width:96%;max-width:calc(100% - 20px)}.tippy-popper[x-placement^=top] [x-arrow]{border-top:7px solid #333;border-right:7px solid transparent;border-left:7px solid transparent;bottom:-7px;margin:0 9px}.tippy-popper[x-placement^=top] [x-arrow].arrow-small{border-top:5px solid #333;border-right:5px solid transparent;border-left:5px solid transparent;bottom:-5px}.tippy-popper[x-placement^=top] [x-arrow].arrow-big{border-top:10px solid #333;border-right:10px solid transparent;border-left:10px solid transparent;bottom:-10px}.tippy-popper[x-placement^=top] [x-circle]{transform-origin:0 33%}.tippy-popper[x-placement^=top] [x-circle].enter{transform:scale(1) translate(-50%,-55%);opacity:1}.tippy-popper[x-placement^=top] [x-circle].leave{transform:scale(.15) translate(-50%,-50%);opacity:0}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow]{border-top:7px solid #fff;border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-top:5px solid #fff;border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-top:10px solid #fff;border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow]{border-top:7px solid rgba(0,0,0,.7);border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-top:5px solid rgba(0,0,0,.7);border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-top:10px solid rgba(0,0,0,.7);border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=top] [data-animation=perspective]{transform-origin:bottom}.tippy-popper[x-placement^=top] [data-animation=perspective].enter{opacity:1;transform:translateY(-10px) rotateX(0)}.tippy-popper[x-placement^=top] [data-animation=perspective].leave{opacity:0;transform:translateY(0) rotateX(90deg)}.tippy-popper[x-placement^=top] [data-animation=fade].enter{opacity:1;transform:translateY(-10px)}.tippy-popper[x-placement^=top] [data-animation=fade].leave{opacity:0;transform:translateY(-10px)}.tippy-popper[x-placement^=top] [data-animation=shift].enter{opacity:1;transform:translateY(-10px)}.tippy-popper[x-placement^=top] [data-animation=shift].leave{opacity:0;transform:translateY(0)}.tippy-popper[x-placement^=top] [data-animation=scale].enter{opacity:1;transform:translateY(-10px) scale(1)}.tippy-popper[x-placement^=top] [data-animation=scale].leave{opacity:0;transform:translateY(0) scale(0)}.tippy-popper[x-placement^=bottom] [x-arrow]{border-bottom:7px solid #333;border-right:7px solid transparent;border-left:7px solid transparent;top:-7px;margin:0 9px}.tippy-popper[x-placement^=bottom] [x-arrow].arrow-small{border-bottom:5px solid #333;border-right:5px solid transparent;border-left:5px solid transparent;top:-5px}.tippy-popper[x-placement^=bottom] [x-arrow].arrow-big{border-bottom:10px solid #333;border-right:10px solid transparent;border-left:10px solid transparent;top:-10px}.tippy-popper[x-placement^=bottom] [x-circle]{transform-origin:0 -50%}.tippy-popper[x-placement^=bottom] [x-circle].enter{transform:scale(1) translate(-50%,-45%);opacity:1}.tippy-popper[x-placement^=bottom] [x-circle].leave{transform:scale(.15) translate(-50%,-5%);opacity:0}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow]{border-bottom:7px solid #fff;border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-bottom:5px solid #fff;border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-bottom:10px solid #fff;border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow]{border-bottom:7px solid rgba(0,0,0,.7);border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-bottom:5px solid rgba(0,0,0,.7);border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-bottom:10px solid rgba(0,0,0,.7);border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=bottom] [data-animation=perspective]{transform-origin:top}.tippy-popper[x-placement^=bottom] [data-animation=perspective].enter{opacity:1;transform:translateY(10px) rotateX(0)}.tippy-popper[x-placement^=bottom] [data-animation=perspective].leave{opacity:0;transform:translateY(0) rotateX(-90deg)}.tippy-popper[x-placement^=bottom] [data-animation=fade].enter{opacity:1;transform:translateY(10px)}.tippy-popper[x-placement^=bottom] [data-animation=fade].leave{opacity:0;transform:translateY(10px)}.tippy-popper[x-placement^=bottom] [data-animation=shift].enter{opacity:1;transform:translateY(10px)}.tippy-popper[x-placement^=bottom] [data-animation=shift].leave{opacity:0;transform:translateY(0)}.tippy-popper[x-placement^=bottom] [data-animation=scale].enter{opacity:1;transform:translateY(10px) scale(1)}.tippy-popper[x-placement^=bottom] [data-animation=scale].leave{opacity:0;transform:translateY(0) scale(0)}.tippy-popper[x-placement^=left] [x-arrow]{border-left:7px solid #333;border-top:7px solid transparent;border-bottom:7px solid transparent;right:-7px;margin:6px 0}.tippy-popper[x-placement^=left] [x-arrow].arrow-small{border-left:5px solid #333;border-top:5px solid transparent;border-bottom:5px solid transparent;right:-5px}.tippy-popper[x-placement^=left] [x-arrow].arrow-big{border-left:10px solid #333;border-top:10px solid transparent;border-bottom:10px solid transparent;right:-10px}.tippy-popper[x-placement^=left] [x-circle]{transform-origin:50% 0}.tippy-popper[x-placement^=left] [x-circle].enter{transform:scale(1) translate(-50%,-50%);opacity:1}.tippy-popper[x-placement^=left] [x-circle].leave{transform:scale(.15) translate(-50%,-50%);opacity:0}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow]{border-left:7px solid #fff;border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-left:5px solid #fff;border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-left:10px solid #fff;border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow]{border-left:7px solid rgba(0,0,0,.7);border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-left:5px solid rgba(0,0,0,.7);border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-left:10px solid rgba(0,0,0,.7);border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=left] [data-animation=perspective]{transform-origin:right}.tippy-popper[x-placement^=left] [data-animation=perspective].enter{opacity:1;transform:translateX(-10px) rotateY(0)}.tippy-popper[x-placement^=left] [data-animation=perspective].leave{opacity:0;transform:translateX(0) rotateY(-90deg)}.tippy-popper[x-placement^=left] [data-animation=fade].enter{opacity:1;transform:translateX(-10px)}.tippy-popper[x-placement^=left] [data-animation=fade].leave{opacity:0;transform:translateX(-10px)}.tippy-popper[x-placement^=left] [data-animation=shift].enter{opacity:1;transform:translateX(-10px)}.tippy-popper[x-placement^=left] [data-animation=shift].leave{opacity:0;transform:translateX(0)}.tippy-popper[x-placement^=left] [data-animation=scale].enter{opacity:1;transform:translateX(-10px) scale(1)}.tippy-popper[x-placement^=left] [data-animation=scale].leave{opacity:0;transform:translateX(0) scale(0)}.tippy-popper[x-placement^=right] [x-arrow]{border-right:7px solid #333;border-top:7px solid transparent;border-bottom:7px solid transparent;left:-7px;margin:6px 0}.tippy-popper[x-placement^=right] [x-arrow].arrow-small{border-right:5px solid #333;border-top:5px solid transparent;border-bottom:5px solid transparent;left:-5px}.tippy-popper[x-placement^=right] [x-arrow].arrow-big{border-right:10px solid #333;border-top:10px solid transparent;border-bottom:10px solid transparent;left:-10px}.tippy-popper[x-placement^=right] [x-circle]{transform-origin:-50% 0}.tippy-popper[x-placement^=right] [x-circle].enter{transform:scale(1) translate(-50%,-50%);opacity:1}.tippy-popper[x-placement^=right] [x-circle].leave{transform:scale(.15) translate(-50%,-50%);opacity:0}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow]{border-right:7px solid #fff;border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-right:5px solid #fff;border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-right:10px solid #fff;border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow]{border-right:7px solid rgba(0,0,0,.7);border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-right:5px solid rgba(0,0,0,.7);border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-right:10px solid rgba(0,0,0,.7);border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=right] [data-animation=perspective]{transform-origin:left}.tippy-popper[x-placement^=right] [data-animation=perspective].enter{opacity:1;transform:translateX(10px) rotateY(0)}.tippy-popper[x-placement^=right] [data-animation=perspective].leave{opacity:0;transform:translateX(0) rotateY(90deg)}.tippy-popper[x-placement^=right] [data-animation=fade].enter{opacity:1;transform:translateX(10px)}.tippy-popper[x-placement^=right] [data-animation=fade].leave{opacity:0;transform:translateX(10px)}.tippy-popper[x-placement^=right] [data-animation=shift].enter{opacity:1;transform:translateX(10px)}.tippy-popper[x-placement^=right] [data-animation=shift].leave{opacity:0;transform:translateX(0)}.tippy-popper[x-placement^=right] [data-animation=scale].enter{opacity:1;transform:translateX(10px) scale(1)}.tippy-popper[x-placement^=right] [data-animation=scale].leave{opacity:0;transform:translateX(0) scale(0)}.tippy-popper .tippy-tooltip.transparent-theme{background-color:rgba(0,0,0,.7)}.tippy-popper .tippy-tooltip.transparent-theme[data-animatefill]{background-color:transparent}.tippy-popper .tippy-tooltip.light-theme{color:#26323d;box-shadow:0 4px 20px 4px rgba(0,20,60,.1),0 4px 80px -8px rgba(0,20,60,.2);background-color:#fff}.tippy-popper .tippy-tooltip.light-theme[data-animatefill]{background-color:transparent}.tippy-tooltip{position:relative;color:#fff;border-radius:4px;font-size:.95rem;padding:.4rem .8rem;text-align:center;will-change:transform;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#333}.tippy-tooltip--small{padding:.25rem .5rem;font-size:.8rem}.tippy-tooltip--big{padding:.6rem 1.2rem;font-size:1.2rem}.tippy-tooltip[data-animatefill]{overflow:hidden;background-color:transparent}.tippy-tooltip[data-interactive]{pointer-events:auto}.tippy-tooltip[data-inertia]{transition-timing-function:cubic-bezier(.53,2,.36,.85)}.tippy-tooltip [x-arrow]{position:absolute;width:0;height:0}.tippy-tooltip [x-circle]{position:absolute;will-change:transform;background-color:#333;border-radius:50%;width:130%;width:calc(110% + 2rem);left:50%;top:50%;z-index:-1;overflow:hidden;transition:all ease}.tippy-tooltip [x-circle]:before{content:"";padding-top:90%;float:left}@media (max-width:450px){.tippy-popper{max-width:96%;max-width:calc(100% - 20px)}}

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

.blogPostFooterDetailsFull_node_modules-\@docusaurus-theme-classic-lib-theme-BlogPostItem-Footer-styles-module {
  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.
 */

.tableOfContents_node_modules-\@docusaurus-theme-classic-lib-theme-TOC-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-TOC-styles-module {
    display: none;
  }

  .docItemContainer_node_modules-\@docusaurus-theme-classic-lib-theme-TOC-styles-module {
    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.
 */

.mdxPageWrapper_node_modules-\@docusaurus-theme-classic-lib-theme-MDXPage-styles-module {
  justify-content: 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.
 */

.tocCollapsibleButton_node_modules-\@docusaurus-theme-classic-lib-theme-TOCCollapsible-CollapseButton-styles-module {
  font-size: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0.8rem;
  width: 100%;
}

.tocCollapsibleButton_node_modules-\@docusaurus-theme-classic-lib-theme-TOCCollapsible-CollapseButton-styles-module::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_node_modules-\@docusaurus-theme-classic-lib-theme-TOCCollapsible-CollapseButton-styles-module::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.
 */

.tocCollapsible_node_modules-\@docusaurus-theme-classic-lib-theme-TOCCollapsible-styles-module {
  background-color: var(--ifm-menu-color-background-active);
  border-radius: var(--ifm-global-radius);
  margin: 1rem 0;
}

.tocCollapsibleContent_node_modules-\@docusaurus-theme-classic-lib-theme-TOCCollapsible-styles-module > ul {
  border-left: none;
  border-top: 1px solid var(--ifm-color-emphasis-300);
  padding: 0.2rem 0;
  font-size: 15px;
}

.tocCollapsibleContent_node_modules-\@docusaurus-theme-classic-lib-theme-TOCCollapsible-styles-module ul li {
  margin: 0.4rem 0.8rem;
}

.tocCollapsibleContent_node_modules-\@docusaurus-theme-classic-lib-theme-TOCCollapsible-styles-module a {
  display: block;
}

.tocCollapsibleExpanded_node_modules-\@docusaurus-theme-classic-lib-theme-TOCCollapsible-styles-module {
  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.
 */

@media (min-width: 997px) {
  /* Prevent hydration FOUC, as the mobile TOC needs to be server-rendered */
  .tocMobile_node_modules-\@docusaurus-theme-classic-lib-theme-DocItem-TOC-Mobile-styles-module {
    display: none;
  }
}

@media print {
  .tocMobile_node_modules-\@docusaurus-theme-classic-lib-theme-DocItem-TOC-Mobile-styles-module {
    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.
 */

.docItemContainer_src-theme-ApiItem-Layout-styles-module header + *,
.docItemContainer_src-theme-ApiItem-Layout-styles-module article > *:first-child {
  margin-top: 0;
}

@media (min-width: 997px) {
  .docItemCol_src-theme-ApiItem-Layout-styles-module {
    max-width: 75% !important;
  }
}

