/**
 * Copyright (c) Facebook, Inc. and 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: transparent;
  background-color: var(--ifm-background-color);
  color: #1c1e21;
  color: var(--ifm-font-color-base);
  --csstools-color-scheme--light: initial;
  color-scheme: light;
  color-scheme: var(--ifm-color-scheme);
  font: 100% / 1.65
    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';
  font: var(--ifm-font-size-base) / var(--ifm-line-height-base)
    var(--ifm-font-family-base);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizelegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

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

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

/* Layout */

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

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

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(1rem * -1);
  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: 100%;
  max-width: var(--ifm-col-width);
  padding: 0 1rem;
  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: rgb(246, 247, 248);
  background-color: var(--ifm-code-background);
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  border-radius: 0.4rem;
  border-radius: var(--ifm-code-border-radius);
  font-family: SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
  font-family: var(--ifm-font-family-monospace);
  font-size: 90%;
  font-size: var(--ifm-code-font-size);
  padding: 0.1rem 0.1rem;
  padding: var(--ifm-code-padding-vertical) var(--ifm-code-padding-horizontal);
  vertical-align: middle;
}

a code {
  color: inherit;
}

pre {
  background-color: rgb(246, 247, 248);
  background-color: var(--ifm-pre-background);
  border-radius: 0.4rem;
  border-radius: var(--ifm-pre-border-radius);
  color: inherit;
  color: var(--ifm-pre-color);
  font: 90% / 1.45
    SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
  font: var(--ifm-code-font-size) / var(--ifm-pre-line-height)
    var(--ifm-font-family-monospace);
  margin: 0 0 1rem;
  margin: 0 0 var(--ifm-spacing-vertical);
  overflow: auto;
  padding: 1rem;
  padding: var(--ifm-pre-padding);
}

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

kbd {
  background-color: #fff;
  background-color: var(--ifm-color-emphasis-0);
  border: 1px solid #ccd0d5;
  border: 1px solid var(--ifm-color-emphasis-400);
  border-radius: 0.2rem;
  box-shadow: inset 0 -1px 0 #ccd0d5;
  box-shadow: inset 0 -1px 0 var(--ifm-color-emphasis-400);
  color: #444950;
  color: var(--ifm-color-emphasis-800);
  font: 80% SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
  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: inherit;
  color: var(--ifm-heading-color);
  font-family: 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';
  font-family: var(--ifm-heading-font-family);
  font-weight: 700;
  font-weight: var(--ifm-heading-font-weight);
  line-height: 1.25;
  line-height: var(--ifm-heading-line-height);
  margin: 0 0 1rem 0;
  margin: var(--ifm-heading-margin-top) 0 var(--ifm-heading-margin-bottom) 0;
}

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

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

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

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

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

h6 {
    font-size: 0.85rem;
    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) * (1.25 * 1rem)
    );

    margin-bottom: calc(
      var(--ifm-h1-vertical-rhythm-bottom) * calc(1.25 * 1rem)
    );

    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) * (1.25 * 1rem)
    );

    margin-bottom: calc(
      var(--ifm-heading-vertical-rhythm-bottom) * calc(1.25 * 1rem)
    );

    margin-bottom: calc(
      var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading)
    );
    margin-top: calc(var(--ifm-h2-vertical-rhythm-top) * (1.25 * 1rem));
    margin-top: calc(var(--ifm-h2-vertical-rhythm-top) * calc(1.25 * 1rem));
    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) * (1.25 * 1rem)
    );

    margin-bottom: calc(
      var(--ifm-heading-vertical-rhythm-bottom) * calc(1.25 * 1rem)
    );

    margin-bottom: calc(
      var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading)
    );
    margin-top: calc(var(--ifm-h3-vertical-rhythm-top) * (1.25 * 1rem));
    margin-top: calc(var(--ifm-h3-vertical-rhythm-top) * calc(1.25 * 1rem));
    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) * (1.25 * 1rem)
    );
    margin-bottom: calc(
      var(--ifm-heading-vertical-rhythm-bottom) * calc(1.25 * 1rem)
    );
    margin-bottom: calc(
      var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading)
    );
    margin-top: calc(
      var(--ifm-heading-vertical-rhythm-top) * (1.25 * 1rem)
    );
    margin-top: calc(
      var(--ifm-heading-vertical-rhythm-top) * calc(1.25 * 1rem)
    );
    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: calc(1.25 * 1rem);
    margin-bottom: var(--ifm-leading);
  }

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

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

.markdown li + li {
      margin-top: 0.25rem;
      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 1rem;
  margin: 0 0 var(--ifm-list-margin);
  padding-left: 2rem;
  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: 1rem;
  margin-bottom: var(--ifm-spacing-vertical);
  overflow: auto;
}

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

table thead {
    background-color: rgba(0, 0, 0, 0.03);
    background-color: var(--ifm-table-stripe-background);
  }

table tr {
    background-color: transparent;
    background-color: var(--ifm-table-background);
    border-top: 1px solid
      #dadde1;
    border-top: var(--ifm-table-border-width) solid
      var(--ifm-table-border-color);
  }

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

table th,
  table td {
    border: 1px solid #dadde1;
    border: var(--ifm-table-border-width) solid var(--ifm-table-border-color);
    padding: 0.75rem;
    padding: var(--ifm-table-cell-padding);
  }

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

table td {
    color: inherit;
    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: 700;
  font-weight: var(--ifm-font-weight-bold);
}

/* Links */

a {
  color: #3578e5;
  color: var(--ifm-link-color);
  /* autoprefixer: ignore next */
  text-decoration: none;
  -webkit-text-decoration: var(--ifm-link-decoration);
          text-decoration: var(--ifm-link-decoration);
  transition: color 200ms cubic-bezier(0.08, 0.52, 0.52, 1);
  transition: color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
}

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

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

/* Paragraphs */

p {
  margin: 0 0 calc(1.25 * 1rem);
  margin: 0 0 var(--ifm-paragraph-margin-bottom);
}

/* Blockquotes */

blockquote {
  border-left: 2px solid
    #dadde1;
  border-left: var(--ifm-blockquote-border-left-width) solid
    var(--ifm-blockquote-border-color);
  box-shadow: none;
  box-shadow: var(--ifm-blockquote-shadow);
  color: #444950;
  color: var(--ifm-blockquote-color);
  font-size: 100%;
  font-size: var(--ifm-blockquote-font-size);
  margin: 0 0 1rem;
  margin: 0 0 var(--ifm-spacing-vertical);
  padding: 0
    1rem;
  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: #bec3c9;
  background-color: var(--ifm-hr-background-color);
  border: 0;
  height: 1px;
  height: var(--ifm-hr-height);
  margin: 1.5rem 0;
  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: 0 1px 2px 0 rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--ifm-global-shadow-lw) !important;
  }

.shadow--md {
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.2) !important;
    box-shadow: var(--ifm-global-shadow-md) !important;
  }

.shadow--tl {
    box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.2),
    0 2px 4px 0 rgba(0, 0, 0, 0.1) !important;
    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: #3578e5;
    color: var(--ifm-color-primary);
  }

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

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

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

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

.text--danger {
    color: #fa383e;
    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: 300;
    font-weight: var(--ifm-font-weight-light);
  }

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

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

.text--bold {
    font-weight: 700;
    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 {
    -webkit-text-decoration: none;
    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: inherit;

  background-color: var(--ifm-alert-background-color);
  border: 0px solid inherit;
  border: var(--ifm-alert-border-width) solid var(--ifm-alert-border-color);
  border-left-width: 5px;
  border-left-width: var(--ifm-alert-border-left-width);
  border-radius: 0.4rem;
  border-radius: var(--ifm-alert-border-radius);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: var(--ifm-alert-shadow);
  color: var(--ifm-alert-foreground-color);
  padding: 1rem 1rem;
  padding: var(--ifm-alert-padding-vertical) var(--ifm-alert-padding-horizontal);
}

.alert__heading {
    align-items: center;
    display: flex;
    font: bold 0.875rem / 1.25
      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';
    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(1rem * -1)
      calc(1rem * -1) 0 0;
    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: inherit;
    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 {
  -moz-column-gap: 1rem;
  -moz-column-gap: var(--ifm-avatar-intro-margin);
       column-gap: 1rem;
       column-gap: var(--ifm-avatar-intro-margin);
  display: flex;
}

.avatar__photo {
    border-radius: 50%;
    display: block;
    height: 3rem;
    height: var(--ifm-avatar-photo-size);
    overflow: hidden;
    width: 3rem;
    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: inherit;
    text-align: var(--ifm-avatar-intro-alignment);
  }

.avatar__name {
    font: bold 1rem / 1.25
      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';
    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: inherit;
  background-color: var(--ifm-badge-background-color);
  border: 1px solid inherit;
  border: var(--ifm-badge-border-width) solid var(--ifm-badge-border-color);
  border-radius: 0.4rem;
  border-radius: var(--ifm-badge-border-radius);
  color: #fff;
  color: var(--ifm-badge-color);
  display: inline-block;
  font-size: 75%;
  font-weight: 700;
  font-weight: var(--ifm-font-weight-bold);
  line-height: 1;
  padding: calc(1rem * 0.25) calc(1rem * 0.5);
  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: #000;
    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: 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>') center;
      background: var(--ifm-breadcrumb-separator) center;
      content: ' ';
      display: inline-block;
      filter: none;
      filter: var(--ifm-breadcrumb-separator-filter);
      height: calc(
        0.5rem *
          1 *
          1.25
      );
      height: calc(
        var(--ifm-breadcrumb-separator-size) *
          var(--ifm-breadcrumb-size-multiplier) *
          var(--ifm-breadcrumb-separator-size-multiplier)
      );
      margin: 0 0.5rem;
      margin: 0 var(--ifm-breadcrumb-spacing);
      opacity: 0.5;
      width: calc(
        0.5rem *
          1 *
          1.25
      );
      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: rgba(0, 0, 0, 0.05);
        background: var(--ifm-breadcrumb-item-background-active);
        color: #3578e5;
        color: var(--ifm-breadcrumb-color-active);
      }

.breadcrumbs__link {
    border-radius: 1.5rem;
    border-radius: var(--ifm-breadcrumb-border-radius);
    color: #1c1e21;
    color: var(--ifm-font-color-base);
    display: inline-block;
    font-size: calc(1rem * 1);
    font-size: calc(1rem * var(--ifm-breadcrumb-size-multiplier));
    padding: calc(
        0.4rem *
          1
      )
      calc(
        0.8rem *
          1
      );
    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: 200ms;
    transition-duration: var(--ifm-transition-fast);
    transition-timing-function: cubic-bezier(0.08, 0.52, 0.52, 1);
    transition-timing-function: var(--ifm-transition-timing-default);
  }

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

.breadcrumbs__link:-moz-any-link:hover {
      background: rgba(0, 0, 0, 0.05);
      background: var(--ifm-breadcrumb-item-background-active);
      -webkit-text-decoration: none;
      text-decoration: none;
    }

.breadcrumbs__link:link:hover, .breadcrumbs__link:visited:hover {
      background: rgba(0, 0, 0, 0.05);
      background: var(--ifm-breadcrumb-item-background-active);
      -webkit-text-decoration: none;
      text-decoration: none;
    }

.breadcrumbs__link:-moz-any-link:hover {
      background: rgba(0, 0, 0, 0.05);
      background: var(--ifm-breadcrumb-item-background-active);
      -webkit-text-decoration: none;
      text-decoration: none;
    }

.breadcrumbs__link:any-link:hover {
      background: rgba(0, 0, 0, 0.05);
      background: var(--ifm-breadcrumb-item-background-active);
      -webkit-text-decoration: none;
      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: inherit;
  background-color: var(--ifm-button-background-color);
  border: 1px solid inherit;
  border: var(--ifm-button-border-width) solid var(--ifm-button-border-color);
  border-radius: calc(
    0.4rem * 1
  );
  border-radius: var(--ifm-button-border-radius);
  color: #fff;
  color: var(--ifm-button-color);
  cursor: pointer;
  display: inline-block;
  font-size: calc(0.875rem * 1);
  font-size: calc(0.875rem * var(--ifm-button-size-multiplier));
  font-weight: 700;
  font-weight: var(--ifm-button-font-weight);
  line-height: 1.5;
  padding: calc(
      0.375rem * 1
    )
    calc(
      1.5rem * 1
    );
  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;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  transition-property: color, background, border-color;
  transition-duration: 200ms;
  transition-duration: var(--ifm-button-transition-duration);
  transition-timing-function: cubic-bezier(0.08, 0.52, 0.52, 1);
  transition-timing-function: var(--ifm-transition-timing-default);
}

.button:hover {
    color: #fff;
    color: var(--ifm-button-color); /* Override for button links. */
    -webkit-text-decoration: none;
    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: #3578e5;

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

.button--link:hover,
    .button--link:active,
    .button--link.button--active {
      color: #3578e5;
      color: var(--ifm-link-hover-color);
      /* autoprefixer: ignore next */
      text-decoration: underline;
      -webkit-text-decoration: var(--ifm-link-hover-decoration);
              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: #1c1e21;
    color: var(--ifm-color-gray-900);
  }

.button.button--secondary.button--outline:not(.button--active):not(:hover) {
      color: #1c1e21;
      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: 2px;
  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: #fff;
  background-color: var(--ifm-card-background-color);
  border-radius: calc(0.4rem * 2);
  border-radius: var(--ifm-card-border-radius);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  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: 1rem;
    padding-top: var(--ifm-card-vertical-spacing);
  }

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

.card__header,
  .card__body,
  .card__footer {
    padding: 1rem 1rem;
    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: 0.5rem 0;
  padding: var(--ifm-toc-padding-vertical) 0;
}

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

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

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

.table-of-contents__link {
    color: #525860;
    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: #3578e5;
      color: var(--ifm-color-primary);
      -webkit-text-decoration: none;
      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: #000;
  color: var(--ifm-color-black);
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  font-weight: var(--ifm-font-weight-bold);
  line-height: 1;
  opacity: 0.5;
  padding: 1rem;
  transition: opacity 200ms cubic-bezier(0.08, 0.52, 0.52, 1);
  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: 500;
  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: #fff;
    background-color: var(--ifm-dropdown-background-color);
    border-radius: 0.4rem;
    border-radius: var(--ifm-global-radius);
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.2);
    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% - 0.25rem + 0.3rem);
    top: calc(100% - var(--ifm-navbar-item-padding-vertical) + 0.3rem);
    transform: translateY(-0.625rem);
    visibility: hidden;
    z-index: 100;
    z-index: var(--ifm-z-index-dropdown);
    transition-property: opacity, transform, visibility;
    transition-duration: 200ms;
    transition-duration: var(--ifm-transition-fast);
    transition-timing-function: cubic-bezier(0.08, 0.52, 0.52, 1);
    transition-timing-function: var(--ifm-transition-timing-default);
  }

.dropdown__link {
    border-radius: 0.25rem;
    color: #1c1e21;
    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: rgba(0, 0, 0, 0.05);
      background-color: var(--ifm-dropdown-hover-background-color);
      color: #1c1e21;
      color: var(--ifm-dropdown-link-color);
      -webkit-text-decoration: none;
      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: #f5f6f7;
  background-color: var(--ifm-footer-background-color);
  color: inherit;
  color: var(--ifm-footer-color);
  padding: calc(1rem * 2)
    calc(1rem * 2);
  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: #606770;
    color: var(--ifm-footer-link-color);
    line-height: 2;
  }

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

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

.footer__logo {
    margin-top: 1rem;
    max-width: min(30rem, 90vw);
    max-width: var(--ifm-footer-logo-max-width);
  }

.footer__title {
    color: inherit;
    color: var(--ifm-footer-title-color);
    font: bold 1rem / 1.25
      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';
    font: bold var(--ifm-h4-font-size) / var(--ifm-heading-line-height)
      var(--ifm-font-family-base);
    margin-bottom: 1rem;
    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: #fff;
  background-color: var(--ifm-hero-background-color);
  color: #444950;
  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: 500;
  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: 0.75rem;
      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 200ms cubic-bezier(0.08, 0.52, 0.52, 1);
      transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
    }

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

.menu__list-item-collapsible--active {
        background: rgba(0, 0, 0, 0.05);
        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 200ms cubic-bezier(0.08, 0.52, 0.52, 1);
    transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

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

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

.menu__link:hover {
      -webkit-text-decoration: none;
      text-decoration: none;
      color: #606770;
      color: var(--ifm-menu-color);
      transition: color 200ms cubic-bezier(0.08, 0.52, 0.52, 1);
      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: 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>') 50% / 2rem 2rem;
      background: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem;
      filter: none;
      filter: var(--ifm-menu-link-sublist-icon-filter);
      height: 1.25rem;
      transform: rotate(180deg);
      width: 1.25rem;
      transition: transform 200ms linear;
      transition: transform var(--ifm-transition-fast) linear;
    }

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

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

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

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

.menu__caret: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 fill="rgba(0,0,0,0.5)" d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"></path></svg>') 50% / 2rem 2rem;
      background: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem;
      filter: none;
      filter: var(--ifm-menu-link-sublist-icon-filter);
      height: 1.25rem;
      transform: rotate(180deg);
      width: 1.25rem;
      transition: transform 200ms linear;
      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: #fff;
  background-color: var(--ifm-navbar-background-color);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: var(--ifm-navbar-shadow);
  display: flex;
  height: 3.75rem;
  height: var(--ifm-navbar-height);
  padding: calc(1rem * 0.5)
    1rem;
  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: 200;
    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: #1c1e21;
    color: var(--ifm-navbar-link-color);
    display: flex;
    margin-right: 1rem;
    min-width: 0;
  }

.navbar__brand:hover {
      color: #3578e5;
      color: var(--ifm-navbar-link-hover-color);
      -webkit-text-decoration: none;
      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: 0.25rem
      0.75rem;
    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: #1c1e21;
    color: var(--ifm-navbar-link-color);
    font-weight: 500;
    font-weight: var(--ifm-font-weight-semibold);
  }

.navbar__link:hover,
    .navbar__link--active {
      color: #3578e5;
      color: var(--ifm-navbar-link-hover-color);
      -webkit-text-decoration: none;
      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: #fff;

    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 {
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none; /* Algolia will add type="search" to the input in Safari and Safari's styling will override the styling here. */
      background: #ebedf0
        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>') no-repeat 0.75rem center / 1rem 1rem;
      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: #444950;
      color: var(--ifm-navbar-search-input-color);
      cursor: text;
      display: inline-block;
      font-size: 1rem;
      height: 2rem;
      padding: 0 0.5rem 0 2.25rem;
      width: 12.5rem;
    }

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

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

.navbar-sidebar {
    background-color: #fff;
    background-color: var(--ifm-navbar-background-color);
    bottom: 0;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.2);
    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: 83vw;
    width: var(--ifm-navbar-sidebar-width);
    transition-property: opacity, visibility, transform;
    transition-duration: 200ms;
    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: 200ms;
      transition-duration: var(--ifm-transition-fast);
      transition-timing-function: ease-in-out;
    }

.navbar-sidebar__brand {
      align-items: center;
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
      box-shadow: var(--ifm-navbar-shadow);
      display: flex;
      flex: 1;
      height: 3.75rem;
      height: var(--ifm-navbar-height);
      padding: calc(1rem * 0.5)
        1rem;
      padding: var(--ifm-navbar-padding-vertical)
        var(--ifm-navbar-padding-horizontal);
    }

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

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

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

.navbar-sidebar__back {
      background: rgba(0, 0, 0, 0.05);
      background: var(--ifm-menu-color-background-active);
      font-size: 15px;
      font-weight: 700;
      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 {
  -moz-column-gap: 0.2em;
  -moz-column-gap: var(--ifm-pagination-page-spacing);
       column-gap: 0.2em;
       column-gap: var(--ifm-pagination-page-spacing);
  display: flex;
  font-size: 1rem;
  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: calc(1rem * 0.25);
      padding: var(--ifm-pagination-padding-vertical);
    }

.pagination__item--active .pagination__link {
        background: rgba(0, 0, 0, 0.05);
        background: var(--ifm-pagination-item-active-background);
        color: #3578e5;
        color: var(--ifm-pagination-color-active);
      }

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

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

.pagination__link {
    border-radius: 0.4rem;
    border-radius: var(--ifm-pagination-border-radius);
    color: #1c1e21;
    color: var(--ifm-font-color-base);
    display: inline-block;
    padding: calc(1rem * 0.25)
      calc(1rem * 1);
    padding: var(--ifm-pagination-padding-vertical)
      var(--ifm-pagination-padding-horizontal);
    transition: background 200ms cubic-bezier(0.08, 0.52, 0.52, 1);
    transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.pagination__link:hover {
      -webkit-text-decoration: none;
      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: 1rem;
  grid-gap: var(--ifm-spacing-horizontal);
  gap: 1rem;
  gap: var(--ifm-spacing-horizontal);
  grid-template-columns: repeat(2, 1fr);
}

.pagination-nav__link {
    border: 1px solid #dadde1;
    border: 1px solid var(--ifm-color-emphasis-300);
    border-radius: 0.4rem;
    border-radius: var(--ifm-pagination-nav-border-radius);
    display: block;
    height: 100%;
    line-height: 1.25;
    line-height: var(--ifm-heading-line-height);
    padding: 1rem;
    padding: var(--ifm-global-spacing);
    transition: border-color 200ms cubic-bezier(0.08, 0.52, 0.52, 1);
    transition: border-color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

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

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

.pagination-nav__label {
    font-size: 1rem;
    font-size: var(--ifm-h4-font-size);
    font-weight: 700;
    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: #525860;
    color: var(--ifm-color-content-secondary);
    font-size: 0.875rem;
    font-size: var(--ifm-h5-font-size);
    font-weight: 500;
    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: 0.125rem;
  gap: var(--ifm-pills-spacing);
  padding-left: 0;
}

.pills__item {
    border-radius: 0.5rem;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    font-weight: var(--ifm-font-weight-bold);
    padding: 0.25rem 1rem;
    transition: background 200ms cubic-bezier(0.08, 0.52, 0.52, 1);
    transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.pills__item--active {
      background: rgba(0, 0, 0, 0.05);
      background: var(--ifm-pills-color-background-active);
      color: #3578e5;
      color: var(--ifm-pills-color-active);
    }

.pills__item:not(.pills__item--active):hover {
      background: rgba(0, 0, 0, 0.05);
      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: #525860;
  color: var(--ifm-tabs-color);
  display: flex;
  font-weight: 700;
  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: 0.4rem;
    border-radius: var(--ifm-global-radius);
    cursor: pointer;
    display: inline-flex;
    padding: 1rem 1rem;
    padding: var(--ifm-tabs-padding-vertical) var(--ifm-tabs-padding-horizontal);
    transition: background-color 200ms cubic-bezier(0.08, 0.52, 0.52, 1);
    transition: background-color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

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

.tabs__item:hover {
      background-color: rgba(0, 0, 0, 0.05);
      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: 1320px;
      max-width: var(--ifm-container-width-xl);
    }
}

@media (max-width: 996px) {
    .col {
      --ifm-col-width: 100%;
      flex-basis: 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(1rem * 3);
      margin-bottom: calc(var(--ifm-spacing-vertical) * 3);
    }

    .footer__link-item {
      display: block;
      width: -moz-max-content;
      width: max-content;
    }

.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: 7px;
    height: var(--ifm-scrollbar-size);
    width: 7px;
    width: var(--ifm-scrollbar-size);
  }
  .thin-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    background: var(--ifm-scrollbar-track-background-color);
    border-radius: 10px;
  }
  .thin-scrollbar::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    background: var(--ifm-scrollbar-thumb-background-color);
    border-radius: 10px;
  }
  .thin-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #a7a7a7;
    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.
 */

@font-face {
  /* stylelint-disable-next-line font-family-name-quotes */
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('https://cdn.jsdelivr.net/fontsource/fonts/inter:vf@latest/latin-wght-normal.woff2')
    format('woff2-variations');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: 'Fira Code';
  src: url(/assets/fonts/FiraCode-Regular-dbd175e33b712ffcd71cce91fd8d70ef.ttf) format('truetype');
}

/* You can override the default Infima variables here. */
:root {
  --ifm-color-primary: #25607f;
  --ifm-color-primary-dark: #005cb8;
  --ifm-color-primary-darker: #0057ad;
  --ifm-color-primary-darkest: #00478f;
  --ifm-color-primary-light: #0070e0;
  --ifm-color-primary-lighter: #0075eb;
  --ifm-color-primary-lightest: #0a85ff;
  --ifm-menu-color-active: var(--ifm-navbar-link-active-color);
  --ifm-code-font-size: 85%;
  --ifm-font-family-monospace: 'Fira Code', monospace;
  --ifm-code-border-radius: 2px;
  --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
  --ifm-font-family-base: 'Inter', sans-serif;
  --ifm-font-size-base: 1rem;
  --ifm-hr-height: 0.1em;
  --ifm-navbar-padding-vertical: 1.5rem;
  --ifm-spacing-horizontal: 1rem;
  --ifm-navbar-height: calc(
    3.25rem + calc(var(--ifm-navbar-padding-vertical) * 2)
  );
  --search-local-modal-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  --search-local-modal-background: white;
  --search-local-muted-color: #808080;
  --search-local-highlight-color: #25607f;
  --ifm-link-color: #2e7ca5;
  --ifm-link-hover-color: #143c50;
  --ifm-code-background: #fafafa;
}

/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark']:root {
  --ifm-color-primary: #4289ad;
  --ifm-color-primary-dark: #25607f;
  --ifm-color-primary-darker: #143c50;
  --ifm-color-primary-darkest: #143c50;
  --ifm-color-primary-light: #0070e0;
  --ifm-color-primary-lighter: #0075eb;
  --ifm-color-primary-lightest: #eaf2f6;
  --ifm-menu-color-active: var(--ifm-navbar-link-active-color);
  --docusaurus-highlighted-code-line-bg: rgba(148, 148, 148, 0.3);
  --ifm-font-size-base: 1rem;
  --ifm-hr-height: 0.1em;
  --ifm-navbar-padding-vertical: 1.5rem;
  --ifm-navbar-height: calc(
    3.25rem + calc(var(--ifm-navbar-padding-vertical) * 2)
  );
  --search-local-modal-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  --search-local-modal-background: white;
  --search-local-muted-color: #808080;
  --search-local-highlight-color: #25607f;
  --ifm-link-color: #4289ad;
  --ifm-link-hover-color: #5897b8;
  --ifm-card-background-color: #000;
  --ifm-code-background: var(--ifm-background-color);
}

.theme-code-block {
  box-shadow: none !important;
  border: 1px solid var(--ifm-color-emphasis-200);
  max-height: 600px;
  overflow-y: auto;
}

.prism-code {
  background-color: #fafafa !important;
  background-color: var(--ifm-code-background) !important;
  border-radius: 0;
}

.theme-code-block:has(+ .card) {
  margin-bottom: 0;
  border-bottom-width: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.theme-code-block + .card {
  border-radius: 0 0 2px 2px;
  border-top-width: 0;
}

.theme-code-block:has(+ .theme-code-block) {
  margin-bottom: var(--ifm-leading);
}

.card {
  position: relative;
  padding: 2rem 3rem;
  border-radius: 2px;
  margin-bottom: var(--ifm-leading);
  box-shadow: none !important;
  border: 1px solid var(--ifm-color-emphasis-200);
  max-height: 600px;
  overflow-y: auto;
}

.card.padding-0 {
    padding: 0;
  }

.card table {
    border-collapse: inherit;
  }

.card table thead tr {
        border: medium none currentcolor;
        border: initial;
      }

.card-image {
  text-align: center;
  padding: 24px;
}

table th,
table td {
  border: none;
}

.card-guidelines {
  position: relative;
  padding: 1rem;
  border-radius: 2px;
  margin-bottom: var(--ifm-leading);
  box-shadow: none !important;
  border: 1px solid var(--ifm-color-emphasis-200);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-guidelines.padding-0 {
    padding: 0;
  }

.token-table {
  table-layout: fixed;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.token-table th {
    font-size: small;
    text-align: left;
  }

.token-table tr {
    display: flex;
    flex: 2 1 auto;
  }

.token-table td {
    font-size: small;
    word-wrap: anywhere;
  }

.token-table tbody {
    width: 100%;
  }

.custom-link {
  all: unset;
}

article ul {
  padding-left: 1.5rem;
}

.card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16 / 9;
}

.chapter-end {
  margin-bottom: 1.1rem;
}

.markdown li + li {
  margin-top: 0;
  margin-top: initial;
}

p a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.badge {
  padding: 0.4rem 0.5rem;
}

.navbar__logo {
  height: 2.6rem;
}

.footer--dark {
  --ifm-footer-background-color: #b90835;
  --ifm-footer-link-hover-color: #f2f2f2;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tabs {
  border-bottom: 1px solid var(--ifm-color-emphasis-200);
}

.tabs .tabs__item {
    border-radius: 0;
    padding: 0.5rem 1.25rem;
    font-weight: 400;
    color: var(--ifm-font-color-base);
  }

.tabs .tabs__item:hover {
      background-color: transparent;
    }

.tabs .tabs__item.tabs__item--active {
      font-weight: 500;
      color: var(--ifm-font-color-base);
      border-bottom-color: #00478f;
      border-bottom-color: var(--ifm-color-primary-darkest);
    }

.pagination-nav__link {
  border-radius: 0;
}

[class*='cardContainer'] {
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid black !important;
  transition:
    transform 250ms ease-in-out, background-color 250ms ease-in-out;
}

[class*='cardContainer']:hover {
    background-color: #e6e6e6;
  }

nav.menu {
  padding: 0.5rem 0 0.5rem 0.5rem;
}

.nodeLabel,
.edgeLabel {
  font-size: 14px;
  font-family: "'Inter'", sans-serif;
}

.primary rect {
  fill: #0057ad !important;
  fill: var(--ifm-color-primary-darker) !important;
  stroke-width: 0 !important;
  background-color: black !important;
}

.primary .nodeLabel {
  color: var(--ifm-font-color-base) !important;
}

.edgeLabel {
  background-color: var(--ifm-font-color-base) !important;
}

.node rect {
  fill: var(--ifm-background-color) !important;
  stroke: #0057ad !important;
  stroke: var(--ifm-color-primary-darker) !important;
  stroke-width: 2 !important;
}

.primary.node rect {
  fill: #0057ad !important;
  fill: var(--ifm-color-primary-darker) !important;
}

.theme-doc-breadcrumbs {
  margin-bottom: 1.5rem;
}

.breadcrumbs__item--active .breadcrumbs__link {
  background: none;
}

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

mark {
  background-color: #eaf2f6;
}

.navbar__search-input {
  border-radius: 0;
}

.component-header {
  margin-bottom: 32px;
  margin-top: -20px;
}

[class^='searchBar_'] [class^='dropdownMenu_'],
[class^='searchBar_'] [class^='dropdownMenu_'] [class^='suggestion_'],
[class^='searchQueryInput_'] {
  border-radius: 0 !important;
}

.changelog header {
    padding-bottom: 1.5rem;
  }

.changelog h2,.changelog h3 {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--ifm-color-emphasis-200);
  }

.changelog ul {
    padding-bottom: 2rem;
  }

.friendlyName {
  align-self: center;
  flex: 1 0 0% !important;
}

@media (min-width: 1620px) {
  .padding-top--md {
    padding-top: 3rem !important;
  }
}

@media (max-width: 1200px) {
  .friendlyName {
    flex: 0 0 100% !important;
  }
}

/* stylelint-disable-next-line media-feature-range-notation */
@media (max-width: 996px) {
  .navbar__items {
    gap: 1.5rem;
  }

    .navbar__items .navbar__toggle {
      margin: 0;
    }

    .navbar__items [class^='navbarSearchContainer_'] {
      position: relative;
    }

  .component-header .headerLink {
    width: auto;
    width: initial;
  }
}

.navbar--github-link {
  width: 32px;
  height: 32px;
  padding: 6px;
  margin-right: 20px;
  margin-left: 6px;
  border-radius: 50%;
  transition: background var(--ifm-transition-fast);
}

.navbar--github-link:hover {
  background: var(--ifm-color-emphasis-200);
}

.navbar--github-link::before {
  content: '';
  height: 100%;
  display: block;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E")
    no-repeat;
}

html[data-theme='dark'] .navbar--github-link::before {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E")
    no-repeat;
}

.no-margin-children {
  margin-bottom: 1rem;
}

.no-margin-children p {
    margin-bottom: 0;
    white-space: wrap;
  }

/* ---- Table for language page --- */

.table-cell-green {
  background-color: #d5f2d9; /* signal-green-20 */
  padding: 8px;
}

.table-cell-red {
  background-color: #ffdfdf; /* signal-red-20 */
  padding: 8px;
}

table {
  border-collapse: collapse;
}

/* Green header */
.table-header-green {
  background-color: #d5f2d9; /* signal-green-20 */
  padding: 10px;
  text-align: left;
}

/* Red header */
.table-header-red {
  background-color: #ffdfdf; /* signal-red-20 */
  padding: 10px;
  text-align: left;
}

code {
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  border: 0.1rem solid var(--docusaurus-highlighted-code-line-bg);
}

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

code.lowlight {
  background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
  background: initial;
  border: medium none currentcolor;
  border: initial;
}

pre code.hljs {
  border: none;
  display: block;
  overflow-x: auto;
  padding: 1em;
}

code.hljs {
  padding: 3px 5px;
}

/*!
  Theme: GitHub
  Description: Light theme as seen on github.com
  Author: github.com
  Maintainer: @Hirse
  Updated: 2021-05-15

  Outdated base version: https://github.com/primer/github-syntax-light
  Current colors taken from GitHub's CSS
*/
.hljs {
  color: #24292e;
  background: #fff;
}

.hljs-doctag,
.hljs-keyword,
.hljs-meta .hljs-keyword,
.hljs-template-tag,
.hljs-template-variable,
.hljs-type,
.hljs-variable.language_ {
  /* prettylights-syntax-keyword */
  color: #d73a49;
}

.hljs-title,
.hljs-title.class_,
.hljs-title.class_.inherited__,
.hljs-title.function_ {
  /* prettylights-syntax-entity */
  color: #6f42c1;
}

.hljs-attr,
.hljs-attribute,
.hljs-literal,
.hljs-meta,
.hljs-number,
.hljs-operator,
.hljs-variable,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-selector-id {
  /* prettylights-syntax-constant */
  color: #005cc5;
}

.hljs-regexp,
.hljs-string,
.hljs-meta .hljs-string {
  /* prettylights-syntax-string */
  color: #032f62;
}

.hljs-built_in,
.hljs-symbol {
  /* prettylights-syntax-variable */
  color: #e36209;
}

.hljs-comment,
.hljs-code,
.hljs-formula {
  /* prettylights-syntax-comment */
  color: #6a737d;
}

.hljs-name,
.hljs-quote,
.hljs-selector-tag,
.hljs-selector-pseudo {
  /* prettylights-syntax-entity-tag */
  color: #22863a;
}

.hljs-subst {
  /* prettylights-syntax-storage-modifier-import */
  color: #24292e;
}

.hljs-section {
  /* prettylights-syntax-markup-heading */
  color: #005cc5;
  font-weight: bold;
}

.hljs-bullet {
  /* prettylights-syntax-markup-list */
  color: #735c0f;
}

.hljs-emphasis {
  /* prettylights-syntax-markup-italic */
  color: #24292e;
  font-style: italic;
}

.hljs-strong {
  /* prettylights-syntax-markup-bold */
  color: #24292e;
  font-weight: bold;
}

.hljs-addition {
  /* prettylights-syntax-markup-inserted */
  color: #22863a;
  background-color: #f0fff4;
}

.hljs-deletion {
  /* prettylights-syntax-markup-deleted */
  color: #b31d28;
  background-color: #ffeef0;
}

/* .hljs-char.escape_,
.hljs-link,
.hljs-params,
.hljs-property,
.hljs-punctuation,
.hljs-tag {
  /* purposely ignored 
} */

[data-theme='dark'] pre code.hljs {
    display: block;
    overflow-x: auto;
    padding: 1em;
  }

[data-theme='dark'] code.hljs {
    padding: 3px 5px;
  }

/*!
    Theme: GitHub Dark
    Description: Dark theme as seen on github.com
    Author: github.com
    Maintainer: @Hirse
    Updated: 2021-05-15

    Outdated base version: https://github.com/primer/github-syntax-dark
    Current colors taken from GitHub's CSS
  */

[data-theme='dark'] .hljs {
    color: #c9d1d9;
    background: #0d1117;
  }

[data-theme='dark'] .hljs-doctag,[data-theme='dark'] .hljs-keyword,[data-theme='dark'] .hljs-meta .hljs-keyword,[data-theme='dark'] .hljs-template-tag,[data-theme='dark'] .hljs-template-variable,[data-theme='dark'] .hljs-type,[data-theme='dark'] .hljs-variable.language_ {
    /* prettylights-syntax-keyword */
    color: #ff7b72;
  }

[data-theme='dark'] .hljs-title,[data-theme='dark'] .hljs-title.class_,[data-theme='dark'] .hljs-title.class_.inherited__,[data-theme='dark'] .hljs-title.function_ {
    /* prettylights-syntax-entity */
    color: #d2a8ff;
  }

[data-theme='dark'] .hljs-attr,[data-theme='dark'] .hljs-attribute,[data-theme='dark'] .hljs-literal,[data-theme='dark'] .hljs-meta,[data-theme='dark'] .hljs-number,[data-theme='dark'] .hljs-operator,[data-theme='dark'] .hljs-variable,[data-theme='dark'] .hljs-selector-attr,[data-theme='dark'] .hljs-selector-class,[data-theme='dark'] .hljs-selector-id {
    /* prettylights-syntax-constant */
    color: #79c0ff;
  }

[data-theme='dark'] .hljs-regexp,[data-theme='dark'] .hljs-string,[data-theme='dark'] .hljs-meta .hljs-string {
    /* prettylights-syntax-string */
    color: #a5d6ff;
  }

[data-theme='dark'] .hljs-built_in,[data-theme='dark'] .hljs-symbol {
    /* prettylights-syntax-variable */
    color: #ffa657;
  }

[data-theme='dark'] .hljs-comment,[data-theme='dark'] .hljs-code,[data-theme='dark'] .hljs-formula {
    /* prettylights-syntax-comment */
    color: #8b949e;
  }

[data-theme='dark'] .hljs-name,[data-theme='dark'] .hljs-quote,[data-theme='dark'] .hljs-selector-tag,[data-theme='dark'] .hljs-selector-pseudo {
    /* prettylights-syntax-entity-tag */
    color: #7ee787;
  }

[data-theme='dark'] .hljs-subst {
    /* prettylights-syntax-storage-modifier-import */
    color: #c9d1d9;
  }

[data-theme='dark'] .hljs-section {
    /* prettylights-syntax-markup-heading */
    color: #1f6feb;
    font-weight: bold;
  }

[data-theme='dark'] .hljs-bullet {
    /* prettylights-syntax-markup-list */
    color: #f2cc60;
  }

[data-theme='dark'] .hljs-emphasis {
    /* prettylights-syntax-markup-italic */
    color: #c9d1d9;
    font-style: italic;
  }

[data-theme='dark'] .hljs-strong {
    /* prettylights-syntax-markup-bold */
    color: #c9d1d9;
    font-weight: bold;
  }

[data-theme='dark'] .hljs-addition {
    /* prettylights-syntax-markup-inserted */
    color: #aff5b4;
    background-color: #033a16;
  }

[data-theme='dark'] .hljs-deletion {
    /* prettylights-syntax-markup-deleted */
    color: #ffdcd7;
    background-color: #67060c;
  }

/* .hljs-char.escape_,
  .hljs-link,
  .hljs-params,
  .hljs-property,
  .hljs-punctuation,
  .hljs-tag {
    /* purposely ignored 

  } */

.button_XTm0 {
  padding: 0.685rem;
}

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

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

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

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

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

.form_Z3dD {
  display: flex;
  flex-direction: column;
  gap: 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.
 */

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

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

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

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


  .accordion_M8EQ  > div {
    --content-padding: 0.5rem 0 0.5rem 0;
  }

.propsGridTable_luj3 table,.propsGridTable_luj3 tbody,.propsGridTable_luj3 thead,.propsGridTable_luj3 tr {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: subgrid;
    text-align: left;
    font-size: 0.875rem;
  }

.propsGridTable_luj3 table {
    grid-template-columns: 2fr 2fr 1fr 3fr;
  }

@media (max-width: 995.98px) {

.propsGridTable_luj3 table {
      grid-template-columns: subgrid;
  }
    }

.propsGridTable_luj3 thead tr {
      border-bottom: var(--ifm-table-border-width) solid
        var(--ifm-table-border-color);
    }

@media (max-width: 995.98px) {

.propsGridTable_luj3 thead {
      display: none;
  }
    }

@media (min-width: 996.02px) {
      .propsGridTable_luj3 tbody tr:first-of-type {
        border-top: none;
      }
    }

@media (max-width: 995.98px) {
      .propsGridTable_luj3 tbody td:not(:last-of-type) {
        display: flex;
      }

      .propsGridTable_luj3 tbody td[data-title]::before {
        content: attr(data-title);
        display: inline-block;
        font-weight: 500;
        padding-right: 1rem;
        min-width: 65px;
      }
    }

.popover_gEf7 {
  background-color: var(--background);
  border: 1px solid var(--border);
  padding: 0.5rem;
  transition:
    transform 200ms, opacity 200ms;
}

.popover_gEf7 .arrow_kUCF svg {
    display: block;
    fill: var(--background);
    stroke: var(--border);
    stroke-width: 1px;
  }

.popover_gEf7[data-entering],.popover_gEf7[data-exiting] {
    transform: var(--origin);
    opacity: 0;
  }

.popover_gEf7[data-placement='top'] {
    --origin: translateY(8px);
  }

.popover_gEf7[data-placement='top']:has(.arrow_kUCF) {
      margin-bottom: 6px;
    }

.popover_gEf7[data-placement='bottom'] {
    --origin: translateY(-8px);
  }

.popover_gEf7[data-placement='bottom']:has(.arrow_kUCF) {
      margin-top: 6px;
    }

.popover_gEf7[data-placement='bottom'] .arrow_kUCF svg {
      transform: rotate(180deg);
    }

.popover_gEf7[data-placement='right'] {
    --origin: translateX(-8px);
  }

.popover_gEf7[data-placement='right']:has(.arrow_kUCF) {
      margin-left: 6px;
    }

.popover_gEf7[data-placement='right'] .arrow_kUCF svg {
      transform: rotate(90deg);
    }

.popover_gEf7[data-placement='left'] {
    --origin: translateX(8px);
  }

.popover_gEf7[data-placement='left']:has(.arrow_kUCF) {
      margin-right: 6px;
    }

.popover_gEf7[data-placement='left'] .arrow_kUCF svg {
      transform: rotate(-90deg);
    }

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

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

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

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

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

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

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

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

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

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

.announcementBar_mb4j {
  display: flex;
  align-items: center;
  height: auto;
  height: var(--docusaurus-announcement-bar-height);
  background-color: var(--ifm-color-white);
  color: var(--ifm-color-black);

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

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

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

.announcementBarPlaceholder_vyr4 {
  flex: 0 0 10px;
}

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

.announcementBarContent_xLdY {
  flex: 1 1 auto;
}

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

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

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

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

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

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

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

.toggleIcon_g3eP {
  display: none;
}

[data-theme-choice='system'] .systemToggleIcon_QzmC,
[data-theme-choice='light'] .lightToggleIcon_pyhR,
[data-theme-choice='dark'] .darkToggleIcon_wfgR {
  display: inline;
  display: initial;
}

.toggleButtonDisabled_aARS {
  cursor: not-allowed;
}

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

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

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

.themedComponent_mlkZ {
  display: none;
}

[data-theme='light'] .themedComponent--light_NVdE {
  display: inline;
  display: initial;
}

[data-theme='dark'] .themedComponent--dark_xIcU {
  display: inline;
  display: initial;
}

/*
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_NVdE {
  display: inline;
  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.
 */

:root {
  --docusaurus-collapse-button-bg: transparent;
  --docusaurus-collapse-button-bg-hover: rgba(0, 0, 0, 0.1);
}

[data-theme='dark']:root {
  --docusaurus-collapse-button-bg: rgba(255, 255, 255, 0.05);
  --docusaurus-collapse-button-bg-hover: rgba(255, 255, 255, 0.1);
}

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

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

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

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

.collapseSidebarButton_PEFL {
  display: none;
  margin: 0;
}

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

.iconExternalLink_nPIU {
  margin-left: 0.3rem;
}

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

.menuExternalLink_NmtK {
  align-items: center;
}

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

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

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

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

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

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

@media (min-width: 997px) {
  .sidebar_njMd {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: var(--ifm-navbar-height);
    width: var(--doc-sidebar-width);
  }

  .sidebarWithHideableNavbar_wUlq {
    padding-top: 0;
  }

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

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

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

.sidebarLogo_isFc {
  display: none;
}

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

@media (min-width: 997px) {
  .expandButton_TmdG {
    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_TmdG:hover,
  .expandButton_TmdG:focus {
    background-color: var(--docusaurus-collapse-button-bg-hover);
  }

  .expandButtonIcon_i1dp {
    transform: rotate(0);
  }

  [dir='rtl'] .expandButtonIcon_i1dp {
    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_YfHR {
  display: none;
}

@media (min-width: 997px) {
  .docSidebarContainer_YfHR {
    display: block;
    width: 300px;
    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_DPk8 {
    width: 30px;
    width: var(--doc-sidebar-hidden-width);
    cursor: pointer;
  }

  .sidebarViewport_aRkj {
    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_TBSr {
  display: flex;
  width: 100%;
}

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

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

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

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

.docsWrapper_hBAB {
  display: flex;
  flex: 1 0 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.
 */

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

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

.hash-link {
  opacity: 0;
  padding-left: 0.5rem;
  transition: opacity var(--ifm-transition-fast);
  -webkit-user-select: none;
     -moz-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.
 */

.dropdownNavbarItemMobile_J0Sd {
  cursor: pointer;
}

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

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

.searchBar_RVTs .dropdownMenu_qbY6 {
  left: auto !important;
  right: 0 !important;

  background: #f5f6f7;

  background: var(--search-local-modal-background, #f5f6f7);
  border-radius: 6px;
  box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.5),
    0 3px 8px 0 #555a64;
  box-shadow: var(
    --search-local-modal-shadow,
    inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.5),
    0 3px 8px 0 #555a64
  );
  margin-top: 8px;
  width: 560px;
  width: var(--search-local-modal-width, 560px);
  position: relative;

  padding: 12px;

  padding: var(--search-local-spacing, 12px);
}

.searchInput_YFbd:focus {
  outline: 2px solid var(--search-local-input-active-border-color, var(--ifm-color-primary));
  outline-offset: 0px;
}

@media not (max-width: 996px) {
  .searchBar_RVTs.searchBarLeft_MXDe .dropdownMenu_qbY6 {
    left: 0 !important;
    right: auto !important;
  }
}

@media (max-width: 576px) {
  .navbar__search-input:not(:focus) {
    width: 2rem;
  }

  .searchBar_RVTs .dropdownMenu_qbY6 {
    width: 340px;
    width: var(--search-local-modal-width-sm, 340px);
    max-width: calc(100vw - var(--ifm-navbar-padding-horizontal) * 2);
  }
}

html[data-theme="dark"] .searchBar_RVTs .dropdownMenu_qbY6 {
  background: var(--search-local-modal-background, var(--ifm-background-color));
  box-shadow: inset 1px 1px 0 0 #2c2e40,
    0 3px 8px 0 #000309;
  box-shadow: var(
    --search-local-modal-shadow,
    inset 1px 1px 0 0 #2c2e40,
    0 3px 8px 0 #000309
  );
}

.searchBar_RVTs .dropdownMenu_qbY6 .suggestion_fB_2 {
  cursor: pointer;
  background: #fff;
  background: var(--search-local-hit-background, #fff);
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 #d4d9e1;
  box-shadow: var(--search-local-hit-shadow, 0 1px 3px 0 #d4d9e1);
  padding: 0 12px;
  padding: 0 var(--search-local-spacing, 12px);
  width: 100%;

  align-items: center;
  color: #444950;
  color: var(--search-local-hit-color, #444950);
  display: flex;
  flex-direction: row;
  height: 56px;
  height: var(--search-local-hit-height, 56px);
}

html[data-theme="dark"] .dropdownMenu_qbY6 .suggestion_fB_2 {
  background: var(--search-local-hit-background, var(--ifm-color-emphasis-100));
  box-shadow: none;
  box-shadow: var(--search-local-hit-shadow, none);
  color: var(--search-local-hit-color, var(--ifm-font-color-base));
}

.searchBar_RVTs .dropdownMenu_qbY6 .suggestion_fB_2:not(:last-child) {
  margin-bottom: 4px;
}

.searchBar_RVTs .dropdownMenu_qbY6 .suggestion_fB_2.cursor_eG29 {
  background-color: var(
    --search-local-highlight-color,
    var(--ifm-color-primary)
  );
}

.hitTree_kk6K,
.hitIcon_a7Zy,
.hitPath_ieM4,
.noResultsIcon_EBY5,
.hitFooter_E9YW a {
  color: #969faf;
  color: var(--search-local-muted-color, #969faf);
}

html[data-theme="dark"] .hitTree_kk6K,
html[data-theme="dark"] .hitIcon_a7Zy,
html[data-theme="dark"] .hitPath_ieM4,
html[data-theme="dark"] .noResultsIcon_EBY5 {
  color: var(--search-local-muted-color, var(--ifm-color-secondary-darkest));
}

.hitTree_kk6K {
  display: flex;
  align-items: center;
}

.hitTree_kk6K > svg {
  height: 56px;
  height: var(--search-local-hit-height, 56px);
  opacity: 0.5;
  stroke-width: 1.4;
  stroke-width: var(--search-local-icon-stroke-width, 1.4);
  width: 24px;
}

.hitIcon_a7Zy {
  stroke-width: 1.4;
  stroke-width: var(--search-local-icon-stroke-width, 1.4);

  height: 20px;
  width: 20px;
}

.hitWrapper_sAK8 {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  justify-content: center;
  margin: 0 8px;
  overflow-x: hidden;
  width: 80%;
}

.hitWrapper_sAK8 mark {
  background: none;
  color: var(--search-local-highlight-color, var(--ifm-color-primary));
}

.hitTitle_vyVt {
  font-size: 0.9em;
}

.hitPath_ieM4 {
  font-size: 0.75em;
}

.hitPath_ieM4,
.hitTitle_vyVt {
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.hitAction_NqkB {
  height: 20px;
  width: 20px;
}

.hideAction_vcyE > svg {
  display: none;
}

.noResults_l6Q3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  padding: var(--search-local-spacing, 12px) 0;
}

.noResultsIcon_EBY5 {
  margin-bottom: 12px;
  margin-bottom: var(--search-local-spacing, 12px);
}

.hitFooter_E9YW {
  text-align: center;
  margin-top: 12px;
  margin-top: var(--search-local-spacing, 12px);
  font-size: 0.85em;
}

.hitFooter_E9YW a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.cursor_eG29 .hideAction_vcyE > svg {
  display: block;
}

.suggestion_fB_2.cursor_eG29,
.suggestion_fB_2.cursor_eG29 mark,
.suggestion_fB_2.cursor_eG29 .hitTree_kk6K,
.suggestion_fB_2.cursor_eG29 .hitIcon_a7Zy,
.suggestion_fB_2.cursor_eG29 .hitPath_ieM4 {
  color: var(
    --search-local-hit-active-color,
    var(--ifm-color-white)
  ) !important;
}

.suggestion_fB_2.cursor_eG29 mark {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.searchBarContainer_NW3z {
  margin-left: 16px;
}

.searchBarContainer_NW3z .searchBarLoadingRing_YnHq {
  display: none;
  position: absolute;
  left: 10px;
  top: 6px;
}

.searchBarContainer_NW3z .searchClearButton_qk4g {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  background: none;
  border: none;
  line-height: 1rem;
}

.navbar__search {
  position: relative;
}

.searchIndexLoading_EJ1f .navbar__search-input {
  background-image: none;
}

.searchBarContainer_NW3z.searchIndexLoading_EJ1f .searchBarLoadingRing_YnHq {
  display: inline-block;
}

.searchHintContainer_Pkmr {
  position: absolute;
  right: 10px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  pointer-events: none;
  gap: 4px;
}

.searchHint_iIMx {
  color: var(--ifm-navbar-search-input-placeholder-color);
  background-color: var(--ifm-navbar-search-input-background-color);
  border: 1px solid var(--ifm-color-emphasis-500);
  box-shadow: inset 0 -1px 0 var(--ifm-color-emphasis-500);
}

@media (max-width: 576px) {
  .searchBarContainer_NW3z:not(.focused_OWtg) .searchClearButton_qk4g,
  .searchHintContainer_Pkmr {
    display: none;
  }
}

/* Manually make the search bar be LTR even if in RTL */
html[dir="rtl"] .searchHintContainer_Pkmr {
  right: auto;
  left: 10px;
}

html[dir="rtl"] .searchBarContainer_NW3z .searchClearButton_qk4g {
  right: auto;
  left: 0.8rem;
}

html[dir="rtl"] .searchBarContainer_NW3z .searchBarLoadingRing_YnHq {
  left: auto;
  right: 10px;
}

html[dir="rtl"] .navbar__search-input {
  padding: 0 2.25em 0 0.5em;
}

/* For autocomplete.js only. */
.input_FOTf {
}
.hint_URu1 {
}
.suggestions_X8XU {
}
.dataset_QiCy {
}
.empty_eITn {
}
/**/

/* https://loading.io/css/ */
.loadingRing_RJI3 {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  opacity: 0.5;
  opacity: var(--search-local-loading-icon-opacity, 0.5);
}

.loadingRing_RJI3 div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  margin: 2px;
  border: 2px solid
    var(--search-load-loading-icon-color, var(--ifm-navbar-search-input-color));
  border-radius: 50%;
  animation: loading-ring_FB5o 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(
      --search-load-loading-icon-color,
      var(--ifm-navbar-search-input-color)
    )
    transparent transparent transparent;
}

.loadingRing_RJI3 div:nth-child(1) {
  animation-delay: -0.45s;
}

.loadingRing_RJI3 div:nth-child(2) {
  animation-delay: -0.3s;
}

.loadingRing_RJI3 div:nth-child(3) {
  animation-delay: -0.15s;
}

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

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

/*
Workaround to avoid rendering empty search container
See https://github.com/facebook/docusaurus/pull/9385
*/
.navbarSearchContainer_Bca1:empty {
  display: none;
}

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

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

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

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

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

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

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

/*
Restore some Infima style that broke with CSS Cascade Layers
See https://github.com/facebook/docusaurus/pull/11142
 */
.navbar__items--right > :last-child {
  padding-right: 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_a6uf {
  white-space: pre-wrap;
  color: red;
}

.errorBoundaryFallback_VBag {
  color: red;
  padding: 0.55rem;
}

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

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

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

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

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

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

.footerLogoLink_BH7S:hover {
  opacity: 1;
}

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

html,
body {
  height: 100%;
}

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

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

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

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

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

.sidebarItemTitle_pO2u {
  font-size: var(--ifm-h3-font-size);
  font-weight: var(--ifm-font-weight-bold);
}

.sidebarItemList_Yudw {
  font-size: 0.9rem;
}

.sidebarItem__DBe {
  margin-top: 0.7rem;
}

.sidebarItemLink_mo7H {
  color: var(--ifm-font-color-base);
  display: block;
}

.sidebarItemLink_mo7H:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.sidebarItemLinkActive_I1ZP {
  color: var(--ifm-color-primary) !important;
}

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

.yearGroupHeading_rMGB {
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
}

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

.yearGroupHeading_QT03 {
  margin: 1rem 0.75rem 0.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.
 */

.title_f1Hy {
  font-size: 3rem;
}

/**
  Blog post title should be smaller on smaller devices
**/
@media (max-width: 576px) {
  .title_f1Hy {
    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_mt6G {
  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.
 */

[data-theme='dark'] .githubSvg_Uu4N {
  fill: var(--light);
}

[data-theme='light'] .githubSvg_Uu4N {
  fill: var(--dark);
}

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

[data-theme='dark'] .xSvg_y3PF {
  fill: var(--light);
}

[data-theme='light'] .xSvg_y3PF {
  fill: var(--dark);
}

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

[data-theme='dark'] .instagramSvg_YC40 {
  fill: var(--light);
}

[data-theme='light'] .instagramSvg_YC40 {
  fill: var(--dark);
}

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

[data-theme='dark'] .threadsSvg_PTXY {
  fill: var(--light);
}

[data-theme='light'] .threadsSvg_PTXY {
  fill: var(--dark);
}

/**
 * Copyright (c) Facebook, Inc. and 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-blog-social-icon-size: 1rem;
}

.authorSocials_rSDt {
  /*
  This ensures that container takes height even if there's no social link
  This keeps author names aligned even if only some have socials
   */
  height: 1rem;
  height: var(--docusaurus-blog-social-icon-size);

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 0;
  overflow: hidden;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.authorSocialLink_owbf {
  height: 1rem;
  height: var(--docusaurus-blog-social-icon-size);
  width: 1rem;
  width: var(--docusaurus-blog-social-icon-size);
  line-height: 0;
  margin-right: 0.4rem;
}

.authorSocialIcon_XYv3 {
  width: 1rem;
  width: var(--docusaurus-blog-social-icon-size);
  height: 1rem;
  height: var(--docusaurus-blog-social-icon-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.
 */

.authorImage_XqGP {
  --ifm-avatar-photo-size: 3.6rem;
}

.author-as-h1_n9oJ .authorImage_XqGP {
  --ifm-avatar-photo-size: 7rem;
}

.author-as-h2_gXvM .authorImage_XqGP {
  --ifm-avatar-photo-size: 5.4rem;
}

.authorDetails_lV9A {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
}

.authorName_yefp {
  font-size: 1.1rem;
  line-height: 1.1rem;
  display: flex;
  flex-direction: row;
}

.author-as-h1_n9oJ .authorName_yefp {
  font-size: 2.4rem;
  line-height: 2.4rem;
  display: inline;
}

.author-as-h2_gXvM .authorName_yefp {
  font-size: 1.4rem;
  line-height: 1.4rem;
  display: inline;
}

.authorTitle_nd0D {
  font-size: 0.8rem;
  line-height: 1rem;
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.author-as-h1_n9oJ .authorTitle_nd0D {
  font-size: 1.2rem;
  line-height: 1.6rem;
}

.author-as-h2_gXvM .authorTitle_nd0D {
  font-size: 1rem;
  line-height: 1.3rem;
}

.authorBlogPostCount_iiJ5 {
  background: var(--ifm-color-secondary);
  color: var(--ifm-color-black);
  font-size: 0.8rem;
  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.
 */

.authorCol_Hf19 {
  max-width: inherit !important;
}

.imageOnlyAuthorRow_pa_O {
  display: flex;
  flex-flow: row wrap;
}

.imageOnlyAuthorCol_G86a {
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}

.searchContextInput_mXoe,
.searchQueryInput_CFBF {
  border-radius: var(--ifm-global-radius);
  border: var(--ifm-global-border-width) solid
    var(--ifm-color-content-secondary);
  font-size: var(--ifm-font-size-base);
  padding: 0.5rem;
  width: 100%;
  background: var(--ifm-background-color);
  color: var(--ifm-font-color-base);
  margin-bottom: 1rem;
}

.searchResultItem_U687 {
  padding: 1rem 0px;
  border-bottom: 1px solid rgb(223, 227, 232);
}

.searchResultItem_U687 > h2 {
  margin-bottom: 0;
}

.searchResultItemPath_uIbk {
  color: var(--ifm-color-content-secondary);
  font-size: 0.8rem;
  margin: 0.5rem 0px 0px;
}

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

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

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

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

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


  .container--fullscreen {
    max-width: 100%;
    padding: 0;
  }

.textColumn {
    align-content: center;
  }

.text_ysZI {
  margin: 2rem 20% 25% var(--ifm-navbar-padding-horizontal);
}

@media (max-width: 996px) {

.text_ysZI {
    margin: 2rem var(--ifm-navbar-padding-horizontal);
}
  }

.code_BaOa {
  margin-top: 1.5rem;
  border-radius: 0;
}

.display1_tOb_ {
  font-size: 4rem;
  font-weight: 600;
}

.image_HbCB {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
  min-height: 80vh;
  margin: 1rem 0;
}

@media (max-width: 998px) {

.image_HbCB {
    width: 100%;
    min-height: 20vh;
}
  }

.lightImage_bVF2 {
  display: block;
}

.darkImage_Zjxi {
  display: none;
}

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

html[data-theme='dark'] .darkImage_Zjxi {
  display: block;
}
/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

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

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

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

.codeBlockStandalone_MEMb {
  padding: 0;
}

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

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

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

/**
 * Copyright (c) Facebook, Inc. and 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: rgb(72, 77, 91);
  background-color: var(--docusaurus-highlighted-code-line-bg);
  display: block;
  margin: 0 calc(-1 * var(--ifm-pre-padding));
  padding: 0 var(--ifm-pre-padding);
}

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

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

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

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

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

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

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

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

.copyButtonIcon_TrPX,
.copyButtonSuccessIcon_cVMy {
  position: absolute;
  top: 0;
  left: 0;
  fill: currentColor;
  opacity: inherit;
  width: inherit;
  height: inherit;
  transition: all var(--ifm-transition-fast) ease;
}

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

.copyButtonCopied_Vdqa .copyButtonIcon_TrPX {
  transform: scale(0.33);
  opacity: 0;
}

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

/* ---- Reference Values ---- */

/* Base Colors */

/* Typography */

/* Spacing */

/* z-index */

/* Sizing */ /* 0px */ /* 1px */ /* 2px */ /* 3px */ /* 4px */ /* 6px */ /* 8px */ /* 10px */ /* 12px */ /* 14px */ /* 15px */ /* 16px */ /* 20px */ /* 24px */ /* 28px */ /* 32px */ /* 40px */ /* 44px */ /* 48px */

/* Transitions */

/* Breakpoints */

/* ---- Semantic values ---- */

/* Background */

/* Layer 01 */

/* Layer 02 */

/* Layer Accent 01 */

/* Layer Accent 02 */

/* Brand */

/* Border */

/* Field 01 */

/* Field 02 */

/* Field */

/* Icon */

/* Link */

/* Support */

/* Text */

/* Button */

/* Badge */

/* Calendar */

/* Logo */

/* States */

/* Menu */

/* Skeleton */

.baseLayout_zbio {
  --sideBarWidth: 230px;
  --headerHeight: 69px;
}

@media (min-width: 1024px) {

.baseLayout_zbio {
    --headerHeight: 85px;
}
  }

.mainContent_gC2_ {
  display: flex;
  flex-direction: row;
}

.header_uiom {
  position: sticky;
  top: 0;
  font-family: "Inter", sans-serif;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid light-dark(#bfbfbf, #383838);
  background-color: light-dark(#ffffff, #171717);
}

.header_uiom.headerExternal_ARwr {
    padding: 1rem;
  }

@media (min-width: 1024px) {

.header_uiom.headerExternal_ARwr {
      padding: 1.25rem 1rem;
      z-index: 3;
  }
    }

@media (min-width: 1024px) {

.header_uiom {
    padding: 1.25rem 1rem;
    z-index: calc(1 + 10);
}
  }

.headerContent_jYo4 {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 1rem;
}

.headerContent_jYo4  > svg {
    display: none;
  }

@media (min-width: 1024px) {

.headerContent_jYo4 {
    gap: 2rem;
}

    .headerContent_jYo4  > svg {
      display: inline;
      display: initial;
    }
  }

.logo_gBzW {
  display: none;
  max-height: 40px;
}

@media (min-width: 1024px) {

.logo_gBzW {
    display: flex;
}
  }

.headerItems_lrOS {
  max-height: 40px;
  display: flex;
  flex-direction: row;
}

.toggleButton_fPrO {
  display: block;
}

@media (min-width: 1024px) {

.toggleButton_fPrO {
    display: none !important;
}
  }

.sidebar_QHDx {
  font-family: "Inter", sans-serif;
  background-color: light-dark(#ffffff, #171717);
  display: flex;
  flex-flow: column;
  flex: 0 0 var(--sideBarWidth);
  overflow-y: auto;
  transition: 200ms;
  position: fixed;
  top: 0;
  height: 100vh;
  width: var(--sideBarWidth);
  transform: translateX(calc(var(--sideBarWidth) * -1));
  z-index: calc(1);
  border-right: 1px solid light-dark(#bfbfbf, #383838);
}

@media (min-width: 1024px) {

.sidebar_QHDx {
    position: sticky;
    top: var(--headerHeight);
    align-self: start;
    height: calc(100vh - var(--headerHeight));
    transform: none;
    width: var(--sideBarWidth);
}
  }

.main_PWyq {
  font-family: "Inter", sans-serif;
  flex: 0 0 auto;
  width: 100%;
  min-height: 100%;
}

@media (min-width: 1024px) {

.main_PWyq {
    background-color: light-dark(#f2f2f2, #262626);
}
  }

.app_fqnG {
  background-clip: content-box;
  background-color: light-dark(#f2f2f2, #262626);
}

@media (min-width: 1024px) {

.app_fqnG {
    padding: 2rem;
}
  }

.sidebarOpened_UxQW {
  transform: translateX(0);
}

.sidebarHeader_tAp9 {
  padding: 1rem;
  margin-bottom: 1rem;
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  overflow: hidden;
}

.appName_o_3G {
  color: light-dark(#171717, #f2f2f2);
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
}

.collapseButton_Pyn1 {
  display: none !important;
  padding: calc(0.875rem - 1px) !important;
}

@media (min-width: 1024px) {

.collapseButton_Pyn1 {
    display: flex !important;
}
  }

.sidebarCollapsed_qhwX {
  --sideBarWidth: 68px;

  transition: all 0.2s ease-out;
}

.sidebarCollapsed_qhwX .sidebarHeader_tAp9 {
    justify-content: center;
  }

.userName_eZUA {
  color: light-dark(#171717, #f2f2f2);
  margin: 0;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: none;
}

@media (min-width: 1024px) {

.userName_eZUA {
    display: block;
}
  }

.abbr_ynpm {
  font-size: 0.875rem;
  font-weight: 500;
  align-self: center;
}

.userTitle_YOqq {
  color: light-dark(#171717, #f2f2f2);
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  display: none;
}

@media (min-width: 1024px) {

.userTitle_YOqq {
    display: block;
}
  }

.title_lFs8 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  display: block;
}

@media (min-width: 1024px) {

.title_lFs8 {
    display: none;
}
  }

.sidebarNav_dmzl {
  padding: 0.5rem;
  overflow-y: auto;
  margin-bottom: auto;
}

.list_HkzA {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1rem;
}

.listGroupTitle_S4qt {
  color: light-dark(#525252, #a6a6a6);
  font-size: 0.875rem;
  padding: 0.5rem;
  margin: 0;
}

.listItem_dsWx {
  display: flex;
  position: relative;
}

.listItemCollapsed__wa3 {
  justify-content: center;
}

.listLink_U9e2 {
  all: unset;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.5rem;
  color: light-dark(#171717, #f2f2f2);
  flex: 1 0 0%;
  transition: 100ms;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.listLink_U9e2 svg {
    stroke: light-dark(#171717, #f2f2f2);
  }

.listLink_U9e2[data-hovered],.listLink_U9e2:visited {
    background-color: light-dark(#e6e6e6, #212121);
    color: light-dark(#171717, #f2f2f2);
    cursor: pointer;
  }

.listLink_U9e2:visited svg {
      stroke: light-dark(#171717, #f2f2f2);
      min-width: 1.25rem;
    }

.listLink_U9e2[data-hovered] svg {
      stroke: light-dark(#171717, #f2f2f2);
      min-width: 1.25rem;
    }

.listLink_U9e2[data-pressed] {
    background-color: light-dark(#d9d9d9, #262626);
  }

.listLink_U9e2[data-focused] {
    box-shadow: none;
  }

.listLink_U9e2:focus-visible {
    outline: none;
  }

.listLink_U9e2[data-focus-visible] {
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
    outline: none;
  }

.listLinkCollapsed_WIQq {
  padding: 0.625rem;
  flex-grow: initial;
}

.active_ZbOm {
  background-color: light-dark(#f2f2f2, #262626);
  color: light-dark(#171717, #f2f2f2);
  border-left: 0.125rem solid light-dark(#143c50, #2e7ca5);
  font-weight: 600;
}

.linkText_kr67 {
  opacity: 1;
  display: block;
  transition: all 200ms;
  transition-behavior: allow-discrete;
}

.backdrop_qjXm {
  pointer-events: none;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(50, 50, 50, 0.5);
  opacity: 0;
  transition: all 100ms;
  transition-behavior: allow-discrete;
}

.backdrop_qjXm.backdropOpened_1RGb {
    pointer-events: all;
    opacity: 1;
    display: block;
    transition: all 200ms;
  }

@starting-style {
  .backdrop_qjXm.backdropOpened_1RGb {
    opacity: 0;
  }

  .linkText_kr67 {
    opacity: 0;
  }
}

.skipToContent_ihMq {
  position: absolute;
  top: 0;
  right: 100%;
  z-index: 1200;
}

.skipToContent_ihMq[data-focus-visible],.skipToContent_ihMq:focus-visible {
    right: auto;
    left: 5px;
    top: 5px;
  }

.navbar_xBj1 {
  position: fixed;
  bottom: 0;
  width: 100%;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid light-dark(#bfbfbf, #383838);
  background-color: light-dark(#ffffff, #171717);
}

.navbarList_w43r {
  flex: 1;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.navbarList_w43r > li {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
  }

@media (min-width: 1024px) {

.navbarList_w43r {
    max-width: 600px;
}
  }

.navbarItem_KTFr {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem;
  color: light-dark(#171717, #f2f2f2);
  -webkit-text-decoration: none;
  text-decoration: none;
  font-size: 0.75rem;
  line-height: 1.125rem;
  text-align: center;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

.navbarItem_KTFr[data-hovered],.navbarItem_KTFr[data-active] {
    background-color: light-dark(#143c50, #2e7ca5);
    color: light-dark(#ffffff, #ffffff);
    cursor: pointer;
  }

.navbarItem_KTFr svg {
    flex: 0 0 auto;
  }

@media (min-width: 1024px) {

.navbarItem_KTFr {
    gap: 0.5rem;
    flex-direction: row;
    padding: 1rem 0.5rem;
}
  }

@media (max-width: 479px) {

.headerExternal_ARwr {
    border: none;
}
  }

.headerContentExternal_mt3a {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.headerContentExternal_mt3a .logoExternalContainer_cr7y {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

@media (min-width: 1024px) {

.headerContentExternal_mt3a .logoExternal_qgJw {
      display: none;
  }
    }

.headerContentExternal_mt3a .logoExternalDesktop_LaWI {
    display: none;
  }

@media (min-width: 1024px) {

.headerContentExternal_mt3a .logoExternalDesktop_LaWI {
      display: block;
  }
    }

@media (min-width: 1024px) {

.navbarWrapper_wZYl {
    display: none;
}
  }

.combobox_kSJb {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
}

.combobox_kSJb[data-invalid] .inputField_oWSg {
    border: 0.125rem solid light-dark(#e62323, #e62323);
    box-shadow: none;
  }

.inputField_oWSg {
  box-sizing: border-box;
  width: -webkit-fill-available;
  padding-left: 1rem;
  border: none;
  border-bottom: 1px solid light-dark(#171717, #f2f2f2);
  border-radius: 0;
  font-size: 1rem;
  color: light-dark(#171717, #f2f2f2);
  height: 3rem;
  background-color: light-dark(#f2f2f2, #262626);
}

.inputField_oWSg.medium_ptka {
    height: 2.5rem;
  }

.inputField_oWSg[data-hovered],.inputField_oWSg:has( + [data-hovered]) {
    background-color: light-dark(#e6e6e6, #333333);
  }

.inputField_oWSg::-moz-placeholder {
    color: light-dark(#a6a6a6, #525252);
  }

.inputField_oWSg::placeholder {
    color: light-dark(#a6a6a6, #525252);
  }

.inputField_oWSg:focus-visible,.inputField_oWSg[data-focus-visible] {
    outline: none;
  }

.inputField_oWSg[data-focus-visible] {
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

@media (forced-colors: active) {

.inputField_oWSg[data-focus-visible] {
      outline: 3px solid highlight;
      outline-offset: 2px;
  }
    }

.inputField_oWSg[data-disabled] {
    background: light-dark(#f2f2f2, #262626);
    box-shadow: none;
    border-bottom: 0.063rem solid light-dark(#bfbfbf, #525252);
    cursor: not-allowed;
  }

.text_ngKo {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.wrap_JKDx {
  grid-area: Input;
  position: relative;
  gap: 0.5rem;
}

.button_yH32 {
  display: flex;
  align-items: center;
  border: none;
  padding: 0.875rem;
  color: light-dark(#171717, #f2f2f2);
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  height: 3rem;
  transition: transform 0.3s ease;
}

.button_yH32.medium_ptka {
    height: 2.5rem;
    padding: 0.625rem 0.875rem;
  }

.button_yH32[aria-expanded='true'] {
    transform: rotate(180deg);
  }

.button_yH32[data-disabled] {
    cursor: not-allowed;
    color: light-dark(#bfbfbf, #525252);
  }

.button_yH32[data-hovered] {
    cursor: pointer;
  }

.icon_C34F {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.group_RECg {
  display: inline-flex;
  flex-flow: row wrap;
}

.group_RECg[aria-orientation='vertical'] {
    flex-flow: column wrap;
  }

.toggleButton_vLWl[data-selected] {
    box-shadow: inset 0 -2px 0 0 light-dark(#143c50, #2e7ca5);
  }

@keyframes wave_h9Fk {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.skeleton_r1UF {
  background: light-dark(#f2f2f2, #262626);
  display: inline-block;
  position: relative;
  overflow: hidden;
  min-height: 1rem;
  width: 100%;
  height: 100%;
}

.skeleton_r1UF.circle_V2WO {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.skeleton_r1UF.wave_h9Fk::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  opacity: 0.1;
  background: linear-gradient(
    90deg,
    transparent,
    light-dark(#171717, #f2f2f2),
    transparent
  );
  animation: wave_h9Fk 2s infinite ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .skeleton_r1UF.wave_h9Fk::after {
    display: none;
    animation: none;
  }
}

.onLayer01_cFCw {
  background-color: light-dark(#d9d9d9, #383838);
}

.table_nvoM {
  border-spacing: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1.125rem;
}

.table_nvoM .tableHeader_BmsY {
    background-color: light-dark(#d9d9d9, #383838);
    color: light-dark(#171717, #f2f2f2);
  }

.table_nvoM .tableHeader_BmsY .column_NPIT {
      font-weight: 500;
      padding: 0.938rem 1rem;
      text-align: left;
    }

.table_nvoM .tableHeader_BmsY .column_NPIT[data-focused],.table_nvoM .tableHeader_BmsY .column_NPIT[data-hovered] {
        outline: 0.125rem solid light-dark(#171717, #f2f2f2);
      }

.table_nvoM .row_o3yW[data-focused] {
      outline: 0.125rem solid light-dark(#171717, #f2f2f2);
    }

.table_nvoM .row_o3yW[data-href] {
      cursor: pointer;
    }

.table_nvoM .row_o3yW[data-hovered] .cell_BlIu {
      background-color: light-dark(#e6e6e6, #333333);
    }

.table_nvoM .row_o3yW .cell_BlIu {
      background-color: light-dark(#f2f2f2, #262626);
      border-top: 1px light-dark(#bfbfbf, #383838) solid;
      color: light-dark(#171717, #f2f2f2);
      padding: calc(0.938rem - 1px) 1rem 0.938rem;
    }

.table_nvoM.narrow_Jh7A {
    font-size: 0.75rem;
    line-height: 1rem;
  }

.table_nvoM.narrow_Jh7A .column_NPIT {
      padding: 0.25rem 1rem;
    }

.table_nvoM.narrow_Jh7A .cell_BlIu {
      padding: calc(0.25rem - 1px) 1rem 0.25rem;
    }

.table_nvoM.medium_q_Iz:not(.narrow_Jh7A) .column_NPIT {
      padding: calc(0.75rem - 1px) 1rem;
    }

.table_nvoM.medium_q_Iz:not(.narrow_Jh7A) .cell_BlIu {
      padding: calc(0.75rem - 2px) 1rem calc(0.75rem - 1px);
    }

.table_nvoM.striped_wp0e .row_o3yW:nth-child(even) .cell_BlIu {
          background-color: light-dark(#d9d9d9, #383838);
        }

.table_nvoM.striped_wp0e .row_o3yW[data-hovered]:nth-child(even) .cell_BlIu {
            background-color: light-dark(#cccccc, #474747);
          }

.buttonGroup_mVqm {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
}

@media (max-width: 479px) {
  .buttonGroup_mVqm > * {
    width: 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.
 */

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

.wordWrapButtonEnabled_uzNF .wordWrapButtonIcon_b1P5 {
  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.
 */

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

.buttonGroup_M5ko 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_M5ko button:focus-visible,
.buttonGroup_M5ko button:hover {
  opacity: 1 !important;
}

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

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

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

.codeBlockTitle_OeMC + .codeBlockContent_QJqH .codeBlock_a8dz {
  border-top-left-radius: 0;
  border-top-right-radius: 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_lb9f {
  --docusaurus-details-summary-arrow-size: 0.38rem;
  --docusaurus-details-transition: transform 200ms ease;
  --docusaurus-details-decoration-color: grey;
}

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

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

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

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

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

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

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

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

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

.details_lb9f > summary > p:last-child {
  margin-bottom: 0;
}

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

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

.containsTaskList_kJf0 {
  list-style: none;
}

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

.img_DqHw {
  height: auto;
}

.infoBanner_SGaB {
  font-family: "Inter", sans-serif;
  color: light-dark(#171717, #f2f2f2);
  display: flex;
  font-size: 1rem;
  flex-direction: row;
  gap: 1rem;
  padding: 1rem;
  line-height: 1.3;
}

.infoBanner_SGaB.success_tp2_ {
    --border: light-dark(#008d3c, #008d3c);
    --bg: light-dark(#d5f2d9, light-dark(#f2f2f2, #262626));
  }

.infoBanner_SGaB.info_M4dU {
    --border: light-dark(#0066cc, #0066cc);
    --bg: light-dark(#eaf2f6, light-dark(#f2f2f2, #262626));
  }

.infoBanner_SGaB.important_LJBl {
    --border: light-dark(#fdb813, #fdb813);
    --bg: light-dark(#fff8e1, light-dark(#f2f2f2, #262626));
  }

.infoBanner_SGaB.warning_El6H {
    --border: light-dark(#e62323, #e62323);
    --bg: light-dark(#ffdfdf, light-dark(#f2f2f2, #262626));
  }

.infoBanner_SGaB {

  border-left: 3px solid var(--border);
  background-color: var(--bg);
}

.content_DhUR {
  display: flex;
  flex-direction: column;
  flex: 1 0 0%;
}

.heading_iaBZ {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.text_FCS8 {
  line-height: 1.375rem;
  white-space: pre-line;
  margin: 0;
}

.icon_F71c {
  color: var(--border);
  min-width: 20px;
}

.dismissable_tG9p {
  margin-top: -1rem;
  margin-right: -1rem;
  justify-self: flex-end;
}

.root_dwc1 {
  --gap: 0.75rem;
  --item-padding: 0;
  --content-padding: 0.5rem 0.5rem 0.5rem 1.85rem;
  --border: none;
  --accordion-background: transparent;
  --accordion-background-hover: transparent;
  --heading-color: light-dark(#171717, #f2f2f2);
}

.root_dwc1.contained_snuo {
    --gap: 0.25rem;
    --item-padding: 0.75rem;
    --content-padding: 1rem;
    --border-color: light-dark(#737373, #8c8c8c);
    --border: 1px solid var(--border-color);
    --accordion-background: light-dark(#f2f2f2, #262626);
    --accordion-background-hover: light-dark(#e6e6e6, #333333);
  }

.root_dwc1.contained_snuo .item_EcMn.success_djlE {
        --accordion-background: light-dark(#d5f2d9, light-dark(#f2f2f2, #262626));
        --accordion-background-hover: light-dark(#bae5c5, light-dark(#e6e6e6, #333333));
        --icon-color: light-dark(#008d3c, #008d3c);
        --border-color: light-dark(#008d3c, #008d3c);
      }

.root_dwc1.contained_snuo .item_EcMn.warning_tBhi {
        --accordion-background: light-dark(#ffdfdf, light-dark(#f2f2f2, #262626));
        --accordion-background-hover: light-dark(#fcc8c8, light-dark(#e6e6e6, #333333));
        --icon-color: light-dark(#e62323, #e62323);
        --border-color: light-dark(#e62323, #e62323);
      }

.root_dwc1.contained_snuo .item_EcMn[data-disabled] {
        --border-color: light-dark(#bfbfbf, #525252);
      }

.root_dwc1.uncontained_kQy1 .item_EcMn:last-of-type .content_eG9O {
      padding-bottom: 0.1px;
    }

.root_dwc1[data-disabled] {
    --heading-color: light-dark(#bfbfbf, #525252);
  }

.root_dwc1[data-disabled] .triggerButton_v7ly {
      background: transparent;
    }

.root_dwc1 {

  font-family: "Inter", sans-serif;
  color: light-dark(#171717, #f2f2f2);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.item_EcMn {
  background-color: var(--accordion-background);
  border: var(--border);
  border-color: var(--border-color);
}

.trigger_H4x6 {
  color: var(--heading-color);
  border: 0;
  cursor: pointer;
  margin: 0;
}

.trigger_H4x6 .triggerMainContent_lUNS {
    flex: 1 0 0;
    text-align: left;
  }

.trigger_H4x6 .triggerMainContent_lUNS .triggerText_v8dS {
      margin: 0;
      padding: 0;
      color: var(--heading-color);
    }

.trigger_H4x6 .triggerButton_v7ly {
    color: var(--heading-color);
    width: 100%;
    padding: var(--item-padding);
    align-items: flex-start;
    min-height: 0;
    min-height: initial;
  }

.trigger_H4x6 .triggerButton_v7ly .chevronIcon_mkt7 {
      transform: rotate(0deg);
      transition: transform 300ms ease;
      padding: 0.125rem 0;
    }

.trigger_H4x6 .triggerButton_v7ly .statusIcon_PzPO {
      color: var(--icon-color);
      padding: 0.125rem 0;
    }

.trigger_H4x6 .triggerButton_v7ly[aria-expanded='true'] .chevronIcon_mkt7 {
        transform: rotate(-180deg);
        transition: transform 300ms ease;
      }

.trigger_H4x6 .triggerButton_v7ly[data-hovered] {
      background-color: var(--accordion-background-hover);
    }

.panel_aCgP[aria-hidden='true'] {
  height: 0;
  transition: 250ms cubic-bezier(0.16, 1, 0.3, 1) allow-discrete;
  overflow-y: clip;
}

.panel_aCgP[aria-hidden='false'] {
  transition: 250ms cubic-bezier(0.16, 1, 0.3, 1) allow-discrete;
  height: auto;
  height: calc-size(-moz-min-content, size);
  height: calc-size(min-content, size);
}

.content_eG9O {
  height: auto;
  padding: var(--content-padding);
}

.hasBackground_K0Q9 {
  background-color: light-dark(#ffffff, #171717);
}

.header_KTZ_ {
  margin: 0;
}

.popover_qr_p {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  padding: 1rem;
  color: light-dark(#171717, #f2f2f2);
  background-color: light-dark(#f2f2f2, #262626);
  outline: none;
  transform: translate3d(0, 0, 0);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
  width: -moz-min-content;
  width: min-content;
  transition:
    transform 200ms, opacity 200ms;
}

.popover_qr_p .arrow_bhQK svg {
    display: block;
    fill: light-dark(#f2f2f2, #262626);
  }

.popover_qr_p[data-entering],.popover_qr_p[data-exiting] {
    transform: var(--origin);
    opacity: 0;
  }

.popover_qr_p[data-placement='top'] {
    margin-bottom: 8px;

    --origin: translateY(4px);
  }

.popover_qr_p[data-placement='bottom'] {
    margin-top: 8px;

    --origin: translateY(-4px);
  }

.popover_qr_p[data-placement='bottom'] .arrow_bhQK svg {
      transform: rotate(180deg);
    }

.popover_qr_p[data-placement='right'] {
    margin-left: 8px;

    --origin: translateX(-4px);
  }

.popover_qr_p[data-placement='right'] .arrow_bhQK svg {
      transform: rotate(90deg);
    }

.popover_qr_p[data-placement='left'] {
    margin-right: 8px;

    --origin: translateX(4px);
  }

.popover_qr_p[data-placement='left'] .arrow_bhQK svg {
      transform: rotate(-90deg);
    }

.button_RcXK {
  --border-width: 1px;

  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: calc(0.875rem - 1px)
    calc(1.5rem - 1px);
  padding: calc(0.875rem - var(--border-width))
    calc(1.5rem - var(--border-width));
  line-height: 1.25rem;
  background-color: light-dark(#143c50, #2e7ca5);
  border: solid 1px transparent;
  border: solid var(--border-width) transparent;
  color: light-dark(#ffffff, #ffffff);
  cursor: pointer;
  opacity: 1;
  outline: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.button_RcXK[data-focus-visible],.button_RcXK:focus-visible {
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

@media (forced-colors: active) {

.button_RcXK[data-focus-visible],.button_RcXK:focus-visible {
      outline: 3px solid highlight;
      outline-offset: 2px;
  }
    }

.button_RcXK[data-hovered] {
    background-color: light-dark(#25607f, #25607f);
  }

.button_RcXK[data-pressed] {
    background-color: light-dark(#2e7ca5, #143c50);
    outline: none;
  }

.button_RcXK[data-disabled] {
    color: light-dark(#bfbfbf, #525252);
    cursor: not-allowed;
    background-color: light-dark(#f2f2f2, #262626);
  }

.secondary_h5I_ {
  color: light-dark(#143c50, #f2f2f2);
  background-color: light-dark(#ffffff, #171717);
  border-color: light-dark(light-dark(#143c50, #2e7ca5), #f2f2f2);
  opacity: 1;
}

.secondary_h5I_[data-hovered] {
    background-color: light-dark(#e6e6e6, #212121);
  }

.secondary_h5I_[data-disabled] {
    color: light-dark(#bfbfbf, #525252);
    cursor: not-allowed;
    background-color: light-dark(#f2f2f2, #262626);
    border-color: light-dark(#bfbfbf, #525252);
  }

.secondary_h5I_[data-pressed] {
    background-color: light-dark(#d9d9d9, #262626);
    border-color: light-dark(#143c50, #f2f2f2);
  }

.tertiary_xq7E {
  color: light-dark(#143c50, #f2f2f2);
  background-color: transparent;
  opacity: 1;
}

.tertiary_xq7E[data-hovered] {
    background-color: light-dark(#e6e6e6, #212121);
  }

.tertiary_xq7E[data-disabled] {
    color: light-dark(#bfbfbf, #525252);
    cursor: not-allowed;
    background-color: white;
  }

.tertiary_xq7E[data-pressed] {
    background-color: light-dark(#d9d9d9, #262626);
  }

.iconBtn__8qK {
  background-color: transparent;
  padding: calc(0.875rem - var(--border-width));
  color: light-dark(#171717, #f2f2f2);
  display: flex;
  align-items: center;
}

.iconBtn__8qK[data-hovered] {
    background-color: light-dark(rgba(0 0 0 / 10%), rgba(255 255 255 / 10%));
  }

.iconBtn__8qK[data-disabled] {
    color: light-dark(#bfbfbf, #525252);
    cursor: not-allowed;
  }

.iconBtn__8qK[data-pressed] {
    background-color: light-dark(rgba(0 0 0 / 20%), rgba(255 255 255 / 20%));
  }

.iconBtn__8qK.medium_uqO9 {
    padding: calc(0.625rem - var(--border-width));
  }

.danger_iFp6 {
  color: #ffffff;
  background-color: light-dark(#e62323, #eb4e4e);
  opacity: 1;
}

.danger_iFp6[data-hovered] {
    color: #ffffff;
    background-color: light-dark(#bc1d1d, #e62323);
  }

.danger_iFp6[data-disabled] {
    color: light-dark(#bfbfbf, #525252);
    cursor: not-allowed;
    background-color: light-dark(#f2f2f2, #262626);
  }

.danger_iFp6[data-pressed] {
    background-color: light-dark(#7d1313, #a71919);
    outline: none;
  }

.iconRight_iW1e {
  flex-direction: row-reverse;
}

.fullwidth_WWNT {
  width: 100%;
}

.medium_uqO9 {
  padding: calc(0.625rem - var(--border-width))
    calc(1rem - var(--border-width));
}

@media (forced-colors: active) {
  .primary_JNNk {
    border-width: 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.
 */

.container_lyt7 {
  max-width: 100%;
}

.container_lyt7 > svg {
  max-width: 100%;
}

.h1_fQIH,
.h2_fBmz,
.h3_xOF5,
.h4_AF6p,
.h5_slY8,
.h6_loS0 {
  font-family: "Inter", sans-serif;
  color: light-dark(#171717, #f2f2f2);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
}

.h1_fQIH {
  /* 1.625 finns ej, hamnar mellan 06 och 07 */
  font-size: 1.625rem;
  line-height: 2rem;
}

.h1_fQIH[data-expressive] {
    font-size: 2.25rem;

    /* 3 finns ej, större än 10 */
    line-height: 3rem;
  }

.h2_fBmz {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.h2_fBmz[data-expressive] {
    font-weight: 500;
    font-size: 1.625rem;

    /* 2.125 finns ej, mellan 7 och 8 */
    line-height: 2.125rem;
  }

.h3_xOF5 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
}

.h3_xOF5[data-expressive] {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

.h4_AF6p[data-expressive] {
    font-weight: 600;
    font-size: 1.125rem;

    /* 1.625 finns ej, mellan 6 och 7 */
    line-height: 1.625rem;
  }

.h5_slY8[data-expressive] {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
  }

.checkboxInner_Nam1 {
  width: 1rem;
  height: 1rem;
  box-sizing: border-box;
  border: 1px solid light-dark(#171717, #f2f2f2);
  transition: all 200ms;
  align-items: center;
  justify-content: center;
  display: flex;
}

@media (forced-colors: active) {

.checkboxInner_Nam1 {
    outline: 3px solid highlight;
    outline-offset: -2px;
}
  }

.checkboxInner_Nam1 svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: light-dark(#ffffff, #ffffff);
    stroke-width: 2px;
    stroke-dasharray: 22;
    stroke-dashoffset: 66;
    transition: all 200ms;
  }

.checkbox_J2GB {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  gap: 0.5rem;
  align-items: center;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  color: light-dark(#171717, #f2f2f2);
  line-height: 1.25rem;
}

.checkbox_J2GB:not(:last-child) {
    margin-bottom: 0.5rem;
  }

.checkbox_J2GB[data-hovered] div {
    border-color: light-dark(#25607f, #25607f);
  }

.checkbox_J2GB[data-pressed] div {
    border-color: light-dark(#2e7ca5, #143c50);
  }

.checkbox_J2GB[data-focus-visible],.checkbox_J2GB:focus-visible {
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
    outline: none;
  }

.checkbox_J2GB[data-selected] div,.checkbox_J2GB[data-indeterminate] div {
    background: light-dark(#143c50, #2e7ca5);
    border-color: light-dark(#143c50, #2e7ca5);
  }

.checkbox_J2GB[data-invalid] div {
    border: 2px solid light-dark(#e62323, #e62323);
  }

.checkbox_J2GB[data-disabled] div {
    pointer-events: none;
    border: 1px solid light-dark(#bfbfbf, #525252);
  }

.checkbox_J2GB[data-selected]:hover div,.checkbox_J2GB[data-indeterminate]:hover div {
    background: light-dark(#25607f, #25607f);
    border-color: light-dark(#25607f, #25607f);
  }

.checkbox_J2GB[data-selected][data-pressed] div,.checkbox_J2GB[data-indeterminate][data-pressed] div {
    border-color: light-dark(#2e7ca5, #143c50);
    background: light-dark(#2e7ca5, #143c50);
  }

.checkbox_J2GB[data-selected] svg,.checkbox_J2GB[data-indeterminate] svg {
    stroke-dashoffset: 44;
  }

.checkbox_J2GB[data-indeterminate] svg {
    stroke: none;
    fill: light-dark(#ffffff, #ffffff);
  }

.checkbox_J2GB[data-invalid]:hover div {
    opacity: 0.5;
    border-color: light-dark(#e62323, #e62323);
  }

.checkbox_J2GB[data-invalid][data-pressed] div {
    border-color: light-dark(#e62323, #e62323);
  }

.checkbox_J2GB[data-disabled] {
    color: light-dark(#bfbfbf, #525252);
    cursor: not-allowed;
  }

.checkbox_J2GB[data-disabled][data-selected] div {
    pointer-events: none;
    border: none;
    background: light-dark(#f2f2f2, #262626);
  }

.checkbox_J2GB[data-disabled][data-indeterminate] div {
    pointer-events: none;
    border: none;
    background: light-dark(#f2f2f2, #262626);
  }

.checkboxGroup_iAq9 {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  min-width: 150px;
}

.checkboxGroup_iAq9[data-disabled] {
    color: light-dark(#bfbfbf, #525252);
  }

@media (max-width: 479px) {

.checkboxGroup_iAq9 .checkbox_J2GB {
      padding: 0.875rem 1rem;
      border: 1px solid light-dark(#171717, #f2f2f2);
      width: auto;
  }

      .checkboxGroup_iAq9 .checkbox_J2GB[data-hovered] {
        background-color: light-dark(#e6e6e6, #333333);
      }

      .checkboxGroup_iAq9 .checkbox_J2GB[data-invalid] {
        border: 2px solid light-dark(#e62323, #e62323);
      }

      .checkboxGroup_iAq9 .checkbox_J2GB[data-disabled] {
        pointer-events: none;
        border-color: light-dark(#bfbfbf, #525252);
      }
    }

.dateField_w_5V {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.inputField_RpLn {
  box-sizing: border-box;
  width: 100%;
  min-height: 3rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: light-dark(#f2f2f2, #262626);
  border-bottom: 1px solid light-dark(#171717, #f2f2f2);
  padding: 0 1rem;
}

.inputField_RpLn.medium_OzpD {
    min-height: 2.5rem;
  }

.inputField_RpLn[data-disabled] {
    border: none;
    color: light-dark(#bfbfbf, #525252);
    cursor: not-allowed;
  }

.inputField_RpLn:hover:not([data-disabled]) {
    background-color: light-dark(#e6e6e6, #333333);
  }

.inputField_RpLn:has([data-invalid]) {
    border: none;
    box-shadow: inset 0 0 0 3px light-dark(#e62323, #e62323);
  }

.textField_IarX {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr 1fr;
  grid-template-columns: 1fr auto;
  grid-template-rows: min-content min-content min-content min-content;
  grid-template-areas:
    'Label Count'
    'Desc Count'
    'Error Count'
    'Input Input'
    'BottomError BottomError';
  width: 100%;
  align-content: flex-end;
}

.textField_IarX  > [slot='description'] {
    grid-area: Desc;
  }

.textField_IarX  > .bottomError_XU77 {
    grid-area: BottomError;
  }

.textField_IarX[data-disabled] {
    color: light-dark(#bfbfbf, #525252);
  }

.textArea_M6yF {
  all: unset;
  font-family: "Inter", sans-serif;
  display: flex;
  grid-area: Input;
  border-bottom: 1px solid light-dark(#171717, #f2f2f2);
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 1rem 1.25rem;
  background-color: light-dark(#f2f2f2, #262626);
  box-sizing: border-box;
  word-wrap: break-word;
  width: 100%;
  color: light-dark(#171717, #f2f2f2);
}

@media (forced-colors: active) {

.textArea_M6yF {
    outline: 3px solid;
    outline-offset: 2px;
}
  }

.textArea_M6yF[data-hovered] {
    background-color: light-dark(#e6e6e6, #333333);
  }

.textArea_M6yF[data-focused],.textArea_M6yF[data-focus-visible] {
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

@media (forced-colors: active) {

.textArea_M6yF[data-focused],.textArea_M6yF[data-focus-visible] {
      border: 1px solid;
  }
    }

.textArea_M6yF[data-invalid] {
    border: none;
    box-shadow: inset 0 0 0 2px light-dark(#e62323, #e62323);
  }

.textArea_M6yF[data-disabled] {
    cursor: not-allowed;
    background-color: light-dark(#f2f2f2, #262626);
    border: none;
    border-bottom: 1px solid light-dark(#bfbfbf, #525252);
  }

.wrap_ljmz {
  position: relative;
  grid-area: Input;
}

.medium_jalb .input_g6A6 {
    min-height: 2.5rem;
  }

.input_g6A6 {
  all: unset;
  font-family: "Inter", sans-serif;
  grid-area: Input;
  color: light-dark(#171717, #f2f2f2);
  border-bottom: 1px solid light-dark(#171717, #f2f2f2);
  font-size: 1rem;
  padding: 0 1rem;
  line-height: 1;
  background-color: light-dark(#f2f2f2, #262626);
  border-radius: 0;
  box-sizing: border-box;
  width: 100%;
  min-height: 3rem;
}

.input_g6A6[data-hovered] {
    background-color: light-dark(#e6e6e6, #333333);
  }

.input_g6A6[data-hovered] + .passwordText_gBIs {
      background-color: light-dark(#e6e6e6, #333333);
    }

.input_g6A6[data-focused] {
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

@media (forced-colors: active) {

.input_g6A6[data-focused] {
      outline: 3px solid highlight;
      outline-offset: 2px;
  }
    }

.input_g6A6[data-invalid] {
    border: none;
    box-shadow: inset 0 0 0 2px light-dark(#e62323, #e62323);
  }

.input_g6A6[data-disabled] {
    cursor: not-allowed;
    background-color: light-dark(#f2f2f2, #262626);
    border: none;
    border-bottom: 1px solid light-dark(#bfbfbf, #525252);
  }

.passwordText_gBIs {
  background-color: light-dark(#f2f2f2, #262626);
  position: absolute;
  display: flex;
  align-items: center;
  top: 3px;
  z-index: 1;
  left: 1rem;
  height: calc(100% - 6px);
  width: calc(100% - 2rem);
}

.passwordButton_kacG {
  background: transparent !important;
  border-color: transparent !important;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  right: 0;
  top: 0;
  box-sizing: border-box;
  cursor: pointer;
  z-index: calc(1 + 10);
}

.link_RCbb {
  font-family: "Inter", sans-serif;
  color: light-dark(#29698C, #6CA3C0);
  -webkit-text-decoration: underline;
  text-decoration: underline;
  display: inline-flex;
  cursor: pointer;
  gap: 0.25rem;
  font-weight: 400;
  align-items: center;
}

.link_RCbb[data-hovered],.link_RCbb:hover {
    color: light-dark(#143c50, #94BCD1);
  }

.link_RCbb:visited {
    color: light-dark(#954b95, #b46ab4);
  }

.link_RCbb[data-disabled],.link_RCbb:disabled {
    cursor: not-allowed;
    color: light-dark(#bfbfbf, #525252);
  }

.link_RCbb[data-pressed]:not([data-disabled]):not(:disabled),.link_RCbb:active:not([data-disabled]):not(:disabled) {
    color: light-dark(#171717, #abcbdb);
  }

.link_RCbb[data-focused],.link_RCbb:focus {
    outline: none;
  }

.link_RCbb[data-focus-visible],.link_RCbb:focus-visible {
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

@media (forced-colors: active) {

.link_RCbb[data-focus-visible],.link_RCbb:focus-visible {
      outline: 3px solid highlight;
      outline-offset: 2px;
  }
    }

.icon_Bxuv {
  flex: 0 0 auto;
}

.standalone_Cg9F {
  display: inline-flex;
  gap: 0.5rem;
  -webkit-text-decoration: none;
  text-decoration: none;
  font-weight: 500;
}

.standalone_Cg9F[data-hovered]:not([data-disabled]):not(:disabled),.standalone_Cg9F:hover:not([data-disabled]):not(:disabled) {
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

.standalone_Cg9F[data-pressed]:not([data-disabled]):not(:disabled),.standalone_Cg9F:active:not([data-disabled]):not(:disabled) {
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

.stretched_pvQw::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    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.
 */

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

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

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

.tagRegular_sFm0 {
  border-radius: var(--ifm-global-radius);
  padding: 0.2rem 0.5rem 0.3rem;
  font-size: 90%;
}

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

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

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

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

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

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

.tag_Nnez {
  display: inline-block;
  margin: 0.5rem 0.5rem 0 1rem;
}

.container_ytPE {
  display: inline-flex;
}

.spinner_eR4D {
  color: light-dark(#171717, #f2f2f2);
  animation: rotating_m95R 1s linear infinite;
  stroke-linecap: square;
}

@media (prefers-reduced-motion) {

.spinner_eR4D {
    animation-duration: 2s;
}
  }

.dark_YbwO {
  color: light-dark(#ffffff, #ffffff);
}

@keyframes rotating_m95R {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

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

.tags_jXut {
  display: inline;
}

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

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

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

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

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

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

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

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

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

.tocCollapsibleButtonExpanded_MG3E::after {
  transform: none;
}

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

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

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

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

.tocCollapsibleContent_vkbj a {
  display: block;
}

.tocCollapsibleExpanded_sAul {
  transform: none;
}

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

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

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

.container_uCKZ {
  --columns: 12;
  --padding: 1rem;
  --gutter: 1rem;
  --max-width: none;
  --margin: 0;

  width: 100%;
  margin-right: 0;
  margin-right: var(--margin);
  margin-left: 0;
  margin-left: var(--margin);
  max-width: none;
  max-width: var(--max-width);
}

.container_uCKZ.removeMargins_rQ9U {
    --padding: 0;
  }

.container_uCKZ.contained_R9lB {
    --margin: auto;
    --max-width: 1368px;
  }

.flex_LQ20 {
  padding-right: var(--padding);
  padding-left: var(--padding);
  display: flex;
  flex-flow: row wrap;
  gap: var(--gutter);
}

.flex_LQ20 > * {
  display: flex;
  flex-flow: column wrap;
  flex: 0 0 auto;
  width: calc(
    (100% / var(--columns)) - var(--gutter) + (var(--gutter) / var(--columns))
  );
}

@media (min-width: 768px) {
  .container_uCKZ {
    --padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .container_uCKZ {
    --gutter: 1.5rem;
  }
}

.fluid_Y1tE {
  --max-width: unset;
  --margin: 0;
  --padding: 0;
}

.col_tmG6 {
  flex: 1 0 0px;
}

[class*='col-'] {
  flex: 0 0 auto;
}

.col-1_OVvW {
  width: calc((100% / var(--columns)) - (11 * var(--gutter) / var(--columns)));
}

.col-2_XfVI {
  width: calc(
    (2 * 100% / var(--columns)) - (10 * var(--gutter) / var(--columns))
  );
}

.col-3_KxqE,
.col-quarter_eUut {
  width: calc(
    (3 * 100% / var(--columns)) - (9 * var(--gutter) / var(--columns))
  );
}

.col-4_Ovxr,
.col-third_FUaF {
  width: calc(
    (4 * 100% / var(--columns)) - (8 * var(--gutter) / var(--columns))
  );
}

.col-5_uIyd {
  width: calc(
    (5 * 100% / var(--columns)) - (7 * var(--gutter) / var(--columns))
  );
}

.col-6_i8WR,
.col-half_GzSn {
  width: calc(
    (6 * 100% / var(--columns)) - (6 * var(--gutter) / var(--columns))
  );
}

.col-7_devX {
  width: calc(
    (7 * 100% / var(--columns)) - (5 * var(--gutter) / var(--columns))
  );
}

.col-8_tlAZ {
  width: calc(
    (8 * 100% / var(--columns)) - (4 * var(--gutter) / var(--columns))
  );
}

.col-9_Nbjm {
  width: calc(
    (9 * 100% / var(--columns)) - (3 * var(--gutter) / var(--columns))
  );
}

.col-10_rwyP {
  width: calc(
    (10 * 100% / var(--columns)) - (2 * var(--gutter) / var(--columns))
  );
}

.col-11_ShOw {
  width: calc(
    (11 * 100% / var(--columns)) - (1 * var(--gutter) / var(--columns))
  );
}

.col-12_eQeJ,
.col-full_K_XT {
  width: calc(
    (12 * 100% / var(--columns)) - (0 * var(--gutter) / var(--columns))
  );
}

.col-auto_nMhH {
  width: auto;
}

.col-grow_TBON {
  flex: 1 0 0px;
}

@media (max-width: 479px) {
  .col-xs-1_Bg_O {
    width: calc(
      (1 * 100% / var(--columns)) - (11 * var(--gutter) / var(--columns))
    );
  }

  .col-xs-2_UhmL {
    width: calc(
      (2 * 100% / var(--columns)) - (10 * var(--gutter) / var(--columns))
    );
  }

  .col-xs-3_mEvh,
  .col-xs-quarter_mtoI {
    width: calc(
      (3 * 100% / var(--columns)) - (9 * var(--gutter) / var(--columns))
    );
  }

  .col-xs-4_Uv5i,
  .col-xs-third_AHrM {
    width: calc(
      (4 * 100% / var(--columns)) - (8 * var(--gutter) / var(--columns))
    );
  }

  .col-xs-5_Gdnm {
    width: calc(
      (5 * 100% / var(--columns)) - (7 * var(--gutter) / var(--columns))
    );
  }

  .col-xs-6_z366,
  .col-xs-half_vH6m {
    width: calc(
      (6 * 100% / var(--columns)) - (6 * var(--gutter) / var(--columns))
    );
  }

  .col-xs-7_HNwO {
    width: calc(
      (7 * 100% / var(--columns)) - (5 * var(--gutter) / var(--columns))
    );
  }

  .col-xs-8_Vwih {
    width: calc(
      (8 * 100% / var(--columns)) - (4 * var(--gutter) / var(--columns))
    );
  }

  .col-xs-9_vfTc {
    width: calc(
      (9 * 100% / var(--columns)) - (3 * var(--gutter) / var(--columns))
    );
  }

  .col-xs-10_wJWt {
    width: calc(
      (10 * 100% / var(--columns)) - (2 * var(--gutter) / var(--columns))
    );
  }

  .col-xs-11_KTEA {
    width: calc(
      (11 * 100% / var(--columns)) - (1 * var(--gutter) / var(--columns))
    );
  }

  .col-xs-12_TaE_,
  .col-xs-full_enWi {
    width: calc(
      (12 * 100% / var(--columns)) - (0 * var(--gutter) / var(--columns))
    );
  }

  .col-xs-auto_G2jj {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xs-grow_kY1W {
    flex: 1 0 0px;
  }
}

@media (min-width: 480px) {
  .col-sm-1_YvIs {
    width: calc(
      (1 * 100% / var(--columns)) - (11 * var(--gutter) / var(--columns))
    );
  }

  .col-sm-2_NSCq {
    width: calc(
      (2 * 100% / var(--columns)) - (10 * var(--gutter) / var(--columns))
    );
  }

  .col-sm-3_cJ0H,
  .col-sm-quarter_WWBJ {
    width: calc(
      (3 * 100% / var(--columns)) - (9 * var(--gutter) / var(--columns))
    );
  }

  .col-sm-4_dtZx,
  .col-sm-third_g3dG {
    width: calc(
      (4 * 100% / var(--columns)) - (8 * var(--gutter) / var(--columns))
    );
  }

  .col-sm-5_C87q {
    width: calc(
      (5 * 100% / var(--columns)) - (7 * var(--gutter) / var(--columns))
    );
  }

  .col-sm-6_SkMd,
  .col-sm-half_QX4f {
    width: calc(
      (6 * 100% / var(--columns)) - (6 * var(--gutter) / var(--columns))
    );
  }

  .col-sm-7_wa6s {
    width: calc(
      (7 * 100% / var(--columns)) - (5 * var(--gutter) / var(--columns))
    );
  }

  .col-sm-8_zH5I {
    width: calc(
      (8 * 100% / var(--columns)) - (4 * var(--gutter) / var(--columns))
    );
  }

  .col-sm-9_ym4Z {
    width: calc(
      (9 * 100% / var(--columns)) - (3 * var(--gutter) / var(--columns))
    );
  }

  .col-sm-10_jE4j {
    width: calc(
      (10 * 100% / var(--columns)) - (2 * var(--gutter) / var(--columns))
    );
  }

  .col-sm-11_Va2g {
    width: calc(
      (11 * 100% / var(--columns)) - (1 * var(--gutter) / var(--columns))
    );
  }

  .col-sm-12_BgjD,
  .col-sm-full_Nb6O {
    width: calc(
      (12 * 100% / var(--columns)) - (0 * var(--gutter) / var(--columns))
    );
  }

  .col-sm-auto_Qj4m {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-grow_mAH5 {
    flex: 1 0 0px;
  }
}

@media (min-width: 768px) {
  .col-md-1_Zeqd {
    width: calc(
      (100% / var(--columns)) - (11 * var(--gutter) / var(--columns))
    );
  }

  .col-md-2_DR6K {
    width: calc(
      (2 * 100% / var(--columns)) - (10 * var(--gutter) / var(--columns))
    );
  }

  .col-md-3_OZK7,
  .col-md-quarter_AmxM {
    width: calc(
      (3 * 100% / var(--columns)) - (9 * var(--gutter) / var(--columns))
    );
  }

  .col-md-4_NxEu,
  .col-md-third_J4Ja {
    width: calc(
      (4 * 100% / var(--columns)) - (8 * var(--gutter) / var(--columns))
    );
  }

  .col-md-5_cBkY {
    width: calc(
      (5 * 100% / var(--columns)) - (7 * var(--gutter) / var(--columns))
    );
  }

  .col-md-6_it5t,
  .col-md-half_aEv_ {
    width: calc(
      (6 * 100% / var(--columns)) - (6 * var(--gutter) / var(--columns))
    );
  }

  .col-md-7__sAT {
    width: calc(
      (7 * 100% / var(--columns)) - (5 * var(--gutter) / var(--columns))
    );
  }

  .col-md-8_WfW7 {
    width: calc(
      (8 * 100% / var(--columns)) - (4 * var(--gutter) / var(--columns))
    );
  }

  .col-md-9_orzQ {
    width: calc(
      (9 * 100% / var(--columns)) - (3 * var(--gutter) / var(--columns))
    );
  }

  .col-md-10_wh5t {
    width: calc(
      (10 * 100% / var(--columns)) - (2 * var(--gutter) / var(--columns))
    );
  }

  .col-md-11_Wsgq {
    width: calc(
      (11 * 100% / var(--columns)) - (1 * var(--gutter) / var(--columns))
    );
  }

  .col-md-12_gZQg,
  .col-md-full_Ow4Z {
    width: calc(
      (12 * 100% / var(--columns)) - (0 * var(--gutter) / var(--columns))
    );
  }

  .col-md-auto_e67j {
    width: auto;
  }

  .col-md-grow_quHq {
    flex: 1 0 0px;
  }
}

@media (min-width: 1024px) {
  .col-lg-1_e1au {
    width: calc(
      (100% / var(--columns)) - (11 * var(--gutter) / var(--columns))
    );
  }

  .col-lg-2_fUsj {
    width: calc(
      (2 * 100% / var(--columns)) - (10 * var(--gutter) / var(--columns))
    );
  }

  .col-lg-3_EhhM,
  .col-lg-quarter_SI9I {
    width: calc(
      (3 * 100% / var(--columns)) - (9 * var(--gutter) / var(--columns))
    );
  }

  .col-lg-4_VuKz,
  .col-lg-third_Lf2A {
    width: calc(
      (4 * 100% / var(--columns)) - (8 * var(--gutter) / var(--columns))
    );
  }

  .col-lg-5_TF5r {
    width: calc(
      (5 * 100% / var(--columns)) - (7 * var(--gutter) / var(--columns))
    );
  }

  .col-lg-6_E93v,
  .col-lg-half_ZdoE {
    width: calc(
      (6 * 100% / var(--columns)) - (6 * var(--gutter) / var(--columns))
    );
  }

  .col-lg-7_L5CO {
    width: calc(
      (7 * 100% / var(--columns)) - (5 * var(--gutter) / var(--columns))
    );
  }

  .col-lg-8_ZBHN {
    width: calc(
      (8 * 100% / var(--columns)) - (4 * var(--gutter) / var(--columns))
    );
  }

  .col-lg-9_TbUu {
    width: calc(
      (9 * 100% / var(--columns)) - (3 * var(--gutter) / var(--columns))
    );
  }

  .col-lg-10_Tsqu {
    width: calc(
      (10 * 100% / var(--columns)) - (2 * var(--gutter) / var(--columns))
    );
  }

  .col-lg-11_Eg8x {
    width: calc(
      (11 * 100% / var(--columns)) - (1 * var(--gutter) / var(--columns))
    );
  }

  .col-lg-12_eNvi,
  .col-lg-full_SaRE {
    width: calc(
      (12 * 100% / var(--columns)) - (0 * var(--gutter) / var(--columns))
    );
  }

  .col-lg-auto_fNRO {
    width: auto;
  }

  .col-lg-grow_XTrt {
    flex: 1 0 0px;
  }
}

@media (min-width: 1280px) {
  .col-xl-1_BRna {
    width: calc(
      (100% / var(--columns)) - (11 * var(--gutter) / var(--columns))
    );
  }

  .col-xl-2_eGSK {
    width: calc(
      (2 * 100% / var(--columns)) - (10 * var(--gutter) / var(--columns))
    );
  }

  .col-xl-3_RrW2,
  .col-xl-quarter_V_Yw {
    width: calc(
      (3 * 100% / var(--columns)) - (9 * var(--gutter) / var(--columns))
    );
  }

  .col-xl-4_R4AZ,
  .col-xl-third_W3hT {
    width: calc(
      (4 * 100% / var(--columns)) - (8 * var(--gutter) / var(--columns))
    );
  }

  .col-xl-5_k7Gx {
    width: calc(
      (5 * 100% / var(--columns)) - (7 * var(--gutter) / var(--columns))
    );
  }

  .col-xl-6_xZyb,
  .col-xl-half_V9xE {
    width: calc(
      (6 * 100% / var(--columns)) - (6 * var(--gutter) / var(--columns))
    );
  }

  .col-xl-7_lJfg {
    width: calc(
      (7 * 100% / var(--columns)) - (5 * var(--gutter) / var(--columns))
    );
  }

  .col-xl-8_zErQ {
    width: calc(
      (8 * 100% / var(--columns)) - (4 * var(--gutter) / var(--columns))
    );
  }

  .col-xl-9_oYwQ {
    width: calc(
      (9 * 100% / var(--columns)) - (3 * var(--gutter) / var(--columns))
    );
  }

  .col-xl-10_cLTa {
    width: calc(
      (10 * 100% / var(--columns)) - (2 * var(--gutter) / var(--columns))
    );
  }

  .col-xl-11_xqWK {
    width: calc(
      (11 * 100% / var(--columns)) - (1 * var(--gutter) / var(--columns))
    );
  }

  .col-xl-12_Vrsf,
  .col-xl-full_vVSm {
    width: calc(
      (12 * 100% / var(--columns)) - (0 * var(--gutter) / var(--columns))
    );
  }

  .col-xl-auto_YBap {
    width: auto;
  }

  .col-xl-grow_YMBn {
    flex: 1 0 0px;
  }
}

.offset-1_ZQkJ {
  margin-left: calc((100% / var(--columns)) + (var(--gutter) / var(--columns)));
}

.offset-2_Reek {
  margin-left: calc(
    (2 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 2))
  );
}

.offset-3_SDkl,
.offset-quarter_ho5e {
  margin-left: calc(
    (3 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 3))
  );
}

.offset-4_L0XB,
.offset-third_dE8e {
  margin-left: calc(
    (4 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 4))
  );
}

.offset-5_Mz95 {
  margin-left: calc(
    (5 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 5))
  );
}

.offset-6_Zp68,
.offset-half_nGtc {
  margin-left: calc(
    (6 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 6))
  );
}

.offset-7_ZApX {
  margin-left: calc(
    (7 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 7))
  );
}

.offset-8_UZTZ {
  margin-left: calc(
    (8 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 8))
  );
}

.offset-9_FiKS {
  margin-left: calc(
    (9 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 9))
  );
}

.offset-10_hN9R {
  margin-left: calc(
    (10 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 10))
  );
}

.offset-11_cqgv {
  margin-left: calc(
    (11 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 11))
  );
}

.offset-auto_ZBrI {
  margin-left: auto;
}

@media (max-width: 479px) {
  .offset-xs-1__ZrT {
    margin-left: calc(
      (100% / var(--columns)) + (var(--gutter) / var(--columns))
    );
  }

  .offset-xs-2_WySR {
    margin-left: calc(
      (2 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 2))
    );
  }

  .offset-xs-3_u9Tb,
  .offset-xs-quarter_Pd1o {
    margin-left: calc(
      (3 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 3))
    );
  }

  .offset-xs-4_Bibg,
  .offset-xs-third_CeeW {
    margin-left: calc(
      (4 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 4))
    );
  }

  .offset-xs-5_OgED {
    margin-left: calc(
      (5 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 5))
    );
  }

  .offset-xs-6_ihSu,
  .offset-xs-half_Vrdz {
    margin-left: calc(
      (6 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 6))
    );
  }

  .offset-xs-7_TtZQ {
    margin-left: calc(
      (7 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 7))
    );
  }

  .offset-xs-8_Ftc2 {
    margin-left: calc(
      (8 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 8))
    );
  }

  .offset-xs-9_HptZ {
    margin-left: calc(
      (9 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 9))
    );
  }

  .offset-xs-10_umjb {
    margin-left: calc(
      (10 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 10))
    );
  }

  .offset-xs-11_Suix {
    margin-left: calc(
      (11 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 11))
    );
  }

  .offset-xs-auto_fxe8 {
    margin-left: auto;
  }
}

@media (min-width: 480px) {
  .offset-sm-1_knSM {
    margin-left: calc(
      (100% / var(--columns)) + (var(--gutter) / var(--columns))
    );
  }

  .offset-sm-2_zWxo {
    margin-left: calc(
      (2 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 2))
    );
  }

  .offset-sm-3_oqp6,
  .offset-sm-quarter_Nav1 {
    margin-left: calc(
      (3 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 3))
    );
  }

  .offset-sm-4_EvUX,
  .offset-sm-third_tGgh {
    margin-left: calc(
      (4 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 4))
    );
  }

  .offset-sm-5_raNi {
    margin-left: calc(
      (5 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 5))
    );
  }

  .offset-sm-6_KTA8,
  .offset-sm-half_ab81 {
    margin-left: calc(
      (6 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 6))
    );
  }

  .offset-sm-7_duQl {
    margin-left: calc(
      (7 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 7))
    );
  }

  .offset-sm-8_uRxp {
    margin-left: calc(
      (8 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 8))
    );
  }

  .offset-sm-9_AqYl {
    margin-left: calc(
      (9 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 9))
    );
  }

  .offset-sm-10_Wt6J {
    margin-left: calc(
      (10 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 10))
    );
  }

  .offset-sm-11_yAYq {
    margin-left: calc(
      (11 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 11))
    );
  }

  .offset-sm-auto_FAp6 {
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .offset-md-1_OpgB {
    margin-left: calc(
      (100% / var(--columns)) + (var(--gutter) / var(--columns))
    );
  }

  .offset-md-2_U24n {
    margin-left: calc(
      (2 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 2))
    );
  }

  .offset-md-3_YxnQ,
  .offset-md-quarter_y53T {
    margin-left: calc(
      (3 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 3))
    );
  }

  .offset-md-4_ZaOC,
  .offset-md-third_HZWP {
    margin-left: calc(
      (4 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 4))
    );
  }

  .offset-md-5_KVFL {
    margin-left: calc(
      (5 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 5))
    );
  }

  .offset-md-6_bZvL,
  .offset-md-half_yilA {
    margin-left: calc(
      (6 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 6))
    );
  }

  .offset-md-7_fs04 {
    margin-left: calc(
      (7 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 7))
    );
  }

  .offset-md-8_QmYF {
    margin-left: calc(
      (8 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 8))
    );
  }

  .offset-md-9_QoVc {
    margin-left: calc(
      (9 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 9))
    );
  }

  .offset-md-10_OrE0 {
    margin-left: calc(
      (10 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 10))
    );
  }

  .offset-md-11_reKz {
    margin-left: calc(
      (11 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 11))
    );
  }

  .offset-md-auto_ETdh {
    margin-left: auto;
  }
}

@media (min-width: 1024px) {
  .offset-lg-1_zi3j {
    margin-left: calc(
      (100% / var(--columns)) + (var(--gutter) / var(--columns))
    );
  }

  .offset-lg-2_YgjU {
    margin-left: calc(
      (2 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 2))
    );
  }

  .offset-lg-3_CHdw,
  .offset-lg-quarter_Chor {
    margin-left: calc(
      (3 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 3))
    );
  }

  .offset-lg-4_NOCF,
  .offset-lg-third_LTbL {
    margin-left: calc(
      (4 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 4))
    );
  }

  .offset-lg-5_dGzM {
    margin-left: calc(
      (5 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 5))
    );
  }

  .offset-lg-6_kXXi,
  .offset-lg-half_vFHN {
    margin-left: calc(
      (6 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 6))
    );
  }

  .offset-lg-7_jIth {
    margin-left: calc(
      (7 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 7))
    );
  }

  .offset-lg-8_T0Jx {
    margin-left: calc(
      (8 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 8))
    );
  }

  .offset-lg-9_mYmL {
    margin-left: calc(
      (9 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 9))
    );
  }

  .offset-lg-10_clJ6 {
    margin-left: calc(
      (10 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 10))
    );
  }

  .offset-lg-11_zFW2 {
    margin-left: calc(
      (11 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 11))
    );
  }

  .offset-lg-auto_W3q4 {
    margin-left: auto;
  }
}

@media (min-width: 1280px) {
  .offset-xl-1_pRWH {
    margin-left: calc(
      (100% / var(--columns)) + (var(--gutter) / var(--columns))
    );
  }

  .offset-xl-2_FX3q {
    margin-left: calc(
      (2 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 2))
    );
  }

  .offset-xl-3_P8xx,
  .offset-xl-quarter_RLTy {
    margin-left: calc(
      (3 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 3))
    );
  }

  .offset-xl-4_n7Vy,
  .offset-xl-third_w0fc {
    margin-left: calc(
      (4 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 4))
    );
  }

  .offset-xl-5_vC_8 {
    margin-left: calc(
      (5 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 5))
    );
  }

  .offset-xl-6_BvQ2,
  .offset-xl-half_HQ16 {
    margin-left: calc(
      (6 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 6))
    );
  }

  .offset-xl-7_m1bv {
    margin-left: calc(
      (7 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 7))
    );
  }

  .offset-xl-8_FJ1u {
    margin-left: calc(
      (8 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 8))
    );
  }

  .offset-xl-9_oAbC {
    margin-left: calc(
      (9 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 9))
    );
  }

  .offset-xl-10_wwaH {
    margin-left: calc(
      (10 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 10))
    );
  }

  .offset-xl-11_HpDF {
    margin-left: calc(
      (11 * 100% / var(--columns)) + (var(--gutter) / (var(--columns) / 11))
    );
  }

  .offset-xl-auto_Dv5P {
    margin-left: auto;
  }
}

.labelPopover_QNhJ {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.labelPopoverTrigger_iTpE {
  padding: 0 !important;
  margin-bottom: 0.125rem;
}

.labelPopoverTrigger_iTpE svg {
    stroke: light-dark(#0066cc, #0066cc);
  }

.labelBase_BRgo {
  color: light-dark(#171717, #f2f2f2);
  font-family: "Inter", sans-serif;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.labelBase_BRgo:has(~ [data-disabled]) {
  color: light-dark(#bfbfbf, #525252);
}

[data-disabled] > .labelBase_BRgo {
  color: light-dark(#bfbfbf, #525252);
}

[data-disabled] {
  color: light-dark(#bfbfbf, #525252);
}

.linkButton_DlJV {
  --border-width: 1px;

  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: calc(0.875rem - 1px)
    calc(1.5rem - 1px);
  padding: calc(0.875rem - var(--border-width))
    calc(1.5rem - var(--border-width));
  background-color: light-dark(#143c50, #2e7ca5);
  border: solid 1px transparent;
  border: solid var(--border-width) transparent;
  color: light-dark(#ffffff, #ffffff);
  cursor: pointer;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  -webkit-text-decoration: none;
  text-decoration: none;
  line-height: 1;
}

.linkButton_DlJV[data-hovered]:not(:disabled):not([data-disabled]),.linkButton_DlJV:hover:not(:disabled):not([data-disabled]) {
    -webkit-text-decoration: none;
    text-decoration: none;
    background-color: light-dark(#25607f, #25607f);
    color: light-dark(#ffffff, #ffffff);
  }

.linkButton_DlJV[data-pressed],.linkButton_DlJV:active {
    background-color: light-dark(#2e7ca5, #143c50);
    outline: none;
  }

.linkButton_DlJV[data-focus-visible],.linkButton_DlJV:focus-visible {
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

@media (forced-colors: active) {

.linkButton_DlJV[data-focus-visible],.linkButton_DlJV:focus-visible {
      outline: 3px solid highlight;
      outline-offset: 2px;
  }
    }

.linkButton_DlJV[data-disabled],.linkButton_DlJV:disabled {
    color: light-dark(#bfbfbf, #525252);
    cursor: not-allowed;
    background-color: light-dark(#f2f2f2, #262626);
  }

.secondary_aNB6 {
  color: light-dark(#143c50, #f2f2f2);
  background-color: light-dark(#ffffff, #171717);
  border-color: light-dark(light-dark(#143c50, #2e7ca5), #f2f2f2);
}

.secondary_aNB6 .icon_g3pu {
    color: light-dark(#143c50, #f2f2f2);
  }

.secondary_aNB6[data-hovered]:not(:disabled):not([data-disabled]),.secondary_aNB6:hover:not(:disabled):not([data-disabled]) {
    color: light-dark(#143c50, #f2f2f2);
    background-color: light-dark(#e6e6e6, #212121);
  }

.secondary_aNB6[data-disabled],.secondary_aNB6:disabled {
    border-color: light-dark(#bfbfbf, #525252);
  }

.secondary_aNB6:disabled .icon_g3pu {
      color: light-dark(#bfbfbf, #525252);
    }

.secondary_aNB6[data-disabled] .icon_g3pu {
      color: light-dark(#bfbfbf, #525252);
    }

.secondary_aNB6[data-pressed],.secondary_aNB6:active {
    background-color: light-dark(#d9d9d9, #262626);
  }

.tertiary_tl3f {
  color: light-dark(#143c50, #f2f2f2);
  background-color: transparent;
  opacity: 1;
}

.tertiary_tl3f[data-hovered]:not(:disabled):not([data-disabled]),.tertiary_tl3f:hover:not(:disabled):not([data-disabled]) {
    color: light-dark(#143c50, #f2f2f2);
    background-color: light-dark(#e6e6e6, #212121);
  }

.tertiary_tl3f[data-pressed],.tertiary_tl3f:active {
    background-color: light-dark(#d9d9d9, #262626);
  }

.danger_qkvT {
  color: #ffffff;
  background-color: light-dark(#e62323, #eb4e4e);
  opacity: 1;
}

.danger_qkvT[data-hovered]:not(:disabled):not([data-disabled]),.danger_qkvT:hover:not(:disabled):not([data-disabled]) {
    background-color: light-dark(#bc1d1d, #e62323);
  }

.danger_qkvT[data-pressed],.danger_qkvT:active {
    background-color: light-dark(#7d1313, #a71919);
    outline: none;
  }

.iconBtn_Ngss {
  background-color: transparent;
  padding: calc(0.875rem - var(--border-width));
  color: light-dark(#143c50, #f2f2f2);
  display: flex;
  align-items: center;
}

.iconBtn_Ngss[data-hovered]:not(:disabled):not([data-disabled]),.iconBtn_Ngss:hover:not(:disabled):not([data-disabled]) {
    background-color: light-dark(rgba(0 0 0 / 10%), rgba(255 255 255 / 10%));
  }

.iconBtn_Ngss[data-disabled],.iconBtn_Ngss:disabled {
    color: light-dark(#bfbfbf, #525252);
  }

.iconBtn_Ngss[data-pressed],.iconBtn_Ngss:active {
    background-color: light-dark(#d9d9d9, #262626);
  }

.iconBtn_Ngss.medium_St93 {
    padding: calc(0.625rem - var(--border-width));
  }

.iconLeft_r90N {
  flex-direction: row-reverse;
}

.fullwidth_yUSG {
  width: 100%;
}

.medium_St93 {
  padding: calc(0.625rem - var(--border-width))
    calc(1rem - var(--border-width));
}

@media (max-width: 479px) {
  .button_CzNs {
    width: 100%;
  }
}

.datePicker_haMa {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.inputField_luYV {
  box-sizing: border-box;
  width: 100%;
  height: 3rem;
  align-items: center;
  background-color: light-dark(#f2f2f2, #262626);
  border-bottom: 1px solid light-dark(#171717, #f2f2f2);
  padding-left: 1rem;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}

.inputField_luYV.medium_XPom {
    height: 2.5rem;
  }

.inputField_luYV[data-disabled] {
    cursor: not-allowed;
    border-color: light-dark(#bfbfbf, #525252);
  }

.inputField_luYV:focus-visible,.inputField_luYV[data-focus-visible] {
    outline: none;
  }

.inputField_luYV[data-focus-visible] {
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

.inputField_luYV[data-hovered]:not([data-disabled]) {
    background-color: light-dark(#e6e6e6, #333333);
  }

.inputField_luYV[data-invalid] {
    border: none;
    box-shadow: inset 0 0 0 3px light-dark(#e62323, #e62323);
  }

.inputField_luYV .calendarButton_dIzR {
    border: none;
    margin-left: auto;
    height: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    color: light-dark(#171717, #f2f2f2);
    background-color: light-dark(#f2f2f2, #262626);
    cursor: pointer;
  }

.inputField_luYV .calendarButton_dIzR.medium_XPom {
      height: 2.5rem;
    }

.inputField_luYV .calendarButton_dIzR.medium_XPom[data-invalid] {
        height: calc(2.5rem - 0.375rem);
      }

.inputField_luYV .calendarButton_dIzR[data-invalid] {
      border: none;
      height: calc(3rem - 0.375rem);
      margin-right: 3px;
    }

.inputField_luYV .calendarButton_dIzR[data-disabled] {
      cursor: not-allowed;
      color: light-dark(#bfbfbf, #525252);
      border-color: light-dark(#bfbfbf, #525252);
    }

.inputField_luYV .calendarButton_dIzR[data-hovered]:not([data-disabled]) {
      background-color: light-dark(#e6e6e6, #333333);
    }

.inputField_luYV .calendarButton_dIzR:focus-visible {
      outline: none;
      box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
    }

.inputField_luYV .calendarButton_dIzR[data-focus-visible] {
      outline: none;
      box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
    }

@media (forced-colors: active) {

.inputField_luYV .calendarButton_dIzR:focus-visible {
        outline: 3px solid highlight;
        outline-offset: 2px;
    }

.inputField_luYV .calendarButton_dIzR[data-focus-visible] {
        outline: 3px solid highlight;
        outline-offset: 2px;
    }
      }

.dialog_YZ_z {
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
}

.dropzone_bGZ8 {
  font-family: "Inter", sans-serif;
  color: light-dark(#171717, #f2f2f2);
  border: 1px dashed light-dark(#bfbfbf, #383838);
  padding: 1.5rem;
  text-align: center;
  background-color: light-dark(#ffffff, #171717);
}

.dropzone_bGZ8[data-drop-target] {
    background: light-dark(#e6e6e6, #212121);
    border: 1px solid light-dark(#171717, #f2f2f2);
  }

.modal_yuES {
  font-family: "Inter", sans-serif;
  position: fixed;
  max-width: 75%;
  min-width: 300px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: light-dark(#ffffff, #171717);
  color: light-dark(#171717, #f2f2f2);
  border: none;
  padding: 0;
  margin: auto;
}

.modal_yuES[data-entering] {
    animation: modal-zoom_PdC_ 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

@media (forced-colors: active) {

.modal_yuES {
    outline: 2px solid;
}
  }

.overlay_eZeP {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  background: rgba(45, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--visual-viewport-height);
}

.overlay_eZeP[data-entering] {
    animation: modal-fade_Dc6w 150ms;
  }

.overlay_eZeP[data-exiting] {
    animation: modal-fade_Dc6w 150ms reverse;
  }

.modalHeader_B1eE {
  background-color: light-dark(#f2f2f2, #262626);
  display: flex;
  justify-content: flex-end;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modalBody_FPgg {
  position: relative;
  padding: 1rem 2rem 2rem;
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@keyframes modal-fade_Dc6w {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modal-zoom_PdC_ {
  from {
    transform: scale(0.8);
  }

  to {
    transform: scale(1);
  }
}

@keyframes slideInEnd_Alfu {
  from {
    transform: translateX(calc(100% + 1rem));
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutEnd_O0VY {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(calc(100% + 1rem));
    opacity: 0;
  }
}

@keyframes slideInTop_NcfI {
  from {
    transform: translateY(calc(-100%));
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOutTop_Hd_W {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(calc(-100%));
    opacity: 0;
  }
}

.toastRegion_KbVp {
  position: fixed;
  left: 50%;
  top: calc(92px + 1rem);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: none;
  width: calc(100% - 2rem);
  z-index: 1100;
}

.toastRegion_KbVp:focus-visible {
    outline: none;
  }

@media (min-width: 768px) {

.toastRegion_KbVp {
    width: auto;
    width: initial;
    left: auto;
    left: initial;
    transform: none;
    transform: initial;
    top: calc(80px + 1rem);
    right: 1rem;
}
  }

.toast_gxso {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  color: light-dark(#171717, #f2f2f2);
  padding-left: calc(1rem - 3px);
  border-left: 3px solid transparent;
  width: calc(100% - 1rem);
  font-size: 0.875rem;
}

.toast_gxso[data-focus-visible],.toast_gxso:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

.toast_gxso.success_KyPa {
    --bg: light-dark(#d5f2d9, light-dark(#f2f2f2, #262626));
    --border: light-dark(#008d3c, #008d3c);

    background: light-dark(#d5f2d9, light-dark(#f2f2f2, #262626));

    background: var(--bg);
    border-left-color: light-dark(#008d3c, #008d3c);
    border-left-color: var(--border);
  }

.toast_gxso.info_RCx7 {
    --bg: light-dark(#eaf2f6, light-dark(#f2f2f2, #262626));
    --border: light-dark(#0066cc, #0066cc);

    background: light-dark(#eaf2f6, light-dark(#f2f2f2, #262626));

    background: var(--bg);
    border-left-color: light-dark(#0066cc, #0066cc);
    border-left-color: var(--border);
  }

.toast_gxso.important_YYqr {
    --border: light-dark(#fdb813, #fdb813);
    --bg: light-dark(#fff8e1, light-dark(#f2f2f2, #262626));

    background: light-dark(#fff8e1, light-dark(#f2f2f2, #262626));

    background: var(--bg);
    border-left-color: light-dark(#fdb813, #fdb813);
    border-left-color: var(--border);
  }

.toast_gxso.warning_Rmak {
    --border: light-dark(#e62323, #e62323);
    --bg: light-dark(#ffdfdf, light-dark(#f2f2f2, #262626));

    background: light-dark(#ffdfdf, light-dark(#f2f2f2, #262626));

    background: var(--bg);
    border-left-color: light-dark(#e62323, #e62323);
    border-left-color: var(--border);
  }

.toast_gxso .icon_ZuqY {
    color: var(--border);
    flex: 0 0 auto;
  }

@media (min-width: 768px) {

.toast_gxso {
    width: 18rem;
}
  }

.toastContent_LoSC {
  padding: 0.875rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.toastMessage_HVa6 {
  padding: 0.125rem 0 0;
  margin: 0;
  line-height: 1.2;
}

::view-transition-new(*):only-child {
  animation-name: slideInTop_NcfI;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-direction: normal;
  animation-fill-mode: both;
}

@media (min-width: 768px) {
  ::view-transition-new(*):only-child {
    animation-name: slideInEnd_Alfu;
  }
}

::view-transition-old(*):only-child {
  animation-name: slideOutTop_Hd_W;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-direction: normal;
  animation-fill-mode: both;
}

@media (min-width: 768px) {
  ::view-transition-old(*):only-child {
    animation-name: slideOutEnd_O0VY;
  }
}

.progressBar_fYul {
  display: grid;
  grid-gap: 0.5rem;
  gap: 0.5rem;
  grid-template-areas:
    'label value'
    'bar bar';
  grid-template-columns: 1fr auto;
}

.progressBar_fYul .label_qT2F {
    grid-area: label;
    margin: 0;
  }

.progressBar_fYul .value_KQQb {
    grid-area: value;
    margin: 0;
  }

.progressBar_fYul .bar_WK5A {
    background: light-dark(#d9d9d9, #383838);
    grid-area: bar;
    height: 0.25rem;
    overflow: hidden;
  }

.progressBar_fYul .bar_WK5A .fill_xgsq {
      background: #008d3c;
      height: 100%;
    }

.progressBar_fYul:not([aria-valuenow]) .fill_xgsq {
      will-change: transform;
      background: #008d3c;
      height: 100%;
      animation: 2s ease-in-out infinite indeterminate_xtlO;
    }

@keyframes indeterminate_xtlO {
  0% {
    transform: translate(-100%);
  }

  100% {
    transform: translate(200%);
  }
}

.badge_nGgv {
  font-family: "Inter", sans-serif;
  background-color: light-dark(#e62323, #eb4e4e);
  min-width: 0.5rem;
  min-height: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.625rem;
  color: light-dark(#ffffff, #ffffff);
}

.badge_nGgv.hasChildren_Zdhr {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.25rem;
    min-height: 1rem;
  }

.badgeContainer_X7uq {
  display: flex;
  position: relative;
}

.badgeContainer_X7uq .badge_nGgv {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    transform-origin: center left;
  }

.container_UZyi {
  display: inline-flex;
  flex-direction: column;
}

.calendar_Zofv {
  padding: 0.5rem;
}

.calendar_Zofv * {
    background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
    background: initial;
    color: inherit;
    padding: 0;
    padding: initial;
    border: medium none currentcolor;
    border: initial;
  }

.calendar_Zofv table {
    display: table;
    border-collapse: inherit;
  }

.calendar_Zofv thead tr,.calendar_Zofv tbody tr {
    background-color: transparent;
    background-color: initial;
  }

.calendar_Zofv th,.calendar_Zofv .day_OZ3K {
    text-align: center;
    min-width: 2.25rem;
    box-sizing: content-box;
    line-height: normal;
    line-height: initial;
  }

.calendar_Zofv th {
    font-weight: 500;
    padding: 0.625rem 0;
  }

.calendar_Zofv .day_OZ3K {
    padding: 0.5rem 0;
  }

.calendar_Zofv {

  background-color: light-dark(#f2f2f2, #262626);
  font-family: "Inter", sans-serif;
  display: inline-block;
  flex-direction: column;
  align-items: center;
  margin: auto;
  color: light-dark(#171717, #f2f2f2);
}

.calendar_Zofv [data-unavailable] {
    color: light-dark(#bfbfbf, #525252);
  }

.calendar_Zofv div:focus-visible,.calendar_Zofv div[data-focus-visible] {
    outline: 2px solid light-dark(#171717, #f2f2f2);
  }

@media (forced-colors: active) {

.calendar_Zofv div:focus-visible,.calendar_Zofv div[data-focus-visible] {
      outline: 3px solid activeText;
      outline-offset: 2px;
  }
    }

.calendar_Zofv[data-disabled='true'],.calendar_Zofv[data-disabled='true'] button {
    cursor: not-allowed;
    color: light-dark(#bfbfbf, #525252);
  }

.calendar_Zofv[data-invalid] {
    border: 2px solid light-dark(#e62323, #e62323);
  }

@media (forced-colors: active) {

.calendar_Zofv {
    border: 2px solid;
}
  }

.header_VHXU {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_VHXU button {
    border: none;
    color: light-dark(#171717, #f2f2f2);
    padding: 0.5rem;
    background-color: light-dark(#f2f2f2, #262626);
    cursor: pointer;
  }

.header_VHXU button:hover:not([data-disabled]) {
      background-color: light-dark(#e6e6e6, #333333);
    }

.header_VHXU button:focus-visible {
      outline: none;
      box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
    }

.header_VHXU button[data-focus-visible] {
      outline: none;
      box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
    }

@media (forced-colors: active) {

.header_VHXU button:focus-visible {
        outline: 3px solid;
        outline-offset: 2px;
    }

.header_VHXU button[data-focus-visible] {
        outline: 3px solid;
        outline-offset: 2px;
    }
      }

.header_VHXU [data-disabled] {
    color: light-dark(#bfbfbf, #525252);
  }

.day_OZ3K {
  border: solid 2px light-dark(#f2f2f2, #262626);
  cursor: pointer;
}

.day_OZ3K[data-hovered]:not([data-unavailable]):not([data-disabled]):not([data-selected]) {
    background-color: light-dark(#e6e6e6, #333333);
    border-color: light-dark(#e6e6e6, #333333);
  }

.day_OZ3K[data-selected='true'] {
    color: light-dark(#f2f2f2, #171717);
    background-color: light-dark(#143c50, #5897b8);
    border-color: light-dark(#143c50, #5897b8);
  }

@media (forced-colors: active) {

.day_OZ3K[data-selected='true'] {
      background-color: highlight;
  }
    }

.day_OZ3K.range_zte_[data-selected='true'] {
      color: light-dark(#171717, #f2f2f2);
      background-color: light-dark(#d5e5ed, #143c50);
      border-color: light-dark(#d5e5ed, #143c50);
    }

.day_OZ3K.range_zte_[data-selection-start='true'] {
      color: light-dark(#f2f2f2, #171717);
      background-color: light-dark(#143c50, #5897b8);
      border-color: light-dark(#143c50, #5897b8);
    }

.day_OZ3K.range_zte_[data-selection-end='true'] {
      color: light-dark(#f2f2f2, #171717);
      background-color: light-dark(#143c50, #5897b8);
      border-color: light-dark(#143c50, #5897b8);
    }

.day_OZ3K[data-disabled],.day_OZ3K[data-unavailable] {
    color: light-dark(#bfbfbf, #525252);
    cursor: not-allowed;
  }

.day_OZ3K.today_rAcb {
    -webkit-text-decoration: underline;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

.day_OZ3K[data-outside-month='true'] {
    display: none;
  }

.container_U3H4 {
  padding: 1rem;
  display: inline-flex;
}

.noPadding__BF5 {
  padding: 0;
}

.logo_GI7z {
  max-width: 100%;
  height: 48px;
}

.primary_TCiF {
  fill: light-dark(#b90835, #ffffff);
}

.dark_F_Ks {
  fill: light-dark(#171717, #f2f2f2);
}

.xSmall_IZ4K {
  height: 36px;
}

.small_KAZl {
  height: 40px;
}

.large_iAB3 {
  height: 52px;
}

.radioGroup_EgZH {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
}

.radioGroup_EgZH[data-disabled] {
    cursor: not-allowed;
    opacity: 1;
    color: light-dark(#bfbfbf, #525252);
  }

.radioGroup_EgZH .wrap_R8gp {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: start;
  }

.radioGroup_EgZH[aria-orientation='horizontal'] .wrap_R8gp {
    flex-direction: row;
    gap: 1rem;
  }

.radio_U9gG {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: light-dark(#171717, #f2f2f2);
  cursor: pointer;
}

.radio_U9gG::before {
    content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    box-sizing: border-box;
    border: 0.0625rem solid light-dark(#171717, #f2f2f2);
    border-radius: 1.286rem;
    transition: all 250ms;
  }

.radio_U9gG[data-focus-visible],.radio_U9gG:focus-visible {
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
    outline: none;
  }

@media (forced-colors: active) {

.radio_U9gG[data-focus-visible],.radio_U9gG:focus-visible {
      outline: 3px solid highlight;
      outline-offset: 2px;
  }
    }

.radio_U9gG[data-hovered]::before {
      border-color: light-dark(#737373, #8c8c8c);
    }

.radio_U9gG[data-disabled] {
    color: light-dark(#bfbfbf, #525252);
    cursor: not-allowed;
  }

.radio_U9gG[data-disabled]::before {
      border-color: light-dark(#bfbfbf, #525252);
    }

.radio_U9gG[data-pressed]::before {
      border-color: light-dark(#bfbfbf, #383838);
    }

.radio_U9gG[data-selected]::before {
    padding: 0.188rem;
    border-width: 0.1rem;
    background: light-dark(#143c50, #f2f2f2) 50% 50% no-repeat content-box;
  }

/* Nesting this selector in the one above causes syntax errors during minification */

@media (forced-colors: active) {
    .radio_U9gG[data-selected]::before {
      background: ButtonText;
    }
  }

.radio_U9gG[data-selected][data-pressed]::before {
    border-color: light-dark(#bfbfbf, #383838);
    background: light-dark(#143c50, #f2f2f2) 50% 50% no-repeat content-box;
  }

.radio_U9gG[data-invalid]::before {
      border: 0.125rem solid light-dark(#e62323, #e62323);
    }

@media (max-width: 479px) {

.radio_U9gG {
    padding: 0.875rem 1rem;
    border: 1px solid light-dark(#171717, #f2f2f2);
    width: auto;
}

    .radio_U9gG.radio_U9gG {
      width: 100%;
      box-sizing: border-box;
    }

    .radio_U9gG[data-hovered] {
      background-color: light-dark(#e6e6e6, #474747);
    }

    .radio_U9gG[data-invalid] {
      border: 2px solid light-dark(#e62323, #e62323);
    }

    .radio_U9gG[data-disabled] {
      pointer-events: none;
      border-color: light-dark(#bfbfbf, #525252);
    }
  }

.container_QqG_ {
  padding-left: 0;
  font-family: "Inter", sans-serif;
  display: flex;
  flex-flow: row wrap;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
}

.container_QqG_ li:not(:last-child)::after {
    color: light-dark(#bfbfbf, #525252);
    content: '/';
    alt: ' ';
    padding: 0 5px;
  }

.container_QqG_ li[data-current='true'] a {
    cursor: default;
  }

.container_o5YK {
  font-family: "Inter", sans-serif;
  color: light-dark(#171717, #f2f2f2);
}

.container_o5YK[data-disabled='true'] {
    cursor: not-allowed;
  }

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

.inputContainer_hVqH {
  display: flex;
  position: relative;
  height: 3rem;
  width: 100%;
}

.inputContainer_hVqH.medium_sM7f {
    height: 2.5rem;
  }

.icon_KMPT {
  color: light-dark(#171717, #f2f2f2);
  position: absolute;
  margin-left: 0.875rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.clear_cC1p {
  display: flex;
  align-items: center;
  position: absolute;
  padding: 0.875rem;
  border: none;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
}

.clear_cC1p.medium_sM7f {
    height: 2.5rem;
    padding: 0.625rem 0.875rem;
  }

.input_Z0RI {
  all: unset;
  color: light-dark(#171717, #f2f2f2);
  box-sizing: border-box;
  line-height: 1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: light-dark(#f2f2f2, #262626);
  width: 100%;
  height: 3rem;
  padding: 0.875rem 0 0.875rem 3rem;
  border-bottom: 1px solid light-dark(#171717, #f2f2f2);
}

.input_Z0RI.medium_sM7f {
    height: 2.5rem;
    padding: 0.625rem 0 0.625rem 3rem;
  }

.input_Z0RI:focus-visible {
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

@media (forced-colors: active) {

.input_Z0RI:focus-visible {
      outline: 3px solid highlight;
      outline-offset: 2px;
  }
    }

.input_Z0RI[aria-invalid='true'] {
    border: 2px solid light-dark(#e62323, #e62323);
  }

.input_Z0RI[data-disabled] {
    pointer-events: none;
  }

.input_Z0RI::-webkit-search-decoration,.input_Z0RI::-webkit-search-cancel-button,.input_Z0RI::-webkit-search-results-button,.input_Z0RI::-webkit-search-results-decoration {
    /* stylelint-disable-next-line property-no-vendor-prefix */
    -webkit-appearance: none;
  }

.fieldError_K9VX {
  font-family: "Inter", sans-serif;
  color: light-dark(#e62323, #eb4e4e);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  margin: 0.5rem 0 0;
  line-height: 1.28;
  grid-area: Error;
}

.fieldError_K9VX:has( + *) {
    margin: 0 0 0.5rem;
  }

.fieldError_K9VX::before {
    content: '';
    background-color: light-dark(#e62323, #eb4e4e);
    display: block;
    width: 1rem;
    height: 1rem;
    -webkit-mask: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9Imx1Y2lkZSBsdWNpZGUtdHJpYW5nbGUtYWxlcnQiPjxwYXRoIGQ9Im0yMS43MyAxOC04LTE0YTIgMiAwIDAgMC0zLjQ4IDBsLTggMTRBMiAyIDAgMCAwIDQgMjFoMTZhMiAyIDAgMCAwIDEuNzMtMyIvPjxwYXRoIGQ9Ik0xMiA5djQiLz48cGF0aCBkPSJNMTIgMTdoLjAxIi8+PC9zdmc+');
            mask: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9Imx1Y2lkZSBsdWNpZGUtdHJpYW5nbGUtYWxlcnQiPjxwYXRoIGQ9Im0yMS43MyAxOC04LTE0YTIgMiAwIDAgMC0zLjQ4IDBsLTggMTRBMiAyIDAgMCAwIDQgMjFoMTZhMiAyIDAgMCAwIDEuNzMtMyIvPjxwYXRoIGQ9Ik0xMiA5djQiLz48cGF0aCBkPSJNMTIgMTdoLjAxIi8+PC9zdmc+');
    -webkit-mask-size: 1rem 1rem;
            mask-size: 1rem 1rem;
    flex: 0 0 auto;
    align-self: flex-start;
    margin: 2px;
  }

* > ul {
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

.wrapper_VDHP {
  color: light-dark(#171717, #f2f2f2);
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
}

.wrapper_VDHP[data-disabled] {
    color: light-dark(#bfbfbf, #525252);
  }

.trigger_YoQG {
  align-items: center;
  background-color: light-dark(#f2f2f2, #262626);
  border: none;
  border-bottom: 1px solid light-dark(#171717, #f2f2f2);
  border-radius: 0;
  color: light-dark(#171717, #f2f2f2);
  display: flex;
  font-size: 1rem;
  justify-content: flex-end;
  min-height: 3rem;
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.trigger_YoQG.medium_IF05 {
    min-height: 2.5rem;
  }

.trigger_YoQG:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

@media (forced-colors: active) {

.trigger_YoQG:focus-visible {
      outline: 3px solid highlight;
      outline-offset: 2px;
  }
    }

.trigger_YoQG:hover {
    background-color: light-dark(#e6e6e6, #333333);
    cursor: pointer;
  }

.trigger_YoQG[data-disabled] {
    cursor: not-allowed;
    background: light-dark(#f2f2f2, #262626);
    color: light-dark(#bfbfbf, #525252);
    border-color: light-dark(#bfbfbf, #525252);
  }

.trigger_YoQG[data-invalid]:not(:focus-visible) {
    border: none;
    box-shadow: inset 0 0 0 2px light-dark(#e62323, #e62323);
  }

@media (forced-colors: active) {

.trigger_YoQG[data-invalid]:not(:focus-visible) {
      border: 5px solid Highlight !important;
  }
    }

.trigger_YoQG[data-open] .icon_roiA svg {
      transform: rotate(180deg);
    }

.tagGroup_t6GX {
  margin-top: 0.5rem;
}

.icon_roiA {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  flex: 1 0 auto;
  justify-content: flex-end;
}

.icon_roiA svg {
    transition: transform 0.3s ease;
  }

.listBoxItemCheckmark_Dz5t {
  margin-left: auto;
  align-self: center;
}

.triggerContainer_JBm2 {
  display: flex;
  flex-direction: column;
  position: relative;
}

.selectValueTag_Bx1C {
  font-family: "Inter", sans-serif;
  background-color: light-dark(#143c50, #2e7ca5);
  color: light-dark(#ffffff, #ffffff);
  border-radius: 1.25rem;
  font-size: 0.875rem;
  min-height: 1.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.5rem;
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
}

.selectValueTag_Bx1C:has(.clearButton_p8du) {
    padding-right: 0;
  }

.selectValueTag_Bx1C[data-disabled] {
    pointer-events: none;
    background-color: light-dark(#f2f2f2, #262626);
    color: light-dark(#bfbfbf, #525252);
    border-color: light-dark(#bfbfbf, #525252);
  }

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

.clearButton_p8du {
  padding: 0.375rem;
  margin: 0 0 0 0.5rem;
  display: flex;
  border-radius: 100%;
  background-color: light-dark(#143c50, #2e7ca5);
  color: light-dark(#ffffff, #ffffff);
  border: none;
}

.clearButton_p8du:hover {
    cursor: pointer;
    background-color: light-dark(#25607f, #25607f);
  }

.clearButton_p8du:disabled {
    pointer-events: none;
    color: light-dark(#bfbfbf, #525252);
    background-color: light-dark(#f2f2f2, #262626);
  }

.clearButton_p8du:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

@media (forced-colors: active) {

.clearButton_p8du:focus-visible {
      outline: 3px solid highlight;
      outline-offset: 2px;
  }
    }

.checkboxContainer_u2A7 {
  display: flex;
  align-items: center;
  padding-right: 0.5rem;
}

@media (forced-colors: active) {
  [data-invalid] .trigger_YoQG {
    border: 5px solid Highlight !important;
  }

  .selectValueTag_Bx1C {
    border: ButtonBorder solid;
  }

  .trigger_YoQG,
  .clearButton_p8du {
    border: Highlight 1px solid;
  }
}

/**
 * 1. Represents max ~5 options in the list.
 */
.listBox_l3jg {
  max-height: 295px; /* 1 */
  overflow-y: auto;
}
.listBox_l3jg  > div {
    /* react aria fiddles with pointer events during scroll
     * after a few scrolls the value sticks to "none" in our storybook
     */
    pointer-events: auto !important;
  }

.listBoxPopover_OG2Y {
  font-family: "Inter", sans-serif;
  width: var(--trigger-width);
  background: light-dark(#f2f2f2, #262626);
  overflow-y: auto;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
}

@media (forced-colors: active) {

.listBoxPopover_OG2Y {
    border: 1px solid light-dark(#171717, #f2f2f2);
}
  }

.listBoxSectionHeading_R5mH {
  font-family: "Inter", sans-serif;
  display: block;
  padding: 1rem 1rem 0.5rem;
  font-weight: 500;
}

.listBoxButton_LfGK {
  all: unset;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 2px !important;
}

.listBoxButton_LfGK:focus-visible {
    box-shadow: inset 0 0 0 2px light-dark(black, white), inset 0 0 0 4px light-dark(white, black);
    outline: none;
  }

.listBoxItem_eA9_ {
  background-color: light-dark(#f2f2f2, #262626);
  color: light-dark(#171717, #f2f2f2);
  display: flex;
  font-family: "Inter", sans-serif;
  line-height: 1;
  margin-bottom: 0;
  padding: 1rem;
  transition: background-color 60ms;
}

.listBoxItem_eA9_:hover:not([data-disabled]) {
    background-color: light-dark(#e6e6e6, #333333);
    cursor: pointer;
    transition-delay: 60ms;
  }

.listBoxItem_eA9_[data-disabled] {
    color: light-dark(#bfbfbf, #525252);
    cursor: not-allowed;
  }

.listBoxItem_eA9_[data-selected] {
    background-color: light-dark(#d9d9d9, #383838);
  }

.listBoxItem_eA9_[data-selected]:hover:not([data-disabled]) {
      background-color: light-dark(#cccccc, #474747);
      transition-delay: 60ms;
    }

.listBoxItem_eA9_[data-focused] {
    outline: none;
    box-shadow: none;
  }

@media (forced-colors: active) {

.listBoxItem_eA9_[data-focused] {
      border: 1px ButtonBorder solid;
  }
    }

.listBoxItem_eA9_[data-focus-visible] {
    box-shadow: inset 0 0 0 2px light-dark(black, white), inset 0 0 0 4px light-dark(white, black);
    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.
 */

.image_FOuN {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.body-01_whJM,
.body-02_Xi1v {
  color: light-dark(#171717, #f2f2f2);
  font-weight: 400;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.body-01_whJM {
  line-height: 1.25rem;
}

.body-02_Xi1v {
  line-height: 1.375rem;
}

.body-02_Xi1v[data-expressive] {
    line-height: 1.5rem;
  }

.description_XYgX {
  color: light-dark(#171717, #f2f2f2);
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  margin-bottom: 0.5rem;
}

.description_XYgX:has( ~ [data-disabled]) {
    color: light-dark(#bfbfbf, #525252);
  }

[data-disabled]  > .description_XYgX {
    color: light-dark(#bfbfbf, #525252);
  }

.dateInput_Y5ix {
  display: flex;
}

.dateInput_Y5ix div:focus-visible,.dateInput_Y5ix div[data-focus-visible] {
    outline: none;
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

@media (forced-colors: active) {

.dateInput_Y5ix div:focus-visible,.dateInput_Y5ix div[data-focus-visible] {
      outline: 3px solid highlight;
      outline-offset: 0;
  }
    }

.dateInput_Y5ix div[data-readonly='true'] {
    color: light-dark(#171717, #f2f2f2);
    padding: 0 2px;
  }

.divider_BL_i {
  color: light-dark(#171717, #f2f2f2);
}

.dateSegment_nh76 {
  color: light-dark(#171717, #f2f2f2);
  padding: 0 0.125rem;
  text-transform: uppercase;
}

.dateSegment_nh76[data-disabled] {
    color: light-dark(#bfbfbf, #525252);
  }

.dateSegment_nh76:focus-visible,.dateSegment_nh76[data-focus-visible] {
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
    outline: none;
  }

@media (forced-colors: active) {

.dateSegment_nh76:focus-visible,.dateSegment_nh76[data-focus-visible] {
      outline: 1px solid;
      outline-offset: 2px;
  }
    }

.dateSegment_nh76[data-placeholder] {
    color: light-dark(#a6a6a6, #525252);
  }

.characterCounter_Rd9H {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: light-dark(#171717, #f2f2f2);
  text-align: right;
  grid-area: Count;
  align-self: flex-end;
  margin-bottom: 0.5rem;
}

.characterCounter_Rd9H[data-lonely] {
    margin-bottom: 0.25rem;
  }

.characterCounter_Rd9H[data-exceeded] {
    color: light-dark(#e62323, #eb4e4e);
  }

.card_Ssoo {
  font-family: "Inter", sans-serif;
  position: relative;
  background-color: light-dark(#f2f2f2, #262626);
  border-bottom: 1px solid light-dark(#737373, #8c8c8c);
}

.card_Ssoo.horizontal_p4Mn {
    display: flex;
    flex-flow: row wrap;
  }

.card_Ssoo:has(.cardLink_gsBo:hover) {
    background-color: light-dark(#e6e6e6, #333333);
  }

.cardContent_JE5V {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem 1rem;
  flex-grow: 1;
}

.cardContent_JE5V.horizontal_p4Mn {
    padding: 0.5rem 1rem;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

.cardContent_JE5V  + .cardContent_JE5V {
    padding-top: 0.5rem;
  }

.cardActions_HxzH {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.cardActions_HxzH.horizontal_p4Mn {
    margin-left: auto;
  }

.cardActionArea_re2y {
  border: 0;
  padding: 0;
  text-align: inherit;
  background-color: transparent;
  background-color: initial;
  cursor: pointer;
  width: 100%;
}

.cardActionArea_re2y[data-hovered] {
    background-color: light-dark(rgba(0 0 0 / 10%), rgba(255 255 255 / 10%));
  }

.cardActionArea_re2y[data-pressed] {
    background-color: light-dark(rgba(0 0 0 / 20%), rgba(255 255 255 / 20%));
  }

.cardActionArea_re2y:focus {
    outline: none;
  }

.cardActionArea_re2y[data-focused] {
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

@media (forced-colors: active) {

.cardActionArea_re2y[data-focused] {
      outline: 2px solid highlight;
  }
    }

.cardActionArea_re2y  + .cardContent_JE5V {
    padding-top: 0.5rem;
  }

.cardImage_BIZa {
  max-width: 100%;
  height: auto;
}

.cardImage_BIZa.horizontal_p4Mn {
    max-width: none;
    max-width: initial;
  }

.cardLink_gsBo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.cardLink_gsBo[data-focused],.cardLink_gsBo:focus {
    outline: none;
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

@media (forced-colors: active) {

.cardLink_gsBo[data-focused],.cardLink_gsBo:focus {
      outline: 2px solid highlight;
  }
    }

.cardLink_gsBo::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: '';
  }

.cardLink_gsBo .cardLinkIcon_av9l {
    color: light-dark(#171717, #f2f2f2);
  }

.button_Loby {
  color: light-dark(#171717, #f2f2f2);
  min-height: 0 !important;
  min-height: initial !important;
  padding: 0.25rem !important;
  border-radius: 1.5rem;
  border: medium none currentcolor;
  border: initial;
}

.button_Loby[data-hovered] {
    background-color: light-dark(rgba(0 0 0 / 10%), rgba(255 255 255 / 10%));
  }

.button_Loby[data-pressed] {
    background-color: light-dark(rgba(0 0 0 / 20%), rgba(255 255 255 / 20%));
  }

.button_Loby.success_GxEq[data-hovered],.button_Loby.warning_MXCT[data-hovered],.button_Loby.info_xrqn[data-hovered],.button_Loby.important_QbWH[data-hovered] {
    background-color: light-dark(rgba(0 0 0 / 10%), rgba(255 255 255 / 10%));
  }

.button_Loby.success_GxEq[data-pressed],.button_Loby.warning_MXCT[data-pressed],.button_Loby.info_xrqn[data-pressed],.button_Loby.important_QbWH[data-pressed] {
    background-color: light-dark(rgba(0 0 0 / 20%), rgba(255 255 255 / 20%));
  }

.tag_WAeO {
  display: inline-flex;
  align-items: center;
  border-radius: 1.25rem;
  background-color: light-dark(#f2f2f2, #262626);
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
  border: 1px solid light-dark(#171717, #f2f2f2);
  color: light-dark(#171717, #f2f2f2);
}

.tag_WAeO.success_GxEq {
    background-color: light-dark(#d5f2d9, light-dark(#f2f2f2, #262626));
    border: 1px solid light-dark(#008d3c, #008d3c);
  }

.tag_WAeO.info_xrqn {
    background-color: light-dark(#eaf2f6, light-dark(#f2f2f2, #262626));
    border: 1px solid light-dark(#0066cc, #0066cc);
  }

.tag_WAeO.important_QbWH {
    background-color: light-dark(#fff8e1, light-dark(#f2f2f2, #262626));
    border: 1px solid light-dark(#fdb813, #fdb813);
  }

.tag_WAeO.warning_MXCT {
    background-color: light-dark(#ffdfdf, light-dark(#f2f2f2, #262626));
    border: 1px solid light-dark(#e62323, #e62323);
  }

.tag_WAeO[data-disabled] {
    color: light-dark(#bfbfbf, #525252);
    cursor: not-allowed;
    border-color: light-dark(#bfbfbf, #525252);
    background-color: light-dark(#f2f2f2, #262626);
  }

.tag_WAeO[data-focused],.tag_WAeO[data-focus-visible] {
    outline: none;
  }

.tag_WAeO.dismissable_Tfml[data-focus-visible] {
      outline-offset: 2px;
      outline: 2px solid black;
    }

.tagText_f_lx {
  line-height: 1.15;
  padding: 7px 0.5rem;
}

.dismissable_Tfml .tagText_f_lx {
  padding: 7px 0.125rem 7px 0.5rem;
}

.tagList_sxPC {
  display: flex;
  flex-wrap: wrap;
  gap: 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.
 */

.authorCol_FtxR {
  max-width: inherit !important;
  flex-grow: 1 !important;
}

.imageOnlyAuthorRow_L7Xa {
  display: flex;
  flex-flow: row wrap;
}

.imageOnlyAuthorCol_F1wP {
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}

.imageOnlyAuthorCol_F1wP [class^='image'] {
  background-color: var(--ifm-color-emphasis-100);
}

.toggleButton_rAm1 {
  margin-left: 0.3rem;
  margin-right: 0.3rem;
  border-radius: 50%;
  width: var(--ifm-avatar-photo-size);
  height: var(--ifm-avatar-photo-size);
  background-color: var(--ifm-color-emphasis-100);
}

.toggleButtonIconExpanded_iRjU {
  transform: rotate(180deg);
}

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

.list_hLP_ {
  display: flex;
  flex-flow: row wrap;
}

.listItem_P0Ws {
  border-bottom: 0.125rem solid light-dark(#bfbfbf, #383838);
  box-sizing: border-box;
  color: light-dark(#171717, #f2f2f2);
  height: 2.5rem;
  padding: 0.625rem 1rem;
}

.listItem_P0Ws[data-disabled] {
    border-color: light-dark(#bfbfbf, #525252);
    color: light-dark(#bfbfbf, #525252);
  }

.listItem_P0Ws[data-selected] {
    font-weight: 500;
    border-color: light-dark(#143c50, #2e7ca5);
  }

.listItem_P0Ws[data-selected][data-hovered] {
      border-color: light-dark(#143c50, #2e7ca5);
    }

.listItem_P0Ws[data-hovered] {
    border-color: light-dark(#737373, #8c8c8c);
    cursor: pointer;
  }

.listItem_P0Ws[data-focus-visible] {
    outline: none;
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

@media (max-width: 479px) {

.listItem_P0Ws {
    border-bottom: 0;
    flex: 0 0 100%;
}

    .listItem_P0Ws[data-selected] {
      border-left: 0.125rem solid light-dark(#143c50, #2e7ca5);
      padding-left: 0.875rem;
    }
  }

.panel_Geh5 {
  margin-top: 1rem;
  color: light-dark(#171717, #f2f2f2);
}

.panel_Geh5[data-focus-visible] {
    outline: none;
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

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

.changelogItemTitleList_lonz {
  font-size: 2rem;
}

.tooltip_L2zx {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  color: light-dark(#f2f2f2, #171717);
  background-color: light-dark(#171717, #f2f2f2);
  max-width: 150px;
  outline: none;
  transform: translate3d(0, 0, 0);
  transition:
    transform 200ms, opacity 200ms;
}

.tooltip_L2zx .arrow_bl7N svg {
    display: block;
    fill: light-dark(#171717, #f2f2f2);
  }

.tooltip_L2zx[data-entering],.tooltip_L2zx[data-exiting] {
    transform: var(--origin);
    opacity: 0;
  }

.tooltip_L2zx[data-placement='top'] {
    margin-bottom: 8px;

    --origin: translateY(4px);
  }

.tooltip_L2zx[data-placement='bottom'] {
    margin-top: 8px;

    --origin: translateY(-4px);
  }

.tooltip_L2zx[data-placement='bottom'] .arrow_bl7N svg {
      transform: rotate(180deg);
    }

.tooltip_L2zx[data-placement='right'] {
    margin-left: 8px;

    --origin: translateX(-4px);
  }

.tooltip_L2zx[data-placement='right'] .arrow_bl7N svg {
      transform: rotate(90deg);
    }

.tooltip_L2zx[data-placement='left'] {
    margin-right: 8px;

    --origin: translateX(4px);
  }

.tooltip_L2zx[data-placement='left'] .arrow_bl7N svg {
      transform: rotate(-90deg);
    }

.dropDownMenu_VQGa {
  font-family: "Inter", sans-serif;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
  background-color: light-dark(#e6e6e6, #212121);
}

.dropDownMenu_VQGa[data-focus-visible] {
    outline: none;
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

.menuItem_ssbG {
  width: 100%;
}

.menuItem_ssbG[data-focus-visible] {
    outline: none;
    box-shadow: 0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white);
  }

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

.changelogItemContainer_zr9I {
  margin-bottom: 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.
 */

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

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

  .docItemContainer_F8PC {
    padding: 0 0.3rem;
  }
}

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

.rss_ox3n,
.rss_ox3n:hover {
  color: #f26522;
}

.x_UvX4,
.x_UvX4:hover {
  color: #1da1f2;
}

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

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

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

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

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

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

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

