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

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

/* Common */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

* {
  box-sizing: border-box;
}

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

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

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

/* Layout */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Content */

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

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

a code {
  color: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

img {
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Consistent spacing between content paragraphs. */

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

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

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

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

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

/* Lists */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Links */

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

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

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

/* Paragraphs */

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

/* Blockquotes */

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

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

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

/* Horizontal Rules */

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

/* Utilities */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text--no-decoration,
  .text--no-decoration:hover {
    -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: var(--ifm-alert-background-color);
  border: var(--ifm-alert-border-width) solid var(--ifm-alert-border-color);
  border-left-width: var(--ifm-alert-border-left-width);
  border-radius: var(--ifm-alert-border-radius);
  box-shadow: var(--ifm-alert-shadow);
  color: var(--ifm-alert-foreground-color);
  padding: var(--ifm-alert-padding-vertical) var(--ifm-alert-padding-horizontal);
}

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

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

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

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

    opacity: 0.75;
  }

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

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

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

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

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

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

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

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

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

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

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

.avatar__subtitle {
    margin-top: 0.25rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

.breadcrumbs__item {
    display: inline-block;
  }

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

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

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

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

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

.button:hover {
    color: var(--ifm-button-color); /* Override for button links. */
    -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: var(--ifm-link-color);
    /* autoprefixer: ignore next */
    text-decoration: var(--ifm-link-decoration);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Because of border-radius. */

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-of-contents__link:hover,
    .table-of-contents__link:hover code,
    .table-of-contents__link--active,
    .table-of-contents__link--active code {
      color: var(--ifm-color-primary);
      -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: var(--ifm-color-black);
  float: right;
  font-size: 1.5rem;
  font-weight: var(--ifm-font-weight-bold);
  line-height: 1;
  opacity: 0.5;
  padding: 1rem;
  transition: opacity var(--ifm-transition-fast) var(--ifm-transition-timing-default);
}

.close:hover {
    opacity: 0.7;
  }

.close:focus {
    opacity: 0.8;
  }

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

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

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

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

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

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

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

.dropdown__link:hover,
    .dropdown__link--active {
      background-color: var(--ifm-dropdown-hover-background-color);
      color: var(--ifm-dropdown-link-color);
      -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: var(--ifm-footer-background-color);
  color: var(--ifm-footer-color);
  padding: var(--ifm-footer-padding-vertical)
    var(--ifm-footer-padding-horizontal);
}

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

.footer__links {
    margin-bottom: 1rem;
  }

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

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

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

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

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

.footer__item {
    margin-top: 0;
  }

.footer__items {
    margin-bottom: 0;
  }

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

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

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

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

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

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

.hero__title {
    font-size: 3rem;
  }

.hero__subtitle {
    font-size: 1.5rem;
  }

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

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

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

/* Non-top level menus */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.navbar__brand:hover {
      color: var(--ifm-navbar-link-hover-color);
      -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: var(--ifm-navbar-item-padding-vertical)
      var(--ifm-navbar-item-padding-horizontal);
  }

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

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

.navbar__link:hover,
    .navbar__link--active {
      color: var(--ifm-navbar-link-hover-color);
      -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: var(--ifm-color-white);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pagination__item {
    display: inline-flex;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Mode */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .footer__link-separator {
      display: none;
    }

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

    .footer__link-item {
      display: block;
      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: var(--ifm-scrollbar-size);
    width: var(--ifm-scrollbar-size);
  }
  .thin-scrollbar::-webkit-scrollbar-track {
    background: var(--ifm-scrollbar-track-background-color);
    border-radius: 10px;
  }
  .thin-scrollbar::-webkit-scrollbar-thumb {
    background: var(--ifm-scrollbar-thumb-background-color);
    border-radius: 10px;
  }
  .thin-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--ifm-scrollbar-thumb-hover-background-color);
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --ifm-transition-fast: 0ms;
    --ifm-transition-slow: 0ms;
  }
}

@media print {

.table-of-contents {
    display: none
}

.footer {
    display: none
}

.menu {
    display: none
}

.navbar {
    display: none
}

.pagination-nav {
    display: none
}

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

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

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

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

#nprogress {
  pointer-events: none;
}

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

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

/*
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
  2. Remove default margins and padding
  3. Reset all borders.
*/

*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 2 */
  border: 0 solid; /* 3 */
}

/*
  1. Use a consistent sensible line-height in all browsers.
  2. Prevent adjustments of font size after orientation changes in iOS.
  3. Use a more readable tab size.
  4. Use the user's configured `sans` font-family by default.
  5. Use the user's configured `sans` font-feature-settings by default.
  6. Use the user's configured `sans` font-variation-settings by default.
  7. Disable tap highlights on iOS.
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  tab-size: 4; /* 3 */
  font-family: --theme(
    --default-font-family,
    ui-sans-serif,
    system-ui,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol',
    'Noto Color Emoji'
  ); /* 4 */
  font-feature-settings: --theme(--default-font-feature-settings, normal); /* 5 */
  font-variation-settings: --theme(--default-font-variation-settings, normal); /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
  1. Add the correct height in Firefox.
  2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
  3. Reset the default border style to a 1px solid border.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
  Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/*
  Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
  Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}

/*
  Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
  1. Use the user's configured `mono` font-family by default.
  2. Use the user's configured `mono` font-feature-settings by default.
  3. Use the user's configured `mono` font-variation-settings by default.
  4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: --theme(
    --default-mono-font-family,
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    'Liberation Mono',
    'Courier New',
    monospace
  ); /* 1 */
  font-feature-settings: --theme(--default-mono-font-feature-settings, normal); /* 2 */
  font-variation-settings: --theme(--default-mono-font-variation-settings, normal); /* 3 */
  font-size: 1em; /* 4 */
}

/*
  Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
  Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
  1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
  2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
  3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
  Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
  Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
  Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
  Make lists unstyled by default.
*/

ol,
ul,
menu {
  list-style: none;
}

/*
  1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
  2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
      This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
  Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/*
  1. Inherit font styles in all browsers.
  2. Remove border radius in all browsers.
  3. Remove background color in all browsers.
  4. Ensure consistent opacity for disabled states in all browsers.
*/

button,
input,
select,
optgroup,
textarea,
::file-selector-button {
  font: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  border-radius: 0; /* 2 */
  background-color: transparent; /* 3 */
  opacity: 1; /* 4 */
}

/*
  Restore default font weight.
*/

:where(select:is([multiple], [size])) optgroup {
  font-weight: bolder;
}

/*
  Restore indentation.
*/

:where(select:is([multiple], [size])) optgroup option {
  padding-inline-start: 20px;
}

/*
  Restore space after button.
*/

::file-selector-button {
  margin-inline-end: 4px;
}

/*
  Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
*/

::placeholder {
  opacity: 1;
}

/*
  Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
  crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
*/

@supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
  (contain-intrinsic-size: 1px) /* Safari 17+ */ {
  ::placeholder {
    color: color-mix(in oklab, currentcolor 50%, transparent);
  }
}

/*
  Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
  Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
  1. Ensure date/time inputs have the same height when empty in iOS Safari.
  2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
*/

::-webkit-date-and-time-value {
  min-height: 1lh; /* 1 */
  text-align: inherit; /* 2 */
}

/*
  Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
*/

::-webkit-datetime-edit {
  display: inline-flex;
}

/*
  Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
*/

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
  padding-block: 0;
}

/*
  Center dropdown marker shown on inputs with paired `<datalist>`s in Chrome. (https://github.com/tailwindlabs/tailwindcss/issues/18499)
*/

::-webkit-calendar-picker-indicator {
  line-height: 1;
}

/*
  Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
  Correct the inability to style the border radius in iOS Safari.
*/

button,
input:where([type='button'], [type='reset'], [type='submit']),
::file-selector-button {
  appearance: button;
}

/*
  Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
  Make elements with the HTML hidden attribute stay hidden by default.
*/

[hidden]:where(:not([hidden='until-found'])) {
  display: none !important;
}

@layer base {
  :root {
    --clr-primary: hsl(197, 97%, 56%);
    --clr-primary-light: #24e3f2;
    --clr-primary-200: #00aff3;
    --clr-primary-300: #0798d0;
    --clr-portal-secondary: hsl(225, 40%, 18%);
    --clr-base-text: #333333;
    --clr-base-text-light: #575757;
  }
}



body {
  overflow-x: hidden;
  color: var(--theme-clr-base-text);
  font-size: 15px;
}
* {
  font-family: "Montserrat", sans-serif !important;
}

/* minimum media query */

@mixin minmq($size) {
  @media (min-width: $size) {
    @content;
  }
}

/* maximum media query */

@mixin maxmq($size) {
  @media (max-width: $size) {
    @content;
  }
}

/* maximum and minimum query */

@mixin maxminmq($maxSize, $minSize) {
  @media screen and (max-width: $maxSize) and (min-width: $minSize) {
    @content;
  }
}

/* tranform effects */

@mixin transform($property) {
  transform: $property;
}

/* transition effects */

@mixin transition($property) {
  transition: $property;
  transition: $property;
}

/* form control appearance */

@mixin appearance($property) {
  -o-appearance: $property;
  appearance: $property;
}

/* 'before' pseudo element style */

@mixin before($code, $fontSize) {
  content: $code;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: $fontSize;
}

/* 'after' pseudo element style */

@mixin after($code, $fontSize) {
  content: $code;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: $fontSize;
}

/* padding-block size */
@mixin padding-block($size) {
  padding-block: $size;
}

@use "../_partials/mixins";

ul {
  list-style: unset;
}
table tr:nth-child(2n) {
  background-color: unset;
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: var(--clr-primary);
}

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

hr {
  height: 1px;
}
/* src/css/custom.css */

.main-container {
  /*   --max-width: 1440px; */
  --max-width: 1440px;
  --padding: 2rem;
  width: min(var(--max-width), 100% - (var(--padding) * 2));
  margin-inline: auto;
  /**background-color: red !important;*/
}

/* */
.theme-code-block.dark-theme {
    background-color: #1e1e1e !important;
  }
.theme-code-block.dark-theme .token-line {
      color: white !important;
    }

.theme-code-block pre,
.theme-code-block code {
  background-color: inherit !important;
}

.theme-code-block {
  position: relative;
  /*
  padding-top: 1.5rem;
  */
}

.code-block-wrapper {
  position: relative;
}

.code-block-wrapper.dt {
    border: 1px solid black;
  }

.code-block-wrapper.dt::before {
      background: #333 !important;
    }

.code-block-wrapper::before {
    content: attr(data-language);
    position: absolute;
    top: 0;
    left: 0;
    /*background: rgb(239, 237, 237);*/
    background: var(--gradient-start);
    color: inherit;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem !important;
    font-family: monospace;
    text-transform: uppercase;
    border-bottom-right-radius: 4px;
    z-index: 1;
  }

/*Switch menu toggler to right and brand logo to left*/
.navbar__items {
  justify-content: space-between;
}
.navbar__items [aria-label="Toggle navigation bar"] {
    order: 2;
  }
.navbar__items .navbar__brand {
    order: 1;
  }
/**/

.navbar__logo img {
  height: 60px; /* adjust to your preferred size */
  width: auto;
}
.footer__link-item {
  display: block;
  width: max-content;
  display: flex;
  align-items: center;
}
.navbar {
  background-color: black;
}

/* Change default link color in navbar */
.navbar__link {
  color: white !important; /* replace with your desired color */
}

/* Optional: Change hover color */
.navbar__link:hover,
.navbar__link--active {
  color: #21c0fc !important; /* replace with desired hover color */
}

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

.clean-btn.tocCollapsibleButton_TO0P {
    color: inherit !important;
  }

.navbar-sidebar--show .navbar-sidebar {
  background-color: black;
}

:is(.navbar-sidebar--show .navbar-sidebar) .menu__link {
    color: white;
  }

:is(.navbar-sidebar--show .navbar-sidebar) .menu__link--active {
    color: var(--clr-primary-light);
  }

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

.breadcrumbs .breadcrumbs__item {
    display: flex;
    align-items: center;
  }

.breadcrumbs__link[aria-label="Home page"] {
    padding: 0;
  }

/* ===========================
   SIDEBAR STYLING
   =========================== */

/* Container border */
.theme-doc-sidebar-container {
  border-right: 1px solid rgba(0, 0, 0, 0.07) !important;
}

[data-theme="dark"] .theme-doc-sidebar-container {
  border-right-color: rgba(255, 255, 255, 0.07) !important;
}

/* Menu padding */
.theme-doc-sidebar-menu {
  padding: 1.25rem 0.75rem !important;
}

/* Custom scrollbar */
.theme-doc-sidebar-container .menu {
  scrollbar-width: thin;
  scrollbar-color: rgba(7, 152, 208, 0.3) transparent;
}
:is(.theme-doc-sidebar-container .menu)::-webkit-scrollbar {
    width: 4px;
  }
:is(.theme-doc-sidebar-container .menu)::-webkit-scrollbar-track {
    background: transparent;
  }
:is(.theme-doc-sidebar-container .menu)::-webkit-scrollbar-thumb {
    background-color: rgba(7, 152, 208, 0.35);
    border-radius: 2px;
  }

/* Category / collapsible headers */
.menu__list-item-collapsible {
  border-radius: 7px;
  transition: background-color 0.15s ease;
}
.menu__list-item-collapsible:hover {
    background-color: rgba(7, 152, 208, 0.08);
  }
.menu__list-item-collapsible  > .menu__link--sublist {
    font-weight: 700;
    font-size: 0.6rem !important;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--ifm-color-emphasis-900);
    padding: 0.5rem 0.75rem;
    background: transparent;
  }
:is(.menu__list-item-collapsible > .menu__link--sublist):hover {
      color: var(--clr-primary-300);
      background: transparent;
    }

:is([data-theme="dark"] .menu__list-item-collapsible):hover {
    background-color: rgba(36, 227, 242, 0.06);
  }

:is([data-theme="dark"] .menu__list-item-collapsible)  > .menu__link--sublist {
    color: rgba(255, 255, 255, 0.75);
  }

:is(:is([data-theme="dark"] .menu__list-item-collapsible) > .menu__link--sublist):hover {
      color: var(--clr-primary-light);
    }

/* All sidebar links */
.menu__link {
  border-radius: 7px;
  font-size: 0.73rem !important;
  padding: 0.4rem 0.8rem;
  color: var(--ifm-color-emphasis-900);
  transition:
    color 0.15s ease,
    background-color 0.15s ease;
  position: relative;
}
.menu__link:not(.menu__link--sublist):hover {
    color: var(--clr-primary-300);
    background-color: rgba(7, 152, 208, 0.08);
    -webkit-text-decoration: none;
    text-decoration: none;
  }

[data-theme="dark"] .menu__link {
  color: rgba(255, 255, 255, 0.92);
}

:is([data-theme="dark"] .menu__link):not(.menu__link--sublist):hover {
    color: var(--clr-primary-light);
    background-color: rgba(36, 227, 242, 0.08);
  }

/* Active link — left accent bar + highlight */
.menu__link--active:not(.menu__link--sublist) {
  color: var(--clr-primary-300) !important;
  background-color: rgba(7, 152, 208, 0.1) !important;
  font-weight: 600;
}
.menu__link--active:not(.menu__link--sublist)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 55%;
    background: var(--clr-primary-300);
    border-radius: 0 3px 3px 0;
  }

[data-theme="dark"] .menu__link--active:not(.menu__link--sublist) {
  color: var(--clr-primary-light) !important;
  background-color: rgba(36, 227, 242, 0.1) !important;
}

:is([data-theme="dark"] .menu__link--active:not(.menu__link--sublist))::before {
    background: var(--clr-primary-light);
  }

/* Nested list — subtle indent guide line */
.menu__list .menu__list {
  border-left: 1px solid rgba(7, 152, 208, 0.18);
  margin-left: 0.85rem;
  padding-left: 0.25rem;
}

[data-theme="dark"] .menu__list .menu__list {
  border-left-color: rgba(36, 227, 242, 0.13);
}

/* Caret toggle button */
.menu__caret {
  border-radius: 5px;
  transition: background-color 0.15s ease;
}
.menu__caret::before {
    width: 0.7rem !important;
    height: 0.7rem !important;
    background-image: var(--ifm-menu-link-sublist-icon) !important;
    background-position: 50% !important;
    background-size: 0.7rem 0.7rem !important;
    background-repeat: no-repeat !important;
  }
.menu__caret:hover {
    background-color: rgba(7, 152, 208, 0.12);
  }

.menu__link--sublist-caret::after {
  width: 0.7rem !important;
  height: 0.7rem !important;
  min-width: 0.7rem !important;
  background-image: var(--ifm-menu-link-sublist-icon) !important;
  background-position: 50% !important;
  background-size: 0.7rem 0.7rem !important;
  background-repeat: no-repeat !important;
}

[data-theme="dark"] .menu__caret:hover {
  background-color: rgba(36, 227, 242, 0.1);
}

/* Section divider spacing */
.menu__list-item + .menu__list-item {
  margin-top: 1px;
}

.menu__caret:before {
  background-image: var(--ifm-menu-link-sublist-icon);
  background-position: 50%;
  background-size: 1.2rem 1.2rem;
  background-repeat: no-repeat;
}

@use "./_abstract";
@use "./_abstract/colors";
@use "./_partials";
@use "./_components";
@use "./_utilities";

.my-text {
  color: red;
  background-color: blue;
  font-size: 20px;
}

header.references-developer-tools {
  display: none !important;
}
/**
 * Any CSS included here will be global. The classic template
 * bundles Infima by default. Infima is a CSS framework designed to
 * work well for content-centric websites.
 */

/* You can override the default Infima variables here. */
:root {
  /* --ifm-color-primary: #2e8555; */
  /* --ifm-color-primary: #24e3f2; */
  --ifm-color-primary: #0798d0;
  --bg-card-blue: #EBF5FF;
  --bg-section-alt: #f7f7f7;
  /* --ifm-color-primary-dark: #29784c; */
  --ifm-color-primary-dark: #0798d0;
  --ifm-color-primary-darker: #277148;
  --ifm-color-primary-darkest: #205d3b;
  --ifm-color-primary-light: #33925d;
  --ifm-color-primary-lighter: #359962;
  --ifm-color-primary-lightest: #3cad6e;
  --ifm-code-font-size: 95%;
  --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
  /*  */

  --gradient-start: rgba(245, 247, 250, 0.8); /* white, very transparent */
  --gradient-end: rgba(255, 255, 255, 0.1); /* white, very transparent */

  --gradient-inverse-start: rgba(
    140,
    140,
    140,
    0.28
  ); /* white, very transparent */
  --gradient-inverse-end: rgba(0, 0, 0, 0.1); /* white, very transparent */

  /*--gradient-start: rgba(0, 175, 243, 0.3); light blue, transparent */
  /* --gradient-end: rgba(255, 255, 255, 0.1); white, very transparent */
}

/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme="dark"] {
  --ifm-color-primary: #25c2a0;
  --bg-card-blue: #1e2d3d;
  --bg-section-alt: var(--ifm-background-color);
  --ifm-color-primary-dark: #21af90;
  --ifm-color-primary-darker: #1fa588;
  --ifm-color-primary-darkest: #1a8870;
  --ifm-color-primary-light: #29d5b0;
  --ifm-color-primary-lighter: #32d8b4;
  --ifm-color-primary-lightest: #4fddbf;
  --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
  --clr-primary-light: #24e3f2;

  /*  */
  /* --gradient-start: rgba(0, 175, 243, 0.3); */
  /* same or darker tint */
  /* --gradient-end: rgba(0, 0, 0, 0.2);  */
  /* black transparent */

  --gradient-start: rgba(140, 140, 140, 0.28); /* white, very transparent */
  --gradient-end: rgba(0, 0, 0, 0.1); /* white, very transparent */
}
/* Tailwind CSS is loaded as a static stylesheet via docusaurus.config.ts
   stylesheets[] to bypass the webpack CSS minimizer (Tailwind v4 uses
   modern CSS syntax — oklch, @layer, relative colors — that cssnano
   bundled with Docusaurus 3.7 cannot parse). */

.theme-adaptive-gradient {
  background: linear-gradient(
    to top,
    var(--gradient-start),
    var(--gradient-end)
  );
  padding: 2rem;
}

.theme-adaptive-inverse-gradient {
  background: linear-gradient(
    to top,
    var(--gradient-inverse-start),
    var(--gradient-inverse-end)
  );
  padding: 2rem;
}

.theme-adaptive-white {
  background: var(--ifm-color-primary);
  padding: 2rem;
}
.theme-adaptive-dark {
  background: var(--ifm-color-primary-dark);
  padding: 2rem;
}

/* Expand doc content column to fill available width (after sidebar) */
.docItemCol {
  max-width: 100% !important;
}

/* Scalar's useColorMode hook adds .dark-mode to document.body, which triggers
   its @layer scalar-base rule: body { background-color: var(--scalar-background-1) }.
   Since unlayered rules beat @layer rules, this transparent override wins and lets
   the page background fall through to html { background-color } which Docusaurus controls. */
body {
  background-color: transparent;
}

/* Scalar API reference block — dark surface, isolated from the page background */
.scalar-wrapper {
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
}

/* Sync Scalar's dark background to Docusaurus's dark page background (#121212) */
[data-theme="dark"] .scalar-wrapper {
  --scalar-background-1: var(--ifm-background-color);
  --scalar-background-2: var(--ifm-background-surface-color);
}

/* Hide Scalar's decorative ASCII-art computer illustration and skewed version label
   that appear in the response panel before any request is sent. */
.scalar-wrapper .ascii-art,
.scalar-wrapper .scalar-version-number[data-v-ab8886a2] {
  display: none !important;
}

/* Set max-width and center navbar content */

.navbar {
  /* background-color: #0798d0 !important;
  color: #ffffff; */
  height: unset !important;
}
.navbar__logo {
  height: unset;
}

@media only screen and (min-width: 768px) {
  .navbar__inner {
    padding: 1rem 2rem;
  }
  .navbar {
    height: unset;
  }
}

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

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

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

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

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

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

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

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

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

.content_knG7 a {
  color: inherit;
  -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: 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: 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.
 */

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

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

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

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

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

.themedComponent_mlkZ {
  display: none;
}

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

[data-theme='dark'] .themedComponent--dark_xIcU {
  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: 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: rgb(0 0 0 / 10%);
}

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

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

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

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

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

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

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

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

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

/**
 * Copyright (c) Facebook, Inc. and 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: 0 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.
 */

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

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

/* Base badge styles — shared across all methods */
.badge_G6IB {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.52rem;
  font-weight: 700;
  font-family: 'SF Mono', 'Fira Code', 'Fira Mono', 'Roboto Mono', ui-monospace, monospace;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid transparent;
  text-align: center;
  -webkit-user-select: none;
          user-select: none;
}

.sizeMd_JYJj {
  font-size: 0.65rem;
  padding: 2px 8px;
  min-width: 44px;
  border-radius: 5px;
}

/* ── Method colours (light) ─────────────────────────── */

.get_lMtu {
  background-color: #dcfce7;
  color: #15803d;
  border-color: #bbf7d0;
}

.post_qjyB {
  background-color: #dbeafe;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.put_Z6qX {
  background-color: #fef3c7;
  color: #b45309;
  border-color: #fde68a;
}

.delete_r3rz {
  background-color: #fee2e2;
  color: #b91c1c;
  border-color: #fecaca;
}

.patch_rsXM {
  background-color: #ede9fe;
  color: #7c3aed;
  border-color: #ddd6fe;
}

.head_ElkI {
  background-color: #f3f4f6;
  color: #374151;
  border-color: #e5e7eb;
}

.options_mbWS {
  background-color: #cffafe;
  color: #0e7490;
  border-color: #a5f3fc;
}

/* ── Method colours (dark) ──────────────────────────── */

[data-theme='dark'] .get_lMtu {
  background-color: rgba(22, 163, 74, 0.14);
  color: #4ade80;
  border-color: rgba(22, 163, 74, 0.28);
}

[data-theme='dark'] .post_qjyB {
  background-color: rgba(37, 99, 235, 0.14);
  color: #60a5fa;
  border-color: rgba(37, 99, 235, 0.28);
}

[data-theme='dark'] .put_Z6qX {
  background-color: rgba(217, 119, 6, 0.14);
  color: #fbbf24;
  border-color: rgba(217, 119, 6, 0.28);
}

[data-theme='dark'] .delete_r3rz {
  background-color: rgba(220, 38, 38, 0.14);
  color: #f87171;
  border-color: rgba(220, 38, 38, 0.28);
}

[data-theme='dark'] .patch_rsXM {
  background-color: rgba(124, 58, 237, 0.14);
  color: #c084fc;
  border-color: rgba(124, 58, 237, 0.28);
}

[data-theme='dark'] .head_ElkI {
  background-color: rgba(107, 114, 128, 0.14);
  color: #9ca3af;
  border-color: rgba(107, 114, 128, 0.28);
}

[data-theme='dark'] .options_mbWS {
  background-color: rgba(8, 145, 178, 0.14);
  color: #22d3ee;
  border-color: rgba(8, 145, 178, 0.28);
}

.iconWrap_PO6m {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  opacity: 0.5;
  transition: opacity 0.15s ease;
  color: currentColor;
}

.iconWrap_PO6m svg {
  width: 100%;
  height: 100%;
}

/* Brighten icon on hover and active — selectors target the Docusaurus
   theme classes that live on the parent <a> element */
.menu__link:hover .iconWrap_PO6m,
.menu__link--active .iconWrap_PO6m {
  opacity: 0.85;
}

/* Applied only when the item carries customProps (icon and/or api method).
   Turns the link into a flex row so icon, label, and badge stay aligned. */
.apiNavLink_bwrt {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  /* Tighten right padding to give the badge some breathing room */
  padding-right: 6px !important;
}

/* Label text — takes all remaining horizontal space */
.navLabel_wjYm {
  line-height: 1.3;
}

.navLabelTruncate_nnWb {
  flex: 1 1 0%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.categoryLink_byQd {
  overflow: hidden;
}

/*
TODO merge this logic back in Infima?
 */
.menu__link--sublist-caret::after {
  margin-left: var(--ifm-menu-link-padding-vertical);
}

.categoryLinkLabel_W154 {
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 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.
 */

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

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

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.title_UpUN {
  font-size: 3.8rem;
  font-weight: bolder;
  line-height: 3.8rem;
}

.tagline_yltw {
  font-size: 1.22rem;
  margin-top: 1.2rem;
  max-width: 550px;
}

@media (max-width: 768px) {
  /* .title {
    font-size: 2.8rem;
    line-height: 2.8rem;
  }

  .tagline {
    font-size: 1.15rem;
    line-height: 2.4rem;
    margin-top: 1rem;
  } */
}

@media (max-width: 425px) {
  .title_UpUN {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }

  .tagline_yltw {
    font-size: 0.875rem;
    margin-top: 0.8rem;
  }
}

.title_tPHw {
  font-weight: bolder;
  font-size: 2.25rem;
  line-height: 3rem;
}

@media (max-width: 425px) {
  .title_tPHw {
    font-size: 1.5rem;
  }
}

.title_VqCV {
  font-size: 1.5rem;
  font-weight: bolder;
}
.paragraph_TZad {
  font-size: 1.125rem;
  /* margin: 0; */
}

.title__foY {
  font-size: 1.5rem;
  font-weight: bolder;
}
.paragraph_qSVF {
  font-size: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .title__foY {
    font-size: 2.09rem;
  }

  .paragraph_qSVF {
    font-size: 1.22rem;
    margin-top: 1.2rem;
    max-width: 320px;
  }
}

@media (min-width: 425px) and (max-width: 768px) {
  .title__foY {
    font-size: 1.8rem;
  }
  .paragraph_qSVF {
    font-size: 1.1rem;
    max-width: 280px;
  }
}

.title_MeE5 {
  font-weight: bolder;
  font-size: 2.25rem;
}

@media (max-width: 425px) {
  .title_MeE5 {
    font-size: 1.5rem;
  }
}

.title_SLd4 {
  /* !text-2xl lg:!text-4xl  */
}
.title_SLd4 {
  font-weight: bolder;
  font-size: 2.25rem;
}

@media (max-width: 425px) {
  .title_SLd4 {
    font-size: 1.5rem;
  }
}

.title_aE4Q {
  font-weight: bolder;
  font-size: 2.25rem;
}

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

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

.anchorTargetHideOnScrollNavbar_vjPI {
  scroll-margin-top: 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.
 */

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

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

.hash-link:focus,
*:hover > .hash-link {
  opacity: 1;
}

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

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

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

.heroBanner_qdFl {
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 996px) {
  .heroBanner_qdFl {
    padding: 2rem;
  }
}

.buttons_AeoN {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.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'] .linkedinSvg_FCgI {
  fill: var(--light);
}

[data-theme='light'] .linkedinSvg_FCgI {
  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'] .blueskySvg_AzZw {
  fill: var(--light);
}

[data-theme='light'] .blueskySvg_AzZw {
  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: 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: var(--docusaurus-blog-social-icon-size);
  width: var(--docusaurus-blog-social-icon-size);
  line-height: 0;
  margin-right: 0.4rem;
}

.authorSocialIcon_XYv3 {
  width: var(--docusaurus-blog-social-icon-size);
  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;
}

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

.authorListItem_n3yI {
  list-style-type: none;
  margin-bottom: 2rem;
}



@layer scalar-theme;
/*! tailwindcss v4.2.4 | MIT License | https://tailwindcss.com */
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-font-weight: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-scale-z: 1;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-space-x-reverse: 0;
      --tw-divide-y-reverse: 0;
      --tw-border-style: solid;
      --tw-gradient-position: initial;
      --tw-gradient-from: #0000;
      --tw-gradient-via: #0000;
      --tw-gradient-to: #0000;
      --tw-gradient-stops: initial;
      --tw-gradient-via-stops: initial;
      --tw-gradient-from-position: 0%;
      --tw-gradient-via-position: 50%;
      --tw-gradient-to-position: 100%;
      --tw-mask-linear: linear-gradient(#fff, #fff);
      --tw-mask-radial: linear-gradient(#fff, #fff);
      --tw-mask-conic: linear-gradient(#fff, #fff);
      --tw-mask-left: linear-gradient(#fff, #fff);
      --tw-mask-right: linear-gradient(#fff, #fff);
      --tw-mask-bottom: linear-gradient(#fff, #fff);
      --tw-mask-top: linear-gradient(#fff, #fff);
      --tw-mask-top-from-position: 0%;
      --tw-mask-top-to-position: 100%;
      --tw-mask-top-from-color: black;
      --tw-mask-top-to-color: transparent;
      --tw-mask-bottom-from-position: 0%;
      --tw-mask-bottom-to-position: 100%;
      --tw-mask-bottom-from-color: black;
      --tw-mask-bottom-to-color: transparent;
      --tw-leading: initial;
      --tw-ordinal: initial;
      --tw-slashed-zero: initial;
      --tw-numeric-figure: initial;
      --tw-numeric-spacing: initial;
      --tw-numeric-fraction: initial;
      --tw-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-duration: initial;
      --tw-ease: initial;
      --tw-content: "";
    }
  }
}
@layer scalar-base {
  body {
    line-height: inherit;
    margin: 0;
  }

  :root {
    --scalar-border-width: .5px;
    --scalar-radius: 3px;
    --scalar-radius-lg: 6px;
    --scalar-radius-xl: 8px;
    --scalar-font: "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
    --scalar-font-code: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --scalar-heading-1: 24px;
    --scalar-page-description: 16px;
    --scalar-heading-2: 20px;
    --scalar-heading-3: 16px;
    --scalar-heading-4: 16px;
    --scalar-heading-5: 16px;
    --scalar-heading-6: 16px;
    --scalar-paragraph: 16px;
    --scalar-small: 14px;
    --scalar-mini: 13px;
    --scalar-micro: 12px;
    --scalar-bold: 600;
    --scalar-semibold: 500;
    --scalar-regular: 400;
    --scalar-font-size-1: 21px;
    --scalar-font-size-2: 16px;
    --scalar-font-size-3: 14px;
    --scalar-font-size-4: 13px;
    --scalar-font-size-5: 12px;
    --scalar-font-size-6: 12px;
    --scalar-font-size-7: 10px;
    --scalar-line-height-1: 32px;
    --scalar-line-height-2: 24px;
    --scalar-line-height-3: 20px;
    --scalar-line-height-4: 18px;
    --scalar-line-height-5: 16px;
    --scalar-font-normal: 400;
    --scalar-font-medium: 500;
    --scalar-font-bold: 700;
    --scalar-text-decoration: none;
    --scalar-text-decoration-hover: underline;
    --scalar-link-font-weight: inherit;
    --scalar-sidebar-indent: 20px;
    --scalar-sidebar-padding: 12px;
  }

  .dark-mode {
    --csstools-color-scheme--light:  ;
    color-scheme: dark;
    --scalar-scrollbar-color: #ffffff2e;
    --scalar-scrollbar-color-active: #ffffff5c;
    --scalar-button-1: #fff;
    --scalar-button-1-hover: #ffffffe6;
    --scalar-button-1-color: black;
    --scalar-shadow-1: 0 1px 3px 0 #0000001a;
    --scalar-shadow-2: 0 0 0 .5px var(--scalar-border-color), #0f0f0f33 0px 3px 6px, #0f0f0f66 0px 9px 24px;
    --scalar-lifted-brightness: 1.45;
    --scalar-backdrop-brightness: .5;
    --scalar-text-decoration-color: currentColor;
    --scalar-text-decoration-color-hover: currentColor;
  }

  .light-mode {
    --csstools-color-scheme--light: initial;
    color-scheme: light;
    --scalar-scrollbar-color-active: #0000005c;
    --scalar-scrollbar-color: #0000002e;
    --scalar-button-1: #000;
    --scalar-button-1-hover: #000c;
    --scalar-button-1-color: #fff;
    --scalar-shadow-1: 0 1px 3px 0 #0000001c;
    --scalar-shadow-2: #00000014 0px 13px 20px 0px, #00000014 0px 3px 8px 0px, #eeeeed 0px 0 0 .5px;
    --scalar-lifted-brightness: 1;
    --scalar-backdrop-brightness: 1;
    --scalar-text-decoration-color: currentColor;
    --scalar-text-decoration-color-hover: currentColor;
  }

  .light-mode .dark-mode {
    --csstools-color-scheme--light:   !important;
    color-scheme: dark !important;
  }

  @media (max-width: 460px) {
    :root {
      --scalar-font-size-1: 22px;
      --scalar-font-size-2: 14px;
      --scalar-font-size-3: 12px;
    }
  }

  @media (max-width: 720px) {
    :root {
      --scalar-heading-1: 24px;
      --scalar-page-description: 20px;
    }
  }

  :root {
    --scalar-text-decoration: underline;
    --scalar-text-decoration-hover: underline;
  }

  .light-mode {
    --scalar-background-1: #fff;
    --scalar-background-2: #f6f6f6;
    --scalar-background-3: #e7e7e7;
    --scalar-background-accent: #8ab4f81f;
    --scalar-color-1: #1b1b1b;
    --scalar-color-2: #757575;
    --scalar-color-3: #8e8e8e;
    --scalar-color-accent: #09f;
    --scalar-border-color: #dfdfdf;
  }

  .dark-mode {
    --scalar-background-1: #0f0f0f;
    --scalar-background-2: #1a1a1a;
    --scalar-background-3: #272727;
    --scalar-color-1: #e7e7e7;
    --scalar-color-2: #a4a4a4;
    --scalar-color-3: #797979;
    --scalar-color-accent: #00aeff;
    --scalar-background-accent: #3ea6ff1f;
    --scalar-border-color: #2d2d2d;
  }

  .light-mode, .dark-mode {
    --scalar-sidebar-background-1: var(--scalar-background-1);
    --scalar-sidebar-color-1: var(--scalar-color-1);
    --scalar-sidebar-color-2: var(--scalar-color-2);
    --scalar-sidebar-border-color: var(--scalar-border-color);
    --scalar-sidebar-item-hover-background: var(--scalar-background-2);
    --scalar-sidebar-item-hover-color: var(--scalar-sidebar-color-2);
    --scalar-sidebar-item-active-background: var(--scalar-background-2);
    --scalar-sidebar-color-active: var(--scalar-sidebar-color-1);
    --scalar-sidebar-indent-border: var(--scalar-sidebar-border-color);
    --scalar-sidebar-indent-border-hover: var(--scalar-sidebar-border-color);
    --scalar-sidebar-indent-border-active: var(--scalar-sidebar-border-color);
    --scalar-sidebar-search-background: var(--scalar-background-2);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .light-mode, .dark-mode {
      --scalar-sidebar-search-background: color-mix(in srgb, var(--scalar-background-2), var(--scalar-background-1));
    }
  }

  .light-mode, .dark-mode {
    --scalar-sidebar-search-color: var(--scalar-color-3);
    --scalar-sidebar-search-border-color: var(--scalar-border-color);
  }

  .light-mode {
    --scalar-color-green: #069061;
    --scalar-color-red: #ef0006;
    --scalar-color-yellow: #edbe20;
    --scalar-color-blue: #0082d0;
    --scalar-color-orange: #ff5800;
    --scalar-color-purple: #5203d1;
    --scalar-link-color: var(--scalar-color-1);
    --scalar-link-color-hover: var(--scalar-link-color);
    --scalar-button-1: #000;
    --scalar-button-1-hover: #000c;
    --scalar-button-1-color: #fff;
    --scalar-tooltip-background: #1a1a1ae6;
    --scalar-tooltip-color: #ffffffd9;
    --scalar-color-alert: var(--scalar-color-orange);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .light-mode {
      --scalar-color-alert: color-mix(in srgb, var(--scalar-color-orange), var(--scalar-color-1) 20%);
    }
  }

  .light-mode {
    --scalar-color-danger: var(--scalar-color-red);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .light-mode {
      --scalar-color-danger: color-mix(in srgb, var(--scalar-color-red), var(--scalar-color-1) 20%);
    }
  }

  .light-mode {
    --scalar-background-alert: var(--scalar-color-orange);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .light-mode {
      --scalar-background-alert: color-mix(in srgb, var(--scalar-color-orange), var(--scalar-background-1) 95%);
    }
  }

  .light-mode {
    --scalar-background-danger: var(--scalar-color-red);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .light-mode {
      --scalar-background-danger: color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 95%);
    }
  }

  .dark-mode {
    --scalar-color-green: #00b648;
    --scalar-color-red: #dc1b19;
    --scalar-color-yellow: #ffc90d;
    --scalar-color-blue: #4eb3ec;
    --scalar-color-orange: #ff8d4d;
    --scalar-color-purple: #b191f9;
    --scalar-link-color: var(--scalar-color-1);
    --scalar-link-color-hover: var(--scalar-link-color);
    --scalar-button-1: #fff;
    --scalar-button-1-hover: #ffffffe6;
    --scalar-button-1-color: black;
    --scalar-tooltip-background: var(--scalar-background-1);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .dark-mode {
      --scalar-tooltip-background: color-mix(in srgb, var(--scalar-background-1), #fff 10%);
    }
  }

  .dark-mode {
    --scalar-tooltip-color: #fffffff2;
    --scalar-color-danger: var(--scalar-color-red);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .dark-mode {
      --scalar-color-danger: color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 20%);
    }
  }

  .dark-mode {
    --scalar-background-alert: var(--scalar-color-orange);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .dark-mode {
      --scalar-background-alert: color-mix(in srgb, var(--scalar-color-orange), var(--scalar-background-1) 95%);
    }
  }

  .dark-mode {
    --scalar-background-danger: var(--scalar-color-red);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .dark-mode {
      --scalar-background-danger: color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 95%);
    }
  }

  @supports (color: color(display-p3 1 1 1)) {
    .light-mode {
      --scalar-color-accent: rgb(0, 156, 237);
      --scalar-color-green: rgb(0, 140, 100);
      --scalar-color-red: rgb(249, 0, 11);
      --scalar-color-yellow: rgb(241, 189, 0);
      --scalar-color-blue: rgb(0, 132, 194);
      --scalar-color-orange: rgb(255, 112, 47);
      --scalar-color-purple: rgb(90, 0, 216);
    }

@media (color-gamut: p3){
.light-mode {
      --scalar-color-accent: color(display-p3 0 .6 1);
      --scalar-color-green: color(display-p3 .023529 .564706 .380392);
      --scalar-color-red: color(display-p3 .937255 0 .023529);
      --scalar-color-yellow: color(display-p3 .929412 .745098 .12549);
      --scalar-color-blue: color(display-p3 0 .509804 .815686);
      --scalar-color-orange: color(display-p3 1 .4 .02);
      --scalar-color-purple: color(display-p3 .321569 .011765 .819608);
    }
}

    .dark-mode {
      --scalar-color-accent: rgb(0, 173, 240);
      --scalar-color-green: rgb(0, 176, 87);
      --scalar-color-red: rgb(234, 0, 17);
      --scalar-color-yellow: rgb(255, 202, 46);
      --scalar-color-blue: rgb(0, 182, 240);
      --scalar-color-orange: rgb(255, 146, 93);
      --scalar-color-purple: rgb(183, 144, 255);
    }

@media (color-gamut: p3){
.dark-mode {
      --scalar-color-accent: color(display-p3 .07 .67 1);
      --scalar-color-green: color(display-p3 0 .713725 .282353);
      --scalar-color-red: color(display-p3 .862745 .105882 .098039);
      --scalar-color-yellow: color(display-p3 1 .788235 .05098);
      --scalar-color-blue: color(display-p3 .305882 .701961 .92549);
      --scalar-color-orange: color(display-p3 1 .552941 .301961);
      --scalar-color-purple: color(display-p3 .694118 .568627 .976471);
    }
}
  }

  :root, :host {
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --ease-in: cubic-bezier(.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --ease-in-out: cubic-bezier(.4, 0, .2, 1);
    --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  }
}
:where(.scalar-app) {
  font-family: var(--scalar-font);
  color: var(--scalar-color-1);
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  line-height: 1.15;
}
:where(.scalar-app) *, :where(.scalar-app) :before, :where(.scalar-app) :after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  border-color: var(--scalar-border-color);
  outline-width: 1px;
  outline-style: none;
  outline-color: var(--scalar-color-accent);
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  -webkit-text-decoration: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
  text-align: inherit;
  line-height: inherit;
  color: inherit;
  margin: unset;
  padding: unset;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:where(.scalar-app) :before, :where(.scalar-app) :after {
  --tw-content: "";
}
:where(.scalar-app) button, :where(.scalar-app) input, :where(.scalar-app) optgroup, :where(.scalar-app) select, :where(.scalar-app) textarea {
  background: none;
}
:where(.scalar-app) ::file-selector-button {
  background: none;
}
:where(.scalar-app) ol, :where(.scalar-app) ul, :where(.scalar-app) menu {
  list-style: none;
}
:where(.scalar-app) input:where(:not([type="button"]):not([type="reset"]):not([type="submit"])), :where(.scalar-app) select, :where(.scalar-app) textarea {
  border-radius: var(--scalar-radius);
  border-width: 1px;
}
:where(.scalar-app) input::placeholder {
  color: var(--scalar-color-3);
  font-family: var(--scalar-font);
}
:where(.scalar-app) input[type="search"]::-webkit-search-cancel-button {
  appearance: none;
}
:where(.scalar-app) input[type="search"]::-webkit-search-decoration {
  appearance: none;
}
:where(.scalar-app) summary::-webkit-details-marker {
  display: none;
}
:where(.scalar-app) input:-webkit-autofill {
  -webkit-background-clip: text !important;
  background-clip: text !important;
}
:where(.scalar-app) :focus-visible {
  border-radius: var(--scalar-radius);
  outline-style: solid;
}
:where(.scalar-app) button:focus-visible, :where(.scalar-app) [role="button"]:focus-visible {
  outline-offset: -1px;
}
:where(.scalar-app) button, :where(.scalar-app) [role="button"] {
  cursor: pointer;
}
:where(.scalar-app) :disabled {
  cursor: default;
}
:where(.scalar-app) img, :where(.scalar-app) svg, :where(.scalar-app) video, :where(.scalar-app) canvas, :where(.scalar-app) audio, :where(.scalar-app) iframe, :where(.scalar-app) embed, :where(.scalar-app) object {
  vertical-align: middle;
  display: block;
}
:where(.scalar-app) [hidden] {
  display: none;
}
.scalar-app .cm-scroller, .scalar-app .custom-scroll {
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.scalar-app .custom-scroll-self-contain-overflow {
  overscroll-behavior: contain;
}
.scalar-app .cm-scroller:hover, .scalar-app .custom-scroll:hover, .scalar-app.scalar-scrollbars-obtrusive .cm-scroller, .scalar-app.scalar-scrollbars-obtrusive .custom-scroll {
  scrollbar-color: var(--scalar-scrollbar-color, transparent) transparent;
}
.scalar-app .cm-scroller:hover::-webkit-scrollbar-thumb {
  background: var(--scalar-scrollbar-color);
  background-clip: content-box;
  border: 3px solid #0000;
}
.scalar-app .custom-scroll:hover::-webkit-scrollbar-thumb {
  background: var(--scalar-scrollbar-color);
  background-clip: content-box;
  border: 3px solid #0000;
}
.scalar-app .cm-scroller::-webkit-scrollbar-thumb:active {
  background: var(--scalar-scrollbar-color-active);
  background-clip: content-box;
  border: 3px solid #0000;
}
.scalar-app .custom-scroll::-webkit-scrollbar-thumb:active {
  background: var(--scalar-scrollbar-color-active);
  background-clip: content-box;
  border: 3px solid #0000;
}
.scalar-app .cm-scroller::-webkit-scrollbar-corner {
  background: none;
}
.scalar-app .custom-scroll::-webkit-scrollbar-corner {
  background: none;
}
.scalar-app .cm-scroller::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.scalar-app .custom-scroll::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.scalar-app .cm-scroller::-webkit-scrollbar-track {
  background: none;
}
.scalar-app .custom-scroll::-webkit-scrollbar-track {
  background: none;
}
.scalar-app .cm-scroller::-webkit-scrollbar-thumb {
  background: padding-box content-box;
  border: 3px solid #0000;
  border-radius: 20px;
}
.scalar-app .custom-scroll::-webkit-scrollbar-thumb {
  background: padding-box content-box;
  border: 3px solid #0000;
  border-radius: 20px;
}
@media (pointer: coarse) {
  .scalar-app .cm-scroller, .scalar-app .custom-scroll {
    padding-right: 12px;
  }
}
:where(.scalar-app) [class*="rotate-"], :where(.scalar-app) [class*="translate-"], :where(.scalar-app) [class*="scale-"] {
  transform: none;
}
.loader-wrapper[data-v-27df5cd8] {
  --loader-size: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}
.svg-loader[data-v-27df5cd8] {
  width: var(--loader-size);
  height: var(--loader-size);
  fill: none;
  stroke: currentColor;
  background-color: #0000;
  top: 1rem;
  right: .9rem;
  overflow: visible;
}
.svg-path[data-v-27df5cd8] {
  stroke-width: 12px;
  fill: none;
  transition: all .3s;
}
.svg-x-mark[data-v-27df5cd8] {
  stroke-dasharray: 57;
  stroke-dashoffset: 57px;
  transition-delay: 0s;
}
.svg-check-mark[data-v-27df5cd8] {
  stroke-dasharray: 149;
  stroke-dashoffset: 149px;
  transition-delay: 0s;
}
.icon-is-invalid .svg-x-mark[data-v-27df5cd8], .icon-is-valid .svg-check-mark[data-v-27df5cd8] {
  stroke-dashoffset: 0;
  transition-delay: .3s;
}
.circular-loader[data-v-27df5cd8] {
  transform-origin: center;
  background: none;
  animation: .7s linear infinite rotate-27df5cd8, .4s fade-in-27df5cd8;
  transform: scale(3.5);
}
.loader-path[data-v-27df5cd8] {
  stroke-dasharray: 50 200;
  stroke-dashoffset: -100px;
  stroke-linecap: round;
}
.loader-path-off[data-v-27df5cd8] {
  stroke-dasharray: 50 200;
  stroke-dashoffset: -100px;
  opacity: 0;
  transition: opacity .3s;
}
@keyframes fade-in-27df5cd8 {
  0% {
    opacity: 0;
  }

  70% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes rotate-27df5cd8 {
  from {
    transform: scale(3.5) rotate(0);
  }

  to {
    transform: scale(3.5) rotate(360deg);
  }
}
.scalar-code-block pre {
  font-feature-settings: none;
  font-variant-ligatures: none;
}
.scalar-code-block.bg-b-1 .scalar-code-copy-backdrop {
  background-color: var(--scalar-background-1);
}
.scalar-code-block.bg-b-2 .scalar-code-copy-backdrop {
  background-color: var(--scalar-background-2);
}
.scalar-code-block.bg-b-2 .scalar-code-copy {
  background-color: var(--scalar-background-3);
}
.toggle-icon-ellipse[data-v-60be8692] {
  background: var(--scalar-background-1);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  transition: width .3s ease-in-out, height .3s ease-in-out;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px;
}
.toggle-icon-moon-mask[data-v-60be8692] {
  background: var(--scalar-background-1);
  border: 1px solid;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: transform .3s ease-in-out;
  display: block;
  position: absolute;
  bottom: 2.5px;
  left: 2.5px;
  transform: translate3d(4px, -4px, 0);
}
.toggle-icon-sun-ray[data-v-60be8692] {
  background: currentColor;
  border-radius: 8px;
  width: 12px;
  height: 1px;
  transition: transform .3s ease-in-out;
  position: absolute;
}
.toggle-icon-sun-ray[data-v-60be8692]:nth-of-type(2) {
  transform: rotate(90deg);
}
.toggle-icon-sun-ray[data-v-60be8692]:nth-of-type(3) {
  transform: rotate(45deg);
}
.toggle-icon-sun-ray[data-v-60be8692]:nth-of-type(4) {
  transform: rotate(-45deg);
}
.toggle-icon-dark .toggle-icon-ellipse[data-v-60be8692] {
  width: 10px;
  height: 10px;
  -webkit-mask-image: radial-gradient(circle at 0 100%, pink 10px, #0000 12px);
  mask-image: radial-gradient(circle at 0 100%, pink 10px, #0000 12px);
}
.toggle-icon-dark .toggle-icon-sun-ray[data-v-60be8692] {
  transform: scale(0);
}
.toggle-icon-dark .toggle-icon-moon-mask[data-v-60be8692] {
  transform: translate3d(0, 0, 0);
}
.dark-mode .scalar-dropdown-item[data-v-f5e0d3d8]:hover, .dark-mode .scalar-dropdown-item[data-highlighted][data-v-f5e0d3d8], .dark-mode .scalar-dropdown-item[data-v-3402682d]:hover {
  filter: brightness(1.1);
}
.scalar-icon[data-v-b651bb23], .scalar-icon[data-v-b651bb23] * {
  stroke-width: var(--c07589c2);
}
.scalar-app :where(code.hljs) * {
  font-size: inherit;
  font-family: var(--scalar-font-code);
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  tab-size: 4;
  line-height: 1.4;
}
.scalar-app code.hljs {
  all: unset;
  font-size: inherit;
  color: var(--scalar-color-2);
  font-family: var(--scalar-font-code);
  counter-reset: linenumber;
}
.scalar-app .hljs {
  color: var(--scalar-color-2);
  background: none;
}
.scalar-app .hljs .line:before {
  color: var(--scalar-color-3);
  counter-increment: linenumber;
  content: counter(linenumber);
  min-width: calc(var(--line-digits) * 1ch);
  text-align: right;
  margin-right: .875rem;
  display: inline-block;
}
.scalar-app .hljs-comment, .scalar-app .hljs-quote {
  color: var(--scalar-color-3);
  font-style: italic;
}
.scalar-app .hljs-number {
  color: var(--scalar-color-orange);
}
.scalar-app .hljs-regexp, .scalar-app .hljs-string, .scalar-app .hljs-built_in {
  color: var(--scalar-color-blue);
}
.scalar-app .hljs-title.class_ {
  color: var(--scalar-color-1);
}
.scalar-app .hljs-keyword {
  color: var(--scalar-color-purple);
}
.scalar-app .hljs-title.function_ {
  color: var(--scalar-color-orange);
}
.scalar-app .hljs-subst, .scalar-app .hljs-name {
  color: var(--scalar-color-blue);
}
.scalar-app .hljs-attr, .scalar-app .hljs-attribute {
  color: var(--scalar-color-1);
}
.scalar-app .hljs-addition, .scalar-app .hljs-literal, .scalar-app .hljs-selector-tag, .scalar-app .hljs-type {
  color: var(--scalar-color-green);
}
.scalar-app .hljs-selector-attr, .scalar-app .hljs-selector-pseudo {
  color: var(--scalar-color-orange);
}
.scalar-app .hljs-doctag, .scalar-app .hljs-section, .scalar-app .hljs-title {
  color: var(--scalar-color-blue);
}
.scalar-app .hljs-selector-id, .scalar-app .hljs-template-variable, .scalar-app .hljs-variable {
  color: var(--scalar-color-1);
}
.scalar-app .hljs-name, .scalar-app .hljs-section, .scalar-app .hljs-strong {
  font-weight: var(--scalar-semibold);
}
.scalar-app .hljs-bullet, .scalar-app .hljs-link, .scalar-app .hljs-meta, .scalar-app .hljs-symbol {
  color: var(--scalar-color-blue);
}
.scalar-app .hljs-deletion {
  color: var(--scalar-color-red);
}
.scalar-app .hljs-formula {
  background: var(--scalar-color-1);
}
.scalar-app .hljs-emphasis {
  font-style: italic;
}
.scalar-app .credential .credential-value {
  color: #0000;
  font-size: 0;
}
.scalar-app .credential:after {
  content: "·····";
  color: var(--scalar-color-3);
  -webkit-user-select: none;
  user-select: none;
}
.hljs.language-html {
  color: var(--scalar-color-1);
}
.hljs.language-html .hljs-attr {
  color: var(--scalar-color-2);
}
.hljs.language-curl .hljs-string {
  color: var(--scalar-color-blue);
}
.hljs.language-curl .hljs-literal {
  color: var(--scalar-color-1);
}
.hljs.language-php .hljs-variable {
  color: var(--scalar-color-blue);
}
.hljs.language-objectivec .hljs-meta {
  color: var(--scalar-color-1);
}
.hljs.language-objectivec .hljs-built_in, .hljs-built_in {
  color: var(--scalar-color-orange);
}
.scalar-app .markdown {
  --scalar-refs-heading-spacing: 24px;
  --markdown-border: var(--scalar-border-width) solid
      var(--scalar-border-color);
  --markdown-spacing-sm: 12px;
  --markdown-spacing-md: 16px;
  --markdown-line-height: 1.625;
  --markdown-heading-line-height: 1.15;
  font-family: var(--scalar-font);
  word-break: break-word;
  line-height: var(--markdown-line-height);
}
.scalar-app .markdown > * {
  margin-bottom: var(--markdown-spacing-md);
}
.scalar-app .markdown > :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):last-child {
  margin-bottom: 0;
}
.scalar-app .markdown h1, .scalar-app .markdown h2, .scalar-app .markdown h3, .scalar-app .markdown h4, .scalar-app .markdown h5, .scalar-app .markdown h6 {
  font-weight: var(--scalar-bold);
  margin-top: var(--scalar-refs-heading-spacing);
  margin-bottom: var(--markdown-spacing-sm);
  line-height: var(--markdown-heading-line-height, 1.15);
  scroll-margin-top: 1rem;
  display: block;
}
.scalar-app .markdown h1 {
  font-size: 1.5rem;
}
.scalar-app .markdown h2, .scalar-app .markdown h3 {
  font-size: 1.25rem;
}
.scalar-app .markdown h4, .scalar-app .markdown h5, .scalar-app .markdown h6 {
  font-size: 1rem;
}
.scalar-app .markdown b, .scalar-app .markdown strong {
  font-weight: var(--scalar-bold);
}
.scalar-app .markdown p {
  color: inherit;
  line-height: var(--markdown-line-height);
  display: block;
}
.scalar-app .markdown img {
  border-radius: var(--scalar-radius);
  max-width: 100%;
  display: inline-block;
  overflow: hidden;
}
.scalar-app .markdown ul, .scalar-app .markdown ol {
  line-height: var(--markdown-line-height);
  flex-direction: column;
  gap: 2px;
  padding-left: 1.6em;
  display: flex;
}
.scalar-app .markdown li {
  margin-top: 2px;
  padding-left: 7px;
}
.scalar-app ol > li::marker {
  font: var(--scalar-font);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  font-weight: var(--scalar-semibold);
  white-space: nowrap;
}
.scalar-app ol > * > li::marker {
  font: var(--scalar-font);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  font-weight: var(--scalar-semibold);
  white-space: nowrap;
}
.scalar-app .markdown ol {
  list-style-type: decimal;
}
.scalar-app .markdown ol ol {
  list-style-type: lower-alpha;
}
.scalar-app .markdown ol ol ol ol, .scalar-app .markdown ol ol ol ol ol ol ol {
  list-style-type: decimal;
}
.scalar-app .markdown ol ol ol ol ol, .scalar-app .markdown ol ol ol ol ol ol ol ol {
  list-style-type: lower-alpha;
}
.scalar-app .markdown ol ol ol, .scalar-app .markdown ol ol ol ol ol ol, .scalar-app .markdown ol ol ol ol ol ol ol ol ol {
  list-style-type: lower-roman;
}
.scalar-app .markdown ul > li, .scalar-app .markdown ul > * > li {
  list-style-type: disc;
}
.scalar-app .markdown table {
  table-layout: fixed;
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: var(--scalar-radius);
  border-spacing: 0;
  width: max-content;
  max-width: 100%;
  margin: 1em 0;
  display: table;
  position: relative;
  overflow-x: auto;
}
.scalar-app .markdown tbody, .scalar-app .markdown thead {
  vertical-align: middle;
}
.scalar-app .markdown tbody {
  display: table-row-group;
}
.scalar-app .markdown thead {
  display: table-header-group;
}
.scalar-app .markdown tr {
  border-color: inherit;
  vertical-align: inherit;
  display: table-row;
}
.scalar-app .markdown td, .scalar-app .markdown th {
  vertical-align: top;
  min-width: 1em;
  line-height: var(--markdown-line-height);
  word-break: break-word;
  font-size: var(--scalar-small);
  color: var(--scalar-color-1);
  border-right: var(--markdown-border);
  border-bottom: var(--markdown-border);
  padding: 8.5px 16px;
  display: table-cell;
  position: relative;
}
.scalar-app .markdown td > *, .scalar-app .markdown th > * {
  margin-bottom: 0;
}
.scalar-app .markdown th:empty {
  display: none;
}
.scalar-app .markdown td:first-of-type, .scalar-app .markdown th:first-of-type {
  border-left: none;
}
.scalar-app .markdown td:last-of-type, .scalar-app .markdown th:last-of-type {
  border-right: none;
}
.scalar-app .markdown tr:last-of-type td {
  border-bottom: none;
}
.scalar-app .markdown th {
  font-weight: var(--scalar-bold);
  text-align: left;
  background: var(--scalar-background-2);
  border-left-color: #0000;
}
.scalar-app .markdown th:first-of-type {
  border-top-left-radius: var(--scalar-radius);
}
.scalar-app .markdown th:last-of-type {
  border-top-right-radius: var(--scalar-radius);
}
.scalar-app .markdown tr > [align="left"] {
  text-align: left;
}
.scalar-app .markdown tr > [align="right"] {
  text-align: right;
}
.scalar-app .markdown tr > [align="center"] {
  text-align: center;
}
.scalar-app .markdown details {
  border: var(--markdown-border);
  border-radius: var(--scalar-radius-xl);
  color: var(--scalar-color-1);
}
.scalar-app .markdown details > :not(summary) {
  margin: var(--markdown-spacing-md);
  margin-bottom: 0;
}
.scalar-app .markdown details > p:has( > strong):not(:has(:not(strong))) {
  margin-bottom: 8px;
}
.scalar-app .markdown details > p:has( > strong):not(:has(:not(strong))) + * {
  margin-top: 0;
}
.scalar-app .markdown details > table {
  width: calc(100% - calc(var(--markdown-spacing-md) * 2));
}
.scalar-app .markdown summary {
  min-height: 40px;
  font-weight: var(--scalar-semibold);
  line-height: var(--markdown-line-height);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 2.5px;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 14px;
  display: flex;
  position: relative;
}
.scalar-app .markdown summary:hover {
  background-color: var(--scalar-background-2);
}
.scalar-app .markdown details[open] {
  padding-bottom: var(--markdown-spacing-md);
}
.scalar-app .markdown details[open] > summary {
  border-bottom: var(--markdown-border);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.scalar-app .markdown summary:before {
  content: "";
  width: var(--markdown-spacing-md);
  height: var(--markdown-spacing-md);
  background-color: var(--scalar-color-3);
  flex-shrink: 0;
  margin-top: 5px;
  display: block;
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\" width=\"1em\" height=\"1em\"><path d=\"M181.66,133.66l-80,80a8,8,0,0,1-11.32-11.32L164.69,128,90.34,53.66a8,8,0,0,1,11.32-11.32l80,80A8,8,0,0,1,181.66,133.66Z\"></path></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\" width=\"1em\" height=\"1em\"><path d=\"M181.66,133.66l-80,80a8,8,0,0,1-11.32-11.32L164.69,128,90.34,53.66a8,8,0,0,1,11.32-11.32l80,80A8,8,0,0,1,181.66,133.66Z\"></path></svg>");
}
.scalar-app .markdown summary:hover:before {
  background-color: var(--scalar-color-1);
}
.scalar-app .markdown details[open] > summary:before {
  transition: transform .1s ease-in-out;
  transform: rotate(90deg);
}
.scalar-app .markdown details:has( + details) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  margin-bottom: 0;
}
.scalar-app .markdown details:has( + details) + details, .scalar-app .markdown details:has( + details) + details > summary {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.scalar-app .markdown a {
  --font-color: var(--scalar-link-color, var(--scalar-color-accent));
  --font-visited: var(--scalar-link-color-visited, var(--scalar-color-2));
  -webkit-text-decoration: var(--scalar-text-decoration);
  -webkit-text-decoration: var(--scalar-text-decoration);
  text-decoration: var(--scalar-text-decoration);
  color: var(--font-color);
  font-weight: var(--scalar-link-font-weight, var(--scalar-semibold));
  text-underline-offset: .25rem;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--font-color);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .markdown a {
    text-decoration-color: color-mix(in srgb, var(--font-color) 30%, transparent);
  }

@supports (color: color-mix(in lch, red, blue)){
.scalar-app .markdown a {
    -webkit-text-decoration-color: color-mix(in srgb, var(--font-color) 30%, transparent);
  }
}
}
.scalar-app .markdown a:hover {
  text-decoration-color: var(--scalar-color-1, currentColor);
  color: var(--scalar-link-color-hover, var(--scalar-color-accent));
  -webkit-text-decoration: var(--scalar-text-decoration-hover);
  -webkit-text-decoration: var(--scalar-text-decoration-hover);
  -webkit-text-decoration: var(--scalar-text-decoration-hover);
  text-decoration: var(--scalar-text-decoration-hover);
}
.scalar-app .markdown a:visited {
  color: var(--font-visited);
}
.scalar-app .markdown em {
  font-style: italic;
}
.scalar-app .markdown sup, .scalar-app .markdown sub {
  font-size: var(--scalar-micro);
  font-weight: 450;
}
.scalar-app .markdown sup {
  vertical-align: super;
}
.scalar-app .markdown sub {
  vertical-align: sub;
}
.scalar-app .markdown del {
  -webkit-text-decoration: line-through;
  text-decoration: line-through;
}
.scalar-app .markdown code {
  font-family: var(--scalar-font-code);
  background-color: var(--scalar-background-2);
  box-shadow: 0 0 0 var(--scalar-border-width) var(--scalar-border-color);
  font-size: var(--scalar-micro);
  border-radius: 2px;
  padding: 0 3px;
}
.scalar-app .markdown .hljs {
  font-size: var(--scalar-small);
}
.scalar-app .markdown pre code {
  white-space: pre;
  padding: var(--markdown-spacing-sm);
  margin: var(--markdown-spacing-sm) 0;
  -webkit-overflow-scrolling: touch;
  min-width: 100px;
  max-width: 100%;
  line-height: 1.5;
  display: block;
  overflow-x: auto;
}
.scalar-app .markdown hr {
  border: none;
  border-bottom: var(--markdown-border);
}
.scalar-app .markdown blockquote {
  border-left: 2px solid var(--scalar-border-color);
  padding-left: var(--markdown-spacing-sm);
}
.scalar-app .markdown blockquote > * {
  margin-bottom: var(--markdown-spacing-sm);
}
.scalar-app .markdown li.task-list-item {
  list-style: none;
  position: relative;
}
.scalar-app .markdown li.task-list-item > input {
  appearance: none;
  width: var(--markdown-spacing-md);
  height: var(--markdown-spacing-md);
  border: 1px solid var(--scalar-color-3);
  border-radius: var(--scalar-radius);
  display: inline;
  position: absolute;
  top: .225em;
  left: -1.4em;
}
.scalar-app .markdown li.task-list-item > input[type="checkbox"]:checked {
  background-color: var(--scalar-color-1);
  border-color: var(--scalar-color-1);
}
.scalar-app .markdown li.task-list-item > input[type="checkbox"]:before {
  content: "";
  border: solid var(--scalar-background-1);
  opacity: 0;
  border-width: 0 1.5px 1.5px 0;
  width: 5px;
  height: 10px;
  position: absolute;
  top: 1px;
  left: 5px;
  transform: rotate(45deg);
}
.scalar-app .markdown li.task-list-item > input[type="checkbox"]:checked:before {
  opacity: 1;
}
.scalar-app .markdown .markdown-alert {
  border-radius: var(--scalar-radius);
  background-color: var(--scalar-background-2);
  align-items: stretch;
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .markdown .markdown-alert {
    background-color: color-mix(in srgb, var(--scalar-background-2), transparent);
  }
}
.scalar-app .markdown .markdown-alert {
  border: var(--markdown-border);
  gap: var(--markdown-spacing-sm);
  padding: 10px 14px;
  display: flex;
  position: relative;
}
.scalar-app .markdown .markdown-alert .markdown-alert-icon:before {
  content: "";
  background-color: currentColor;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  display: block;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.scalar-app .markdown .markdown-alert.markdown-alert-note {
  background-color: var(--scalar-color-blue);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .markdown .markdown-alert.markdown-alert-note {
    background-color: color-mix(in srgb, var(--scalar-color-blue), transparent 97%);
  }
}
.scalar-app .markdown .markdown-alert.markdown-alert-note {
  border: var(--scalar-border-width) solid var(--scalar-color-blue);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .markdown .markdown-alert.markdown-alert-note {
    border: var(--scalar-border-width) solid color-mix(in srgb, var(--scalar-color-blue), transparent 50%);
  }
}
.scalar-app .markdown .markdown-alert.markdown-alert-tip {
  background-color: var(--scalar-color-2);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .markdown .markdown-alert.markdown-alert-tip {
    background-color: color-mix(in srgb, var(--scalar-color-2), transparent 97%);
  }
}
.scalar-app .markdown .markdown-alert.markdown-alert-tip {
  border: var(--scalar-border-width) solid var(--scalar-color-2);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .markdown .markdown-alert.markdown-alert-tip {
    border: var(--scalar-border-width) solid color-mix(in srgb, var(--scalar-color-2), transparent 50%);
  }
}
.scalar-app .markdown .markdown-alert.markdown-alert-note .markdown-alert-icon:before, .scalar-app .markdown .markdown-alert.markdown-alert-tip .markdown-alert-icon:before {
  color: var(--scalar-color-blue);
  -webkit-mask-image: url("data:image/svg+xml,<svg data-v-852d534d=\"\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\" class=\"icon-placeholder\"><path d=\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm16-40a8,8,0,0,1-8,8,16,16,0,0,1-16-16V128a8,8,0,0,1,0-16,16,16,0,0,1,16,16v40A8,8,0,0,1,144,176ZM112,84a12,12,0,1,1,12,12A12,12,0,0,1,112,84Z\"></path></svg>");
  mask-image: url("data:image/svg+xml,<svg data-v-852d534d=\"\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\" class=\"icon-placeholder\"><path d=\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm16-40a8,8,0,0,1-8,8,16,16,0,0,1-16-16V128a8,8,0,0,1,0-16,16,16,0,0,1,16,16v40A8,8,0,0,1,144,176ZM112,84a12,12,0,1,1,12,12A12,12,0,0,1,112,84Z\"></path></svg>");
}
.scalar-app .markdown .markdown-alert.markdown-alert-important, .scalar-app .markdown .markdown-alert.markdown-alert-warning {
  background-color: var(--scalar-color-orange);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .markdown .markdown-alert.markdown-alert-important, .scalar-app .markdown .markdown-alert.markdown-alert-warning {
    background-color: color-mix(in srgb, var(--scalar-color-orange), transparent 97%);
  }
}
.scalar-app .markdown .markdown-alert.markdown-alert-important, .scalar-app .markdown .markdown-alert.markdown-alert-warning {
  border: var(--scalar-border-width) solid var(--scalar-color-orange);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .markdown .markdown-alert.markdown-alert-important, .scalar-app .markdown .markdown-alert.markdown-alert-warning {
    border: var(--scalar-border-width) solid color-mix(in srgb, var(--scalar-color-orange), transparent 50%);
  }
}
.scalar-app .markdown .markdown-alert.markdown-alert-important .markdown-alert-icon:before, .scalar-app .markdown .markdown-alert.markdown-alert-warning .markdown-alert-icon:before {
  -webkit-mask-image: url("data:image/svg+xml,<svg data-v-852d534d=\"\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\" class=\"icon-placeholder\"><path d=\"M236.8,188.09,149.35,36.22h0a24.76,24.76,0,0,0-42.7,0L19.2,188.09a23.51,23.51,0,0,0,0,23.72A24.35,24.35,0,0,0,40.55,224h174.9a24.35,24.35,0,0,0,21.33-12.19A23.51,23.51,0,0,0,236.8,188.09ZM222.93,203.8a8.5,8.5,0,0,1-7.48,4.2H40.55a8.5,8.5,0,0,1-7.48-4.2,7.59,7.59,0,0,1,0-7.72L120.52,44.21a8.75,8.75,0,0,1,15,0l87.45,151.87A7.59,7.59,0,0,1,222.93,203.8ZM120,144V104a8,8,0,0,1,16,0v40a8,8,0,0,1-16,0Zm20,36a12,12,0,1,1-12-12A12,12,0,0,1,140,180Z\"></path></svg>");
  mask-image: url("data:image/svg+xml,<svg data-v-852d534d=\"\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\" class=\"icon-placeholder\"><path d=\"M236.8,188.09,149.35,36.22h0a24.76,24.76,0,0,0-42.7,0L19.2,188.09a23.51,23.51,0,0,0,0,23.72A24.35,24.35,0,0,0,40.55,224h174.9a24.35,24.35,0,0,0,21.33-12.19A23.51,23.51,0,0,0,236.8,188.09ZM222.93,203.8a8.5,8.5,0,0,1-7.48,4.2H40.55a8.5,8.5,0,0,1-7.48-4.2,7.59,7.59,0,0,1,0-7.72L120.52,44.21a8.75,8.75,0,0,1,15,0l87.45,151.87A7.59,7.59,0,0,1,222.93,203.8ZM120,144V104a8,8,0,0,1,16,0v40a8,8,0,0,1-16,0Zm20,36a12,12,0,1,1-12-12A12,12,0,0,1,140,180Z\"></path></svg>");
}
.scalar-app .markdown .markdown-alert.markdown-alert-caution {
  background-color: var(--scalar-color-red);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .markdown .markdown-alert.markdown-alert-caution {
    background-color: color-mix(in srgb, var(--scalar-color-red), transparent 97%);
  }
}
.scalar-app .markdown .markdown-alert.markdown-alert-caution {
  border: var(--scalar-border-width) solid var(--scalar-color-red);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .markdown .markdown-alert.markdown-alert-caution {
    border: var(--scalar-border-width) solid color-mix(in srgb, var(--scalar-color-red), transparent 50%);
  }
}
.scalar-app .markdown .markdown-alert.markdown-alert-caution .markdown-alert-icon:before {
  color: var(--scalar-color-red);
  -webkit-mask-image: url("data:image/svg+xml,<svg data-v-852d534d=\"\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\" class=\"icon-placeholder\"><path d=\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm-8-80V80a8,8,0,0,1,16,0v56a8,8,0,0,1-16,0Zm20,36a12,12,0,1,1-12-12A12,12,0,0,1,140,172Z\"></path></svg>");
  mask-image: url("data:image/svg+xml,<svg data-v-852d534d=\"\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\" class=\"icon-placeholder\"><path d=\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm-8-80V80a8,8,0,0,1,16,0v56a8,8,0,0,1-16,0Zm20,36a12,12,0,1,1-12-12A12,12,0,0,1,140,172Z\"></path></svg>");
}
.scalar-app .markdown .markdown-alert.markdown-alert-success {
  background-color: var(--scalar-color-green);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .markdown .markdown-alert.markdown-alert-success {
    background-color: color-mix(in srgb, var(--scalar-color-green), transparent 97%);
  }
}
.scalar-app .markdown .markdown-alert.markdown-alert-success {
  border: var(--scalar-border-width) solid var(--scalar-color-green);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .markdown .markdown-alert.markdown-alert-success {
    border: var(--scalar-border-width) solid color-mix(in srgb, var(--scalar-color-green), transparent 50%);
  }
}
.scalar-app .markdown .markdown-alert.markdown-alert-success .markdown-alert-icon:before {
  color: var(--scalar-color-green);
  -webkit-mask-image: url("data:image/svg+xml,<svg data-v-852d534d=\"\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\" class=\"icon-placeholder\"><path d=\"M173.66,98.34a8,8,0,0,1,0,11.32l-56,56a8,8,0,0,1-11.32,0l-24-24a8,8,0,0,1,11.32-11.32L112,148.69l50.34-50.35A8,8,0,0,1,173.66,98.34ZM232,128A104,104,0,1,1,128,24,104.11,104.11,0,0,1,232,128Zm-16,0a88,88,0,1,0-88,88A88.1,88.1,0,0,0,216,128Z\"></path></svg>");
  mask-image: url("data:image/svg+xml,<svg data-v-852d534d=\"\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\" class=\"icon-placeholder\"><path d=\"M173.66,98.34a8,8,0,0,1,0,11.32l-56,56a8,8,0,0,1-11.32,0l-24-24a8,8,0,0,1,11.32-11.32L112,148.69l50.34-50.35A8,8,0,0,1,173.66,98.34ZM232,128A104,104,0,1,1,128,24,104.11,104.11,0,0,1,232,128Zm-16,0a88,88,0,1,0-88,88A88.1,88.1,0,0,0,216,128Z\"></path></svg>");
}
.scalar-app .markdown .markdown-alert.markdown-alert-note .markdown-alert-icon:before {
  color: var(--scalar-color-blue);
}
.scalar-app .markdown .markdown-alert.markdown-alert-tip .markdown-alert-icon:before {
  color: var(--scalar-color-2);
}
.scalar-app .markdown .markdown-alert.markdown-alert-important .markdown-alert-icon:before {
  color: var(--scalar-color-purple);
}
.scalar-app .markdown .markdown-alert.markdown-alert-warning .markdown-alert-icon:before {
  color: var(--scalar-color-orange);
}
.scalar-app .markdown .markdown-alert .markdown-alert-content {
  line-height: var(--markdown-line-height);
  margin: 0;
}
.scalar-app .markdown.markdown-summary.markdown-summary :before, .scalar-app .markdown.markdown-summary.markdown-summary :after {
  content: none;
}
.scalar-app .markdown.markdown-summary.markdown-summary :not(strong):not(em):not(a) {
  font-size: inherit;
  font-weight: inherit;
  line-height: var(--markdown-line-height);
  display: contents;
}
.scalar-app .markdown.markdown-summary.markdown-summary img, .scalar-app .markdown.markdown-summary.markdown-summary svg, .scalar-app .markdown.markdown-summary.markdown-summary hr, .scalar-app .markdown.markdown-summary.markdown-summary pre {
  display: none;
}
.scalar-modal-layout[data-v-5bb1dcc2] {
  animation: .3s ease-in-out forwards fadein-layout-5bb1dcc2;
}
.scalar-modal[data-v-5bb1dcc2] {
  box-shadow: var(--scalar-shadow-2);
  animation: .3s ease-in-out .1s forwards fadein-modal-5bb1dcc2;
  transform: translate3d(0, 10px, 0);
}
.scalar-modal-layout-full[data-v-5bb1dcc2] {
  opacity: 1 !important;
  background: none !important;
}
.modal-content-search .modal-body[data-v-5bb1dcc2] {
  flex-direction: column;
  max-height: 440px;
  padding: 0;
  display: flex;
  overflow: hidden;
}
@media (max-width: 720px) and (max-height: 480px) {
  .scalar-modal-layout .scalar-modal[data-v-5bb1dcc2] {
    max-height: 90svh;
    margin-top: 5svh;
  }
}
@keyframes fadein-layout-5bb1dcc2 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadein-modal-5bb1dcc2 {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.full-size-styles[data-v-5bb1dcc2] {
  margin: initial;
  border-right: var(--scalar-border-width) solid var(--scalar-border-color);
  animation: .3s ease-in-out forwards fadein-layout-5bb1dcc2;
  left: 0;
  transform: translate3d(0, 0, 0);
  background-color: var(--scalar-background-1) !important;
  max-height: 100% !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  position: absolute !important;
  top: 0 !important;
}
@media (min-width: 800px) {
  .full-size-styles[data-v-5bb1dcc2] {
    width: 50dvw !important;
  }
}
.full-size-styles[data-v-5bb1dcc2]:after {
  content: "";
  width: 50dvw;
  height: 100dvh;
  position: absolute;
  top: 0;
  right: -50dvw;
}
.group\/item > * > .scalar-sidebar-indent .scalar-sidebar-indent-border[data-v-3e080c68] {
  inset-block: -1px;
}
.group\/item:first-child > * > .scalar-sidebar-indent .scalar-sidebar-indent-border[data-v-3e080c68] {
  top: 0;
}
.group\/item:last-child > * > .scalar-sidebar-indent .scalar-sidebar-indent-border[data-v-3e080c68] {
  bottom: 0;
}
.group\/item:last-of-type > .group\/button > .group\/button-label > .group\/button-loading {
  width: 66.6667%;
}
.group\/items.-translate-x-full .group\/button {
  transition-behavior: allow-discrete;
  max-height: 0;
  transition-property: display, max-height;
  transition-duration: 0s;
  transition-delay: .3s;
  display: none;
}
.group\/item.group\/nested-items-open > * > .group\/items.translate-x-0 .group\/button {
  max-height: 3.40282e38px;
  display: flex;
}
.animate-sidebar-border-bottom {
  animation: forwards border-bottom;
  animation-timeline: scroll();
  animation-range-end: 1px;
}
@keyframes border-bottom {
  from {
    border-bottom-width: 0;
  }

  to {
    border-bottom-width: var(--scalar-border-width);
  }
}
.group\/sidebar-section:first-of-type > .group\/spacer-before, .group\/sidebar-section:last-of-type > .group\/spacer-after {
  height: 0;
}
.group\/sidebar-section:has( + .group\/sidebar-section) > .group\/spacer-after {
  height: 0;
  margin-bottom: -1px;
}
:where(body) > .scalar-tooltip {
  --scalar-tooltip-padding: 8px;
  padding: calc(var(--scalar-tooltip-padding) + var(--scalar-tooltip-offset));
  z-index: 99999;
  max-width: 320px;
  font-size: var(--scalar-font-size-5);
  --tw-font-weight: var(--scalar-semibold);
  line-height: 16px;
  font-weight: var(--scalar-semibold);
  overflow-wrap: break-word;
  color: var(--scalar-tooltip-color);
}
:where(body) > .scalar-tooltip:before {
  content: "";
  inset: var(--scalar-tooltip-offset);
  z-index: calc(1 * -1);
  border-radius: var(--scalar-radius);
  background-color: var(--scalar-tooltip-background);
  --tw-backdrop-blur: blur(8px);
  backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  position: absolute;
}
:where(body.dark-mode) > .scalar-tooltip:before {
  --tw-shadow: inset 0 0 0 var(--tw-shadow-color, var(--scalar-border-width)) var(--scalar-border-color);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
.scalar-virtual-text-search-input[data-v-95edadbb]::-webkit-search-cancel-button {
  display: none;
}
.scalar-virtual-text[data-v-b50a85e1]:focus {
  outline: none;
}
.scalar-virtual-text-highlight[data-v-b50a85e1] {
  background: var(--scalar-background-accent);
  color: inherit;
  border-radius: 2px;
  padding: 1px 0;
}
.scalar-virtual-text-highlight-active[data-v-b50a85e1] {
  background: var(--scalar-color-accent);
  color: var(--scalar-background-1);
  border-radius: 2px;
}
.sidebar-heading-type[data-v-1857170e] {
  text-transform: uppercase;
  color: var(--method-color, var(--scalar-color-1));
  font-size: 10px;
  line-height: 14px;
  font-weight: var(--scalar-bold);
  font-family: var(--scalar-font-code);
  white-space: nowrap;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  display: inline-flex;
  overflow: hidden;
}
.http-bg-gradient[data-v-86e2b3ea] {
  background: linear-gradient(#ffffffbf, #00000009);
}
.http-bg-gradient[data-v-86e2b3ea]:hover {
  background: linear-gradient(#00000009, #ffffffbf);
}
.dark-mode .http-bg-gradient[data-v-86e2b3ea] {
  background: linear-gradient(#ffffff09, #00000026);
}
.dark-mode .http-bg-gradient[data-v-86e2b3ea]:hover {
  background: linear-gradient(#00000026, #ffffff09);
}
.ascii-art-animate .ascii-art-line[data-v-9a695e58] {
  border-right: 1ch solid #0000;
  animation: 4s step-end 1s both typewriter-9a695e58, .5s step-end infinite blinkTextCursor-9a695e58;
}
@keyframes typewriter-9a695e58 {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}
@keyframes blinkTextCursor-9a695e58 {
  0% {
    border-right-color: currentColor;
  }

  50% {
    border-right-color: #0000;
  }
}
.open-api-client-button[data-v-cd067f84] {
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  height: 31px;
  font-size: var(--scalar-small);
  border-radius: var(--scalar-radius);
  box-shadow: 0 0 0 .5px var(--scalar-border-color);
  color: var(--scalar-sidebar-color-1);
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  line-height: 1.385;
  -webkit-text-decoration: none;
  text-decoration: none;
  display: flex;
}
.open-api-client-button[data-v-cd067f84]:hover {
  background: var(--scalar-sidebar-item-hover-background, var(--scalar-background-2));
}
.address-bar-history-button[data-v-12140f4f]:hover {
  background: var(--scalar-background-3);
}
.address-bar-history-button[data-v-12140f4f]:focus-within {
  background: var(--scalar-background-2);
}
[data-v-3118bf46] .cm-editor {
  background: none;
  outline: none;
  height: 100%;
  padding: 0;
}
[data-v-3118bf46] .cm-placeholder {
  color: var(--scalar-color-3);
}
[data-v-3118bf46] .cm-content {
  font-family: var(--scalar-font-code);
  font-size: var(--scalar-small);
  max-height: 20px;
  padding: 8px 0;
}
[data-v-3118bf46] .cm-tooltip {
  filter: brightness(var(--scalar-lifted-brightness));
  border-radius: var(--scalar-radius);
  box-shadow: var(--scalar-shadow-2);
  background: none !important;
  border: none !important;
  outline: none !important;
  overflow: hidden !important;
}
[data-v-3118bf46] .cm-tooltip-autocomplete ul li {
  padding: 3px 6px !important;
}
[data-v-3118bf46] .cm-completionIcon-type:after {
  color: var(--scalar-color-3) !important;
}
[data-v-3118bf46] .cm-tooltip-autocomplete ul li[aria-selected] {
  background: var(--scalar-background-2) !important;
  color: var(--scalar-color-1) !important;
}
[data-v-3118bf46] .cm-tooltip-autocomplete ul {
  position: relative;
  padding: 6px !important;
}
[data-v-3118bf46] .cm-tooltip-autocomplete ul li:hover {
  border-radius: 3px;
  color: var(--scalar-color-1) !important;
  background: var(--scalar-background-3) !important;
}
[data-v-3118bf46] .cm-activeLine, [data-v-3118bf46] .cm-activeLineGutter {
  background-color: #0000;
}
[data-v-3118bf46] .cm-selectionMatch, [data-v-3118bf46] .cm-matchingBracket {
  border-radius: var(--scalar-radius);
  background: var(--scalar-background-4) !important;
}
[data-v-3118bf46] .cm-css-color-picker-wrapper {
  outline: 1px solid var(--scalar-background-3);
  border-radius: 3px;
  display: inline-flex;
  overflow: hidden;
}
[data-v-3118bf46] .cm-gutters {
  color: var(--scalar-color-3);
  font-size: var(--scalar-small);
  background-color: #0000;
  border-right: none;
  border-radius: 0 0 0 3px;
  line-height: 22px;
}
[data-v-3118bf46] .cm-gutters:before {
  content: "";
  border-radius: var(--scalar-radius) 0 0 var(--scalar-radius);
  background-color: var(--scalar-background-1);
  width: calc(100% - 2px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
}
[data-v-3118bf46] .cm-gutterElement {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
  font-family: var(--scalar-font-code) !important;
  padding-left: 0 !important;
  padding-right: 6px !important;
}
[data-v-3118bf46] .cm-lineNumbers .cm-gutterElement {
  min-width: fit-content;
}
[data-v-3118bf46] .cm-gutter + .cm-gutter :not(.cm-foldGutter) .cm-gutterElement {
  padding-left: 0 !important;
}
[data-v-3118bf46] .cm-scroller {
  overflow: auto;
}
.line-wrapping[data-v-3118bf46]:focus-within .cm-content {
  white-space: break-spaces;
  word-break: break-all;
  min-height: fit-content;
  padding: 3px 6px;
  display: inline-table;
}
.cm-pill {
  font-size: var(--scalar-small);
  border-radius: 30px;
  padding: 0 9px;
  display: inline-block;
  color: var(--scalar-color-1) !important;
}
.light-mode .cm-pill {
  background: var(--scalar-background-3) !important;
}
.dark-mode .cm-pill {
  background: var(--tw-bg-base) !important;
}
@supports (color: color-mix(in lab, red, red)) {
  .dark-mode .cm-pill {
    background: color-mix(in srgb, var(--tw-bg-base), transparent 90%) !important;
  }
}
.cm-pill--context-fn {
  border: 1px dashed var(--scalar-color-3);
}
@supports (color: color-mix(in lab, red, red)) {
  .cm-pill--context-fn {
    border: 1px dashed color-mix(in srgb, var(--scalar-color-3), transparent 35%);
  }
}
.cm-pill--context-fn {
  padding: 0 8px;
}
.light-mode .cm-pill--context-fn {
  background: var(--scalar-background-3) !important;
}
@supports (color: color-mix(in lab, red, red)) {
  .light-mode .cm-pill--context-fn {
    background: color-mix(in srgb, var(--scalar-background-3), transparent 40%) !important;
  }
}
.dark-mode .cm-pill--context-fn {
  background: var(--scalar-background-3) !important;
}
@supports (color: color-mix(in lab, red, red)) {
  .dark-mode .cm-pill--context-fn {
    background: color-mix(in srgb, var(--scalar-background-3), transparent 55%) !important;
  }
}
.cm-pill:first-of-type {
  margin-left: 0;
}
.cm-editor .cm-widgetBuffer {
  display: none;
}
.cm-foldPlaceholder:hover {
  color: var(--scalar-color-1);
}
.cm-foldGutter .cm-gutterElement {
  font-size: var(--scalar-heading-4);
  padding: 2px !important;
}
.cm-foldGutter .cm-gutterElement:first-of-type {
  display: none;
}
.cm-foldGutter .cm-gutterElement .cm-foldMarker {
  padding: 2px;
}
.cm-foldGutter .cm-gutterElement:hover .cm-foldMarker {
  background: var(--scalar-background-2);
  border-radius: var(--scalar-radius);
  color: var(--scalar-color-1);
}
.description[data-v-649f9a0d] .markdown {
  font-weight: var(--scalar-semibold);
  color: var(--scalar-color--1);
  padding: 0;
  display: block;
}
.description[data-v-649f9a0d] .markdown > :first-child {
  margin-top: 0;
}
[data-v-372238a6] .cm-editor {
  outline: none;
  width: 100%;
  height: 100%;
}
[data-v-372238a6] .cm-line {
  padding: 0;
}
[data-v-372238a6] .cm-content {
  font-size: var(--scalar-small);
  align-items: center;
  padding: 0;
  display: flex;
}
.scroll-timeline-x[data-v-372238a6] {
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, #0000 0, #000 6px calc(100% - 24px), #0000 100%);
  mask-image: linear-gradient(to right, #0000 0, #000 6px calc(100% - 24px), #0000 100%);
}
.scroll-timeline-x-hidden[data-v-372238a6] {
  overflow-x: auto;
}
.scroll-timeline-x-hidden[data-v-372238a6] .cm-scroller {
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-right: 20px;
  overflow: auto;
}
.scroll-timeline-x-hidden[data-v-372238a6]::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.scroll-timeline-x-hidden[data-v-372238a6] .cm-scroller::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.scroll-timeline-x-address[data-v-372238a6] {
  scrollbar-width: none;
  line-height: 27px;
}
.scroll-timeline-x-address[data-v-372238a6]:after {
  content: "";
  cursor: text;
  width: 24px;
  height: 100%;
  position: absolute;
  right: 0;
}
.scroll-timeline-x-address[data-v-372238a6]:empty:before {
  content: "Enter URL or cURL request";
  color: var(--scalar-color-3);
  pointer-events: none;
}
.address-bar-bg-states[data-v-372238a6] {
  --scalar-address-bar-bg: var(--scalar-background-1);
}
@supports (color: color-mix(in lab, red, red)) {
  .address-bar-bg-states[data-v-372238a6] {
    --scalar-address-bar-bg: color-mix(in srgb,
    var(--scalar-background-1),
    var(--scalar-background-2));
  }
}
.address-bar-bg-states[data-v-372238a6] {
  background: var(--scalar-address-bar-bg);
}
.address-bar-bg-states[data-v-372238a6]:has(.cm-focused) {
  --scalar-address-bar-bg: var(--scalar-background-1);
  border-color: var(--scalar-border-color);
  outline-width: 1px;
  outline-style: solid;
}
.app-exit-button[data-v-42c563b3] {
  color: #fff;
  background: #0000001a;
}
.app-exit-button[data-v-42c563b3]:hover {
  background: #ffffff1a;
}
.fade-request-section-content[data-v-07ff8fc3] {
  background: linear-gradient(to left, var(--scalar-background-1) 64%, transparent);
}
.filter-hover[data-v-07ff8fc3] {
  height: 100%;
  padding-left: 24px;
  padding-right: 39px;
  transition: width 0s ease-in-out .2s;
  position: absolute;
  right: 0;
  overflow: hidden;
}
.filter-hover[data-v-07ff8fc3]:hover, .filter-hover[data-v-07ff8fc3]:has(:focus-visible) {
  z-index: 10;
  width: 100%;
}
.filter-hover[data-v-07ff8fc3]:before {
  content: "";
  background-color: var(--scalar-background-1);
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: fit-content;
  transition: all .3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}
.filter-hover-item[data-v-07ff8fc3] {
  opacity: 0;
}
.filter-hover-item[data-v-07ff8fc3]:not(:last-of-type) {
  transform: translate3d(0, 3px, 0);
}
.filter-hover:hover .filter-hover-item[data-v-07ff8fc3] {
  transition: opacity .2s ease-in-out, transform .2s ease-in-out;
}
.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]:last-of-type {
  transition-delay: 50ms;
}
.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]:nth-last-of-type(2) {
  transition-delay: .1s;
}
.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]:nth-last-of-type(3) {
  transition-delay: .15s;
}
.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]:nth-last-of-type(4) {
  transition-delay: .2s;
}
.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]:nth-last-of-type(5) {
  transition-delay: .25s;
}
.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]:nth-last-of-type(6) {
  transition-delay: .3s;
}
.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]:nth-last-of-type(7) {
  transition-delay: .35s;
}
.filter-hover:hover .filter-hover-item[data-v-07ff8fc3], .filter-hover:has(:focus-visible) .filter-hover-item[data-v-07ff8fc3] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.filter-hover[data-v-07ff8fc3]:hover:before, .filter-hover[data-v-07ff8fc3]:has(:focus-visible):before {
  opacity: .9;
  backdrop-filter: blur(10px);
}
.filter-button[data-v-07ff8fc3] {
  top: 50%;
  transform: translateY(-50%);
}
.context-bar-group:hover .context-bar-group-hover\:text-c-1[data-v-07ff8fc3], .context-bar-group:has(:focus-visible) .context-bar-group-hover\:text-c-1[data-v-07ff8fc3] {
  --tw-text-opacity: 1;
  color: rgb(var(--scalar-color-1) / var(--tw-text-opacity));
}
.context-bar-group:hover .context-bar-group-hover\:hidden[data-v-07ff8fc3], .context-bar-group:has(:focus-visible) .context-bar-group-hover\:hidden[data-v-07ff8fc3] {
  display: none;
}
[data-v-36811e28] .cm-editor {
  padding: 0;
}
[data-v-36811e28] .cm-content {
  font-family: var(--scalar-font);
  font-size: var(--scalar-small);
  background-color: #0000;
  align-items: center;
  width: 100%;
  padding: 5px 8px;
  display: flex;
}
[data-v-36811e28] .cm-content:has(.cm-pill) {
  padding: 5px 8px;
}
[data-v-36811e28] .cm-content .cm-pill:not(:last-of-type) {
  margin-right: .5px;
}
[data-v-36811e28] .cm-content .cm-pill:not(:first-of-type) {
  margin-left: .5px;
}
[data-v-36811e28] .cm-line {
  text-overflow: ellipsis;
  padding: 0;
  overflow: hidden;
}
.filemask[data-v-36811e28] {
  -webkit-mask-image: linear-gradient(to right, transparent 0, var(--scalar-background-2) 20px);
  -webkit-mask-image: linear-gradient(to right, transparent 0, var(--scalar-background-2) 20px);
  mask-image: linear-gradient(to right, transparent 0, var(--scalar-background-2) 20px);
}
[data-v-aff33ea6] .cm-content {
  font-size: var(--scalar-small);
}
.oauth-scope-row-action-rail {
  --oauth-scope-row-rail-bg: var(--scalar-background-1);
}
@supports (color: color-mix(in lab, red, red)) {
  .oauth-scope-row-action-rail {
    --oauth-scope-row-rail-bg: color-mix(in srgb,
    var(--scalar-background-1),
    var(--scalar-background-2));
  }
}
.oauth-scope-row-action-rail {
  background: linear-gradient(90deg, var(--oauth-scope-row-rail-bg) 0%, var(--oauth-scope-row-rail-bg) 30%, var(--oauth-scope-row-rail-bg) 100%);
}
@supports (color: color-mix(in lab, red, red)) {
  .oauth-scope-row-action-rail {
    background: linear-gradient(90deg, color-mix(in srgb, var(--oauth-scope-row-rail-bg), transparent 100%) 0%, color-mix(in srgb, var(--oauth-scope-row-rail-bg), transparent 20%) 30%, var(--oauth-scope-row-rail-bg) 100%);
  }
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
[data-v-1ee3c31d] .cm-editor {
  padding: 0;
}
[data-v-1ee3c31d] .cm-content {
  font-family: var(--scalar-font);
  font-size: var(--scalar-small);
  background-color: #0000;
  align-items: center;
  width: 100%;
  padding: 5px 8px;
  display: flex;
}
[data-v-1ee3c31d] .cm-content:has(.cm-pill) {
  padding: 5px 8px;
}
[data-v-1ee3c31d] .cm-content .cm-pill:not(:last-of-type) {
  margin-right: .5px;
}
[data-v-1ee3c31d] .cm-content .cm-pill:not(:first-of-type) {
  margin-left: .5px;
}
[data-v-1ee3c31d] .cm-line {
  text-overflow: ellipsis;
  word-break: break-word;
  padding: 0;
  overflow: hidden;
}
.required[data-v-1ee3c31d]:after {
  content: "Required";
}
input[data-v-1ee3c31d]::placeholder {
  color: var(--scalar-color-3);
}
.scalar-password-input[data-v-1ee3c31d] {
  text-security: disc;
  -webkit-text-security: disc;
  -moz-text-security: disc;
}
.request-section-content[data-v-9ee5445b] {
  --scalar-border-width: .5px;
}
.request-section-content-filter[data-v-9ee5445b] {
  box-shadow: 0 -10px 0 10px var(--scalar-background-1);
}
.request-item:focus-within .request-meta-buttons[data-v-9ee5445b] {
  opacity: 1;
}
.group-hover-input[data-v-9ee5445b] {
  border-width: var(--scalar-border-width);
  border-color: #0000;
}
.group:hover .group-hover-input[data-v-9ee5445b] {
  background: var(--scalar-background-1);
}
@supports (color: color-mix(in lab, red, red)) {
  .group:hover .group-hover-input[data-v-9ee5445b] {
    background: color-mix(in srgb, var(--scalar-background-1), var(--scalar-background-2));
  }
}
.group:hover .group-hover-input[data-v-9ee5445b] {
  border-color: var(--scalar-border-color);
}
.group-hover-input[data-v-9ee5445b]:focus {
  border-color: var(--scalar-border-color) !important;
  background: none !important;
}
[data-v-8c1df828] .cm-editor {
  font-size: var(--scalar-small);
  background-color: #0000;
  outline: none;
}
[data-v-8c1df828] .cm-gutters {
  background-color: var(--scalar-background-1);
  border-radius: var(--scalar-radius) 0 0 var(--scalar-radius);
}
[data-v-8c1df828] .cm-scroller {
  min-width: 100%;
  overflow: auto;
}
.light-mode .bg-preview[data-v-8bc927e4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23000' fill-opacity='10%25'%3E%3Crect width='8' height='8' /%3E%3Crect x='8' y='8' width='8' height='8' /%3E%3C/svg%3E");
}
.dark-mode .bg-preview[data-v-8bc927e4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FFF' fill-opacity='10%25'%3E%3Crect width='8' height='8' /%3E%3Crect x='8' y='8' width='8' height='8' /%3E%3C/svg%3E");
}
.scalar-code-block[data-v-bb31ac6f] .hljs * {
  font-size: var(--scalar-small);
}
.response-body-virtual[data-headlessui-state="open"], .response-body-virtual[data-headlessui-state="open"] .diclosure-panel {
  flex-direction: column;
  flex-grow: 1;
  display: flex;
}
.scalar-version-number[data-v-0895623d] {
  width: 76px;
  height: 76px;
  font-size: 8px;
  font-family: var(--scalar-font-code);
  box-shadow: inset 2px 0px 0 2px var(--scalar-background-2);
  text-align: center;
  text-transform: initial;
  text-decoration-color: var(--scalar-color-3);
  border-radius: 9px 9px 16px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -113px;
  margin-left: -36px;
  line-height: 11px;
  display: flex;
  position: absolute;
  transform: skew(0deg, 13deg);
}
.scalar-version-number a[data-v-0895623d] {
  background: var(--scalar-background-2);
  border: .5px solid var(--scalar-border-color);
  border-radius: 3px;
  padding: 2px 4px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.gitbook-show[data-v-0895623d] {
  display: none;
}
.v-enter-active[data-v-b80db6e2] {
  transition: opacity .5s;
}
.v-enter-from[data-v-b80db6e2] {
  opacity: 0;
}
.animate-response-heading .response-heading[data-v-7a7c6611] {
  opacity: 1;
  animation: .2s ease-in-out forwards push-response-7a7c6611;
}
@keyframes push-response-7a7c6611 {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-4px);
  }
}
.animate-response-heading .animate-response-children[data-v-7a7c6611] {
  opacity: 0;
  animation: .2s ease-in-out 50ms forwards response-spans-7a7c6611;
}
@keyframes response-spans-7a7c6611 {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.request-card[data-v-70ede25b] {
  color: var(--scalar-color-1);
  font-size: var(--scalar-font-size-3);
}
.request-method[data-v-70ede25b] {
  font-family: var(--scalar-font-code);
  text-transform: uppercase;
  margin-right: 6px;
}
.request-card-footer[data-v-70ede25b] {
  flex-shrink: 0;
  justify-content: flex-end;
  padding: 6px;
  display: flex;
  position: relative;
}
.request-card-footer-addon[data-v-70ede25b] {
  flex: 1;
  align-items: center;
  min-width: 0;
  display: flex;
}
.request-editor-section[data-v-70ede25b] {
  flex: 1;
  display: flex;
}
.request-card-simple[data-v-70ede25b] {
  font-size: var(--scalar-small);
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 8px 12px;
  display: flex;
}
.code-snippet[data-v-70ede25b] {
  flex-direction: column;
  width: 100%;
  display: flex;
}
[data-radix-popper-content-wrapper]:has(.scalar-api-client-context-menu) {
  z-index: 1000 !important;
}
.resizer[data-v-e2c54c18] {
  cursor: col-resize;
  z-index: 100;
  border-right: 2px solid #0000;
  width: 5px;
  transition: border-right-color .3s;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.scalar-dragging {
  cursor: col-resize;
}
.resizer:hover, .scalar-dragging .resizer {
  border-right-color: var(--scalar-background-3);
}
.scalar-dragging:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
}
[data-v-69be2d6c] .cm-editor {
  padding: 0;
}
[data-v-69be2d6c] .cm-content {
  font-family: var(--scalar-font);
  font-size: var(--scalar-small);
  background-color: #0000;
  align-items: center;
  width: 100%;
  padding: 5px 8px;
  display: flex;
}
[data-v-69be2d6c] .cm-content:has(.cm-pill) {
  padding: 5px 8px;
}
[data-v-69be2d6c] .cm-content .cm-pill:not(:last-of-type) {
  margin-right: .5px;
}
[data-v-69be2d6c] .cm-content .cm-pill:not(:first-of-type) {
  margin-left: .5px;
}
[data-v-69be2d6c] .cm-line {
  text-overflow: ellipsis;
  padding: 0;
  overflow: hidden;
}
.scalar .scalar-app-layout[data-v-77897d1c] {
  background: var(--scalar-background-1);
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: 8px;
  width: 100%;
  max-width: 1390px;
  height: calc(100% - 120px);
  margin: auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) and (max-height: 480px) {
  .scalar .scalar-app-layout[data-v-77897d1c] {
    height: 100%;
    max-height: 90svh;
  }
}
.scalar .scalar-app-exit[data-v-77897d1c] {
  cursor: pointer;
  z-index: -1;
  background: #00000038;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
.dark-mode .scalar .scalar-app-exit[data-v-77897d1c] {
  background: #00000073;
}
.scalar .scalar-app-exit[data-v-77897d1c]:before {
  text-align: center;
  color: #fff;
  opacity: .6;
  font-family: sans-serif;
  font-size: 30px;
  font-weight: 100;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 12px;
}
.scalar .scalar-app-exit[data-v-77897d1c]:hover:before {
  opacity: 1;
}
.scalar-container[data-v-77897d1c] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: opacity .35s, visibility 0s linear .35s;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.scalar-container.scalar-client--open[data-v-77897d1c] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .35s;
}
.scalar .url-form-input[data-v-77897d1c] {
  min-height: auto !important;
}
.scalar .scalar-container[data-v-77897d1c] {
  line-height: normal;
}
.ref-search-meta[data-v-d1af4404] {
  background: var(--scalar-background-1);
  border-bottom-left-radius: var(--scalar-radius-lg);
  border-bottom-right-radius: var(--scalar-radius-lg);
  font-size: var(--scalar-font-size-4);
  color: var(--scalar-color-3);
  font-weight: var(--scalar-semibold);
  border-top: var(--scalar-border-width) solid var(--scalar-border-color);
  gap: 12px;
  padding: 6px 12px;
  display: flex;
}
.authenticationProvided[data-v-e3416cd5] {
  color: var(--scalar-color-1);
  font-weight: var(--scalar-semibold);
  min-height: 40px;
  font-size: var(--scalar-font-size-3);
  align-items: center;
  gap: 6px;
  display: flex;
  position: relative;
}
.authenticationRequired[data-v-d15ef40b] {
  color: var(--scalar-color-blue);
  font-weight: var(--scalar-semibold);
  min-height: 40px;
  font-size: var(--scalar-font-size-3);
  align-items: center;
  gap: 6px;
  display: flex;
  position: relative;
}
.askForAuthentication[data-v-19cedfcd] {
  border-top: var(--scalar-border-width) solid var(--scalar-border-color);
  border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
  width: 100%;
  box-shadow: 0 var(--scalar-border-width) 0 var(--scalar-background-1), 0 calc(-1 * var(--scalar-border-width)) 0 var(--scalar-background-1);
  flex-direction: column;
  margin-bottom: 12px;
  padding: 0;
  display: flex;
  position: relative;
}
.authContent[data-v-19cedfcd] {
  grid-template-rows: 0fr;
  width: 100%;
  max-width: 520px;
  min-height: 0;
  margin: auto;
  transition: grid-template-rows .2s ease-out;
  display: grid;
  overflow: hidden;
}
.authContentInner[data-v-19cedfcd] > div {
  margin: 36px 0 48px;
}
.authContent[data-v-19cedfcd] .markdown {
  margin-bottom: 0 !important;
}
.askForAuthentication.open .authContent[data-v-19cedfcd] {
  grid-template-rows: 1fr;
}
.continueButton[data-v-19cedfcd] {
  align-self: flex-end;
}
.toggleButton[data-v-19cedfcd] {
  cursor: pointer;
  text-align: left;
  color: var(--scalar-color-3);
  border-radius: var(--scalar-radius-lg);
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}
.authContentInner[data-v-19cedfcd] {
  min-height: 0;
  overflow: hidden;
}
.authorizeButton[data-v-19cedfcd] {
  z-index: 1;
  gap: 5px;
  display: flex;
  background: var(--scalar-color-blue) !important;
  color: #fff !important;
  margin: 0 !important;
}
.autosendPaused[data-v-d08225db] {
  color: var(--scalar-color-blue);
  font-weight: var(--scalar-semibold);
  min-height: 40px;
  font-size: var(--scalar-font-size-3);
  align-items: center;
  gap: 6px;
  display: flex;
  position: relative;
}
.playIcon[data-v-5749c429] {
  z-index: 1;
  background: var(--scalar-background-1);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  padding: 4px;
  display: flex;
  position: relative;
}
.playIcon[data-v-5749c429]:before {
  content: "";
  box-sizing: border-box;
  border: 1.75px solid;
  border-bottom-color: #0000;
  border-image: initial;
  background: var(--scalar-background-1);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: .42s linear infinite rotation-5749c429;
  display: inline-block;
  position: absolute;
}
.buildingRequest[data-v-5749c429] {
  color: var(--scalar-color-blue);
  font-weight: var(--scalar-semibold);
  min-height: 40px;
  font-size: var(--scalar-font-size-3);
  align-items: center;
  gap: 6px;
  display: flex;
  position: relative;
}
.buildingRequest svg[data-v-5749c429] {
  z-index: 1;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
@keyframes rotation-5749c429 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}
.requestApproved[data-v-bb311586] {
  color: var(--scalar-color-green);
  font-weight: var(--scalar-semibold);
  min-height: 40px;
  font-size: var(--scalar-font-size-3);
  align-items: center;
  gap: 6px;
  display: flex;
  position: relative;
}
.requestFailed[data-v-bc27e533] {
  color: var(--scalar-color-red);
  font-weight: var(--scalar-semibold);
  min-height: 40px;
  font-size: var(--scalar-font-size-3);
  align-items: center;
  gap: 6px;
  display: flex;
  position: relative;
}
.requestFailedIcon[data-v-bc27e533] {
  border-radius: 50%;
  width: 16px;
  height: 16px;
  padding: 4px;
  box-shadow: inset 0 0 0 1.5px;
}
.requestRejected[data-v-9803a54c] {
  color: var(--scalar-color-red);
  font-weight: var(--scalar-semibold);
  min-height: 40px;
  font-size: var(--scalar-font-size-3);
  align-items: center;
  gap: 6px;
  display: flex;
  position: relative;
}
.requestSuccess[data-v-acc2c0d8] {
  color: var(--scalar-color-1);
  font-weight: var(--scalar-semibold);
  min-height: 40px;
  font-size: var(--scalar-font-size-3);
  align-items: center;
  gap: 6px;
  display: flex;
  position: relative;
}
.light-mode .bg-preview[data-v-92f84612] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23000' fill-opacity='10%25'%3E%3Crect width='8' height='8' /%3E%3Crect x='8' y='8' width='8' height='8' /%3E%3C/svg%3E");
}
.dark-mode .bg-preview[data-v-92f84612] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FFF' fill-opacity='10%25'%3E%3Crect width='8' height='8' /%3E%3Crect x='8' y='8' width='8' height='8' /%3E%3C/svg%3E");
}
.playIcon[data-v-65dc6dfb] {
  z-index: 1;
  background: var(--scalar-background-1);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  padding: 4px;
  display: flex;
  position: relative;
}
.playIcon[data-v-65dc6dfb]:before {
  content: "";
  box-sizing: border-box;
  border: 1.75px solid;
  border-bottom-color: #0000;
  border-image: initial;
  background: var(--scalar-background-1);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: .42s linear infinite rotation-65dc6dfb;
  display: inline-block;
  position: absolute;
}
.sendingRequest[data-v-65dc6dfb] {
  color: var(--scalar-color-blue);
  font-weight: var(--scalar-semibold);
  min-height: 40px;
  font-size: var(--scalar-font-size-3);
  align-items: center;
  gap: 6px;
  display: flex;
  position: relative;
}
.sendingRequest svg[data-v-65dc6dfb] {
  z-index: 1;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
@keyframes rotation-65dc6dfb {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}
.requestHeaderContainer[data-v-7595724d] {
  justify-content: space-between;
  align-items: center;
  padding: 0 5px;
  display: flex;
}
.requestPreview[data-v-7595724d] {
  border-radius: 12px;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
}
.requestContent[data-v-7595724d] {
  grid-template-rows: 0fr;
  min-height: 0;
  transition: grid-template-rows .2s ease-out;
  display: grid;
  overflow: hidden;
}
.requestPreview.open .requestContent[data-v-7595724d] {
  grid-template-rows: 1fr;
}
.requestPreview.succeeded[data-v-7595724d] {
  padding: 0;
}
.requestContentInner[data-v-7595724d] {
  min-height: 0;
  overflow: hidden;
}
.code[data-v-7595724d] {
  font-size: var(--scalar-font-size-4);
  background: var(--scalar-background-2);
  border-radius: 12px;
  flex-direction: column;
  display: flex;
}
@supports (color: color-mix(in lab, red, red)) {
  .code[data-v-7595724d] {
    background: color-mix(in srgb, var(--scalar-background-2), var(--scalar-background-1));
  }
}
.code[data-v-7595724d] {
  margin-bottom: 12px;
  overflow: hidden;
}
.dark-mode .code[data-v-7595724d] {
  background: var(--scalar-background-2);
}
.code h1[data-v-7595724d] {
  font-size: var(--scalar-font-size-3);
  color: var(--scalar-color-3);
  padding: 8px;
}
.code[data-v-7595724d] .codeBlock {
  max-height: calc(50vh - 100px);
  padding-top: 0;
}
.autosendContainer[data-v-7595724d] {
  justify-content: space-between;
  display: flex;
}
.sendButton[data-v-7595724d] {
  background: var(--scalar-color-blue);
  color: #fff;
  font-weight: var(--scalar-semibold);
  padding: 5px 10px;
}
.sendButton[data-v-7595724d]:hover, .sendButton[data-v-7595724d]:active {
  background: var(--scalar-color-blue);
}
@supports (color: color-mix(in lab, red, red)) {
  .sendButton[data-v-7595724d]:hover, .sendButton[data-v-7595724d]:active {
    background: color-mix(in srgb, var(--scalar-color-blue), black 10%);
  }
}
.sendButton[data-v-7595724d]:hover, .sendButton[data-v-7595724d]:active {
  color: #fff !important;
}
.toggleButton[data-v-7595724d] {
  cursor: pointer;
  text-align: left;
  color: var(--scalar-color-3);
  border-radius: var(--scalar-radius-lg);
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}
.toggleButton[data-v-7595724d]:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.executeRequestTool[data-v-3e825a81] {
  border-top: var(--scalar-border-width) solid var(--scalar-border-color);
  border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
  box-shadow: 0 var(--scalar-border-width) 0 var(--scalar-background-1), 0 calc(-1 * var(--scalar-border-width)) 0 var(--scalar-background-1);
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
  display: flex;
}
.tool[data-v-3e825a81] {
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 15px;
}
.playIcon[data-v-9d9724d2] {
  z-index: 1;
  background: var(--scalar-background-1);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  padding: 4px;
  display: flex;
  position: relative;
}
.playIcon[data-v-9d9724d2]:before {
  content: "";
  box-sizing: border-box;
  border: 1.5px solid;
  border-bottom-color: #0000;
  border-image: initial;
  background: var(--scalar-background-1);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: .42s linear infinite rotation-9d9724d2;
  display: inline-block;
  position: absolute;
}
.loadingApiSpecs[data-v-9d9724d2] {
  color: var(--scalar-color-2);
  font-weight: var(--scalar-semibold);
  font-size: var(--scalar-font-size-3);
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  display: flex;
}
.loadingApiSpecs svg[data-v-9d9724d2] {
  z-index: 1;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
@keyframes rotation-9d9724d2 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}
.contextItem[data-v-e6786ce3] {
  white-space: nowrap;
  color: var(--scalar-color-2);
  cursor: pointer;
  vertical-align: middle;
  background: var(--scalar-background-2);
  border-radius: 12px;
  align-items: center;
  padding: 5px 10px;
  font-size: 10px;
  display: flex;
}
@supports (color: color-mix(in lab, red, red)) {
  .contextItem[data-v-e6786ce3] {
    background: color-mix(in srgb, var(--scalar-background-2), var(--scalar-background-1));
  }
}
.contextItem[data-v-e6786ce3] {
  max-width: 200px;
}
.contextItemText[data-v-e6786ce3] {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.shimmer[data-v-e6786ce3] {
  background: var(--scalar-background-2);
  background-image: linear-gradient(90deg, #202020 0%, var(--scalar-background-2) 40%, var(--scalar-background-3) 80%);
  background-size: 200% 100%;
  animation: 1.4s ease-in-out infinite shimmer-e6786ce3;
}
.light-mode .shimmer[data-v-e6786ce3] {
  background: var(--scalar-background-2);
  background-image: linear-gradient(90deg, #fafafa 0%, var(--scalar-background-2) 40%, var(--scalar-background-3) 80%);
  background-size: 200% 100%;
  animation: 1.4s ease-in-out infinite shimmer-e6786ce3;
}
@keyframes shimmer-e6786ce3 {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}
.playIcon[data-v-6e0ac42c] {
  z-index: 1;
  background: var(--scalar-background-1);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  padding: 4px;
  display: flex;
  position: relative;
}
.playIcon[data-v-6e0ac42c]:before {
  content: "";
  box-sizing: border-box;
  border: 1.5px solid;
  border-bottom-color: #0000;
  border-image: initial;
  background: var(--scalar-background-1);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: .42s linear infinite rotation-6e0ac42c;
  display: inline-block;
  position: absolute;
}
.sendingRequest[data-v-6e0ac42c] {
  color: var(--scalar-color-2);
  font-weight: var(--scalar-semibold);
  font-size: var(--scalar-font-size-3);
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  display: flex;
}
.sendingRequest svg[data-v-6e0ac42c] {
  z-index: 1;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
@keyframes rotation-6e0ac42c {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}
.operations[data-v-cbff70ed] {
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  display: flex;
}
.operations[data-v-cbff70ed]:empty {
  margin-bottom: -12px;
}
.overflowPopover[data-v-cbff70ed] {
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  display: flex;
}
.catalogModal .scalar-modal-body {
  flex-direction: column;
  display: flex;
}
.searchInput[data-v-18b2aea2] {
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: var(--scalar-radius-lg);
  margin-bottom: 10px;
}
.catalog[data-v-18b2aea2] {
  font-size: var(--scalar-font-size-3);
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  display: grid;
  overflow-y: scroll;
}
.item[data-v-18b2aea2] {
  background-color: var(--scalar-background-2);
  border-radius: var(--scalar-radius-lg);
  align-items: center;
  gap: 10px;
  padding: 15px;
  transition: background-color .16s;
  display: flex;
}
.item[data-v-18b2aea2]:hover {
  background-color: var(--scalar-background-3) !important;
}
@supports (color: color-mix(in lab, red, red)) {
  .item[data-v-18b2aea2]:hover {
    background-color: color-mix(in srgb, var(--scalar-background-3), transparent 40%) !important;
  }
}
.left[data-v-18b2aea2] {
  align-items: center;
}
.right[data-v-18b2aea2] {
  flex-direction: column;
  display: flex;
}
.logo[data-v-18b2aea2] {
  width: 25px;
}
.item-top[data-v-18b2aea2] {
  gap: 10px;
  display: flex;
}
.version[data-v-18b2aea2] {
  background: var(--scalar-background-3);
  border-radius: var(--scalar-radius);
  font-size: var(--scalar-font-size-5);
  color: var(--scalar-color-3);
  padding: 2px 5px;
}
.description[data-v-18b2aea2] {
  color: var(--scalar-color-2);
}
.dropdown-item[data-v-e2c3bd19] {
  align-items: center;
  gap: 10px;
  display: flex;
}
.approvalSection[data-v-a7e6c699] {
  background: var(--scalar-color-blue);
  width: 100%;
  margin-bottom: -16px;
  padding: 8px 8px 24px 12px;
}
@supports (color: color-mix(in lab, red, red)) {
  .approvalSection[data-v-a7e6c699] {
    background: color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 95%);
  }
}
.approvalSection[data-v-a7e6c699] {
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: 16px 16px 0 0;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  transform: translate3d(0, calc(16px - 100%), 0);
}
.approvalText[data-v-a7e6c699] {
  font-weight: var(--scalar-semibold);
  font-size: var(--scalar-font-size-3);
}
.approveContainer[data-v-a7e6c699] {
  gap: 5px;
  display: flex;
}
.actionButton[data-v-a7e6c699] {
  font-weight: var(--scalar-semibold);
  font-size: var(--scalar-font-size-3);
  border-radius: 50px;
  align-items: center;
  padding: 6px 12px;
  display: flex;
}
.rejectButton[data-v-a7e6c699] {
  color: #fff;
  background: var(--scalar-color-red);
}
.rejectButton[data-v-a7e6c699]:hover, .rejectButton[data-v-a7e6c699]:active {
  background: var(--scalar-color-red);
}
@supports (color: color-mix(in lab, red, red)) {
  .rejectButton[data-v-a7e6c699]:hover, .rejectButton[data-v-a7e6c699]:active {
    background: color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 10%);
  }
}
.rejectButton[data-v-a7e6c699]:hover, .rejectButton[data-v-a7e6c699]:active {
  color: #fff !important;
}
.approveButton[data-v-a7e6c699] {
  color: #fff;
  background: var(--scalar-color-blue);
}
.approveButton[data-v-a7e6c699]:hover, .approveButton[data-v-a7e6c699]:active {
  background: var(--scalar-color-blue);
}
@supports (color: color-mix(in lab, red, red)) {
  .approveButton[data-v-a7e6c699]:hover, .approveButton[data-v-a7e6c699]:active {
    background: color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 10%);
  }
}
.approveButton[data-v-a7e6c699]:hover, .approveButton[data-v-a7e6c699]:active {
  color: #fff !important;
}
.error[data-v-63a481da] {
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  background: var(--scalar-color-red);
  border-radius: 16px 16px 0 0;
  align-items: center;
  margin-bottom: -16px;
  padding: 8px 8px 24px 12px;
  display: flex;
}
@supports (color: color-mix(in lab, red, red)) {
  .error[data-v-63a481da] {
    background: color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 95%);
  }
}
.error[data-v-63a481da] {
  font-weight: var(--scalar-semibold);
  font-size: var(--scalar-font-size-3);
  position: absolute;
  top: 0;
  transform: translate3d(0, calc(16px - 100%), 0);
}
.freeMessagesInfoSection[data-v-913a3815] {
  background: var(--scalar-color-blue);
  width: 100%;
  margin-bottom: -16px;
  padding: 8px 8px 24px 12px;
  position: relative;
}
@supports (color: color-mix(in lab, red, red)) {
  .freeMessagesInfoSection[data-v-913a3815] {
    background: color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 95%);
  }
}
.freeMessagesInfoSection[data-v-913a3815] {
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: 16px 16px 0 0;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.infoText[data-v-913a3815] {
  font-weight: var(--scalar-semibold);
  font-size: var(--scalar-font-size-3);
}
.actionsContainer[data-v-913a3815] {
  align-items: center;
  gap: 8px;
  display: flex;
}
.actionButton[data-v-913a3815] {
  font-weight: var(--scalar-semibold);
  border-radius: 50px;
  align-items: center;
  padding: 6px 12px;
  display: flex;
}
.upgradeButton[data-v-913a3815] {
  color: #fff;
  font-size: var(--scalar-font-size-3);
  background: var(--scalar-color-blue);
}
.upgradeButton[data-v-913a3815]:hover, .upgradeButton[data-v-913a3815]:active {
  background: var(--scalar-color-blue);
}
@supports (color: color-mix(in lab, red, red)) {
  .upgradeButton[data-v-913a3815]:hover, .upgradeButton[data-v-913a3815]:active {
    background: color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 10%);
  }
}
.upgradeButton[data-v-913a3815]:hover, .upgradeButton[data-v-913a3815]:active {
  color: #fff !important;
}
.closeButton[data-v-913a3815] {
  width: 28px;
  height: 28px;
  color: var(--scalar-color-2);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.closeButton[data-v-913a3815]:hover {
  background: var(--scalar-color-blue);
}
@supports (color: color-mix(in lab, red, red)) {
  .closeButton[data-v-913a3815]:hover {
    background: color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 80%);
  }
}
.closeButton[data-v-913a3815]:hover {
  color: var(--scalar-color-1);
}
.paymentSection[data-v-8f005a5c] {
  background: var(--scalar-color-blue);
  width: 100%;
  margin-bottom: -16px;
  padding: 8px 8px 24px 12px;
  position: relative;
}
@supports (color: color-mix(in lab, red, red)) {
  .paymentSection[data-v-8f005a5c] {
    background: color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 95%);
  }
}
.paymentSection[data-v-8f005a5c] {
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: 16px 16px 0 0;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  transform: translate3d(0, calc(16px - 100%), 0);
}
.approvalText[data-v-8f005a5c] {
  font-weight: var(--scalar-semibold);
  font-size: var(--scalar-font-size-3);
}
.paymentContainer[data-v-8f005a5c] {
  gap: 5px;
  display: flex;
}
.actionButton[data-v-8f005a5c] {
  font-weight: var(--scalar-semibold);
  border-radius: 50px;
  align-items: center;
  padding: 6px 12px;
  display: flex;
}
.rejectButton[data-v-8f005a5c] {
  color: #fff;
  background: var(--scalar-color-red);
}
.rejectButton[data-v-8f005a5c]:hover, .rejectButton[data-v-8f005a5c]:active {
  background: var(--scalar-color-red);
}
@supports (color: color-mix(in lab, red, red)) {
  .rejectButton[data-v-8f005a5c]:hover, .rejectButton[data-v-8f005a5c]:active {
    background: color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 10%);
  }
}
.rejectButton[data-v-8f005a5c]:hover, .rejectButton[data-v-8f005a5c]:active {
  color: #fff !important;
}
.approveButton[data-v-8f005a5c] {
  color: #fff;
  font-size: var(--scalar-font-size-3);
  background: var(--scalar-color-blue);
}
.approveButton[data-v-8f005a5c]:hover, .approveButton[data-v-8f005a5c]:active {
  background: var(--scalar-color-blue);
}
@supports (color: color-mix(in lab, red, red)) {
  .approveButton[data-v-8f005a5c]:hover, .approveButton[data-v-8f005a5c]:active {
    background: color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 10%);
  }
}
.approveButton[data-v-8f005a5c]:hover, .approveButton[data-v-8f005a5c]:active {
  color: #fff !important;
}
.paymentInfo[data-v-8f005a5c] {
  width: 300px;
  box-shadow: var(--scalar-shadow-2);
  background: var(--scalar-background-1);
  pointer-events: none;
  opacity: 0;
  border-radius: 16px;
  padding: 12px;
  transition: all .2s ease-in-out;
  position: absolute;
  bottom: 70px;
  right: 0;
  transform: translate3d(0, -5px, 0);
}
.paymentInfo h3[data-v-8f005a5c] {
  font-size: var(--scalar-font-size-1);
  font-weight: var(--scalar-bold);
  margin-bottom: 18px;
}
.paymentInfo h3 span[data-v-8f005a5c] {
  font-size: var(--scalar-font-size-2);
}
.dark-mode .paymentInfo[data-v-8f005a5c] {
  background: var(--scalar-background-2);
}
.paymentContainer:hover .paymentInfo[data-v-8f005a5c] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.paymentInfoItem[data-v-8f005a5c] {
  font-size: var(--scalar-font-size-3);
  color: var(--scalar-color-2);
  font-weight: var(--scalar-semibold);
  justify-content: space-between;
  margin-top: 8px;
  display: flex;
}
.paymentInfoSection[data-v-8f005a5c]:not(:last-child) {
  border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
  padding-bottom: 8px;
}
.searchItem[data-v-3e0405c7] {
  font-size: var(--scalar-font-size-3);
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  display: flex;
}
.searchInput[data-v-3e0405c7] {
  margin-bottom: 5px;
}
.searchItem[data-v-3e0405c7]:hover {
  background: var(--scalar-background-2);
}
.searchItemLogo[data-v-3e0405c7] {
  width: 15px;
}
.searchIcon[data-v-3e0405c7] {
  margin-right: 7px;
}
.searchResultsEmpty[data-v-3e0405c7] {
  font-size: var(--scalar-font-size-3);
  color: var(--scalar-color-2);
  margin: 10px;
}
.uploadSection[data-v-1e830c40] {
  background: var(--scalar-color-blue);
  width: 100%;
  margin-bottom: -16px;
  padding: 8px 8px 24px 12px;
  position: relative;
}
@supports (color: color-mix(in lab, red, red)) {
  .uploadSection[data-v-1e830c40] {
    background: color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 95%);
  }
}
.uploadSection[data-v-1e830c40] {
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: 16px 16px 0 0;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  transform: translate3d(0, calc(16px - 100%), 0);
}
.uploadSection.error[data-v-1e830c40] {
  background: var(--scalar-color-red);
}
@supports (color: color-mix(in lab, red, red)) {
  .uploadSection.error[data-v-1e830c40] {
    background: color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 95%);
  }
}
.uploadSection.done[data-v-1e830c40] {
  background: var(--scalar-color-green);
}
@supports (color: color-mix(in lab, red, red)) {
  .uploadSection.done[data-v-1e830c40] {
    background: color-mix(in srgb, var(--scalar-color-green), var(--scalar-background-1) 95%);
  }
}
.uploadText[data-v-1e830c40] {
  font-weight: var(--scalar-semibold);
  font-size: var(--scalar-font-size-3);
}
.icon[data-v-1e830c40] {
  width: 20px;
  height: 20px;
}
.actionContainer[data-v-109c99b0] {
  background: var(--scalar-background-2);
}
@supports (color: color-mix(in lab, red, red)) {
  .actionContainer[data-v-109c99b0] {
    background: color-mix(in srgb, var(--scalar-background-2), var(--scalar-background-1));
  }
}
.actionContainer[data-v-109c99b0] {
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  width: 100%;
  box-shadow: 0 24px 0 2px var(--scalar-background-1);
  border-radius: 16px;
  position: relative;
}
.promptForm[data-v-109c99b0] {
  background: var(--scalar-background-1);
  width: 100%;
  box-shadow: var(--scalar-shadow-1), 0 0 0 var(--scalar-border-width) var(--scalar-border-color);
  border-radius: 16px;
  flex-direction: column;
  display: flex;
  position: relative;
}
.inputActionsContainer[data-v-109c99b0] {
  justify-content: space-between;
  padding: 0 8px 8px;
  display: flex;
}
.inputActionsLeft[data-v-109c99b0] {
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  display: flex;
}
.inputActionsRight[data-v-109c99b0] {
  gap: 5px;
  display: flex;
  position: relative;
}
.apiPill[data-v-109c99b0] {
  font-size: var(--scalar-font-size-3);
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  color: var(--scalar-color-2);
  font-weight: var(--scalar-semibold);
  pointer-events: all;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 16px;
  align-items: center;
  gap: 4px;
  height: 28px;
  padding: 0 8px;
  display: flex;
}
.apiPillLogo[data-v-109c99b0] {
  width: 15px;
}
.apiPillRemove[data-v-109c99b0] {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: -6px;
  display: flex;
}
.apiPill:hover .apiPillRemove[data-v-109c99b0] {
  background: var(--scalar-background-2);
}
.dark-mode .apiPill:hover .apiPillRemove[data-v-109c99b0] {
  background: var(--scalar-background-3);
}
.apiPillRemove[data-v-109c99b0]:hover {
  color: var(--scalar-color-1);
}
.prompt[data-v-109c99b0] {
  resize: none;
  field-sizing: content;
  z-index: 1;
  scrollbar-width: thin;
  word-wrap: break-word;
  width: 100%;
  max-width: 100%;
  min-height: 64px;
  max-height: 250px;
  font-family: var(--scalar-font);
  border: none;
  outline: none;
  padding: 12px 12px 14px;
  font-size: 16px;
  overflow-y: auto;
}
.dark-mode .promptForm[data-v-109c99b0] {
  background: var(--scalar-background-2);
}
.prompt[data-v-109c99b0]:disabled {
  color: var(--scalar-color-3);
}
.addAPIButton[data-v-109c99b0] {
  color: var(--scalar-color-2);
  font-size: var(--scalar-font-size-3);
  width: 28px;
  height: 28px;
  font-weight: var(--scalar-bold);
  pointer-events: all;
  z-index: 1;
  box-shadow: 0 0 0 var(--scalar-border-width) var(--scalar-border-color);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  gap: 4px;
  display: flex;
}
.addAPIButton[data-v-109c99b0]:hover {
  background: var(--scalar-background-2);
}
@supports (color: color-mix(in lab, red, red)) {
  .addAPIButton[data-v-109c99b0]:hover {
    background: color-mix(in srgb, var(--scalar-background-2), var(--scalar-background-1));
  }
}
.addAPIButton[data-v-109c99b0]:hover {
  box-shadow: 0 0 0 var(--scalar-border-width) var(--scalar-border-color);
}
.dark-mode .addAPIButton[data-v-109c99b0]:hover {
  background: var(--scalar-background-3);
}
.settingsButton[data-v-109c99b0] {
  z-index: 1;
  color: var(--scalar-color-3) !important;
  border-radius: 50% !important;
  margin: 0 !important;
}
.settingsButton[aria-disabled="true"][data-v-109c99b0] {
  background: var(--scalar-background-2);
}
.dark-mode .settingsButton[data-v-109c99b0]:hover {
  background: var(--scalar-background-3);
}
.sendButton[data-v-109c99b0] {
  z-index: 1;
  border: var(--scalar-border-width) solid var(--scalar-color-blue);
  background: var(--scalar-color-blue) !important;
  border-radius: 50% !important;
  margin: 0 !important;
}
.sendButton[data-v-109c99b0]:not([aria-disabled="true"]) {
  color: #fff !important;
}
.sendButton[data-v-109c99b0]:not([aria-disabled="true"]):hover {
  background: var(--scalar-color-blue) !important;
}
@supports (color: color-mix(in lab, red, red)) {
  .sendButton[data-v-109c99b0]:not([aria-disabled="true"]):hover {
    background: color-mix(in srgb, var(--scalar-color-blue), transparent 10%) !important;
  }
}
.sendButton[aria-disabled="true"][data-v-109c99b0] {
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  background: var(--scalar-background-2) !important;
  color: var(--scalar-color-3) !important;
}
.dark-mode .sendButton[aria-disabled="true"][data-v-109c99b0] {
  background: var(--scalar-background-3) !important;
}
.contextContainer[data-v-109c99b0] {
  width: 100%;
  color: var(--scalar-color-2);
  font-size: var(--scalar-font-size-3);
  -webkit-user-select: none;
  user-select: none;
  justify-content: space-between;
  padding: 10px 12px 12px;
  display: flex;
}
.settingsButton[data-v-109c99b0] {
  font-weight: var(--scalar-semibold);
  border-radius: var(--scalar-radius-lg);
  margin: -4px -6px;
  padding: 4px 6px;
}
.settingsButton[data-v-109c99b0]:hover {
  background: var(--scalar-background-2);
  box-shadow: 0 0 var(--scalar-border-width) 0 var(--scalar-border-color);
  cursor: pointer;
}
.agentLabel[data-v-109c99b0] {
  cursor: text;
  width: 100%;
  height: 100%;
  font-size: 0;
  position: absolute;
}
.sendCheckboxContinue[data-v-109c99b0]:has(input) {
  background: var(--scalar-background-2);
  box-shadow: 0 0 0 1.5px var(--scalar-background-2);
  color: var(--scalar-color-2);
  font-size: var(--scalar-font-size-3);
  font-weight: var(--scalar-semibold);
  -webkit-user-select: none;
  user-select: none;
  border-radius: 14px;
  align-items: center;
  height: 28px;
  display: flex;
}
.dark-mode .sendCheckboxContinue[data-v-109c99b0]:has(input) {
  background: var(--scalar-background-3);
  box-shadow: 0 0 0 1.5px var(--scalar-background-3);
}
.addMoreContext[data-v-109c99b0] {
  height: 40px;
  font-size: var(--scalar-font-size-3);
  color: var(--scalar-color-3);
  align-items: center;
  padding: 0 8px 0 12px;
  display: flex;
  position: relative;
}
.addMoreContext[data-v-109c99b0]:before {
  content: "";
  background: var(--scalar-background-1);
  width: 8px;
  height: 8px;
}
@supports (color: color-mix(in lab, red, red)) {
  .addMoreContext[data-v-109c99b0]:before {
    background: color-mix(in srgb, var(--scalar-background-1), var(--scalar-background-2));
  }
}
.addMoreContext[data-v-109c99b0]:before {
  box-shadow: -.5px -.5px 0 var(--scalar-border-color), inset .5px .5px 1px var(--scalar-border-color);
  position: absolute;
  top: -3px;
  left: 18px;
  transform: rotate(45deg);
}
.dark-mode .addMoreContext[data-v-109c99b0]:before {
  box-shadow: -.5px -.5px 0 var(--scalar-border-color);
}
.addAPIContext[data-v-109c99b0] {
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
}
.termsAgree[data-v-109c99b0] {
  cursor: pointer;
  height: inherit;
  border-radius: 14px;
  align-items: center;
  gap: 5px;
  margin: 0 5px;
  display: flex;
}
.termsAgree[data-v-109c99b0]:hover {
  color: var(--scalar-color-1);
}
.termsAgree:hover .termsAgreeIcon[data-v-109c99b0] {
  background: var(--scalar-color-1);
  color: var(--scalar-background-1);
}
.termsAgreeIcon[data-v-109c99b0] {
  width: inherit;
  height: inherit;
  background: var(--scalar-background-2);
  border-radius: 50%;
  padding: 2px;
}
.chat[data-v-8e43ed7a] {
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 744px;
  padding: 24px 0;
  display: flex;
}
.userMessage[data-v-8e43ed7a] {
  background: var(--scalar-background-2);
  width: fit-content;
  max-width: 80%;
  color: var(--scalar-color-1);
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 18px;
  margin-bottom: 12px;
  margin-left: auto;
  padding-inline: 16px;
  font-size: 16px;
  line-height: 24px;
}
div + .userMessage[data-v-8e43ed7a] {
  margin-top: 64px;
}
.chat[data-v-8e43ed7a] > div:has(.executeRequestTool) + div:has(.executeRequestTool) {
  margin-top: -12px;
}
.spacer[data-v-8e43ed7a] {
  width: 100%;
  min-height: 280px;
}
.formContainer[data-v-8e43ed7a] {
  z-index: 1;
  width: 100%;
  max-width: 744px;
  position: fixed;
  bottom: 20px;
}
.chat[data-v-8e43ed7a] .markdown {
  margin-bottom: 12px;
}
.agentLogo[data-v-56f7e8dd] {
  margin-bottom: 15px;
}
.startContainer[data-v-56f7e8dd] {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 720px;
  height: 100%;
  display: flex;
  position: relative;
}
.heading[data-v-56f7e8dd] {
  font-size: 1.5rem;
  font-weight: var(--scalar-font-bold);
  margin-bottom: 50px;
}
.disclaimerText[data-v-56f7e8dd] {
  text-align: center;
  color: var(--scalar-color-3);
  font-size: var(--scalar-font-size-3);
  text-wrap: balance;
  margin-top: 40px;
  line-height: 1.44;
}
.disclaimerLink[data-v-56f7e8dd] {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.wrapper[data-v-f1eee0af] {
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}
.docSettings[data-v-01a25619] {
  font-size: var(--scalar-font-size-3);
  flex-direction: column;
  gap: 12px;
  max-height: 600px;
  margin-bottom: 12px;
  display: flex;
}
.documentName[data-v-01a25619] {
  font-weight: var(--scalar-semibold);
}
.settingsModal .scalar-modal-layout {
  z-index: 10 !important;
}
.settingsModal .scalar-modal-body {
  overflow: hidden auto;
}
.documentList[data-v-dd2544e6] {
  font-size: var(--scalar-font-size-3);
  flex-direction: column;
  margin-bottom: 12px;
  display: flex;
}
.document[data-v-dd2544e6] {
  border-top: var(--scalar-border-width) solid var(--scalar-border-color);
  border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
  flex-direction: column;
  width: calc(100% + 24px);
  padding: 0 12px;
  display: flex;
  position: relative;
  left: -12px;
}
.document[data-v-dd2544e6]:first-of-type:not(:last-of-type) {
  border-bottom: none;
}
.documentName[data-v-dd2544e6] {
  font-weight: var(--scalar-semibold);
  color: var(--scalar-color-2);
  align-items: center;
  gap: 4px;
  padding: 12px 0;
  display: flex;
}
.documentNameActive[data-v-dd2544e6] {
  color: var(--scalar-color-1);
}
.settingsHeading[data-v-dd2544e6] {
  font-size: 19px;
  font-weight: var(--scalar-semibold);
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  display: flex;
}
.proxyUrlContainer[data-v-dd2544e6] {
  font-size: var(--scalar-font-size-3);
  flex-direction: column;
  gap: 5px;
  display: flex;
}
.proxyUrlContainer label[data-v-dd2544e6] {
  font-weight: var(--scalar-semibold);
}
.noDocuments[data-v-dd2544e6] {
  color: var(--scalar-color-2);
  margin-bottom: 10px;
}
.scalar-app .\@container {
  container-type: inline-size;
}
.scalar-app .pointer-events-auto {
  pointer-events: auto;
}
.scalar-app .pointer-events-none {
  pointer-events: none;
}
.scalar-app .collapse {
  visibility: collapse;
}
.scalar-app .invisible {
  visibility: hidden;
}
.scalar-app .visible {
  visibility: visible;
}
.scalar-app .floating-bg:before {
  background-color: var(--scalar-background-2);
  border-radius: var(--scalar-radius);
  content: "";
  opacity: 0;
  z-index: 1;
  width: calc(100% + 8px);
  height: calc(100% - 4px);
  transition: opacity .2s ease-in-out;
  position: absolute;
  top: 2.5px;
  left: -4px;
}
.scalar-app .floating-bg:hover:before {
  opacity: 1;
}
.scalar-app .centered {
  --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
  --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
  position: absolute;
  top: 50%;
  left: 50%;
}
.scalar-app .centered-y {
  --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
  position: absolute;
  top: 50%;
}
.scalar-app .sr-only {
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
.scalar-app .absolute {
  position: absolute;
}
.scalar-app .fixed {
  position: fixed;
}
.scalar-app .relative {
  position: relative;
}
.scalar-app .static {
  position: static;
}
.scalar-app .sticky {
  position: sticky;
}
.scalar-app .inset-0 {
  inset: 0;
}
.scalar-app .inset-x-0 {
  inset-inline: 0;
}
.scalar-app .inset-x-1 {
  inset-inline: 4px;
}
.scalar-app .inset-x-px {
  inset-inline: 1px;
}
.scalar-app .-inset-y-0\.5 {
  inset-block: -2px;
}
.scalar-app .-inset-y-0\.75 {
  inset-block: -3px;
}
.scalar-app .inset-y-0 {
  inset-block: 0;
}
.scalar-app .inset-y-0\.5 {
  inset-block: 2px;
}
.scalar-app .start {
  inset-inline-start: 4px;
}
.scalar-app .end {
  inset-inline-end: 4px;
}
.scalar-app .-top-1 {
  top: -4px;
}
.scalar-app .-top-2 {
  top: -8px;
}
.scalar-app .top-\(--nested-items-offset\)\! {
  top: var(--nested-items-offset) !important;
}
.scalar-app .top-\(--refs-header-height\) {
  top: var(--refs-header-height);
}
.scalar-app .top-\(--scalar-custom-header-height\,0\) {
  top: var(--scalar-custom-header-height, 0);
}
.scalar-app .top-\(--scalar-sidebar-sticky-offset\,0\) {
  top: var(--scalar-sidebar-sticky-offset, 0);
}
.scalar-app .top-0 {
  top: 0;
}
.scalar-app .top-0\.5 {
  top: 2px;
}
.scalar-app .top-1\/2 {
  top: 50%;
}
.scalar-app .top-2 {
  top: 8px;
}
.scalar-app .top-2\.5 {
  top: 10px;
}
.scalar-app .top-3\.5 {
  top: 14px;
}
.scalar-app .top-12 {
  top: 48px;
}
.scalar-app .top-\[1lh\] {
  top: 1lh;
}
.scalar-app .top-\[calc\(10px\+0\.5lh\)\] {
  top: calc(10px + .5lh);
}
.scalar-app .top-\[calc\(100\%\+4px\)\] {
  top: calc(100% + 4px);
}
.scalar-app .top-px {
  top: 1px;
}
.scalar-app .-right-1 {
  right: -4px;
}
.scalar-app .-right-1\.5 {
  right: -6px;
}
.scalar-app .-right-\[30px\] {
  right: -30px;
}
.scalar-app .right-0 {
  right: 0;
}
.scalar-app .right-0\.75 {
  right: 3px;
}
.scalar-app .right-1 {
  right: 4px;
}
.scalar-app .right-1\.5 {
  right: 6px;
}
.scalar-app .right-1\.25 {
  right: 5px;
}
.scalar-app .right-2 {
  right: 8px;
}
.scalar-app .right-2\.5 {
  right: 10px;
}
.scalar-app .right-4 {
  right: 16px;
}
.scalar-app .right-7 {
  right: 28px;
}
.scalar-app .right-12 {
  right: 48px;
}
.scalar-app .bottom-1 {
  bottom: 4px;
}
.scalar-app .bottom-4 {
  bottom: 16px;
}
.scalar-app .bottom-\[var\(--scalar-border-width\)\] {
  bottom: var(--scalar-border-width);
}
.scalar-app .-left-4\.5 {
  left: -18px;
}
.scalar-app .-left-5 {
  left: -20px;
}
.scalar-app .-left-6 {
  left: -24px;
}
.scalar-app .left-0 {
  left: 0;
}
.scalar-app .left-1\/2 {
  left: 50%;
}
.scalar-app .left-2 {
  left: 8px;
}
.scalar-app .left-2\.5 {
  left: 10px;
}
.scalar-app .left-3 {
  left: 12px;
}
.scalar-app .left-4 {
  left: 16px;
}
.scalar-app .left-border {
  left: var(--scalar-border-width);
}
.scalar-app .left-px {
  left: 1px;
}
.scalar-app .left-refs-w-sidebar {
  left: var(--refs-sidebar-width);
}
.scalar-app .-z-1 {
  z-index: calc(1 * -1);
}
.scalar-app .-z-2 {
  z-index: calc(2 * -1);
}
.scalar-app .z-0 {
  z-index: 0;
}
.scalar-app .z-1 {
  z-index: 1;
}
.scalar-app .z-10 {
  z-index: 10;
  z-index: 10;
}
.scalar-app .z-50 {
  z-index: 50;
  z-index: 50;
}
.scalar-app .z-\[1\] {
  z-index: 1;
}
.scalar-app .z-context {
  z-index: 1000;
}
.scalar-app .z-context-plus {
  z-index: 1001;
}
.scalar-app .z-overlay {
  z-index: 10000;
}
.scalar-app .z-tooltip {
  z-index: 99999;
}
.scalar-app .order-789 {
  order: 789;
}
.scalar-app .order-last {
  order: 9999;
}
.scalar-app .col-span-full {
  grid-column: 1 / -1;
}
.scalar-app .container {
  width: 100%;
}
@media (min-width: 400px) {
  .scalar-app .container {
    max-width: 400px;
  }
}
@media (min-width: 600px) {
  .scalar-app .container {
    max-width: 600px;
  }
}
@media (min-width: 800px) {
  .scalar-app .container {
    max-width: 800px;
  }
}
@media (min-width: 1000px) {
  .scalar-app .container {
    max-width: 1000px;
  }
}
@media (min-width: 1200px) {
  .scalar-app .container {
    max-width: 1200px;
  }
}
@media (min-width: 96rem) {
  .scalar-app .container {
    max-width: 96rem;
  }
}
.scalar-app .\!m-0 {
  margin: 0 !important;
}
.scalar-app .-m-0\.5 {
  margin: -2px;
}
.scalar-app .-m-1 {
  margin: -4px;
}
.scalar-app .-m-2 {
  margin: -8px;
}
.scalar-app .-m-px {
  margin: -1px;
}
.scalar-app .m-0 {
  margin: 0;
}
.scalar-app .m-1 {
  margin: 4px;
}
.scalar-app .m-auto {
  margin: auto;
}
.scalar-app .-mx-\(--scalar-sidebar-padding\) {
  margin-inline: calc(var(--scalar-sidebar-padding) * -1);
}
.scalar-app .-mx-0\.25 {
  margin-inline: -1px;
}
.scalar-app .-mx-0\.75 {
  margin-inline: -3px;
}
.scalar-app .-mx-2 {
  margin-inline: -8px;
}
.scalar-app .-mx-px {
  margin-inline: -1px;
}
.scalar-app .mx-0\.5 {
  margin-inline: 2px;
}
.scalar-app .mx-1 {
  margin-inline: 4px;
}
.scalar-app .mx-1\.5 {
  margin-inline: 6px;
}
.scalar-app .mx-px {
  margin-inline: 1px;
}
.scalar-app .-my-0\.5 {
  margin-block: -2px;
}
.scalar-app .-my-1 {
  margin-block: -4px;
}
.scalar-app .-my-1\.5 {
  margin-block: -6px;
}
.scalar-app .-my-2 {
  margin-block: -8px;
}
.scalar-app .-my-px {
  margin-block: -1px;
}
.scalar-app .my-0\.75 {
  margin-block: 3px;
}
.scalar-app .my-1\.5 {
  margin-block: 6px;
}
.scalar-app .my-2 {
  margin-block: 8px;
}
.scalar-app .my-3 {
  margin-block: 12px;
}
.scalar-app .my-12 {
  margin-block: 48px;
}
.scalar-app .-mt-\(--scalar-sidebar-padding\) {
  margin-top: calc(var(--scalar-sidebar-padding) * -1);
}
.scalar-app .-mt-1 {
  margin-top: -4px;
}
.scalar-app .-mt-1\.5 {
  margin-top: -6px;
}
.scalar-app .-mt-\[\.5px\] {
  margin-top: -.5px;
}
.scalar-app .mt-0 {
  margin-top: 0;
}
.scalar-app .mt-0\.5 {
  margin-top: 2px;
}
.scalar-app .mt-0\.25 {
  margin-top: 1px;
}
.scalar-app .mt-1 {
  margin-top: 4px;
}
.scalar-app .mt-2 {
  margin-top: 8px;
}
.scalar-app .mt-3 {
  margin-top: 12px;
}
.scalar-app .mt-6 {
  margin-top: 24px;
}
.scalar-app .mt-\[15svh\] {
  margin-top: 15svh;
}
.scalar-app .mt-\[20svh\] {
  margin-top: 20svh;
}
.scalar-app .mt-auto {
  margin-top: auto;
}
.scalar-app .mt-px {
  margin-top: 1px;
}
.scalar-app .-mr-0\.5 {
  margin-right: -2px;
}
.scalar-app .-mr-1 {
  margin-right: -4px;
}
.scalar-app .-mr-1\.5 {
  margin-right: -6px;
}
.scalar-app .-mr-px {
  margin-right: -1px;
}
.scalar-app .mr-0 {
  margin-right: 0;
}
.scalar-app .mr-0\.5 {
  margin-right: 2px;
}
.scalar-app .mr-0\.75 {
  margin-right: 3px;
}
.scalar-app .mr-1 {
  margin-right: 4px;
}
.scalar-app .mr-1\.5 {
  margin-right: 6px;
}
.scalar-app .mr-1\.25 {
  margin-right: 5px;
}
.scalar-app .mr-2 {
  margin-right: 8px;
}
.scalar-app .mr-3 {
  margin-right: 12px;
}
.scalar-app .mr-\[calc\(20px-var\(--scalar-sidebar-indent\)\)\] {
  margin-right: calc(20px - var(--scalar-sidebar-indent));
}
.scalar-app .-mb-1 {
  margin-bottom: -4px;
}
.scalar-app .-mb-\[var\(--scalar-border-width\)\] {
  margin-bottom: calc(var(--scalar-border-width) * -1);
}
.scalar-app .mb-0 {
  margin-bottom: 0;
}
.scalar-app .mb-1 {
  margin-bottom: 4px;
}
.scalar-app .mb-2 {
  margin-bottom: 8px;
}
.scalar-app .mb-3 {
  margin-bottom: 12px;
}
.scalar-app .mb-4 {
  margin-bottom: 16px;
}
.scalar-app .-ml-0\.5 {
  margin-left: -2px;
}
.scalar-app .-ml-0\.25 {
  margin-left: -1px;
}
.scalar-app .-ml-0\.75 {
  margin-left: -3px;
}
.scalar-app .ml-1 {
  margin-left: 4px;
}
.scalar-app .ml-2 {
  margin-left: 8px;
}
.scalar-app .ml-auto {
  margin-left: auto;
}
.scalar-app .box-border {
  box-sizing: border-box;
}
.scalar-app .box-content {
  box-sizing: content-box;
}
.scalar-app .flex-center {
  justify-content: center;
  align-items: center;
  display: flex;
}
.scalar-app .line-clamp-\(--markdown-clamp\) {
  -webkit-line-clamp: var(--markdown-clamp);
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.scalar-app .line-clamp-1 {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.scalar-app .\!block {
  display: block !important;
}
.scalar-app .\!hidden {
  display: none !important;
}
.scalar-app .block {
  display: block;
}
.scalar-app .contents {
  display: contents;
}
.scalar-app .flex {
  display: flex;
}
.scalar-app .grid {
  display: grid;
}
.scalar-app .hidden {
  display: none;
}
.scalar-app .inline {
  display: inline;
}
.scalar-app .inline-block {
  display: inline-block;
}
.scalar-app .inline-flex {
  display: inline-flex;
}
.scalar-app .table {
  display: table;
}
.scalar-app .field-sizing-content {
  field-sizing: content;
}
.scalar-app .aspect-\[4\/3\] {
  aspect-ratio: 4 / 3;
}
.scalar-app .aspect-square {
  aspect-ratio: 1;
}
.scalar-app .size-1\.5 {
  width: 6px;
  height: 6px;
}
.scalar-app .size-2\.5 {
  width: 10px;
  height: 10px;
}
.scalar-app .size-2\.75 {
  width: 11px;
  height: 11px;
}
.scalar-app .size-3 {
  width: 12px;
  height: 12px;
}
.scalar-app .size-3\.5 {
  width: 14px;
  height: 14px;
}
.scalar-app .size-3\/4 {
  width: 75%;
  height: 75%;
}
.scalar-app .size-4 {
  width: 16px;
  height: 16px;
}
.scalar-app .size-4\.5 {
  width: 18px;
  height: 18px;
}
.scalar-app .size-5 {
  width: 20px;
  height: 20px;
}
.scalar-app .size-6 {
  width: 24px;
  height: 24px;
}
.scalar-app .size-8 {
  width: 32px;
  height: 32px;
}
.scalar-app .size-10 {
  width: 40px;
  height: 40px;
}
.scalar-app .size-\[23px\] {
  width: 23px;
  height: 23px;
}
.scalar-app .size-full {
  width: 100%;
  height: 100%;
}
.scalar-app .h-\(--refs-sidebar-height\) {
  height: var(--refs-sidebar-height);
}
.scalar-app .h-\(--scalar-address-bar-height\) {
  height: var(--scalar-address-bar-height);
}
.scalar-app .h-\(--scalar-header-height\) {
  height: var(--scalar-header-height);
}
.scalar-app .h-0 {
  height: 0;
}
.scalar-app .h-1 {
  height: 4px;
}
.scalar-app .h-1\.5 {
  height: 6px;
}
.scalar-app .h-2 {
  height: 8px;
}
.scalar-app .h-2\.5 {
  height: 10px;
}
.scalar-app .h-2\.25 {
  height: 9px;
}
.scalar-app .h-3 {
  height: 12px;
}
.scalar-app .h-3\.5 {
  height: 14px;
}
.scalar-app .h-4 {
  height: 16px;
}
.scalar-app .h-4\.5 {
  height: 18px;
}
.scalar-app .h-5 {
  height: 20px;
}
.scalar-app .h-6 {
  height: 24px;
}
.scalar-app .h-7 {
  height: 28px;
}
.scalar-app .h-8 {
  height: 32px;
}
.scalar-app .h-10 {
  height: 40px;
}
.scalar-app .h-\[calc\(100\%\+16px\)\] {
  height: calc(100% + 16px);
}
.scalar-app .h-\[calc\(100\%_-_50px\)\] {
  height: calc(100% - 50px);
}
.scalar-app .h-auto {
  height: auto;
}
.scalar-app .h-border {
  height: var(--scalar-border-width);
}
.scalar-app .h-dvh {
  height: 100dvh;
}
.scalar-app .h-fit {
  height: fit-content;
}
.scalar-app .h-full {
  height: 100%;
}
.scalar-app .h-lh {
  height: 1lh;
}
.scalar-app .h-min {
  height: min-content;
}
.scalar-app .h-px {
  height: 1px;
}
.scalar-app .\!max-h-\[initial\] {
  max-height: initial !important;
}
.scalar-app .max-h-8 {
  max-height: 32px;
}
.scalar-app .max-h-40 {
  max-height: 160px;
}
.scalar-app .max-h-80 {
  max-height: 320px;
}
.scalar-app .max-h-\[60svh\] {
  max-height: 60svh;
}
.scalar-app .max-h-\[60vh\] {
  max-height: 60vh;
}
.scalar-app .max-h-\[80svh\] {
  max-height: 80svh;
}
.scalar-app .max-h-\[90svh\] {
  max-height: 90svh;
}
.scalar-app .max-h-\[auto\] {
  max-height: auto;
}
.scalar-app .max-h-\[calc\(100\%-32px\)\] {
  max-height: calc(100% - 32px);
}
.scalar-app .max-h-\[inherit\] {
  max-height: inherit;
}
.scalar-app .max-h-dvh {
  max-height: 100dvh;
}
.scalar-app .max-h-fit {
  max-height: fit-content;
}
.scalar-app .max-h-radix-popper {
  max-height: calc(var(--radix-popper-available-height) - 8px);
  max-height: calc(var(--radix-popper-available-height) - 8px);
  max-height: calc(var(--radix-popper-available-height) - 8px);
  max-height: calc(var(--radix-popper-available-height) - 8px);
  max-height: calc(var(--radix-popper-available-height) - 8px);
  max-height: calc(var(--radix-popper-available-height) - 8px);
  max-height: calc(var(--radix-popper-available-height) - 8px);
}
.scalar-app .max-h-screen {
  max-height: 100vh;
}
.scalar-app .min-h-0 {
  min-height: 0;
}
.scalar-app .min-h-3 {
  min-height: 12px;
}
.scalar-app .min-h-7 {
  min-height: 28px;
}
.scalar-app .min-h-8 {
  min-height: 32px;
}
.scalar-app .min-h-10 {
  min-height: 40px;
}
.scalar-app .min-h-11 {
  min-height: 44px;
}
.scalar-app .min-h-16 {
  min-height: 64px;
}
.scalar-app .min-h-20 {
  min-height: 80px;
}
.scalar-app .min-h-\[64px\] {
  min-height: 64px;
}
.scalar-app .min-h-\[calc\(4rem\+0\.5px\)\] {
  min-height: calc(4rem + .5px);
}
.scalar-app .min-h-fit {
  min-height: fit-content;
}
.scalar-app .min-h-header {
  min-height: 48px;
}
.scalar-app .\!w-fit {
  width: fit-content !important;
}
.scalar-app .w-\(--refs-sidebar-width\) {
  width: var(--refs-sidebar-width);
}
.scalar-app .w-0\.5 {
  width: 2px;
}
.scalar-app .w-1\.5 {
  width: 6px;
}
.scalar-app .w-2\.5 {
  width: 10px;
}
.scalar-app .w-2\.25 {
  width: 9px;
}
.scalar-app .w-3 {
  width: 12px;
}
.scalar-app .w-4 {
  width: 16px;
}
.scalar-app .w-4\.5 {
  width: 18px;
}
.scalar-app .w-5 {
  width: 20px;
}
.scalar-app .w-6 {
  width: 24px;
}
.scalar-app .w-7 {
  width: 28px;
}
.scalar-app .w-8 {
  width: 32px;
}
.scalar-app .w-36 {
  width: 144px;
}
.scalar-app .w-40 {
  width: 160px;
}
.scalar-app .w-56 {
  width: 224px;
}
.scalar-app .w-64 {
  width: 256px;
}
.scalar-app .w-72 {
  width: 288px;
}
.scalar-app .w-120 {
  width: 480px;
}
.scalar-app .w-\[38px\] {
  width: 38px;
}
.scalar-app .w-\[calc\(100vw-12px\)\] {
  width: calc(100vw - 12px);
}
.scalar-app .w-\[var\(--scalar-sidebar-indent\)\] {
  width: var(--scalar-sidebar-indent);
}
.scalar-app .w-auto {
  width: auto;
}
.scalar-app .w-border {
  width: var(--scalar-border-width);
}
.scalar-app .w-content {
  width: 720px;
}
.scalar-app .w-dvw {
  width: 100dvw;
}
.scalar-app .w-fit {
  width: fit-content;
}
.scalar-app .w-full {
  width: 100%;
}
.scalar-app .w-max {
  width: max-content;
}
.scalar-app .w-px {
  width: 1px;
}
.scalar-app .max-w-\(--refs-content-max-width\) {
  max-width: var(--refs-content-max-width);
}
.scalar-app .max-w-3xl {
  max-width: 768px;
}
.scalar-app .max-w-64 {
  max-width: 256px;
}
.scalar-app .max-w-\[9rem\] {
  max-width: 9rem;
}
.scalar-app .max-w-\[100\%\] {
  max-width: 100%;
}
.scalar-app .max-w-\[160px\] {
  max-width: 160px;
}
.scalar-app .max-w-\[220px\] {
  max-width: 220px;
}
.scalar-app .max-w-\[360px\] {
  max-width: 360px;
}
.scalar-app .max-w-\[480px\] {
  max-width: 480px;
}
.scalar-app .max-w-\[540px\] {
  max-width: 540px;
}
.scalar-app .max-w-\[640px\] {
  max-width: 640px;
}
.scalar-app .max-w-\[800px\] {
  max-width: 800px;
}
.scalar-app .max-w-\[1000px\] {
  max-width: 1000px;
}
.scalar-app .max-w-\[inherit\] {
  max-width: inherit;
}
.scalar-app .max-w-full {
  max-width: 100%;
}
.scalar-app .max-w-screen-padded-4 {
  max-width: calc(100vw - 32px);
}
.scalar-app .max-w-xs {
  max-width: 320px;
}
.scalar-app .min-w-0 {
  min-width: 0;
}
.scalar-app .min-w-2\.25 {
  min-width: 9px;
}
.scalar-app .min-w-3 {
  min-width: 12px;
}
.scalar-app .min-w-4 {
  min-width: 16px;
}
.scalar-app .min-w-4\.5 {
  min-width: 18px;
}
.scalar-app .min-w-6 {
  min-width: 24px;
}
.scalar-app .min-w-7 {
  min-width: 28px;
}
.scalar-app .min-w-8 {
  min-width: 32px;
}
.scalar-app .min-w-32 {
  min-width: 128px;
}
.scalar-app .min-w-48 {
  min-width: 192px;
}
.scalar-app .min-w-\[4\.5rem\] {
  min-width: 4.5rem;
}
.scalar-app .min-w-fit {
  min-width: fit-content;
}
.scalar-app .min-w-full {
  min-width: 100%;
}
.scalar-app .min-w-min {
  min-width: min-content;
}
.scalar-app .flex-1 {
  flex: 1;
}
.scalar-app .flex-shrink, .scalar-app .shrink {
  flex-shrink: 1;
}
.scalar-app .shrink-0 {
  flex-shrink: 0;
}
.scalar-app .flex-grow, .scalar-app .grow {
  flex-grow: 1;
}
.scalar-app .grow-3 {
  flex-grow: 3;
}
.scalar-app .-translate-x-1\/2 {
  --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.scalar-app .-translate-x-full {
  --tw-translate-x: -100%;
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.scalar-app .translate-x-0 {
  --tw-translate-x: calc(4px * 0);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.scalar-app .translate-x-2\.5 {
  --tw-translate-x: calc(4px * 2.5);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.scalar-app .translate-x-\[14px\] {
  --tw-translate-x: 14px;
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.scalar-app .translate-x-full {
  --tw-translate-x: 100%;
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.scalar-app .-translate-y-1\.5 {
  --tw-translate-y: calc(4px * -1.5);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.scalar-app .-translate-y-1\/2 {
  --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.scalar-app .translate-y-0 {
  --tw-translate-y: calc(4px * 0);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.scalar-app .translate-y-1\.5 {
  --tw-translate-y: calc(4px * 1.5);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.scalar-app .translate-y-\[200\%\] {
  --tw-translate-y: 200%;
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.scalar-app .scale-0 {
  --tw-scale-x: 0%;
  --tw-scale-y: 0%;
  --tw-scale-z: 0%;
  scale: var(--tw-scale-x) var(--tw-scale-y);
}
.scalar-app .scale-100 {
  --tw-scale-x: 100%;
  --tw-scale-y: 100%;
  --tw-scale-z: 100%;
  scale: var(--tw-scale-x) var(--tw-scale-y);
}
.scalar-app .rotate-45 {
  rotate: 45deg;
}
.scalar-app .rotate-90 {
  rotate: 90deg;
}
.scalar-app .rotate-180 {
  rotate: 180deg;
}
.scalar-app .transform {
  transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
}
.scalar-app .animate-pulse {
  animation: var(--animate-pulse);
}
.scalar-app .cursor-auto {
  cursor: auto;
}
.scalar-app .cursor-default {
  cursor: default;
}
.scalar-app .cursor-help {
  cursor: help;
}
.scalar-app .cursor-not-allowed {
  cursor: not-allowed;
}
.scalar-app .cursor-pointer {
  cursor: pointer;
}
.scalar-app .cursor-text {
  cursor: text;
}
.scalar-app .resize {
  resize: both;
}
.scalar-app .resize-none {
  resize: none;
}
.scalar-app .scroll-mt-16 {
  scroll-margin-top: 64px;
}
.scalar-app .scroll-mt-24 {
  scroll-margin-top: 96px;
}
.scalar-app .list-none {
  list-style-type: none;
}
.scalar-app .appearance-none {
  appearance: none;
}
.scalar-app .grid-flow-col {
  grid-auto-flow: column;
}
.scalar-app .auto-rows-auto {
  grid-auto-rows: auto;
}
.scalar-app .grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.scalar-app .grid-cols-\[44px_1fr_repeat\(3\,auto\)\] {
  grid-template-columns: 44px 1fr repeat(3, auto);
}
.scalar-app .flex-col {
  flex-direction: column;
}
.scalar-app .flex-row {
  flex-direction: row;
}
.scalar-app .flex-wrap {
  flex-wrap: wrap;
}
.scalar-app .content-end {
  align-content: flex-end;
}
.scalar-app .content-start {
  align-content: flex-start;
}
.scalar-app .items-baseline {
  align-items: baseline;
}
.scalar-app .items-center {
  align-items: center;
}
.scalar-app .items-end {
  align-items: flex-end;
}
.scalar-app .items-start {
  align-items: flex-start;
}
.scalar-app .items-stretch {
  align-items: stretch;
}
.scalar-app .justify-between {
  justify-content: space-between;
}
.scalar-app .justify-center {
  justify-content: center;
}
.scalar-app .justify-end {
  justify-content: flex-end;
}
.scalar-app .justify-start {
  justify-content: flex-start;
}
.scalar-app .justify-stretch {
  justify-content: stretch;
}
.scalar-app .gap-0\.5 {
  gap: 2px;
}
.scalar-app .gap-0\.75 {
  gap: 3px;
}
.scalar-app .gap-1 {
  gap: 4px;
}
.scalar-app .gap-1\.5 {
  gap: 6px;
}
.scalar-app .gap-1\.75 {
  gap: 7px;
}
.scalar-app .gap-2 {
  gap: 8px;
}
.scalar-app .gap-2\.5 {
  gap: 10px;
}
.scalar-app .gap-2\.25 {
  gap: 9px;
}
.scalar-app .gap-3 {
  gap: 12px;
}
.scalar-app .gap-4 {
  gap: 16px;
}
.scalar-app .gap-6 {
  gap: 24px;
}
.scalar-app .gap-7 {
  gap: 28px;
}
.scalar-app .gap-10 {
  gap: 40px;
}
.scalar-app .gap-12 {
  gap: 48px;
}
.scalar-app .gap-\[1\.5px\] {
  gap: 1.5px;
}
.scalar-app .gap-px {
  gap: 1px;
}
.scalar-app .gap-x-2\.5 {
  column-gap: 10px;
}
:where(.scalar-app .space-x-1 > :not(:last-child)) {
  --tw-space-x-reverse: 0;
  margin-inline-start: calc(calc(4px * 1) * var(--tw-space-x-reverse));
  margin-inline-end: calc(calc(4px * 1) * calc(1 - var(--tw-space-x-reverse)));
}
:where(.scalar-app .divide-y > :not(:last-child)) {
  --tw-divide-y-reverse: 0;
  border-bottom-style: var(--tw-border-style);
  border-top-style: var(--tw-border-style);
  border-top-width: calc(var(--scalar-border-width) * var(--tw-divide-y-reverse));
  border-bottom-width: calc(var(--scalar-border-width) * calc(1 - var(--tw-divide-y-reverse)));
}
.scalar-app .self-center {
  align-self: center;
}
.scalar-app .self-end {
  align-self: flex-end;
}
.scalar-app .self-start {
  align-self: flex-start;
}
.scalar-app .truncate {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.scalar-app .overflow-auto {
  overflow: auto;
}
.scalar-app .overflow-hidden {
  overflow: hidden;
}
.scalar-app .overflow-visible {
  overflow: visible;
}
.scalar-app .overflow-x-auto {
  overflow-x: auto;
}
.scalar-app .overflow-x-hidden {
  overflow-x: hidden;
}
.scalar-app .overflow-y-auto {
  overflow-y: auto;
}
.scalar-app .overflow-y-hidden {
  overflow-y: hidden;
}
.scalar-app .overflow-y-scroll {
  overflow-y: scroll;
}
.scalar-app .overscroll-contain {
  overscroll-behavior: contain;
}
.scalar-app .\!rounded-none {
  border-radius: 0 !important;
}
.scalar-app .rounded {
  border-radius: var(--scalar-radius);
}
.scalar-app .rounded-\[inherit\] {
  border-radius: inherit;
}
.scalar-app .rounded-full {
  border-radius: 9999px;
}
.scalar-app .rounded-lg {
  border-radius: var(--scalar-radius-lg);
}
.scalar-app .rounded-md {
  border-radius: var(--scalar-radius);
}
.scalar-app .rounded-none {
  border-radius: 0;
}
.scalar-app .rounded-px {
  border-radius: 1px;
}
.scalar-app .rounded-xl {
  border-radius: var(--scalar-radius-xl);
}
.scalar-app .rounded-t {
  border-top-left-radius: var(--scalar-radius);
  border-top-right-radius: var(--scalar-radius);
}
.scalar-app .rounded-t-lg {
  border-top-left-radius: var(--scalar-radius-lg);
  border-top-right-radius: var(--scalar-radius-lg);
}
.scalar-app .rounded-t-none {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.scalar-app .rounded-t-xl {
  border-top-left-radius: var(--scalar-radius-xl);
  border-top-right-radius: var(--scalar-radius-xl);
}
.scalar-app .\!rounded-b-xl {
  border-bottom-right-radius: var(--scalar-radius-xl) !important;
  border-bottom-left-radius: var(--scalar-radius-xl) !important;
}
.scalar-app .rounded-b {
  border-bottom-right-radius: var(--scalar-radius);
  border-bottom-left-radius: var(--scalar-radius);
}
.scalar-app .rounded-b-lg {
  border-bottom-right-radius: var(--scalar-radius-lg);
  border-bottom-left-radius: var(--scalar-radius-lg);
}
.scalar-app .rounded-b-none {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.scalar-app .rounded-b-xl {
  border-bottom-right-radius: var(--scalar-radius-xl);
  border-bottom-left-radius: var(--scalar-radius-xl);
}
.scalar-app .border {
  border-style: var(--tw-border-style);
  border-width: var(--scalar-border-width);
}
.scalar-app .border-0 {
  border-style: var(--tw-border-style);
  border-width: 0;
}
.scalar-app .border-1, .scalar-app .border-\[1px\] {
  border-style: var(--tw-border-style);
  border-width: 1px;
}
.scalar-app .border-x {
  border-inline-style: var(--tw-border-style);
  border-inline-width: var(--scalar-border-width);
}
.scalar-app .border-x-0 {
  border-inline-style: var(--tw-border-style);
  border-inline-width: 0;
}
.scalar-app .border-y {
  border-block-style: var(--tw-border-style);
  border-block-width: var(--scalar-border-width);
}
.scalar-app .border-t {
  border-top-style: var(--tw-border-style);
  border-top-width: var(--scalar-border-width);
}
.scalar-app .border-t-0 {
  border-top-style: var(--tw-border-style);
  border-top-width: 0;
}
.scalar-app .\!border-r {
  border-right-style: var(--tw-border-style) !important;
  border-right-width: var(--scalar-border-width) !important;
}
.scalar-app .border-r {
  border-right-style: var(--tw-border-style);
  border-right-width: var(--scalar-border-width);
}
.scalar-app .border-r-0 {
  border-right-style: var(--tw-border-style);
  border-right-width: 0;
}
.scalar-app .border-b {
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: var(--scalar-border-width);
}
.scalar-app .border-b-0 {
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: 0;
}
.scalar-app .border-l {
  border-left-style: var(--tw-border-style);
  border-left-width: var(--scalar-border-width);
}
.scalar-app .border-l-0 {
  border-left-style: var(--tw-border-style);
  border-left-width: 0;
}
.scalar-app .border-dashed {
  --tw-border-style: dashed;
  border-style: dashed;
}
.scalar-app .border-none {
  --tw-border-style: none;
  border-style: none;
}
.scalar-app .\!border-current {
  border-color: currentColor !important;
}
.scalar-app .border-\(--scalar-background-3\) {
  border-color: var(--scalar-background-3);
}
.scalar-app .border-border-header {
  border-color: var(--scalar-header-border-color, var(--scalar-border-color));
}
.scalar-app .border-c-accent, .scalar-app .border-c-accent\/30 {
  border-color: var(--scalar-color-accent);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .border-c-accent\/30 {
    border-color: color-mix(in oklab, var(--scalar-color-accent) 30%, transparent);
  }
}
.scalar-app .border-c-alert {
  border-color: var(--scalar-color-alert);
}
.scalar-app .border-c-danger {
  border-color: var(--scalar-color-danger);
}
.scalar-app .border-sidebar-border {
  border-color: var(--scalar-sidebar-border-color, var(--scalar-border-color));
}
.scalar-app .border-sidebar-border-search {
  border-color: var(--scalar-sidebar-search-border-color, var(--scalar-border-color));
}
.scalar-app .border-transparent {
  border-color: #0000;
}
.scalar-app .border-r-transparent {
  border-right-color: #0000;
}
.scalar-app .border-b-sidebar-border {
  border-bottom-color: var(--scalar-sidebar-border-color, var(--scalar-border-color));
}
.scalar-app .bg-\(--bg-light\) {
  background-color: var(--bg-light);
}
.scalar-app .bg-b-1, .scalar-app .bg-b-1\.5 {
  background-color: var(--scalar-background-1);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .bg-b-1\.5 {
    background-color: color-mix(in srgb, var(--scalar-background-1), var(--scalar-background-2));
  }
}
.scalar-app .bg-b-2 {
  background-color: var(--scalar-background-2);
}
.scalar-app .bg-b-3 {
  background-color: var(--scalar-background-3);
}
.scalar-app .bg-b-alert {
  background-color: var(--scalar-background-alert);
}
.scalar-app .bg-b-btn {
  background-color: var(--scalar-button-1);
}
.scalar-app .bg-b-danger {
  background-color: var(--scalar-background-danger);
}
.scalar-app .bg-b-header-1 {
  background-color: var(--scalar-header-background-1, var(--scalar-background-1));
}
.scalar-app .bg-b-header-cta {
  background-color: var(--scalar-header-call-to-action-color, var(--scalar-button-1));
}
.scalar-app .bg-b-tooltip {
  background-color: var(--scalar-tooltip-background);
}
.scalar-app .bg-backdrop {
  background-color: #00000038;
}
.scalar-app .bg-border {
  background-color: var(--scalar-border-color);
}
.scalar-app .bg-c-accent, .scalar-app .bg-c-accent\/5 {
  background-color: var(--scalar-color-accent);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .bg-c-accent\/5 {
    background-color: color-mix(in oklab, var(--scalar-color-accent) 5%, transparent);
  }
}
.scalar-app .bg-c-accent\/10 {
  background-color: var(--scalar-color-accent);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .bg-c-accent\/10 {
    background-color: color-mix(in oklab, var(--scalar-color-accent) 10%, transparent);
  }
}
.scalar-app .bg-c-danger {
  background-color: var(--scalar-color-danger);
}
.scalar-app .bg-current {
  background-color: currentColor;
}
.scalar-app .bg-inherit {
  background-color: inherit;
}
.scalar-app .bg-sidebar-b-1 {
  background-color: var(--scalar-sidebar-background-1, var(--scalar-background-1));
}
.scalar-app .bg-sidebar-b-active {
  background-color: var(--scalar-sidebar-item-active-background, var(--scalar-background-2));
}
.scalar-app .bg-sidebar-b-search {
  background-color: var(--scalar-sidebar-search-background, var(--scalar-background-2));
}
.scalar-app .bg-sidebar-c-2\/15 {
  background-color: var(--scalar-sidebar-color-2, var(--scalar-color-2));
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .bg-sidebar-c-2\/15 {
    background-color: color-mix(in oklab, var(--scalar-sidebar-color-2, var(--scalar-color-2)) 15%, transparent);
  }
}
.scalar-app .bg-sidebar-indent-border {
  background-color: var(--scalar-sidebar-indent-border, var(--scalar-border-color));
}
.scalar-app .bg-sidebar-indent-border-active {
  background-color: var(--scalar-sidebar-indent-border-active, var(--scalar-color-accent));
}
.scalar-app .bg-transparent {
  background-color: #0000;
}
.scalar-app .bg-linear-to-b {
  --tw-gradient-position: to bottom;
}
@supports (background-image: linear-gradient(in lab, red, red)) {
  .scalar-app .bg-linear-to-b {
    --tw-gradient-position: to bottom in oklab;
  }
}
.scalar-app .bg-linear-to-b {
  background-image: linear-gradient(var(--tw-gradient-stops));
}
.scalar-app .bg-linear-to-l {
  --tw-gradient-position: to left;
}
@supports (background-image: linear-gradient(in lab, red, red)) {
  .scalar-app .bg-linear-to-l {
    --tw-gradient-position: to left in oklab;
  }
}
.scalar-app .bg-linear-to-l {
  background-image: linear-gradient(var(--tw-gradient-stops));
}
.scalar-app .from-b-1 {
  --tw-gradient-from: var(--scalar-background-1);
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
}
.scalar-app .from-40\% {
  --tw-gradient-from-position: 40%;
}
.scalar-app .to-b-1\.5 {
  --tw-gradient-to: var(--scalar-background-1);
}
@supports (color: color-mix(in lab, red, red)) {
  .scalar-app .to-b-1\.5 {
    --tw-gradient-to: color-mix(in srgb, var(--scalar-background-1), var(--scalar-background-2));
  }
}
.scalar-app .to-b-1\.5 {
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
}
.scalar-app .to-b-2 {
  --tw-gradient-to: var(--scalar-background-2);
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
}
.scalar-app .to-transparent {
  --tw-gradient-to: transparent;
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
}
.scalar-app .mask-y-from-\[calc\(100\%-8px\)\] {
  -webkit-mask-image: var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic);
  -webkit-mask-image: var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic);
  mask-image: var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic);
  --tw-mask-linear: var(--tw-mask-left), var(--tw-mask-right), var(--tw-mask-bottom), var(--tw-mask-top);
  --tw-mask-top: linear-gradient(to top, var(--tw-mask-top-from-color) var(--tw-mask-top-from-position), var(--tw-mask-top-to-color) var(--tw-mask-top-to-position));
  --tw-mask-top-from-position: calc(100% - 8px);
  --tw-mask-bottom: linear-gradient(to bottom, var(--tw-mask-bottom-from-color) var(--tw-mask-bottom-from-position), var(--tw-mask-bottom-to-color) var(--tw-mask-bottom-to-position));
  --tw-mask-bottom-from-position: calc(100% - 8px);
  -webkit-mask-composite: source-in;
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.scalar-app .mask-y-to-100\% {
  -webkit-mask-image: var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic);
  -webkit-mask-image: var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic);
  mask-image: var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic);
  --tw-mask-linear: var(--tw-mask-left), var(--tw-mask-right), var(--tw-mask-bottom), var(--tw-mask-top);
  --tw-mask-top: linear-gradient(to top, var(--tw-mask-top-from-color) var(--tw-mask-top-from-position), var(--tw-mask-top-to-color) var(--tw-mask-top-to-position));
  --tw-mask-top-to-position: 100%;
  --tw-mask-bottom: linear-gradient(to bottom, var(--tw-mask-bottom-from-color) var(--tw-mask-bottom-from-position), var(--tw-mask-bottom-to-color) var(--tw-mask-bottom-to-position));
  --tw-mask-bottom-to-position: 100%;
  -webkit-mask-composite: source-in;
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.scalar-app .mask-repeat {
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
}
.scalar-app .fill-current {
  fill: currentColor;
}
.scalar-app .\!p-0 {
  padding: 0 !important;
}
.scalar-app .p-\(--scalar-sidebar-padding\) {
  padding: var(--scalar-sidebar-padding);
}
.scalar-app .p-0 {
  padding: 0;
}
.scalar-app .p-0\.5 {
  padding: 2px;
}
.scalar-app .p-0\.75 {
  padding: 3px;
}
.scalar-app .p-1 {
  padding: 4px;
}
.scalar-app .p-1\.5 {
  padding: 6px;
}
.scalar-app .p-1\.25 {
  padding: 5px;
}
.scalar-app .p-1\.75 {
  padding: 7px;
}
.scalar-app .p-2 {
  padding: 8px;
}
.scalar-app .p-2\.5 {
  padding: 10px;
}
.scalar-app .p-3 {
  padding: 12px;
}
.scalar-app .p-4 {
  padding: 16px;
}
.scalar-app .p-7 {
  padding: 28px;
}
.scalar-app .p-\[3px\] {
  padding: 3px;
}
.scalar-app .p-px {
  padding: 1px;
}
.scalar-app .px-\(--scalar-sidebar-padding\) {
  padding-inline: var(--scalar-sidebar-padding);
}
.scalar-app .px-0 {
  padding-inline: 0;
}
.scalar-app .px-0\.5 {
  padding-inline: 2px;
}
.scalar-app .px-0\.75 {
  padding-inline: 3px;
}
.scalar-app .px-1 {
  padding-inline: 4px;
}
.scalar-app .px-1\.5 {
  padding-inline: 6px;
}
.scalar-app .px-1\.25 {
  padding-inline: 5px;
}
.scalar-app .px-2 {
  padding-inline: 8px;
}
.scalar-app .px-2\.5 {
  padding-inline: 10px;
}
.scalar-app .px-3 {
  padding-inline: 12px;
}
.scalar-app .px-3\.5 {
  padding-inline: 14px;
}
.scalar-app .px-4 {
  padding-inline: 16px;
}
.scalar-app .px-5 {
  padding-inline: 20px;
}
.scalar-app .px-6 {
  padding-inline: 24px;
}
.scalar-app .px-15 {
  padding-inline: 60px;
}
.scalar-app .py-0 {
  padding-block: 0;
}
.scalar-app .py-0\.5 {
  padding-block: 2px;
}
.scalar-app .py-0\.25 {
  padding-block: 1px;
}
.scalar-app .py-0\.75 {
  padding-block: 3px;
}
.scalar-app .py-1 {
  padding-block: 4px;
}
.scalar-app .py-1\.5 {
  padding-block: 6px;
}
.scalar-app .py-1\.25 {
  padding-block: 5px;
}
.scalar-app .py-1\.75 {
  padding-block: 7px;
}
.scalar-app .py-2 {
  padding-block: 8px;
}
.scalar-app .py-2\.5 {
  padding-block: 10px;
}
.scalar-app .py-2\.25 {
  padding-block: 9px;
}
.scalar-app .py-3 {
  padding-block: 12px;
}
.scalar-app .py-4 {
  padding-block: 16px;
}
.scalar-app .py-\[6\.75px\] {
  padding-block: 6.75px;
}
.scalar-app .py-px {
  padding-block: 1px;
}
.scalar-app .pt-\(--scalar-sidebar-padding\) {
  padding-top: var(--scalar-sidebar-padding);
}
.scalar-app .pt-1 {
  padding-top: 4px;
}
.scalar-app .pt-2 {
  padding-top: 8px;
}
.scalar-app .pt-3 {
  padding-top: 12px;
}
.scalar-app .pt-px {
  padding-top: 1px;
}
.scalar-app .pr-0 {
  padding-right: 0;
}
.scalar-app .pr-0\.75 {
  padding-right: 3px;
}
.scalar-app .pr-1 {
  padding-right: 4px;
}
.scalar-app .pr-1\.5 {
  padding-right: 6px;
}
.scalar-app .pr-2 {
  padding-right: 8px;
}
.scalar-app .pr-2\.5 {
  padding-right: 10px;
}
.scalar-app .pr-2\.25 {
  padding-right: 9px;
}
.scalar-app .pr-3 {
  padding-right: 12px;
}
.scalar-app .pr-6 {
  padding-right: 24px;
}
.scalar-app .pr-8 {
  padding-right: 32px;
}
.scalar-app .pr-10 {
  padding-right: 40px;
}
.scalar-app .pr-12 {
  padding-right: 48px;
}
.scalar-app .pr-20 {
  padding-right: 80px;
}
.scalar-app .pr-\[100\%\] {
  padding-right: 100%;
}
.scalar-app .pb-1 {
  padding-bottom: 4px;
}
.scalar-app .pb-1\.5 {
  padding-bottom: 6px;
}
.scalar-app .pb-3 {
  padding-bottom: 12px;
}
.scalar-app .pb-6 {
  padding-bottom: 24px;
}
.scalar-app .pb-12 {
  padding-bottom: 48px;
}
.scalar-app .\!pl-3 {
  padding-left: 12px !important;
}
.scalar-app .pl-1 {
  padding-left: 4px;
}
.scalar-app .pl-1\.25 {
  padding-left: 5px;
}
.scalar-app .pl-2 {
  padding-left: 8px;
}
.scalar-app .pl-3 {
  padding-left: 12px;
}
.scalar-app .pl-4 {
  padding-left: 16px;
}
.scalar-app .pl-8 {
  padding-left: 32px;
}
.scalar-app .pl-8\.5 {
  padding-left: 34px;
}
.scalar-app .pl-\[100\%\] {
  padding-left: 100%;
}
.scalar-app .pl-px {
  padding-left: 1px;
}
.scalar-app .text-center {
  text-align: center;
}
.scalar-app .text-left {
  text-align: left;
}
.scalar-app .text-right {
  text-align: right;
}
.scalar-app .font-code {
  font-family: var(--scalar-font-code);
}
.scalar-app .font-sans {
  font-family: var(--scalar-font);
}
.scalar-app .text-base {
  font-size: var(--scalar-font-size-3);
  line-height: var(--tw-leading, calc(1 / .875));
}
.scalar-app .text-base\/4 {
  font-size: var(--scalar-font-size-3);
  line-height: 16px;
}
.scalar-app .text-base\/5 {
  font-size: var(--scalar-font-size-3);
  line-height: 20px;
}
.scalar-app .text-base\/5\.25 {
  font-size: var(--scalar-font-size-3);
  line-height: 21px;
}
.scalar-app .text-lg {
  font-size: var(--scalar-font-size-2);
  line-height: var(--tw-leading, calc(1.25 / 1));
}
.scalar-app .text-sm\/4 {
  font-size: var(--scalar-font-size-4);
  line-height: 16px;
}
.scalar-app .text-sm\/none {
  font-size: var(--scalar-font-size-4);
  line-height: 1;
}
.scalar-app .text-xs\/4 {
  font-size: var(--scalar-font-size-5);
  line-height: 16px;
}
.scalar-app .text-3xs {
  font-size: var(--scalar-font-size-7);
}
.scalar-app .text-\[6px\] {
  font-size: 6px;
}
.scalar-app .text-\[9px\] {
  font-size: 9px;
}
.scalar-app .text-\[10px\] {
  font-size: 10px;
}
.scalar-app .text-\[11px\] {
  font-size: 11px;
}
.scalar-app .text-sm {
  font-size: var(--scalar-font-size-4);
}
.scalar-app .text-xs {
  font-size: var(--scalar-font-size-5);
}
.scalar-app .text-xxs {
  font-size: var(--scalar-font-size-6);
}
.scalar-app .leading-5 {
  --tw-leading: calc(4px * 5);
  line-height: 20px;
}
.scalar-app .leading-5\.5 {
  --tw-leading: calc(4px * 5.5);
  line-height: 22px;
}
.scalar-app .leading-6 {
  --tw-leading: calc(4px * 6);
  line-height: 24px;
}
.scalar-app .leading-\[1\.44\] {
  --tw-leading: 1.44;
  line-height: 1.44;
}
.scalar-app .leading-\[1\.45\] {
  --tw-leading: 1.45;
  line-height: 1.45;
}
.scalar-app .leading-\[7px\] {
  --tw-leading: 7px;
  line-height: 7px;
}
.scalar-app .leading-\[20px\] {
  --tw-leading: 20px;
  line-height: 20px;
}
.scalar-app .leading-\[22px\] {
  --tw-leading: 22px;
  line-height: 22px;
}
.scalar-app .leading-\[normal\] {
  --tw-leading: normal;
  line-height: normal;
}
.scalar-app .leading-none {
  --tw-leading: 1;
  line-height: 1;
}
.scalar-app .leading-normal {
  --tw-leading: var(--leading-normal);
  line-height: var(--leading-normal);
}
.scalar-app .leading-relaxed {
  --tw-leading: var(--leading-relaxed);
  line-height: var(--leading-relaxed);
}
.scalar-app .leading-snug {
  --tw-leading: var(--leading-snug);
  line-height: var(--leading-snug);
}
.scalar-app .font-bold {
  --tw-font-weight: var(--scalar-bold);
  font-weight: var(--scalar-bold);
}
.scalar-app .font-medium {
  --tw-font-weight: var(--scalar-semibold);
  font-weight: var(--scalar-semibold);
}
.scalar-app .font-normal {
  --tw-font-weight: var(--scalar-regular);
  font-weight: var(--scalar-regular);
}
.scalar-app .font-sidebar {
  --tw-font-weight: var(--scalar-sidebar-font-weight, var(--scalar-regular));
  font-weight: var(--scalar-sidebar-font-weight, var(--scalar-regular));
}
.scalar-app .font-sidebar-active {
  --tw-font-weight: var(--scalar-sidebar-font-weight-active, var(--scalar-semibold));
  font-weight: var(--scalar-sidebar-font-weight-active, var(--scalar-semibold));
}
.scalar-app .text-balance {
  text-wrap: balance;
}
.scalar-app .text-nowrap {
  text-wrap: nowrap;
}
.scalar-app .text-pretty {
  text-wrap: pretty;
}
.scalar-app .text-wrap {
  text-wrap: wrap;
}
.scalar-app .break-words, .scalar-app .wrap-break-word {
  overflow-wrap: break-word;
}
.scalar-app .text-ellipsis {
  text-overflow: ellipsis;
}
.scalar-app .whitespace-nowrap {
  white-space: nowrap;
}
.scalar-app .whitespace-pre {
  white-space: pre;
}
.scalar-app .whitespace-pre-wrap {
  white-space: pre-wrap;
}
.scalar-app .\!text-c-1 {
  color: var(--scalar-color-1) !important;
}
.scalar-app .text-\[color\:var\(--scalar-color-3\)\] {
  color: var(--scalar-color-3);
}
.scalar-app .text-b-1 {
  color: var(--scalar-background-1);
}
.scalar-app .text-b-2 {
  color: var(--scalar-background-2);
}
.scalar-app .text-blue {
  color: var(--scalar-color-blue);
}
.scalar-app .text-c-1 {
  color: var(--scalar-color-1);
}
.scalar-app .text-c-2 {
  color: var(--scalar-color-2);
}
.scalar-app .text-c-3 {
  color: var(--scalar-color-3);
}
.scalar-app .text-c-accent {
  color: var(--scalar-color-accent);
}
.scalar-app .text-c-alert {
  color: var(--scalar-color-alert);
}
.scalar-app .text-c-btn {
  color: var(--scalar-button-1-color);
}
.scalar-app .text-c-danger {
  color: var(--scalar-color-danger);
}
.scalar-app .text-c-header-1 {
  color: var(--scalar-header-color-1, var(--scalar-color-1));
}
.scalar-app .text-c-header-2 {
  color: var(--scalar-header-color-2, var(--scalar-color-2));
}
.scalar-app .text-c-header-cta {
  color: var(--scalar-button-1-color);
}
.scalar-app .text-c-tooltip {
  color: var(--scalar-tooltip-color);
}
.scalar-app .text-current {
  color: currentColor;
}
.scalar-app .text-green {
  color: var(--scalar-color-green);
}
.scalar-app .text-grey {
  color: var(--scalar-color-3);
}
.scalar-app .text-orange {
  color: var(--scalar-color-orange);
}
.scalar-app .text-purple {
  color: var(--scalar-color-purple);
}
.scalar-app .text-red {
  color: var(--scalar-color-red);
}
.scalar-app .text-sidebar-c-1 {
  color: var(--scalar-sidebar-color-1, var(--scalar-color-1));
}
.scalar-app .text-sidebar-c-2 {
  color: var(--scalar-sidebar-color-2, var(--scalar-color-2));
}
.scalar-app .text-sidebar-c-active {
  color: var(--scalar-sidebar-color-active, var(--scalar-sidebar-color-1));
}
.scalar-app .text-sidebar-c-search {
  color: var(--scalar-sidebar-search-color, var(--scalar-color-3));
}
.scalar-app .text-transparent {
  color: #0000;
}
.scalar-app .text-white {
  color: #fff;
}
.scalar-app .text-yellow {
  color: var(--scalar-color-yellow);
}
.scalar-app .capitalize {
  text-transform: capitalize;
}
.scalar-app .uppercase {
  text-transform: uppercase;
}
.scalar-app .italic {
  font-style: italic;
}
.scalar-app .tabular-nums {
  --tw-numeric-spacing: tabular-nums;
  font-feature-settings: var(--tw-ordinal, ) var(--tw-slashed-zero, ) var(--tw-numeric-figure, ) var(--tw-numeric-spacing, ) var(--tw-numeric-fraction, );
  font-variant-numeric: var(--tw-ordinal, ) var(--tw-slashed-zero, ) var(--tw-numeric-figure, ) var(--tw-numeric-spacing, ) var(--tw-numeric-fraction, );
}
.scalar-app .line-through {
  text-decoration-line: line-through;
}
.scalar-app .no-underline {
  text-decoration-line: none;
}
.scalar-app .underline {
  text-decoration-line: underline;
}
.scalar-app .decoration-c-3 {
  text-decoration-color: var(--scalar-color-3);
}
.scalar-app .decoration-dotted {
  text-decoration-style: dotted;
}
.scalar-app .underline-offset-2 {
  text-underline-offset: 2px;
}
.scalar-app .opacity-0 {
  opacity: 0;
}
.scalar-app .opacity-40 {
  opacity: .4;
}
.scalar-app .opacity-50 {
  opacity: .5;
}
.scalar-app .opacity-100 {
  opacity: 1;
}
.scalar-app .bg-blend-normal {
  background-blend-mode: normal;
}
.scalar-app .shadow {
  --tw-shadow: var(--scalar-shadow-1);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.scalar-app .shadow-\[-8px_0_4px_var\(--scalar-background-1\)\] {
  --tw-shadow: -8px 0 4px var(--tw-shadow-color, var(--scalar-background-1));
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.scalar-app .shadow-border {
  --tw-shadow: inset 0 0 0 var(--tw-shadow-color, var(--scalar-border-width)) var(--scalar-border-color);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.scalar-app .shadow-lg {
  --tw-shadow: var(--scalar-shadow-2);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.scalar-app .shadow-md {
  --tw-shadow: var(--scalar-shadow-1);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.scalar-app .shadow-none {
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.scalar-app .outline {
  outline-style: var(--tw-outline-style);
  outline-width: 1px;
}
.scalar-app .-outline-offset-1 {
  outline-offset: calc(1px * -1);
}
.scalar-app .-outline-offset-2 {
  outline-offset: calc(2px * -1);
}
.scalar-app .outline-offset-1 {
  outline-offset: 1px;
}
.scalar-app .outline-offset-2 {
  outline-offset: 2px;
}
.scalar-app .outline-offset-\[-1px\] {
  outline-offset: -1px;
}
.scalar-app .outline-c-danger {
  outline-color: var(--scalar-color-danger);
}
.scalar-app .blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
}
.scalar-app .brightness-90 {
  --tw-brightness: brightness(90%);
  filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
}
.scalar-app .brightness-lifted {
  --tw-brightness: brightness(var(--scalar-lifted-brightness));
  filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
}
.scalar-app .filter {
  filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
}
.scalar-app .backdrop-blur {
  --tw-backdrop-blur: blur(8px);
  backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
}
.scalar-app .backdrop-filter {
  backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
}
.scalar-app .transition {
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  transition-duration: var(--tw-duration, var(--default-transition-duration));
}
.scalar-app .transition-colors {
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  transition-duration: var(--tw-duration, var(--default-transition-duration));
}
.scalar-app .transition-opacity {
  transition-property: opacity;
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  transition-duration: var(--tw-duration, var(--default-transition-duration));
}
.scalar-app .transition-transform {
  transition-property: transform, translate, scale, rotate;
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  transition-duration: var(--tw-duration, var(--default-transition-duration));
}
.scalar-app .transition-none {
  transition-property: none;
}
.scalar-app .duration-100 {
  --tw-duration: .1s;
  transition-duration: .1s;
}
.scalar-app .duration-150 {
  --tw-duration: .15s;
  transition-duration: .15s;
}
.scalar-app .duration-200 {
  --tw-duration: .2s;
  transition-duration: .2s;
}
.scalar-app .duration-300 {
  --tw-duration: .3s;
  transition-duration: .3s;
}
.scalar-app .duration-400 {
  --tw-duration: .4s;
  transition-duration: .4s;
}
.scalar-app .duration-500 {
  --tw-duration: .5s;
  transition-duration: .5s;
}
.scalar-app .ease-\[cubic-bezier\(0\.77\,0\,0\.175\,1\)\] {
  --tw-ease: cubic-bezier(.77,0,.175,1);
  transition-timing-function: cubic-bezier(.77, 0, .175, 1);
}
.scalar-app .ease-in {
  --tw-ease: var(--ease-in);
  transition-timing-function: var(--ease-in);
}
.scalar-app .ease-in-out {
  --tw-ease: var(--ease-in-out);
  transition-timing-function: var(--ease-in-out);
}
.scalar-app .ease-out {
  --tw-ease: var(--ease-out);
  transition-timing-function: var(--ease-out);
}
.scalar-app .ease-spring {
  --tw-ease: linear(0,
    .008 1.1%,
    .034 2.3%,
    .134 4.9%,
    .264 7.3%,
    .683 14.3%,
    .797 16.5%,
    .89 18.6%,
    .967 20.7%,
    1.027 22.8%,
    1.073 25%,
    1.104 27.3%,
    1.123 30.6%,
    1.119 34.3%,
    1.018 49.5%,
    .988 58.6%,
    .985 65.2%,
    1 84.5%,
    1);
  transition-timing-function: linear(0,
    .008 1.1%,
    .034 2.3%,
    .134 4.9%,
    .264 7.3%,
    .683 14.3%,
    .797 16.5%,
    .89 18.6%,
    .967 20.7%,
    1.027 22.8%,
    1.073 25%,
    1.104 27.3%,
    1.123 30.6%,
    1.119 34.3%,
    1.018 49.5%,
    .988 58.6%,
    .985 65.2%,
    1 84.5%,
    1);
}
.scalar-app .outline-none {
  --tw-outline-style: none;
  outline-style: none;
}
.scalar-app .select-none {
  -webkit-user-select: none;
  user-select: none;
}
.scalar-app .\[--scalar-address-bar-height\:0px\] {
  --scalar-address-bar-height: 0px;
}
.scalar-app .\[--scalar-address-bar-height\:32px\] {
  --scalar-address-bar-height: 32px;
}
.scalar-app .\[grid-area\:header\] {
  grid-area: header;
}
.scalar-app .\[grid-area\:navigation\] {
  grid-area: navigation;
}
:is(.scalar-app .\*\:flex > *) {
  display: flex;
}
:is(.scalar-app .\*\:size-3 > *) {
  width: 12px;
  height: 12px;
}
:is(.scalar-app .\*\:size-4 > *) {
  width: 16px;
  height: 16px;
}
:is(.scalar-app .\*\:h-5 > *) {
  height: 20px;
}
:is(.scalar-app .\*\:h-8 > *) {
  height: 32px;
}
:is(.scalar-app .\*\:min-w-5 > *) {
  min-width: 20px;
}
:is(.scalar-app .\*\:flex-1 > *) {
  flex: 1;
}
:is(.scalar-app .\*\:cursor-pointer > *) {
  cursor: pointer;
}
:is(.scalar-app .\*\:items-center > *) {
  align-items: center;
}
:is(.scalar-app .\*\:justify-center > *) {
  justify-content: center;
}
:is(.scalar-app .\*\:gap-1 > *) {
  gap: 4px;
}
:is(.scalar-app .\*\:rounded > *) {
  border-radius: var(--scalar-radius);
}
:is(.scalar-app .\*\:rounded-none > *) {
  border-radius: 0;
}
:is(.scalar-app .\*\:border > *) {
  border-style: var(--tw-border-style);
  border-width: var(--scalar-border-width);
}
:is(.scalar-app .\*\:border-t > *) {
  border-top-style: var(--tw-border-style);
  border-top-width: var(--scalar-border-width);
}
:is(.scalar-app .\*\:border-border-tooltip > *) {
  border-color: var(--scalar-tooltip-color);
}
@supports (color: color-mix(in lab, red, red)) {
  :is(.scalar-app .\*\:border-border-tooltip > *) {
    border-color: color-mix(in srgb, var(--scalar-tooltip-color), var(--scalar-tooltip-background));
  }
}
:is(.scalar-app .\*\:px-1 > *) {
  padding-inline: 4px;
}
:is(.scalar-app .\*\:px-1\.5 > *) {
  padding-inline: 6px;
}
:is(.scalar-app .\*\:pl-4 > *) {
  padding-left: 16px;
}
.scalar-app .group-first\/row\:border-t-0:is(:where(.group\/row):first-child *) {
  border-top-style: var(--tw-border-style);
  border-top-width: 0;
}
.scalar-app .group-last\:mr-0:is(:where(.group):last-child *) {
  margin-right: 0;
}
.scalar-app .group-last\:border-b-transparent:is(:where(.group):last-child *) {
  border-bottom-color: #0000;
}
.scalar-app .group-last\/label\:rounded-br-lg:is(:where(.group\/label):last-child *) {
  border-bottom-right-radius: var(--scalar-radius-lg);
}
.scalar-app .group-open\:rotate-90:is(:where(.group):is([open], :popover-open, :open) *) {
  rotate: 90deg;
}
.scalar-app .group-open\:flex-wrap:is(:where(.group):is([open], :popover-open, :open) *) {
  flex-wrap: wrap;
}
.scalar-app .group-open\:whitespace-normal:is(:where(.group):is([open], :popover-open, :open) *) {
  white-space: normal;
}
.scalar-app .group-focus-within\:flex:is(:where(.group):focus-within *) {
  display: flex;
}
.scalar-app .group-focus-within\/parameter-item\:opacity-100:is(:where(.group\/parameter-item):focus-within *), .scalar-app .group-focus-within\/scope-row\:opacity-100:is(:where(.group\/scope-row):focus-within *) {
  opacity: 1;
}
@media (hover: hover) {
  .scalar-app .group-hover\:flex:is(:where(.group):hover *) {
    display: flex;
  }

  .scalar-app .group-hover\:pr-10:is(:where(.group):hover *) {
    padding-right: 40px;
  }

  .scalar-app .group-hover\:text-c-1:is(:where(.group):hover *) {
    color: var(--scalar-color-1);
  }

  .scalar-app .group-hover\:opacity-100:is(:where(.group):hover *) {
    opacity: 1;
  }

  .scalar-app .group-hover\/button\:bg-sidebar-indent-border-hover:is(:where(.group\/button):hover *) {
    background-color: var(--scalar-sidebar-indent-border-hover, var(--scalar-border-color));
  }

  .scalar-app .group-hover\/button\:text-c-header-1:is(:where(.group\/button):hover *) {
    color: var(--scalar-header-color-1, var(--scalar-color-1));
  }

  .scalar-app .group-hover\/button\:opacity-0:is(:where(.group\/button):hover *) {
    opacity: 0;
  }

  .scalar-app .group-hover\/heading\:opacity-100:is(:where(.group\/heading):hover *), .scalar-app .group-hover\/item\:opacity-100:is(:where(.group\/item):hover *), .scalar-app .group-hover\/parameter-item\:opacity-100:is(:where(.group\/parameter-item):hover *), .scalar-app .group-hover\/params\:opacity-100:is(:where(.group\/params):hover *) {
    opacity: 1;
  }

  .scalar-app .group-hover\/row\:flex:is(:where(.group\/row):hover *) {
    display: flex;
  }

  .scalar-app .group-hover\/scope-row\:text-c-1:is(:where(.group\/scope-row):hover *) {
    color: var(--scalar-color-1);
  }

  .scalar-app .group-hover\/scope-row\:opacity-100:is(:where(.group\/scope-row):hover *) {
    opacity: 1;
  }

  .scalar-app .group-hover\/scopes-accordion\:text-c-2:is(:where(.group\/scopes-accordion):hover *) {
    color: var(--scalar-color-2);
  }
}
.scalar-app .group-focus-visible\:outline:is(:where(.group):focus-visible *) {
  outline-style: var(--tw-outline-style);
  outline-width: 1px;
}
.scalar-app .group-focus-visible\/button\:opacity-0:is(:where(.group\/button):focus-visible *) {
  opacity: 0;
}
.scalar-app .group-focus-visible\/toggle\:outline:is(:where(.group\/toggle):focus-visible *) {
  outline-style: var(--tw-outline-style);
  outline-width: 1px;
}
.scalar-app .group-has-focus-visible\/heading\:opacity-100:is(:where(.group\/heading):has(:focus-visible) *) {
  opacity: 1;
}
.scalar-app .group-has-\[\.cm-focused\]\:z-1:is(:where(.group):has(.cm-focused) *) {
  z-index: 1;
}
.scalar-app .group-has-\[\.cm-focused\]\:flex:is(:where(.group):has(.cm-focused) *) {
  display: flex;
}
.scalar-app .group-has-\[\.cm-focused\]\:pr-10:is(:where(.group):has(.cm-focused) *) {
  padding-right: 40px;
}
.scalar-app .group-has-\[\:focus-visible\]\/cell\:border-c-accent:is(:where(.group\/cell):has(:focus-visible) *) {
  border-color: var(--scalar-color-accent);
}
.scalar-app .group-has-\[\:focus-visible\]\/cell\:opacity-100:is(:where(.group\/cell):has(:focus-visible) *) {
  opacity: 1;
}
.scalar-app .group-has-\[\:focus-visible\]\/input\:block:is(:where(.group\/input):has(:focus-visible) *) {
  display: block;
}
.scalar-app .group-has-\[input\]\/label\:mr-0:is(:where(.group\/label):has(:is(input)) *) {
  margin-right: 0;
}
.scalar-app .group-has-\[\~\*_\[aria-expanded\=true\]\]\/button\:opacity-0:is(:where(.group\/button):has( ~ * [aria-expanded="true"]) *), .scalar-app .group-has-\[\~\*\:focus-within\]\/button\:opacity-0:is(:where(.group\/button):has( ~ :focus-within) *), .scalar-app .group-has-\[\~\*\:hover\]\/button\:opacity-0:is(:where(.group\/button):has( ~ :hover) *) {
  opacity: 0;
}
.scalar-app .group-aria-expanded\/button\:rotate-180:is(:where(.group\/button)[aria-expanded="true"] *), .scalar-app .group-aria-expanded\/combobox-button\:rotate-180:is(:where(.group\/combobox-button)[aria-expanded="true"] *) {
  rotate: 180deg;
}
.scalar-app .group-hocus\/copy-button\:sr-only:is(:is(:where(.group\/copy-button):hover, :where(.group\/copy-button):focus-visible) *) {
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
.scalar-app .group-hocus\/copy-button\:not-sr-only:is(:is(:where(.group\/copy-button):hover, :where(.group\/copy-button):focus-visible) *) {
  clip-path: none;
  white-space: normal;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  position: static;
  overflow: visible;
}
.scalar-app .group-hocus\/copy-button\:block:is(:is(:where(.group\/copy-button):hover, :where(.group\/copy-button):focus-visible) *) {
  display: block;
}
.scalar-app .group-hocus-within\/code-block\:-left-0\.5:is(:is(:where(.group\/code-block):hover, :where(.group\/code-block):focus-within) *) {
  left: -2px;
}
.scalar-app .group-hocus-within\/code-block\:inline:is(:is(:where(.group\/code-block):hover, :where(.group\/code-block):focus-within) *) {
  display: inline;
}
.scalar-app .group-hocus-within\/code-block\:opacity-100:is(:is(:where(.group\/code-block):hover, :where(.group\/code-block):focus-within) *) {
  opacity: 1;
}
.scalar-app .group-\[\.alert\]\:bg-b-alert:is(:where(.group).alert *) {
  background-color: var(--scalar-background-alert);
}
.scalar-app .group-\[\.alert\]\:bg-transparent:is(:where(.group).alert *) {
  background-color: #0000;
}
.scalar-app .group-\[\.alert\]\:shadow-none:is(:where(.group).alert *) {
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.scalar-app .group-\[\.alert\]\:outline-orange:is(:where(.group).alert *) {
  outline-color: var(--scalar-color-orange);
}
.scalar-app .group-\[\.error\]\:bg-b-danger:is(:where(.group).error *) {
  background-color: var(--scalar-background-danger);
}
.scalar-app .group-\[\.error\]\:bg-transparent:is(:where(.group).error *) {
  background-color: #0000;
}
.scalar-app .group-\[\.error\]\:text-red:is(:where(.group).error *) {
  color: var(--scalar-color-red);
}
.scalar-app .group-\[\.error\]\:shadow-none:is(:where(.group).error *) {
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.scalar-app .group-\[\.error\]\:outline-red:is(:where(.group).error *) {
  outline-color: var(--scalar-color-red);
}
.scalar-app .peer-checked\:text-c-1:is(:where(.peer):checked ~ *) {
  color: var(--scalar-color-1);
}
@media (hover: hover) {
  .scalar-app .peer-hover\/button\:opacity-100:is(:where(.peer\/button):hover ~ *) {
    opacity: 1;
  }
}
.scalar-app .peer-focus-visible\/button\:opacity-100:is(:where(.peer\/button):focus-visible ~ *) {
  opacity: 1;
}
.scalar-app .peer-has-\[\.cm-focused\]\:opacity-0:is(:where(.peer):has(.cm-focused) ~ *) {
  opacity: 0;
}
.scalar-app .peer-has-\[\.color-selector\]\:hidden:is(:where(.peer):has(.color-selector) ~ *) {
  display: none;
}
.scalar-app .placeholder\:font-\[inherit\]::placeholder {
  font-family: inherit;
}
:is(.scalar-app .\*\:not-first\:before\:content-\[\'_·_\'\] > *):not(:first-child):before {
  --tw-content: " · ";
  content: var(--tw-content);
}
.scalar-app .after\:pointer-events-none:after {
  content: var(--tw-content);
  pointer-events: none;
}
.scalar-app .after\:absolute:after {
  content: var(--tw-content);
  position: absolute;
}
.scalar-app .after\:inset-0:after {
  content: var(--tw-content);
  inset: 0;
}
.scalar-app .after\:inset-x-0:after {
  content: var(--tw-content);
  inset-inline: 0;
}
.scalar-app .after\:-top-0\.5:after {
  content: var(--tw-content);
  top: -2px;
}
.scalar-app .after\:-bottom-0\.5:after {
  content: var(--tw-content);
  bottom: -2px;
}
.scalar-app .after\:block:after {
  content: var(--tw-content);
  display: block;
}
.scalar-app .after\:h-0\.75:after {
  content: var(--tw-content);
  height: 3px;
}
.scalar-app .after\:rounded:after {
  content: var(--tw-content);
  border-radius: var(--scalar-radius);
}
.scalar-app .after\:bg-blue:after {
  content: var(--tw-content);
  background-color: var(--scalar-color-blue);
}
.scalar-app .after\:opacity-15:after {
  content: var(--tw-content);
  opacity: .15;
}
.scalar-app .after\:content-\[\'\:\'\]:after {
  --tw-content: ":";
  content: var(--tw-content);
}
.scalar-app .first\:rounded-t-\[inherit\]:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
:is(.scalar-app .\*\:first\:rounded-l > *):first-child {
  border-top-left-radius: var(--scalar-radius);
  border-bottom-left-radius: var(--scalar-radius);
}
:is(.scalar-app .\*\:first\:border-t-0 > *):first-child, :is(.scalar-app .first\:\*\:border-t-0:first-child > *) {
  border-top-style: var(--tw-border-style);
  border-top-width: 0;
}
.scalar-app .last\:rounded-b-\[inherit\]:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.scalar-app .last\:rounded-b-lg:last-child {
  border-bottom-right-radius: var(--scalar-radius-lg);
  border-bottom-left-radius: var(--scalar-radius-lg);
}
.scalar-app .last\:border-r-0:last-child {
  border-right-style: var(--tw-border-style);
  border-right-width: 0;
}
:is(.scalar-app .\*\:last\:rounded-r > *):last-child {
  border-top-right-radius: var(--scalar-radius);
  border-bottom-right-radius: var(--scalar-radius);
}
.scalar-app .last-of-type\:first-of-type\:border-b-0:last-of-type:first-of-type {
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: 0;
}
.scalar-app .empty\:hidden:empty {
  display: none;
}
.scalar-app .focus-within\:bg-b-1:focus-within {
  background-color: var(--scalar-background-1);
}
.scalar-app .focus-within\:text-c-1:focus-within {
  color: var(--scalar-color-1);
}
.scalar-app .focus-within\:opacity-100:focus-within {
  opacity: 1;
}
.scalar-app .focus-within\:outline-none:focus-within {
  --tw-outline-style: none;
  outline-style: none;
}
@media (hover: hover) {
  .scalar-app .hover\:bg-b-2:hover {
    background-color: var(--scalar-background-2);
  }

  .scalar-app .hover\:bg-b-3:hover {
    background-color: var(--scalar-background-3);
  }

  .scalar-app .hover\:bg-b-header-2:hover {
    background-color: var(--scalar-header-background-2, var(--scalar-background-2));
  }

  .scalar-app .hover\:bg-c-accent\/20:hover {
    background-color: var(--scalar-color-accent);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .scalar-app .hover\:bg-c-accent\/20:hover {
      background-color: color-mix(in oklab, var(--scalar-color-accent) 20%, transparent);
    }
  }

  .scalar-app .hover\:bg-h-btn:hover {
    background-color: var(--scalar-button-1-hover);
  }

  .scalar-app .hover\:bg-h-header-cta:hover {
    background-color: var(--scalar-header-call-to-action-color, var(--scalar-button-1));
  }

  @supports (color: color-mix(in lab, red, red)) {
    .scalar-app .hover\:bg-h-header-cta:hover {
      background-color: color-mix(in srgb,
    var(--scalar-header-call-to-action-color, var(--scalar-button-1)),
    var(--scalar-header-background-1, var(--scalar-background-1)) 15%);
    }
  }

  .scalar-app .hover\:bg-sidebar-b-1:hover {
    background-color: var(--scalar-sidebar-background-1, var(--scalar-background-1));
  }

  .scalar-app .hover\:bg-sidebar-b-hover:hover {
    background-color: var(--scalar-sidebar-item-hover-background, var(--scalar-background-2));
  }

  .scalar-app .hover\:bg-linear-to-b:hover {
    --tw-gradient-position: to bottom;
  }

  @supports (background-image: linear-gradient(in lab, red, red)) {
    .scalar-app .hover\:bg-linear-to-b:hover {
      --tw-gradient-position: to bottom in oklab;
    }
  }

  .scalar-app .hover\:bg-linear-to-b:hover {
    background-image: linear-gradient(var(--tw-gradient-stops));
  }

  .scalar-app .hover\:bg-linear-to-t:hover {
    --tw-gradient-position: to top;
  }

  @supports (background-image: linear-gradient(in lab, red, red)) {
    .scalar-app .hover\:bg-linear-to-t:hover {
      --tw-gradient-position: to top in oklab;
    }
  }

  .scalar-app .hover\:bg-linear-to-t:hover {
    background-image: linear-gradient(var(--tw-gradient-stops));
  }

  .scalar-app .hover\:text-c-1:hover {
    color: var(--scalar-color-1);
  }

  .scalar-app .hover\:text-c-2:hover {
    color: var(--scalar-color-2);
  }

  .scalar-app .hover\:text-c-header-1:hover {
    color: var(--scalar-header-color-1, var(--scalar-color-1));
  }

  .scalar-app .hover\:text-sidebar-c-1:hover {
    color: var(--scalar-sidebar-color-1, var(--scalar-color-1));
  }

  .scalar-app .hover\:text-sidebar-c-hover:hover {
    color: var(--scalar-sidebar-item-hover-color, var(--scalar-sidebar-color-2));
  }

  .scalar-app .hover\:underline:hover {
    text-decoration-line: underline;
  }

  .scalar-app .hover\:opacity-100:hover {
    opacity: 1;
  }

  .scalar-app .hover\:brightness-75:hover {
    --tw-brightness: brightness(75%);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .scalar-app .hover\:brightness-90:hover {
    --tw-brightness: brightness(90%);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }
}
.scalar-app .focus\:border-b-1:focus {
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: 1px;
  border-color: var(--scalar-background-1);
}
.scalar-app .focus\:text-c-1:focus {
  color: var(--scalar-color-1);
}
.scalar-app .focus\:outline-none:focus {
  --tw-outline-style: none;
  outline-style: none;
}
.scalar-app .focus-visible\:border-c-btn:focus-visible {
  border-color: var(--scalar-button-1-color);
}
.scalar-app .focus-visible\:opacity-100:focus-visible {
  opacity: 1;
}
.scalar-app .focus-visible\:outline:focus-visible {
  outline-style: var(--tw-outline-style);
  outline-width: 1px;
}
.scalar-app .focus-visible\:outline-offset-2:focus-visible {
  outline-offset: 2px;
}
.scalar-app .active\:bg-b-btn:active {
  background-color: var(--scalar-button-1);
}
.scalar-app .active\:text-c-1:active {
  color: var(--scalar-color-1);
}
.scalar-app .active\:brightness-90:active {
  --tw-brightness: brightness(90%);
  filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
}
.scalar-app .disabled\:pointer-events-none:disabled {
  pointer-events: none;
}
.scalar-app .disabled\:cursor-default:disabled {
  cursor: default;
}
.scalar-app .disabled\:text-c-2:disabled {
  color: var(--scalar-color-2);
}
.scalar-app .disabled\:opacity-30:disabled {
  opacity: .3;
}
.scalar-app .has-focus-visible\:outline:has(:focus-visible) {
  outline-style: var(--tw-outline-style);
  outline-width: 1px;
}
.scalar-app .has-\[\:focus-visible\]\:absolute:has(:focus-visible) {
  position: absolute;
}
.scalar-app .has-\[\:focus-visible\]\:z-1:has(:focus-visible) {
  z-index: 1;
}
.scalar-app .has-\[\:focus-visible\]\:rounded-\[4px\]:has(:focus-visible) {
  border-radius: 4px;
}
.scalar-app .has-\[\:focus-visible\]\:bg-b-1:has(:focus-visible) {
  background-color: var(--scalar-background-1);
}
.scalar-app .has-\[\:focus-visible\]\:bg-sidebar-b-1:has(:focus-visible) {
  background-color: var(--scalar-sidebar-background-1, var(--scalar-background-1));
}
.scalar-app .has-\[\:focus-visible\]\:opacity-100:has(:focus-visible) {
  opacity: 1;
}
.scalar-app .has-\[\:focus-visible\]\:outline:has(:focus-visible), .scalar-app .has-\[input\:focus-visible\]\:outline:has(:is(input:focus-visible)) {
  outline-style: var(--tw-outline-style);
  outline-width: 1px;
}
.scalar-app .has-\[\&\[aria-expanded\=true\]\]\:opacity-100:has([aria-expanded="true"]) {
  opacity: 1;
}
@media not all and (min-width: 800px) {
  .scalar-app .max-md\:absolute\! {
    position: absolute !important;
  }

  .scalar-app .max-md\:top-4 {
    top: 16px;
  }

  .scalar-app .max-md\:z-5 {
    z-index: 5;
  }

  .scalar-app .max-md\:w-full\! {
    width: 100% !important;
  }

  .scalar-app .max-md\:pt-2 {
    padding-top: 8px;
  }

  .scalar-app .max-md\:pt-12 {
    padding-top: 48px;
  }

  .scalar-app .max-md\:pl-4\! {
    padding-left: 16px !important;
  }

  .scalar-app .max-md\:pl-10 {
    padding-left: 40px;
  }

  .scalar-app .max-md\:pl-14 {
    padding-left: 56px;
  }
}
@media (min-width: 800px) {
  .scalar-app .md\:pointer-events-none {
    pointer-events: none;
  }

  .scalar-app .md\:absolute {
    position: absolute;
  }

  .scalar-app .md\:inset-x-1 {
    inset-inline: 4px;
  }

  .scalar-app .md\:top-1\/2 {
    top: 50%;
  }

  .scalar-app .md\:mt-0 {
    margin-top: 0;
  }

  .scalar-app .md\:-ml-1\.25 {
    margin-left: -5px;
  }

  .scalar-app .md\:w-\[calc\(100vw-16px\)\] {
    width: calc(100vw - 16px);
  }

  .scalar-app .md\:-translate-y-1\/2 {
    --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .scalar-app .md\:flex-row {
    flex-direction: row;
  }

  .scalar-app .md\:px-1\.5 {
    padding-inline: 6px;
  }

  .scalar-app .md\:opacity-0 {
    opacity: 0;
  }

  :is(.scalar-app .md\:\*\:border-t-0 > *) {
    border-top-style: var(--tw-border-style);
    border-top-width: 0;
  }

  @media (hover: hover) {
    .scalar-app .md\:group-hover\/upload\:pointer-events-auto:is(:where(.group\/upload):hover *) {
      pointer-events: auto;
    }

    .scalar-app .md\:group-hover\/upload\:opacity-100:is(:where(.group\/upload):hover *) {
      opacity: 1;
    }
  }
}
@media (min-width: 1000px) {
  .scalar-app .lg\:-mr-1 {
    margin-right: -4px;
  }

  .scalar-app .lg\:flex {
    display: flex;
  }

  .scalar-app .lg\:hidden {
    display: none;
  }

  .scalar-app .lg\:min-h-header {
    min-height: 48px;
  }

  .scalar-app .lg\:w-\[calc\(100vw-32px\)\] {
    width: calc(100vw - 32px);
  }

  .scalar-app .lg\:w-full {
    width: 100%;
  }

  .scalar-app .lg\:p-0 {
    padding: 0;
  }

  .scalar-app .lg\:pr-24 {
    padding-right: 96px;
  }
}
@media (min-width: 1200px) {
  .scalar-app .xl\:mb-1\.5 {
    margin-bottom: 6px;
  }

  .scalar-app .xl\:flex {
    display: flex;
  }

  .scalar-app .xl\:h-full {
    height: 100%;
  }

  .scalar-app .xl\:min-w-0 {
    min-width: 0;
  }

  .scalar-app .xl\:flex-row {
    flex-direction: row;
  }

  .scalar-app .xl\:gap-12 {
    gap: 48px;
  }

  .scalar-app .xl\:overflow-hidden {
    overflow: hidden;
  }

  .scalar-app .xl\:rounded-none {
    border-radius: 0;
  }

  .scalar-app .xl\:border-r {
    border-right-style: var(--tw-border-style);
    border-right-width: var(--scalar-border-width);
  }

  .scalar-app .xl\:border-none {
    --tw-border-style: none;
    border-style: none;
  }

  .scalar-app .xl\:pr-0\.5 {
    padding-right: 2px;
  }

  .scalar-app .xl\:pl-2 {
    padding-left: 8px;
  }

  :is(.scalar-app .\*\:xl\:border-t-0 > *) {
    border-top-style: var(--tw-border-style);
    border-top-width: 0;
  }

  :is(.scalar-app .\*\:xl\:border-l > *) {
    border-left-style: var(--tw-border-style);
    border-left-width: var(--scalar-border-width);
  }

  .scalar-app .xl\:first\:ml-auto:first-child {
    margin-left: auto;
  }

  :is(.scalar-app .\*\:first\:xl\:border-l-0 > *):first-child {
    border-left-style: var(--tw-border-style);
    border-left-width: 0;
  }
}
@container (min-width: 768px) {
  .scalar-app .\@3xl\:order-0 {
    order: 0;
  }

  .scalar-app .\@3xl\:mb-0 {
    margin-bottom: 0;
  }

  .scalar-app .\@3xl\:ml-0\.75 {
    margin-left: 3px;
  }

  .scalar-app .\@3xl\:flex {
    display: flex;
  }

  .scalar-app .\@3xl\:hidden {
    display: none;
  }

  .scalar-app .\@3xl\:flex-nowrap {
    flex-wrap: nowrap;
  }
}
.scalar-app .dark\:bg-\(--bg-dark\):where(.dark-mode, .dark-mode *) {
  background-color: var(--bg-dark);
}
.scalar-app .dark\:bg-b-3:where(.dark-mode, .dark-mode *) {
  background-color: var(--scalar-background-3);
}
.scalar-app .dark\:bg-backdrop-dark:where(.dark-mode, .dark-mode *) {
  background-color: #00000073;
}
.scalar-app .dark\:bg-linear-to-t:where(.dark-mode, .dark-mode *) {
  --tw-gradient-position: to top;
}
@supports (background-image: linear-gradient(in lab, red, red)) {
  .scalar-app .dark\:bg-linear-to-t:where(.dark-mode, .dark-mode *) {
    --tw-gradient-position: to top in oklab;
  }
}
.scalar-app .dark\:bg-linear-to-t:where(.dark-mode, .dark-mode *) {
  background-image: linear-gradient(var(--tw-gradient-stops));
}
@media (hover: hover) {
  .scalar-app .dark\:hover\:bg-b-3:where(.dark-mode, .dark-mode *):hover {
    background-color: var(--scalar-background-3);
  }

  .scalar-app .dark\:hover\:bg-linear-to-b:where(.dark-mode, .dark-mode *):hover {
    --tw-gradient-position: to bottom;
  }

  @supports (background-image: linear-gradient(in lab, red, red)) {
    .scalar-app .dark\:hover\:bg-linear-to-b:where(.dark-mode, .dark-mode *):hover {
      --tw-gradient-position: to bottom in oklab;
    }
  }

  .scalar-app .dark\:hover\:bg-linear-to-b:where(.dark-mode, .dark-mode *):hover {
    background-image: linear-gradient(var(--tw-gradient-stops));
  }

  .scalar-app .dark\:hover\:bg-linear-to-t:where(.dark-mode, .dark-mode *):hover {
    --tw-gradient-position: to top;
  }

  @supports (background-image: linear-gradient(in lab, red, red)) {
    .scalar-app .dark\:hover\:bg-linear-to-t:where(.dark-mode, .dark-mode *):hover {
      --tw-gradient-position: to top in oklab;
    }
  }

  .scalar-app .dark\:hover\:bg-linear-to-t:where(.dark-mode, .dark-mode *):hover {
    background-image: linear-gradient(var(--tw-gradient-stops));
  }
}
.scalar-app .ui-open\:rotate-90[data-headlessui-state~="open"], :where([data-headlessui-state~="open"]) :is(.scalar-app .ui-open\:rotate-90) {
  rotate: 90deg;
}
.scalar-app .ui-open\:rotate-180[data-headlessui-state~="open"], :where([data-headlessui-state~="open"]) :is(.scalar-app .ui-open\:rotate-180) {
  rotate: 180deg;
}
.scalar-app .last\:ui-open\:border-b-0:last-child[data-headlessui-state~="open"], :where([data-headlessui-state~="open"]) .scalar-app .last\:ui-open\:border-b-0:last-child {
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: 0;
}
.scalar-app .ui-not-open\:hidden[data-headlessui-state]:not([data-headlessui-state~="open"]), :where([data-headlessui-state]:not([data-headlessui-state~="open"])) :is(.scalar-app .ui-not-open\:hidden):not([data-headlessui-state]) {
  display: none;
}
.scalar-app .ui-not-open\:rotate-0[data-headlessui-state]:not([data-headlessui-state~="open"]), :where([data-headlessui-state]:not([data-headlessui-state~="open"])) :is(.scalar-app .ui-not-open\:rotate-0):not([data-headlessui-state]) {
  rotate: 0deg;
}
:is(.scalar-app .ui-active\:\*\:bg-b-2[data-headlessui-state~="active"] > *), :is(:where([data-headlessui-state~="active"]) :is(.scalar-app .ui-active\:\*\:bg-b-2) > *) {
  background-color: var(--scalar-background-2);
}
@media (max-width: 720px) and (max-height: 480px) {
  .scalar-app .zoomed\:static {
    position: static;
  }

  .scalar-app .zoomed\:p-1 {
    padding: 4px;
  }

  .scalar-app .zoomed\:whitespace-normal\! {
    white-space: normal !important;
  }
}
.scalar-app .highlighted\:bg-b-2[data-highlighted] {
  background-color: var(--scalar-background-2);
}
.app-platform-mac :is(.scalar-app .mac\:h-12) {
  height: 48px;
}
.app-platform-mac :is(.scalar-app .mac\:app-drag-region) {
  -webkit-app-region: drag;
  -webkit-app-region: drag;
}
.scalar-app .\[\&_a\]\:underline a {
  text-decoration-line: underline;
}
.scalar-app .\[\&_a\:hover\]\:text-c-1 a:hover {
  color: var(--scalar-color-1);
}
.scalar-app .\[\&_code\]\:font-code code {
  font-family: var(--scalar-font-code);
}
.scalar-app .\[\&_em\]\:text-c-1 em {
  color: var(--scalar-color-1);
}
.scalar-app .\[\&_em\]\:not-italic em {
  font-style: normal;
}
@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-scale-x {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-scale-y {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-scale-z {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false
}
@property --tw-space-x-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-divide-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-gradient-position {
  syntax: "*";
  inherits: false
}
@property --tw-gradient-from {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}
@property --tw-gradient-via {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}
@property --tw-gradient-to {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}
@property --tw-gradient-stops {
  syntax: "*";
  inherits: false
}
@property --tw-gradient-via-stops {
  syntax: "*";
  inherits: false
}
@property --tw-gradient-from-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0%;
}
@property --tw-gradient-via-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 50%;
}
@property --tw-gradient-to-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-mask-linear {
  syntax: "*";
  inherits: false;
  initial-value: linear-gradient(#fff, #fff);
}
@property --tw-mask-radial {
  syntax: "*";
  inherits: false;
  initial-value: linear-gradient(#fff, #fff);
}
@property --tw-mask-conic {
  syntax: "*";
  inherits: false;
  initial-value: linear-gradient(#fff, #fff);
}
@property --tw-mask-left {
  syntax: "*";
  inherits: false;
  initial-value: linear-gradient(#fff, #fff);
}
@property --tw-mask-right {
  syntax: "*";
  inherits: false;
  initial-value: linear-gradient(#fff, #fff);
}
@property --tw-mask-bottom {
  syntax: "*";
  inherits: false;
  initial-value: linear-gradient(#fff, #fff);
}
@property --tw-mask-top {
  syntax: "*";
  inherits: false;
  initial-value: linear-gradient(#fff, #fff);
}
@property --tw-mask-top-from-position {
  syntax: "*";
  inherits: false;
  initial-value: 0%;
}
@property --tw-mask-top-to-position {
  syntax: "*";
  inherits: false;
  initial-value: 100%;
}
@property --tw-mask-top-from-color {
  syntax: "*";
  inherits: false;
  initial-value: black;
}
@property --tw-mask-top-to-color {
  syntax: "*";
  inherits: false;
  initial-value: transparent;
}
@property --tw-mask-bottom-from-position {
  syntax: "*";
  inherits: false;
  initial-value: 0%;
}
@property --tw-mask-bottom-to-position {
  syntax: "*";
  inherits: false;
  initial-value: 100%;
}
@property --tw-mask-bottom-from-color {
  syntax: "*";
  inherits: false;
  initial-value: black;
}
@property --tw-mask-bottom-to-color {
  syntax: "*";
  inherits: false;
  initial-value: transparent;
}
@property --tw-leading {
  syntax: "*";
  inherits: false
}
@property --tw-ordinal {
  syntax: "*";
  inherits: false
}
@property --tw-slashed-zero {
  syntax: "*";
  inherits: false
}
@property --tw-numeric-figure {
  syntax: "*";
  inherits: false
}
@property --tw-numeric-spacing {
  syntax: "*";
  inherits: false
}
@property --tw-numeric-fraction {
  syntax: "*";
  inherits: false
}
@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-blur {
  syntax: "*";
  inherits: false
}
@property --tw-brightness {
  syntax: "*";
  inherits: false
}
@property --tw-contrast {
  syntax: "*";
  inherits: false
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false
}
@property --tw-invert {
  syntax: "*";
  inherits: false
}
@property --tw-opacity {
  syntax: "*";
  inherits: false
}
@property --tw-saturate {
  syntax: "*";
  inherits: false
}
@property --tw-sepia {
  syntax: "*";
  inherits: false
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false
}
@property --tw-duration {
  syntax: "*";
  inherits: false
}
@property --tw-ease {
  syntax: "*";
  inherits: false
}
@property --tw-content {
  syntax: "*";
  inherits: false;
  initial-value: "";
}
@keyframes pulse {
  50% {
    opacity: .5;
  }
}
.client-libraries-content[data-v-c2617b43] {
  container: client-libraries-content / inline-size;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0 12px;
  background-color: var(--scalar-background-1);
  border-left: var(--scalar-border-width) solid var(--scalar-border-color);
  border-right: var(--scalar-border-width) solid var(--scalar-border-color);
}
.client-libraries[data-v-c2617b43] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  padding: 8px 2px;
  gap: 6px;
  color: var(--scalar-color-3);
  border-bottom: 1px solid transparent;
  -webkit-user-select: none;
          user-select: none;
}
.client-libraries[data-v-c2617b43]:not(.client-libraries__active):hover:before {
  content: '';
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: var(--scalar-background-2);
  left: 2px;
  top: 2px;
  z-index: 0;
  border-radius: var(--scalar-radius);
}
.client-libraries[data-v-c2617b43]:active {
  color: var(--scalar-color-1);
}
.client-libraries[data-v-c2617b43]:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px var(--scalar-color-accent);
}
/* remove php and c on mobile */
@media screen and (max-width: 450px) {
.client-libraries[data-v-c2617b43]:nth-of-type(4),
  .client-libraries[data-v-c2617b43]:nth-of-type(5) {
    display: none;
}
}
.client-libraries-icon[data-v-c2617b43] {
  max-width: 14px;
  max-height: 14px;
  min-width: 14px;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  color: currentColor;
}
.client-libraries-icon__more svg[data-v-c2617b43] {
  height: initial;
}
@container client-libraries-content (width < 400px) {
.client-libraries__select[data-v-c2617b43] {
    width: fit-content;
    }
.client-libraries__select .client-libraries-icon__more + span[data-v-c2617b43] {
      display: none;
}
}
@container client-libraries-content (width < 380px) {
.client-libraries[data-v-c2617b43] {
    width: 100%;
}
.client-libraries span[data-v-c2617b43] {
    display: none;
}
}
.client-libraries__active[data-v-c2617b43] {
  color: var(--scalar-color-1);
  border-bottom: 1px solid var(--scalar-color-1);
}
@keyframes codeloader-c2617b43 {
0% {
    transform: rotate(0deg);
}
to {
    transform: rotate(1turn);
}
}
.client-libraries .client-libraries-text[data-v-c2617b43] {
  font-size: var(--scalar-small);
  position: relative;
  display: flex;
  align-items: center;
}
.client-libraries__active .client-libraries-text[data-v-c2617b43] {
  color: var(--scalar-color-1);
  font-weight: var(--scalar-semibold);
}
@media screen and (max-width: 600px) {
.references-classic .client-libraries[data-v-c2617b43] {
    flex-direction: column;
}
}
.selected-client[data-v-0769d07b] {
  color: var(--scalar-color-1);
  font-size: var(--scalar-small);
  font-family: var(--scalar-font-code);
  padding: 9px 12px;
  border-top: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--scalar-background-1);
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-bottom-left-radius: var(--scalar-radius-xl);
  border-bottom-right-radius: var(--scalar-radius-xl);
  min-height: fit-content;
}
.client-libraries-heading[data-v-0769d07b] {
  font-size: var(--scalar-small);
  font-weight: var(--scalar-font-medium);
  color: var(--scalar-color-1);
  padding: 9px 12px;
  background-color: var(--scalar-background-2);
  display: flex;
  align-items: center;
  max-height: 32px;
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-top-left-radius: var(--scalar-radius-xl);
  border-top-right-radius: var(--scalar-radius-xl);
}
:where(.badge[data-v-fb946bb8]) {
  color: var(--badge-text-color, var(--scalar-color-2));
  font-size: var(--scalar-mini);
  background: var(--badge-background-color, var(--scalar-background-2));
  border: var(--scalar-border-width) solid
    var(--badge-border-color, var(--scalar-border-color));
  padding: 2px 6px;
  border-radius: 12px;
  display: inline-block;
}
:where(.badge).text-orange[data-v-fb946bb8] {
  background: color-mix(in srgb, var(--scalar-color-orange), transparent 90%);
  border: transparent;
}
:where(.badge).text-yellow[data-v-fb946bb8] {
  background: color-mix(in srgb, var(--scalar-color-yellow), transparent 90%);
  border: transparent;
}
:where(.badge).text-red[data-v-fb946bb8] {
  background: color-mix(in srgb, var(--scalar-color-red), transparent 90%);
  border: transparent;
}
:where(.badge).text-purple[data-v-fb946bb8] {
  background: color-mix(in srgb, var(--scalar-color-purple), transparent 90%);
  border: transparent;
}
:where(.badge).text-green[data-v-fb946bb8] {
  background: color-mix(in srgb, var(--scalar-color-green), transparent 90%);
  border: transparent;
}
/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer properties {
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
[data-v-b258a15f],[data-v-b258a15f]:before,[data-v-b258a15f]:after,[data-v-b258a15f]::backdrop {
      --tw-outline-style: solid;
}
}
}
.download-container[data-v-b258a15f] {
  z-index: 1;
  flex-direction: column;
  gap: 16px;
  width: fit-content;
  margin: 0 .5px 8px;
  display: flex;
  position: relative;
}
.download-container[data-v-b258a15f]:has(:focus-visible):before, .download-container.download-both[data-v-b258a15f]:hover:before {
  content: "";
  border-radius: var(--scalar-radius-lg);
  width: calc(100% + 24px);
  height: 90px;
  box-shadow: var(--scalar-shadow-2);
  pointer-events: none;
  background: var(--scalar-background-1);
  position: absolute;
  top: -11px;
  left: -12px;
}
.download-button[data-v-b258a15f] {
  color: var(--scalar-link-color);
  cursor: pointer;
  outline: none;
  justify-content: center;
  align-items: center;
  gap: 4px;
  height: fit-content;
  padding: 0;
  display: flex;
  position: relative;
  white-space: nowrap !important;
}
.download-button[data-v-b258a15f]:before {
  border-radius: var(--scalar-radius);
  content: "";
  width: calc(100% + 18px);
  height: calc(100% + 16px);
  position: absolute;
  top: -8px;
  left: -9px;
}
.download-button[data-v-b258a15f]:last-of-type:before {
  width: calc(100% + 15px);
}
.download-button[data-v-b258a15f]:hover:before {
  background: var(--scalar-background-2);
  border: var(--scalar-border-width) solid var(--scalar-border-color);
}
.download-button[data-v-b258a15f]:focus-visible:before {
  background: var(--scalar-background-2);
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  outline-style: var(--tw-outline-style);
  outline-width: 1px;
}
.download-button span[data-v-b258a15f] {
  --font-color: var(--scalar-link-color, var(--scalar-color-accent));
  --font-visited: var(--scalar-link-color-visited, var(--scalar-color-2));
  -webkit-text-decoration: var(--scalar-text-decoration);
  -webkit-text-decoration: var(--scalar-text-decoration);
  text-decoration: var(--scalar-text-decoration);
  color: var(--font-color);
  font-weight: var(--scalar-link-font-weight, var(--scalar-semibold));
  text-underline-offset: .25rem;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--font-color);
}
@supports (color: color-mix(in lab, red, red)) {
.download-button span[data-v-b258a15f] {
    text-decoration-color: color-mix(in srgb, var(--font-color) 30%, transparent);
}

@supports (color: color-mix(in lch, red, blue)){
.download-button span[data-v-b258a15f] {
    -webkit-text-decoration-color: color-mix(in srgb, var(--font-color) 30%, transparent);
}
}
}
.download-button span[data-v-b258a15f] {
  z-index: 1;
  align-items: center;
  gap: 6px;
  line-height: 1.625;
  display: flex;
}
.download-button:hover span[data-v-b258a15f] {
  text-decoration-color: var(--scalar-color-1, currentColor);
  color: var(--scalar-link-color-hover, var(--scalar-color-accent));
  -webkit-text-decoration: var(--scalar-text-decoration-hover);
  -webkit-text-decoration: var(--scalar-text-decoration-hover);
  -webkit-text-decoration: var(--scalar-text-decoration-hover);
  text-decoration: var(--scalar-text-decoration-hover);
}
.download-button[data-v-b258a15f]:nth-of-type(2) {
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
.download-container:has(:focus-visible) .download-button[data-v-b258a15f]:nth-of-type(2), .download-container:hover .download-button[data-v-b258a15f]:nth-of-type(2) {
  clip-path: none;
  white-space: normal;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 42px;
  overflow: visible;
}
.extension[data-v-b258a15f] {
  z-index: 1;
  background: var(--scalar-link-color, var(--scalar-color-accent));
  color: var(--scalar-background-1);
}
.download-container:has(:focus-visible) .extension[data-v-b258a15f], .download-container:hover .extension[data-v-b258a15f] {
  opacity: 1;
}
.download-link[data-v-b258a15f] {
  --font-color: var(--scalar-link-color, var(--scalar-color-accent));
  --font-visited: var(--scalar-link-color-visited, var(--scalar-color-2));
  -webkit-text-decoration: var(--scalar-text-decoration);
  -webkit-text-decoration: var(--scalar-text-decoration);
  text-decoration: var(--scalar-text-decoration);
  color: var(--font-color);
  font-weight: var(--scalar-link-font-weight, var(--scalar-semibold));
  text-underline-offset: .25rem;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--font-color);
}
@supports (color: color-mix(in lab, red, red)) {
.download-link[data-v-b258a15f] {
    text-decoration-color: color-mix(in srgb, var(--font-color) 30%, transparent);
}

@supports (color: color-mix(in lch, red, blue)){
.download-link[data-v-b258a15f] {
    -webkit-text-decoration-color: color-mix(in srgb, var(--font-color) 30%, transparent);
}
}
}
.download-link[data-v-b258a15f]:hover {
  --font-color: var(--scalar-link-color, var(--scalar-color-accent));
  text-decoration-color: var(--font-color);
}
@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
/* Modern layout */
.introduction-card[data-v-5764c94a] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.introduction-card-row[data-v-5764c94a] {
  gap: 24px;
}
/* Classic layout */
@media (min-width: 600px) {
.introduction-card-row[data-v-5764c94a] {
    flex-flow: row wrap;
}
}
.introduction-card-row[data-v-5764c94a] > * {
  flex: 1;
}
@media (min-width: 600px) {
.introduction-card-row[data-v-5764c94a] > * {
    min-width: min-content;
}
}
@media (max-width: 600px) {
.introduction-card-row[data-v-5764c94a] > * {
    max-width: 100%;
}
}
@container (max-width: 900px) {
.introduction-card-row[data-v-5764c94a] {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
}
}
.introduction-card[data-v-5764c94a] .security-scheme-label {
  text-transform: uppercase;
  font-weight: var(--scalar-semibold);
}
.introduction-card-row[data-v-5764c94a] .scalar-card:nth-of-type(2) .scalar-card-header {
  display: none;
}
.introduction-card-row[data-v-5764c94a] .scalar-card:nth-of-type(2) .scalar-card-header {
  display: none;
}
.introduction-card-row[data-v-5764c94a]
  
    .scalar-card:nth-of-type(2)
      .scalar-card-header.scalar-card--borderless
      + .scalar-card-content
   {
  margin-top: 0;
}
.references-classic .introduction-description[data-v-0370764f] img {
  max-width: 720px;
}
.icons-only[data-v-b59b0acf] span {
  display: none;
}
.section[data-v-be4443e9] {
  position: relative;
  display: flex;
  flex-direction: column;

  max-width: var(--refs-content-max-width);
  margin: auto;

  padding: 90px 0;

  /* Offset by header height to line up scroll position */
  scroll-margin-top: var(--refs-viewport-offset);
}
.section[data-v-be4443e9]:has(~ div.contents) {
  border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
}
.references-classic .section[data-v-be4443e9] {
  padding: 48px 0;
  gap: 24px;
}
@container narrow-references-container (max-width: 900px) {
.references-classic .section[data-v-be4443e9],
  .section[data-v-be4443e9] {
    padding: 48px 24px;
}
}
.section[data-v-be4443e9]:not(:last-of-type) {
  border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
}
.section-column[data-v-699c28e3] {
  flex: 1;
  min-width: 0;
}
@container narrow-references-container (max-width: 900px) {
.section-column[data-v-699c28e3]:nth-of-type(2) {
    padding-top: 0;
}
}
.section-columns[data-v-8b9602bf] {
  display: flex;
  gap: 48px;
}
@container narrow-references-container (max-width: 900px) {
.section-columns[data-v-8b9602bf] {
    flex-direction: column;
    gap: 24px;
}
}
.section-container[data-v-20a1472a] {
  position: relative;
  padding: 0 60px;
  width: 100%;
  border-top: var(--scalar-border-width) solid var(--scalar-border-color);
}
.section-container[data-v-20a1472a]:has(.introduction-section) {
  border-top: none;
}
@container narrow-references-container (max-width: 900px) {
.section-container[data-v-20a1472a] {
    padding: 0;
}
}
.loading[data-v-8e0226d7] {
  background: var(--scalar-background-3);
  animation: loading-skeleton-8e0226d7 1.5s infinite alternate;
  border-radius: var(--scalar-radius-lg);
  min-height: 1.6em;
  margin: 0.6em 0;
  max-width: 100%;
}
.loading[data-v-8e0226d7]:first-of-type {
  min-height: 3em;
  margin-bottom: 24px;
  margin-top: 0;
}
.loading[data-v-8e0226d7]:last-of-type {
  width: 60%;
}
.loading.single-line[data-v-8e0226d7] {
  min-height: 3em;
  margin: 0.6em 0;
  max-width: 80%;
}
@keyframes loading-skeleton-8e0226d7 {
from {
    opacity: 1;
}
to {
    opacity: 0.33;
}
}
@container narrow-references-container (max-width: 900px) {
.section-content--with-columns[data-v-9735459e] {
    flex-direction: column;
    gap: 24px;
}
}
/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
.section-header-wrapper[data-v-8a5913a9] {
  grid-template-columns: 1fr;
  display: grid;
}
@media (min-width: 1200px) {
.section-header-wrapper[data-v-8a5913a9] {
    grid-template-columns: repeat(2, 1fr);
}
}
.section-header[data-v-8a5913a9] {
  font-size: var(--font-size, var(--scalar-heading-1));
  font-weight: var(--font-weight, var(--scalar-bold));
  color: var(--scalar-color-1);
  word-wrap: break-word;
  margin-top: 0;
  line-height: 1.45;
}
.section-header.tight[data-v-8a5913a9] {
  margin-bottom: 6px;
}
.section-header.loading[data-v-8a5913a9] {
  width: 80%;
}
.section-header-label[data-v-f1ac6c38] {
  display: inline;
}
.sticky-cards[data-v-bd137508] {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: calc(var(--refs-viewport-offset) + 24px);
}
.introduction-card-item[data-v-dfab866f] {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.introduction-card-item[data-v-dfab866f]:empty {
  display: none;
}
.introduction-card-item[data-v-dfab866f]:has(.description) .server-form-container {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.introduction-card-item[data-v-dfab866f] .request-item {
  border-bottom: 0;
}
.references-classic-header[data-v-8a3822ca] {
  display: flex;
  align-items: center;
  gap: 12px;

  max-width: var(--refs-content-max-width);
  margin: auto;
  padding: 12px 0;
}
.references-classic-header-content[data-v-8a3822ca] {
  display: flex;
  gap: 12px;
  flex-grow: 1;
}
.references-classic-header-container[data-v-8a3822ca] {
  position: relative;
  padding: 0 60px;
}
@container narrow-references-container (max-width: 900px) {
.references-classic-header[data-v-8a3822ca] {
    padding: 12px 24px;
}
.references-classic-header-container[data-v-8a3822ca] {
    padding: 0;
}
}
.references-classic-header-icon[data-v-8a3822ca] {
  height: 24px;
  color: var(--scalar-color-1);
}
/* One panel holds the Markdown installation instructions */
.selected-client[data-v-4bb21500] {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--scalar-color-1);
  font-size: var(--scalar-small);
  padding: 9px 12px;
  background: var(--scalar-background-1);
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-top: none;
  border-bottom-left-radius: var(--scalar-radius-xl);
  border-bottom-right-radius: var(--scalar-radius-xl);
}
.client-libraries-heading[data-v-4bb21500] {
  font-size: var(--scalar-small);
  font-weight: var(--scalar-font-medium);
  color: var(--scalar-color-1);
  padding: 9px 12px;
  background-color: var(--scalar-background-2);
  display: flex;
  align-items: center;
  max-height: 32px;
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-top-left-radius: var(--scalar-radius-xl);
  border-top-right-radius: var(--scalar-radius-xl);
}
.client-libraries-content[data-v-4bb21500] {
  position: relative;
  /*
   * Scroll horizontally rather than clip: before JS measures the tab widths
   * (and without JS at all) every tab is rendered, so overflowing tabs must
   * stay reachable. Once measured, the "More" dropdown absorbs the overflow and
   * no scrollbar is shown. The bar itself is hidden — keyboard focus and touch
   * still scroll clipped tabs into view.
   */
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding: 0 12px;
  background-color: var(--scalar-background-1);
  border-left: var(--scalar-border-width) solid var(--scalar-border-color);
  border-right: var(--scalar-border-width) solid var(--scalar-border-color);
  border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
}
.client-libraries-content[data-v-4bb21500]::-webkit-scrollbar {
  display: none;
}
.client-libraries-row[data-v-4bb21500] {
  display: flex;
  justify-content: flex-start;
}
/* Zero-size clip so the measure row never adds to the scrollable width */
.client-libraries-measure-clip[data-v-4bb21500] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}
/* Off-screen row used only to measure natural tab widths */
.client-libraries-row--measure[data-v-4bb21500] {
  width: max-content;
  visibility: hidden;
  pointer-events: none;
}
.client-libraries[data-v-4bb21500] {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  /* Keep tabs at their natural (measured) width so they scroll rather than squish */
  flex-shrink: 0;
  padding: 8px 12px;
  gap: 6px;
  color: var(--scalar-color-3);
  border-bottom: 1px solid transparent;
  background: transparent;
  -webkit-user-select: none;
          user-select: none;
}
.client-libraries[data-v-4bb21500]:not(.client-libraries__active):hover:before {
  content: '';
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: var(--scalar-background-2);
  left: 2px;
  top: 2px;
  z-index: 0;
  border-radius: var(--scalar-radius);
}
.client-libraries[data-v-4bb21500]:active {
  color: var(--scalar-color-1);
}
.client-libraries[data-v-4bb21500]:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px var(--scalar-color-accent);
}
.client-libraries__active[data-v-4bb21500] {
  color: var(--scalar-color-1);
  border-bottom: 1px solid var(--scalar-color-1);
}
/* Always pin the "More" dropdown to the right edge */
.client-libraries-more[data-v-4bb21500] {
  margin-left: auto;
}
.client-libraries-icon[data-v-4bb21500] {
  max-width: 14px;
  max-height: 14px;
  min-width: 14px;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  color: currentColor;
}
.client-libraries .client-libraries-text[data-v-4bb21500] {
  font-size: var(--scalar-small);
  position: relative;
  display: flex;
  align-items: center;
}
.client-libraries__active .client-libraries-text[data-v-4bb21500] {
  color: var(--scalar-color-1);
  font-weight: var(--scalar-semibold);
}
.screenreader-only[data-v-df2e1026] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.section-accordion-wrapper[data-v-9419dd23] {
  padding: 0 60px;
}
.section-accordion[data-v-9419dd23] {
  position: relative;
  width: 100%;
  max-width: var(--refs-content-max-width);
  margin: auto;
}
.section-accordion-content[data-v-9419dd23] {
  display: flex;
  flex-direction: column;
  gap: 12px;

  padding-top: 12px;
}
.section-accordion-button[data-v-9419dd23] {
  width: 100%;
  display: flex;

  cursor: pointer;

  padding: 6px 0 6px 0;
  margin: -6px 0 -6px 0;
  border-radius: var(--scalar-radius);
}
.section-accordion-chevron[data-v-9419dd23] {
  position: absolute;
  left: -22px;
  top: 12px;
  color: var(--scalar-color-3);
}
.section-accordion-button:hover .section-accordion-chevron[data-v-9419dd23] {
  color: var(--scalar-color-1);
}
.section-accordion-title[data-v-9419dd23] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 0 6px;
}
.section-accordion-title[data-v-9419dd23] .section-header-wrapper {
  grid-template-columns: 1fr;
}
.section-accordion-title[data-v-9419dd23] .section-header {
  margin-bottom: 0;
}
@container narrow-references-container (max-width: 900px) {
.section-accordion-chevron[data-v-9419dd23] {
    width: 16px;
    left: -16px;
    top: 14px;
}
.section-accordion-wrapper[data-v-9419dd23] {
    padding: calc(var(--refs-viewport-offset)) 24px 0 24px;
}
}
/* Style the "icon" */
.schema-type-icon[data-v-78e7c684] {
  color: var(--scalar-color-1);
  display: none;
}
.schema-type[data-v-78e7c684] {
  font-family: var(--scalar-font-code);
  color: var(--scalar-color-1);
}
.error[data-v-dc6746ff] {
  background-color: var(--scalar-color-red);
}
.schema-card[data-v-dc6746ff] {
  font-size: var(--scalar-font-size-4);
  color: var(--scalar-color-1);
}
.schema-card-title[data-v-dc6746ff] {
  height: var(--schema-title-height);

  padding: 6px 8px;

  display: flex;
  align-items: center;
  gap: 4px;

  color: var(--scalar-color-2);
  font-weight: var(--scalar-semibold);
  font-size: var(--scalar-mini);
  border-bottom: var(--scalar-border-width) solid transparent;
}
button.schema-card-title[data-v-dc6746ff] {
  cursor: pointer;
}
button.schema-card-title[data-v-dc6746ff]:hover {
  color: var(--scalar-color-1);
}
.schema-card-title-icon--open[data-v-dc6746ff] {
  transform: rotate(45deg);
}
.schema-properties-open > .schema-card-title[data-v-dc6746ff] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
}
.schema-properties-open > .schema-properties[data-v-dc6746ff] {
  width: fit-content;
}
.schema-card-description[data-v-dc6746ff] {
  color: var(--scalar-color-2);
}
.schema-card-description + .schema-properties[data-v-dc6746ff] {
  width: fit-content;
}
.schema-card-description + .schema-properties[data-v-dc6746ff] {
  margin-top: 8px;
}
.schema-card--level-0:nth-of-type(1)
  > .schema-card-description[data-v-dc6746ff]:has(+ .schema-properties) {
  margin-bottom: -8px;
  padding-bottom: 8px;
  border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
}
.schema-card--level-0
  ~ .schema-card--level-0
  > .schema-card-description[data-v-dc6746ff]:has(+ .schema-properties) {
  padding-top: 8px;
}
.schema-properties-open.schema-properties[data-v-dc6746ff],
.schema-properties-open > .schema-card--open[data-v-dc6746ff] {
  width: 100%;
}
.schema-properties[data-v-dc6746ff] {
  display: flex;
  flex-direction: column;

  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: var(--scalar-radius-lg);
  width: fit-content;
}
.schema-properties-name[data-v-dc6746ff] {
  width: 100%;
}
.schema-properties .schema-properties[data-v-dc6746ff] {
  border-radius: 13.5px;
}
.schema-properties .schema-properties.schema-properties-open[data-v-dc6746ff] {
  border-radius: var(--scalar-radius-lg);
}
.schema-properties-open[data-v-dc6746ff] {
  width: 100%;
}
.schema-card--compact[data-v-dc6746ff] {
  align-self: flex-start;
}
.schema-card--compact.schema-card--open[data-v-dc6746ff] {
  align-self: initial;
}
.schema-card-title--compact[data-v-dc6746ff] {
  color: var(--scalar-color-2);
  padding: 6px 10px 6px 8px;
  height: auto;
  border-bottom: none;
}
.schema-card-title--compact > .schema-card-title-icon[data-v-dc6746ff] {
  margin: 0;
}
.schema-card-title--compact > .schema-card-title-icon--open[data-v-dc6746ff] {
  transform: rotate(45deg);
}
.schema-properties-open > .schema-card-title--compact[data-v-dc6746ff] {
  position: static;
}
.property--level-0
  > .schema-properties
  > .schema-card--level-0
  > .schema-properties[data-v-dc6746ff] {
  border: none;
}
.property--level-0
  .schema-card--level-0:not(.schema-card--compact)
  .property--level-1[data-v-dc6746ff] {
  padding: 0 0 8px;
}
:not(.composition-panel)
  > .schema-card--compact.schema-card--level-0
  > .schema-properties[data-v-dc6746ff] {
  border: none;
}
[data-v-dc6746ff] .schema-card-description p {
  font-size: var(--scalar-small, var(--scalar-paragraph));
  color: var(--scalar-color-2);
  margin-bottom: 0;
  display: block;
  margin-bottom: 6px;
}
.children .schema-card-description[data-v-dc6746ff]:first-of-type {
  padding-top: 0;
}
.property-enum-value[data-v-4375ecfd] {
  color: var(--scalar-color-3);
  line-height: 1.5;
  overflow-wrap: break-word;
  display: flex;
  align-items: stretch;
  position: relative;

  --decorator-width: 1px;
  --decorator-color: color-mix(
    in srgb,
    var(--scalar-background-1),
    var(--scalar-color-1) 25%
  );
}
.property-enum-value-content[data-v-4375ecfd] {
  display: flex;
  flex-direction: column;
  padding: 3px 0;
}
.property-enum-value-label[data-v-4375ecfd] {
  font-family: var(--scalar-font-code);
  color: var(--scalar-color-1);
  font-size: var(--scalar-font-size-4);
  position: relative;
}
.property-enum-value:last-of-type .property-enum-value-label[data-v-4375ecfd] {
  padding-bottom: 0;
}
.property-enum-value[data-v-4375ecfd]::before {
  content: '';
  margin-right: 12px;
  width: var(--decorator-width);
  display: block;
  background-color: var(--decorator-color);
}
.property-enum-value[data-v-4375ecfd]:last-of-type::before,
.property-enum-values:has(.enum-toggle-button)
  .property-enum-value[data-v-4375ecfd]:nth-last-child(2)::before {
  height: calc(0.5lh + 4px);
}
.property-enum-value-label[data-v-4375ecfd]::after {
  content: '';
  position: absolute;
  top: calc(0.5lh);
  left: -12px;
  width: 8px;
  height: var(--decorator-width);
  background-color: var(--decorator-color);
}
.property-enum-value[data-v-4375ecfd]:last-of-type::after {
  bottom: 0;
  height: 50%;
  background: var(--scalar-background-1);
  border-top: var(--scalar-border-width) solid var(--decorator-color);
}
.property-enum-value-description[data-v-4375ecfd] {
  color: var(--scalar-color-3);
}
.property-heading:empty + .property-description[data-v-fa093e1b]:last-of-type,
.property-description[data-v-fa093e1b]:first-of-type:last-of-type {
  margin-top: 0;
}
.property-list[data-v-fa093e1b] {
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: var(--scalar-radius);
  margin-top: 10px;
}
.property-list .property[data-v-fa093e1b]:last-of-type {
  padding-bottom: 10px;
}
.property-enum-values[data-v-fa093e1b] {
  font-size: var(--scalar-font-size-3);
  list-style: none;
  margin-top: 8px;
  padding-left: 2px;
}
.enum-toggle-button[data-v-fa093e1b]:hover {
  color: var(--scalar-color-1);
}
.property-enum-property-names[data-v-fa093e1b] {
  font-size: var(--scalar-font-size-4);
  color: var(--scalar-color-2);
  display: inline-block;
  padding: 0 2px;
  margin-top: 8px;
}
.property-default[data-v-5f65dcf4] {
  display: flex;
  flex-direction: column;
  font-size: var(--scalar-mini);
  position: relative;
}
.property-default[data-v-5f65dcf4]:hover:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  border-radius: var(--scalar-radius);
}
.property-default:hover .property-default-label span[data-v-5f65dcf4] {
  color: var(--scalar-color-1);
}
.property-default-label span[data-v-5f65dcf4] {
  color: var(--scalar-color-3);
  position: relative;
  border-bottom: var(--scalar-border-width) dotted currentColor;
}
.property-default-value[data-v-5f65dcf4] {
  font-family: var(--scalar-font-code);
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 6px;
}
.property-default-value span[data-v-5f65dcf4] {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.property-default-value[data-v-5f65dcf4] svg {
  color: var(--scalar-color-3);
}
.property-default-value[data-v-5f65dcf4]:hover svg {
  color: var(--scalar-color-1);
}
.property-default-value[data-v-5f65dcf4] {
  background: var(--scalar-background-2);
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: var(--scalar-radius);
}
.property-default-value-list[data-v-5f65dcf4] {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  overflow: auto;
  background-color: var(--scalar-background-1);
  box-shadow: var(--scalar-shadow-1);
  border-radius: var(--scalar-radius-lg);
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  padding: 9px;
  min-width: 200px;
  max-width: 300px;
  flex-direction: column;
  gap: 3px;
  display: none;
  z-index: 2;
}
.property-default:hover .property-default-value-list[data-v-5f65dcf4],
.property-default:focus-within .property-default-value-list[data-v-5f65dcf4] {
  display: flex;
}
.property-detail[data-v-1295f965] {
  display: inline-flex;
}
.property-detail + .property-detail[data-v-1295f965]:before {
  display: block;
  content: '·';
  margin: 0 0.5ch;
}
.property-detail-truncate[data-v-1295f965] {
  overflow: hidden;
}
.property-detail-truncate > .property-detail-value[data-v-1295f965] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.property-detail-prefix[data-v-1295f965] {
  color: var(--scalar-color-2);
}
code.property-detail-value[data-v-1295f965] {
  font-family: var(--scalar-font-code);
  font-size: var(--scalar-font-size-3);
  color: var(--scalar-color-2);
  background: color-mix(
    in srgb,
    var(--scalar-background-2),
    var(--scalar-background-1)
  );
  padding: 0 4px;
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: var(--scalar-radius);
}
/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
.property-example[data-v-6952a15a] {
  font-size: var(--scalar-mini);
  flex-direction: column;
  display: flex;
  position: relative;
}
.property-example[data-v-6952a15a]:hover:before {
  content: "";
  border-radius: var(--scalar-radius);
  width: 100%;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.property-example-value[data-v-6952a15a] {
  font-family: var(--scalar-font-code);
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 6px;
  display: flex;
}
.property-example-value span[data-v-6952a15a] {
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
.property-example-value[data-v-6952a15a] svg {
  color: var(--scalar-color-3);
}
.property-example-value[data-v-6952a15a]:hover svg {
  color: var(--scalar-color-1);
}
.property-example-value[data-v-6952a15a] {
  background: var(--scalar-background-2);
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: var(--scalar-radius);
}
.property-example-value-list[data-v-6952a15a] {
  background-color: var(--scalar-background-1);
  box-shadow: var(--scalar-shadow-1);
  border-radius: var(--scalar-radius-lg);
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  z-index: 1000;
  flex-direction: column;
  gap: 3px;
  min-width: 200px;
  max-width: 300px;
  padding: 9px;
  display: none;
  position: absolute;
  top: 18px;
  left: 50%;
  overflow: auto;
  transform: translate3d(-50%, 0, 0);
}
.property-example:hover .property-example-value-list[data-v-6952a15a], .property-example:focus-within .property-example-value-list[data-v-6952a15a] {
  display: flex;
}
.property-heading[data-v-e4c4fffd] {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  row-gap: 9px;
  white-space: nowrap;
}
.property-heading[data-v-e4c4fffd]:has(+ .children),
.property-heading[data-v-e4c4fffd]:has(+ .property-rule) {
  margin-bottom: 9px;
}
.property-heading[data-v-e4c4fffd] > * {
  margin-right: 9px;
}
.property-heading[data-v-e4c4fffd]:last-child {
  margin-right: 0;
}
.property-heading > .property-detail[data-v-e4c4fffd]:not(:last-of-type) {
  margin-right: 0;
}
.property-name[data-v-e4c4fffd] {
  max-width: 100%;
  font-family: var(--scalar-font-code);
  font-weight: var(--scalar-bold);
  font-size: var(--scalar-font-size-4);
  white-space: normal;
  overflow-wrap: break-word;
}
.property-additional[data-v-e4c4fffd] {
  font-family: var(--scalar-font-code);
}
.property-required[data-v-e4c4fffd],
.property-optional[data-v-e4c4fffd] {
  color: var(--scalar-color-2);
}
.property-required[data-v-e4c4fffd] {
  font-size: var(--scalar-mini);
  color: var(--scalar-color-orange);
}
.property-read-only[data-v-e4c4fffd] {
  font-size: var(--scalar-mini);
  color: var(--scalar-color-blue);
}
.property-write-only[data-v-e4c4fffd] {
  font-size: var(--scalar-mini);
  color: var(--scalar-color-green);
}
.property-discriminator[data-v-e4c4fffd] {
  font-size: var(--scalar-mini);
  color: var(--scalar-color-purple);
}
.property-detail[data-v-e4c4fffd] {
  font-size: var(--scalar-mini);
  color: var(--scalar-color-2);
  display: flex;
  align-items: center;

  min-width: 0;
}
.property-const[data-v-e4c4fffd] {
  color: var(--scalar-color-1);
}
.deprecated[data-v-e4c4fffd] {
  -webkit-text-decoration: line-through;
  text-decoration: line-through;
}
.property[data-v-471bb5bb] {
  color: var(--scalar-color-1);
  display: flex;
  flex-direction: column;
  padding: 10px;
  font-size: var(--scalar-small);
  position: relative;
}
/** Remove top padding for top level schema card */
.property.property--level-0[data-v-471bb5bb]:has(
    > .property-rule
      > .schema-card
      > .schema-properties.schema-properties-open
      > ul
      > li.property
  ) {
  padding-top: 0;
}
.property--compact.property--level-0[data-v-471bb5bb],
.property--compact.property--level-1[data-v-471bb5bb] {
  padding: 10px 0;
}
.composition-panel .property.property.property.property--level-0[data-v-471bb5bb] {
  padding: 0px;
}
.property--compact.property--level-0
  .composition-panel
  .property--compact.property--level-1[data-v-471bb5bb] {
  padding: 8px;
}
/*  if a property doesn't have a heading, remove the top padding */
.property[data-v-471bb5bb]:has(> .property-rule:nth-of-type(1)):not(.property--compact) {
  padding-top: 8px;
  padding-bottom: 8px;
}
.property--deprecated[data-v-471bb5bb] {
  background: repeating-linear-gradient(
    -45deg,
    var(--scalar-background-2) 0,
    var(--scalar-background-2) 2px,
    transparent 2px,
    transparent 5px
  );
  background-size: 100%;
}
.property--deprecated[data-v-471bb5bb] > * {
  opacity: 0.75;
}
.property-description[data-v-471bb5bb] {
  margin-top: 6px;
  line-height: 1.4;
  font-size: var(--scalar-small);
}
.property-description[data-v-471bb5bb]:has(+ .property-rule) {
  margin-bottom: 9px;
}
[data-v-471bb5bb] .property-description * {
  color: var(--scalar-color-2) !important;
}
.property[data-v-471bb5bb]:not(:last-of-type) {
  border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
}
.property-description + .children[data-v-471bb5bb],
.children + .property-rule[data-v-471bb5bb] {
  margin-top: 9px;
}
.children[data-v-471bb5bb] {
  display: flex;
  flex-direction: column;
}
.children .property--compact.property--level-1[data-v-471bb5bb] {
  padding: 12px;
}
.property-example-value[data-v-471bb5bb] {
  all: unset;
  font-family: var(--scalar-font-code);
  padding: 6px;
  border-top: var(--scalar-border-width) solid var(--scalar-border-color);
}
.property-rule[data-v-471bb5bb] {
  border-radius: var(--scalar-radius-lg);
  display: flex;
  flex-direction: column;
}
.property--level-2[data-v-471bb5bb] .relative > button {
  left: -2rem;
}
.property-rule[data-v-471bb5bb]
  
    .composition-panel
      .schema-card--level-1
      > .schema-properties.schema-properties-open
   {
  border-radius: 0 0 var(--scalar-radius-lg) var(--scalar-radius-lg);
}
.property-rule[data-v-471bb5bb]
  .composition-panel > .schema-card > .schema-card-description {
  padding: 10px;
  border-left: var(--scalar-border-width) solid var(--scalar-border-color);
  border-right: var(--scalar-border-width) solid var(--scalar-border-color);
}
:is(.property-rule[data-v-471bb5bb] .composition-panel > .schema-card > .schema-card-description) + .schema-properties {
    margin-top: 0;
}
.property-example[data-v-471bb5bb] {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.property-example-label[data-v-471bb5bb],
.property-example-value[data-v-471bb5bb] {
  padding: 3px 0 0 0;
}
.property-example-value[data-v-471bb5bb] {
  background: var(--scalar-background-2);
  border-top: 0;
  border-radius: var(--scalar-radius);
  padding: 3px 4px;
}
.property-name[data-v-471bb5bb] {
  font-family: var(--scalar-font-code);
  font-weight: var(--scalar-semibold);
}
.property-name-additional-properties[data-v-471bb5bb]::before,
.property-name-pattern-properties[data-v-471bb5bb]::before {
  text-transform: uppercase;
  font-size: var(--scalar-micro);
  display: inline-block;
  padding: 2px 4px;
  border-radius: var(--scalar-radius);
  color: var(--scalar-color-1);
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  background-color: var(--scalar-background-2);
  margin-right: 4px;
}
.property-name-pattern-properties[data-v-471bb5bb]::before {
  content: 'regex';
}
.property-name-additional-properties[data-v-471bb5bb],
.property-name-pattern-properties[data-v-471bb5bb] {
  border: 1px dashed var(--scalar-border-color);
  color: var(--scalar-color-accent);
  display: inline-block;
  padding: 2px;
  border-radius: var(--scalar-radius);
}
.headers-card[data-v-4a9699e9] {
  z-index: 0;
  margin-top: 12px;
  margin-bottom: 6px;
  position: relative;
  font-size: var(--scalar-font-size-4);
  color: var(--scalar-color-1);

  align-self: flex-start;
}
.headers-card.headers-card--open[data-v-4a9699e9] {
  align-self: initial;
}
.headers-card-title[data-v-4a9699e9] {
  padding: 6px 10px;

  display: flex;
  align-items: center;
  gap: 4px;

  color: var(--scalar-color-3);
  font-weight: var(--scalar-semibold);
  font-size: var(--scalar-micro);

  border-radius: 13.5px;
}
button.headers-card-title[data-v-4a9699e9] {
  cursor: pointer;
}
button.headers-card-title[data-v-4a9699e9]:hover {
  color: var(--scalar-color-1);
}
.headers-card-title-icon--open[data-v-4a9699e9] {
  transform: rotate(45deg);
}
.headers-properties[data-v-4a9699e9] {
  display: flex;
  flex-direction: column;

  border: var(--scalar-border-width) solid var(--scalar-border-color);

  border-radius: 13.5px;
  width: fit-content;
}
.headers-properties-open > .headers-card-title[data-v-4a9699e9] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
}
.headers-properties-open[data-v-4a9699e9] {
  border-radius: var(--scalar-radius-lg);
  width: 100%;
}
.headers-card .property[data-v-4a9699e9]:last-of-type {
  padding-bottom: 10px;
}
.headers-card-title > .headers-card-title-icon[data-v-4a9699e9] {
  width: 14px;
  height: 14px;
  margin: 0;
}
.headers-card-title > .headers-card-title-icon--open[data-v-4a9699e9] {
  transform: rotate(45deg);
}
.parameter-item[data-v-94968dbd] {
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: var(--scalar-border-width) solid var(--scalar-border-color);
}
.parameter-item:last-of-type .parameter-schema[data-v-94968dbd] {
  padding-bottom: 0;
}
.parameter-item-container[data-v-94968dbd] {
  padding: 0;
}
.parameter-item-headers[data-v-94968dbd] {
  border: var(--scalar-border-width) solid var(--scalar-border-color);
}
.parameter-item-name[data-v-94968dbd] {
  position: relative;
  font-weight: var(--scalar-bold);
  font-size: var(--scalar-font-size-4);
  font-family: var(--scalar-font-code);
  color: var(--scalar-color-1);
  overflow-wrap: break-word;
}
.parameter-item-description[data-v-94968dbd],
.parameter-item-description-summary[data-v-94968dbd] {
  font-size: var(--scalar-mini);
  color: var(--scalar-color-2);
}
.parameter-item-description-summary.parameter-item-description-summary[data-v-94968dbd] > * {
  --markdown-line-height: var(--scalar-line-height-5);
}
/* Match font size of markdown for property-detail-value since first child within accordian is displayed as if it were in the markdown section */
.parameter-item-trigger
  ~ .parameter-item-container[data-v-94968dbd]
  .property--level-0 > .property-heading .property-detail-value {
  font-size: var(--scalar-micro);
}
.parameter-item-required-optional[data-v-94968dbd] {
  color: var(--scalar-color-2);
  font-weight: var(--scalar-semibold);
  margin-right: 6px;
  position: relative;
}
.parameter-item--required[data-v-94968dbd] {
  text-transform: uppercase;
  font-size: var(--scalar-micro);
  font-weight: var(--scalar-semibold);
  color: var(--scalar-color-orange);
}
.parameter-item-description[data-v-94968dbd] {
  margin-top: 6px;
  font-size: var(--scalar-small);
  color: var(--scalar-color-2);
  line-height: 1.4;
}
.parameter-item-description[data-v-94968dbd] p {
  margin-top: 4px;
  font-size: var(--scalar-small);
  color: var(--scalar-color-2);
}
.parameter-schema[data-v-94968dbd] {
  padding-bottom: 9px;
  margin-top: 3px;
}
.parameter-item-trigger[data-v-94968dbd] {
  display: flex;
  align-items: baseline;
  line-height: var(--scalar-line-height-5);
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px 0;
  outline: none;
}
.parameter-item-trigger-open[data-v-94968dbd] {
  padding-bottom: 0;
}
.parameter-item-icon[data-v-94968dbd] {
  color: var(--scalar-color-3);
  left: -19px;
  top: 0.5lh;
  translate: 0 -50%;
  position: absolute;
}
.parameter-item-trigger:hover .parameter-item-icon[data-v-94968dbd],
.parameter-item-trigger:focus-visible .parameter-item-icon[data-v-94968dbd] {
  color: var(--scalar-color-1);
}
.parameter-item-trigger:focus-visible .parameter-item-icon[data-v-94968dbd] {
  outline: 1px solid var(--scalar-color-accent);
  outline-offset: 2px;
  border-radius: var(--scalar-radius);
}
.channel-section[data-v-cb522e2e] {
  margin-bottom: 48px;
}
.channel-description[data-v-cb522e2e] {
  padding-bottom: 4px;
  text-align: left;
}
.section-wrapper[data-v-ff689b94] {
  color: var(--scalar-color-1);

  padding-top: 12px;
  margin-top: -12px;
}
.section-accordion[data-v-ff689b94] {
  display: flex;
  flex-direction: column;

  border-radius: var(--scalar-radius-lg);
  background: var(--scalar-background-2);

  /* Offset by header height to line up scroll position */
  scroll-margin-top: var(--refs-viewport-offset);
}
.section-accordion-transparent[data-v-ff689b94] {
  background: transparent;
  border: var(--scalar-border-width) solid var(--scalar-border-color);
}
.section-accordion-button[data-v-ff689b94] {
  padding: 6px;
}
.section-accordion-button[data-v-ff689b94] {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.section-accordion-button-content[data-v-ff689b94] {
  flex: 1;
  min-width: 0;
}
.section-accordion-button-actions[data-v-ff689b94] {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--scalar-color-3);
}
.section-accordion-chevron[data-v-ff689b94] {
  margin-right: 4px;
  cursor: pointer;
  opacity: 1;
  color: var(--scalar-color-3);
}
.section-accordion-button:hover .section-accordion-chevron[data-v-ff689b94] {
  color: var(--scalar-color-1);
}
.section-accordion-content[data-v-ff689b94] {
  border-top: var(--scalar-border-width) solid var(--scalar-border-color);
  display: flex;
  flex-direction: column;
}
.section-accordion-description[data-v-ff689b94] {
  font-weight: var(--scalar-semibold);
  font-size: var(--scalar-mini);
  color: var(--scalar-color--1);
  padding: 10px 12px 0px 12px;
}
.section-accordion-content-card[data-v-ff689b94] .property:last-of-type {
  padding-bottom: 9px;
}
.reference-models-anchor[data-v-f3ae088e] {
  display: flex;
  align-items: center;
  font-size: 20px;
  padding-left: 6px;
  color: var(--scalar-color-1);
}
.reference-models-label[data-v-f3ae088e] {
  display: block;
  font-size: var(--scalar-mini);
}
/* Style the "icon" */
.reference-models-label[data-v-f3ae088e] em {
  font-weight: var(--scalar-bold);
}
.collapsible-section[data-v-999a158a] {
  border-top: var(--scalar-border-width) solid var(--scalar-border-color);
  position: relative;
}
.collapsible-section-header[data-v-999a158a] {
  color: var(--scalar-color-1);
}
.collapsible-section .collapsible-section-trigger[data-v-999a158a] {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  font-size: var(--scalar-font-size-3);
  z-index: 1;
  position: relative;
}
.collapsible-section-trigger svg[data-v-999a158a] {
  color: var(--scalar-color-3);
  position: absolute;
  left: -19px;
}
.collapsible-section:hover .collapsible-section-trigger svg[data-v-999a158a] {
  color: var(--scalar-color-1);
}
.collapsible-section .collapsible-section-trigger[data-v-999a158a] .anchor-copy {
  line-height: 18.5px;
}
.collapsible-section-content[data-v-999a158a] {
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  scroll-margin-top: 140px;
}
.show-more[data-v-d1c2b649] {
  appearance: none;
  border: none;
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  margin: auto;
  padding: 8px 12px 8px 16px;
  border-radius: 30px;
  color: var(--scalar-color-1);
  font-weight: var(--scalar-semibold);
  font-size: var(--scalar-small);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 6px;
  top: -48px;
}
.show-more[data-v-d1c2b649]:hover {
  background: var(--scalar-background-2);
  cursor: pointer;
}
.show-more[data-v-d1c2b649]:active {
  box-shadow: 0 0 0 1px var(--scalar-border-color);
}
@container narrow-references-container (max-width: 900px) {
.show-more[data-v-d1c2b649] {
    top: -24px;
}
}
.tag-section[data-v-ee09ae3d] {
  margin-bottom: 48px;
}
.tag-name[data-v-ee09ae3d] {
  text-transform: capitalize;
}
.tag-description[data-v-ee09ae3d] {
  padding-bottom: 4px;
  text-align: left;
}
/* Tag Groups */
.tag-section-group .tag-group-name[data-v-ee09ae3d] {
  gap: 12px;
  align-self: stretch;
  grid-template-columns: auto 1fr;
}
.tag-group-name[data-v-ee09ae3d]:after {
  content: '';
  display: block;
  height: 1px;
  align-self: center;
  background: var(--scalar-border-color);
}
.tag-group-name[data-v-ee09ae3d]:has(* > *:hover),
.tag-group-name[data-v-ee09ae3d]:has(:focus-visible) {
  gap: 32px;
}
.tag-section-group .tag-section[data-v-ee09ae3d] {
  padding-inline: 0;
  margin-bottom: 24px;
}
.tag-section-group .tag-section[data-v-ee09ae3d]:last-of-type {
  margin-bottom: 0;
}
.endpoint[data-v-ad8530a6] {
  display: flex;
  white-space: nowrap;
  cursor: pointer;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.endpoint:hover .endpoint-path[data-v-ad8530a6],
.endpoint:focus-visible .endpoint-path[data-v-ad8530a6] {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.endpoint .post[data-v-ad8530a6],
.endpoint .get[data-v-ad8530a6],
.endpoint .delete[data-v-ad8530a6],
.endpoint .put[data-v-ad8530a6] {
  white-space: nowrap;
}
.endpoint-method[data-v-ad8530a6],
.endpoint-path[data-v-ad8530a6] {
  color: var(--scalar-color-1);
  min-width: 62px;
  display: inline-flex;
  line-height: 1.55;
  font-family: var(--scalar-font-code);
  font-size: var(--scalar-small);
  cursor: pointer;
}
.endpoint-method[data-v-ad8530a6] {
  text-align: right;
}
.endpoint-path[data-v-ad8530a6] {
  margin-left: 12px;
  text-transform: initial;
}
.deprecated[data-v-ad8530a6] {
  -webkit-text-decoration: line-through;
  text-decoration: line-through;
}
.endpoints-card[data-v-b8cb97c7] {
  position: sticky;
  top: calc(var(--refs-viewport-offset) + 24px);
  font-size: var(--scalar-font-size-3);
}
.endpoints[data-v-b8cb97c7] {
  overflow: auto;
  background: var(--scalar-background-2);
  padding: 10px 12px;
  width: 100%;
}
.section-container[data-v-8f1a275c] {
  border-top: var(--scalar-border-width) solid var(--scalar-border-color);
}
.section-container[data-v-8f1a275c]:has(.show-more) {
  background-color: color-mix(in srgb, var(--scalar-background-2), transparent);
}
.operation-path[data-v-ec6c8861] {
  overflow: hidden;
  word-wrap: break-word;
  font-weight: var(--scalar-semibold);
  line-break: anywhere;
}
.deprecated[data-v-ec6c8861] {
  -webkit-text-decoration: line-through;
  text-decoration: line-through;
}
.request-body[data-v-076f6de4] {
  margin-top: 24px;
}
.request-body-header[data-v-076f6de4] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
  flex-flow: wrap;
}
.request-body-title[data-v-076f6de4] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--scalar-font-size-2);
  font-weight: var(--scalar-semibold);
  color: var(--scalar-color-1);
}
.request-body-required[data-v-076f6de4] {
  font-size: var(--scalar-micro);
  color: var(--scalar-color-orange);
  font-weight: normal;
  border-radius: 16px;
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  padding: 2px 8px;
  height: 20px;
}
.request-body-description[data-v-076f6de4] {
  margin-top: 6px;
  font-size: var(--scalar-small);
  width: 100%;
}
.request-body-header
  + .request-body-schema[data-v-076f6de4]:has(> .schema-card > .schema-card-description),
.request-body-header
  + .request-body-schema[data-v-076f6de4]:has(
    > .schema-card > .schema-properties > * > .property--level-0
  ) {
  /** Add a bit of space between the heading border and the schema description or properties */
  padding-top: 8px;
}
.request-body-description[data-v-076f6de4] .markdown * {
  color: var(--scalar-color-2) !important;
}
.callback-sticky-offset[data-v-474e6fa6] {
  top: var(--refs-viewport-offset, 0px);
  z-index: 1;
}
.callback-operation-container[data-v-474e6fa6] .request-body,
.callback-operation-container[data-v-474e6fa6] .request-body-description,
.callback-operation-container[data-v-474e6fa6] .request-body-header {
  margin-top: 0;
}
.callback-operation-container[data-v-474e6fa6] .request-body-header {
  --scalar-font-size-2: var(--scalar-font-size-4);
  padding: 10px;
  border-bottom: none;
  border: 0.5px solid var(--scalar-border-color);
  border-radius: var(--scalar-radius-lg) var(--scalar-radius-lg) 0 0;
  background: color-mix(in srgb, var(--scalar-background-2) 50%, transparent);
}
.callback-operation-container[data-v-474e6fa6]
  .request-body-schema > .schema-card > .schema-card-description {
  padding-inline: 8px;
}
.callback-operation-container[data-v-474e6fa6] ul li.property.property--level-1 {
  padding: 10px;
}
.callback-operation-container[data-v-474e6fa6] .request-body-schema {
  background-color: var(--scalar-background-1);
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-top: none;
  overflow: hidden;
  border-radius: 0 0 var(--scalar-radius-lg) var(--scalar-radius-lg);
}
.callback-operation-container[data-v-474e6fa6] .parameter-list {
  margin-top: 0;
}
.callback-operation-container[data-v-474e6fa6] .parameter-list-title {
  background: color-mix(in srgb, var(--scalar-background-2) 50%, transparent);
  border-radius: var(--scalar-radius-lg) var(--scalar-radius-lg) 0 0;
  padding: 10px;
  margin-bottom: 0;
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-bottom: none;
  --scalar-font-size-2: var(--scalar-font-size-4);
}
.callback-operation-container[data-v-474e6fa6] .parameter-list-items {
  /* background: pink; */
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: 0 0 var(--scalar-radius-lg) var(--scalar-radius-lg);
}
.callback-operation-container[data-v-474e6fa6] .parameter-list-items > li:first-of-type {
  border-top: none;
}
.callback-operation-container[data-v-474e6fa6] .parameter-list-items > li {
  padding: 0 8px;
}
.empty-state[data-v-da52ac9d] {
  margin: 10px 0 10px 12px;
  text-align: center;
  font-size: var(--scalar-mini);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--scalar-radius-lg);
  color: var(--scalar-color-2);
}
.rule-title[data-v-da52ac9d] {
  font-family: var(--scalar-font-code);
  color: var(--scalar-color-1);
  display: inline-block;
  margin: 12px 0 6px;
  border-radius: var(--scalar-radius);
}
.rule[data-v-da52ac9d] {
  margin: 0 12px 0;
  border-radius: var(--scalar-radius-lg);
}
.rule-items[data-v-da52ac9d] {
  counter-reset: list-number;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid var(--scalar-border-color);
  padding: 12px 0 12px;
}
.rule-item[data-v-da52ac9d] {
  counter-increment: list-number;
  border: 1px solid var(--scalar-border-color);
  border-radius: var(--scalar-radius-lg);
  overflow: hidden;
  margin-left: 24px;
}
.rule-item[data-v-da52ac9d]:before {
  /* content: counter(list-number); */
  border: 1px solid var(--scalar-border-color);
  border-top: 0;
  border-right: 0;
  content: ' ';
  display: block;
  width: 24px;
  height: 6px;
  border-radius: 0 0 0 var(--scalar-radius-lg);
  margin-top: 6px;
  color: var(--scalar-color-2);
  transform: translateX(-25px);
  color: var(--scalar-color-1);
  position: absolute;
}
.tab[data-v-804dba49] {
  background: none;
  border: none;
  font-size: var(--scalar-small);
  font-family: var(--scalar-font);
  font-weight: var(--scalar-font-normal);
  color: var(--scalar-color-2);
  line-height: calc(var(--scalar-small) + 2px);
  white-space: nowrap;
  cursor: pointer;
  padding: 0;
  margin-right: 3px;
  text-transform: uppercase;
  position: relative;
  line-height: 22px;
}
.tab[data-v-804dba49]:before {
  content: '';
  position: absolute;
  z-index: 0;
  left: -6px;
  top: -2px;
  width: calc(100% + 12px);
  height: calc(100% + 4px);
  border-radius: var(--scalar-radius);
  background: var(--scalar-background-3);
  opacity: 0;
}
.tab[data-v-804dba49]:hover:before,
.tab[data-v-804dba49]:focus-visible:before {
  opacity: 1;
}
.tab[data-v-804dba49]:focus-visible:before {
  outline: 1px solid var(--scalar-color-accent);
}
.tab span[data-v-804dba49] {
  z-index: 1;
  position: relative;
}
.tab-selected[data-v-804dba49] {
  color: var(--scalar-color-1);
  font-weight: var(--scalar-semibold);
}
.tab-selected[data-v-804dba49]:after {
  content: '';
  position: absolute;
  background: currentColor;
  width: 100%;
  left: 0;
  height: 1px;
  bottom: calc(var(--tab-list-padding-y) * -1);
}
.tab-list[data-v-49a8c0af] {
  display: flex;
  gap: 6px;
  position: relative;
  flex: 1;
  --tab-list-padding-y: 7px;
  --tab-list-padding-x: 12px;
  padding: var(--tab-list-padding-y) var(--tab-list-padding-x);
  overflow: auto;
}
.scalar-card-header.scalar-card-header-tabs[data-v-49a8c0af] {
  padding: 0;
}
.response-card[data-v-b3a2a96e] {
  font-size: var(--scalar-font-size-3);
}
.code-copy[data-v-b3a2a96e] {
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  color: var(--scalar-color-3);
  border: none;
  padding: 0;
  margin-right: 12px;
}
.code-copy[data-v-b3a2a96e]:hover {
  color: var(--scalar-color-1);
}
.code-copy svg[data-v-b3a2a96e] {
  width: 13px;
  height: 13px;
}
.response-card-footer[data-v-b3a2a96e] {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: start;
  flex-shrink: 0;
  padding: 7px 12px;
  column-gap: 8px;
}
.response-example-selector[data-v-b3a2a96e] {
  flex-shrink: 0;
  margin: -4px;
}
.response-description[data-v-b3a2a96e] {
  font-weight: var(--scalar-semibold);
  font-size: var(--scalar-small);
  color: var(--scalar-color--1);

  box-sizing: border-box;

  flex-grow: 1;
}
.response-description-markdown[data-v-b3a2a96e] {
  max-height: 3lh;
}
.response-description-markdown[data-v-b3a2a96e] * {
  margin: 0;
}
.schema-type[data-v-b3a2a96e] {
  font-size: var(--scalar-micro);
  color: var(--scalar-color-2);
  font-weight: var(--scalar-semibold);
  background: var(--scalar-background-3);
  padding: 2px 4px;
  border-radius: 4px;
  margin-right: 4px;
}
.schema-example[data-v-b3a2a96e] {
  font-size: var(--scalar-micro);
  color: var(--scalar-color-2);
  font-weight: var(--scalar-semibold);
}
.example-response-tab[data-v-b3a2a96e] {
  display: block;
  margin: 6px;
}
.scalar-card-checkbox[data-v-b3a2a96e] {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 17px;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  font-size: var(--scalar-small);
  font-weight: var(--scalar-font-normal);
  color: var(--scalar-color-2);
  width: fit-content;
  white-space: nowrap;
  gap: 6px;
  padding: 7px 6px;
}
.scalar-card-checkbox:has(.scalar-card-checkbox-input:focus-visible)
  .scalar-card-checkbox-checkmark[data-v-b3a2a96e] {
  outline: 1px solid var(--scalar-color-accent);
}
.scalar-card-checkbox[data-v-b3a2a96e]:hover {
  color: var(--scalar-color--1);
}
.scalar-card-checkbox .scalar-card-checkbox-input[data-v-b3a2a96e] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.scalar-card-checkbox-checkmark[data-v-b3a2a96e] {
  height: 16px;
  width: 16px;
  border-radius: var(--scalar-radius);
  background-color: transparent;
  background-color: var(--scalar-background-3);
  box-shadow: inset 0 0 0 var(--scalar-border-width) var(--scalar-border-color);
}
.scalar-card-checkbox[data-v-b3a2a96e]:has(.scalar-card-checkbox-input:checked) {
  color: var(--scalar-color-1);
  font-weight: var(--scalar-semibold);
}
.scalar-card-checkbox
  .scalar-card-checkbox-input:checked
  ~ .scalar-card-checkbox-checkmark[data-v-b3a2a96e] {
  background-color: var(--scalar-button-1);
  box-shadow: none;
}
.scalar-card-checkbox-checkmark[data-v-b3a2a96e]:after {
  content: '';
  position: absolute;
  display: none;
}
.scalar-card-checkbox
  .scalar-card-checkbox-input:checked
  ~ .scalar-card-checkbox-checkmark[data-v-b3a2a96e]:after {
  display: block;
}
.scalar-card-checkbox .scalar-card-checkbox-checkmark[data-v-b3a2a96e]:after {
  right: 11.5px;
  top: 12.5px;
  width: 5px;
  height: 9px;
  border: solid 1px var(--scalar-button-1-color);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.show-api-client-button[data-v-15e312d9] {
  appearance: none;
  border: none;
  padding: 1px 6px;
  white-space: nowrap;
  border-radius: var(--scalar-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: var(--scalar-semibold);
  font-size: var(--scalar-small);
  line-height: 22px;
  color: var(--scalar-background-2);
  font-family: var(--scalar-font);
  background: var(--scalar-button-1);
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);

  outline-offset: 2px;
}
.show-api-client-button span[data-v-15e312d9],
.show-api-client-button svg[data-v-15e312d9] {
  fill: currentColor;
  color: var(--scalar-button-1-color);
  z-index: 1;
}
.show-api-client-button[data-v-15e312d9]:hover {
  background: var(--scalar-button-1-hover);
}
.show-api-client-button svg[data-v-15e312d9] {
  margin-right: 4px;
}
/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
.operation-title[data-v-5a538905] {
  justify-content: space-between;
  display: flex;
}
.operation-details[data-v-5a538905] {
  flex-shrink: 1;
  align-items: center;
  gap: 9px;
  min-width: 0;
  margin-top: 0;
  display: flex;
}
.operation-details[data-v-5a538905] .endpoint-anchor .scalar-button svg {
  width: 16px;
  height: 16px;
}
.endpoint-type[data-v-5a538905] {
  z-index: 0;
  width: 60px;
  font-size: var(--scalar-small);
  text-transform: uppercase;
  font-weight: var(--scalar-bold);
  font-family: var(--scalar-font);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 6px;
  display: flex;
  position: relative;
}
.endpoint-type[data-v-5a538905]:after {
  content: "";
  z-index: -1;
  opacity: .15;
  border-radius: var(--scalar-radius);
  background: currentColor;
  position: absolute;
  inset: 0;
}
.endpoint-anchor[data-v-5a538905] {
  flex-shrink: 1;
  align-items: center;
  min-width: 0;
  display: flex;
}
.endpoint-anchor.label[data-v-5a538905] {
  display: flex;
}
.endpoint-label[data-v-5a538905] {
  min-width: 0;
  color: var(--scalar-color-1);
  flex-shrink: 1;
  align-items: baseline;
  gap: 9px;
  display: flex;
}
.endpoint-label-path[data-v-5a538905] {
  font-family: var(--scalar-font-code);
  font-size: var(--scalar-mini);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.endpoint-label-path[data-v-5a538905] em {
  color: var(--scalar-color-2);
}
.endpoint-label-name[data-v-5a538905] {
  color: var(--scalar-color-2);
  font-size: var(--scalar-small);
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 1000000000;
  overflow: hidden;
}
.endpoint-try-hint[data-v-5a538905] {
  flex-shrink: 0;
  padding: 2px;
}
.endpoint-copy[data-v-5a538905] {
  color: currentColor;
}
.endpoint-copy[data-v-5a538905] svg {
  stroke-width: 2px;
}
.endpoint-content[data-v-5a538905] {
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  gap: 9px;
  padding: 9px;
  display: grid;
}
@media (min-width: 1000px) {
.endpoint-content[data-v-5a538905] {
    grid-auto-flow: column;
}
}
@container (max-width: 900px) {
.endpoint-content[data-v-5a538905] {
    grid-template-columns: 1fr;
}
}
.endpoint-content[data-v-5a538905] > * {
  min-width: 0;
}
.operation-details-card[data-v-5a538905] {
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  display: flex;
}
:is(.operation-details-card-item[data-v-5a538905] .parameter-list, .operation-details-card-item[data-v-5a538905] .callbacks-list) {
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  border-radius: var(--scalar-radius-lg);
  margin-top: 0;
}
.operation-details-card-item[data-v-5a538905] {
  flex-direction: column;
  gap: 12px;
  display: flex;
}
.operation-details-card-item[data-v-5a538905] .parameter-list-items {
  margin-bottom: 0;
}
.operation-details-card[data-v-5a538905] .parameter-item:last-of-type .parameter-schema {
  padding-bottom: 12px;
}
.operation-details-card[data-v-5a538905] .parameter-list .parameter-list {
  margin-bottom: 12px;
}
.operation-details-card[data-v-5a538905] .parameter-item {
  margin: 0;
  padding: 0;
}
.operation-details-card[data-v-5a538905] .property {
  margin: 0;
  padding: 9px;
}
:is(.operation-details-card[data-v-5a538905] .parameter-list-title, .operation-details-card[data-v-5a538905] .request-body-title, .operation-details-card[data-v-5a538905] .callbacks-title) {
  text-transform: uppercase;
  font-weight: var(--scalar-bold);
  font-size: var(--scalar-mini);
  color: var(--scalar-color-2);
  margin: 0;
  padding: 9px;
  line-height: 1.33;
}
.operation-details-card[data-v-5a538905] .callback-list-item-title {
  padding-left: 28px;
  padding-right: 12px;
}
.operation-details-card[data-v-5a538905] .callback-list-item-icon {
  left: 6px;
}
.operation-details-card[data-v-5a538905] .callback-operation-container {
  padding-inline: 9px;
  padding-bottom: 9px;
}
:is(.operation-details-card[data-v-5a538905] .callback-operation-container > .request-body, .operation-details-card[data-v-5a538905] .callback-operation-container > .parameter-list) {
  border: none;
}
.operation-details-card[data-v-5a538905] .callback-operation-container > .request-body > .request-body-header {
  border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
  padding: 0 0 9px;
}
.operation-details-card[data-v-5a538905] .request-body-description {
  border-top: var(--scalar-border-width) solid var(--scalar-border-color);
  margin-top: 0;
  padding: 9px 9px 0;
}
.operation-details-card[data-v-5a538905] .request-body {
  border-radius: var(--scalar-radius-lg);
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  margin-top: 0;
}
.operation-details-card[data-v-5a538905] .request-body .schema-card--level-0 > .schema-card-description {
  padding-inline: 9px;
}
.operation-details-card[data-v-5a538905] .request-body-header {
  border-bottom: 0;
  padding-bottom: 0;
}
.operation-details-card[data-v-5a538905] .contents button {
  margin-right: 9px;
}
.operation-details-card[data-v-5a538905] .schema-card--open + .schema-card:not(.schema-card--open) {
  margin-inline: 9px;
  margin-bottom: 9px;
}
.operation-details-card[data-v-5a538905] .request-body-schema .property--level-0 {
  padding: 0;
}
.operation-details-card[data-v-5a538905] .selected-content-type {
  margin-right: 9px;
}
.operation-example-card[data-v-5a538905] {
  top: calc(var(--refs-viewport-offset) + 24px);
  max-height: calc(var(--refs-viewport-height) - 48px);
  position: sticky;
}
@media (max-width: 600px) {
.operation-example-card[data-v-5a538905] {
    max-height: unset;
    position: static;
}
}
/** Container */
.agent-button-container[data-v-78f5377c] {
  position: relative;
  color: var(--scalar-color-1);
  background: color-mix(in srgb, var(--scalar-background-3), white 15%);
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 1px 6px;
  margin-right: 4px;
  border-radius: var(--scalar-radius);
  z-index: 2;
  height: 100%;
}
.agent-button-container[data-v-78f5377c]:hover:not(:focus-within) {
  background: color-mix(in srgb, var(--scalar-background-3), white 20%);
}
.agent-button-container[data-v-78f5377c]:has(.ask-agent-scalar-input-not-empty),
.agent-button-container[data-v-78f5377c]:focus-within {
  position: absolute;
  inset: 2px;
  border-radius: var(--scalar-radius-lg);
  margin-right: 0;
  height: auto;
}
.agent-button-container[data-v-78f5377c]:has(.ask-agent-scalar-input:focus-visible) {
  outline-style: solid;
}
/** Input */
.ask-agent-scalar-input[data-v-78f5377c] {
  width: 0px;
  opacity: 0;
  font-size: 0px;
  border: none;
}
.agent-button-container:has(.ask-agent-scalar-input-not-empty)
  .ask-agent-scalar-input[data-v-78f5377c],
.agent-button-container:focus-within .ask-agent-scalar-input[data-v-78f5377c] {
  width: 100%;
  font-size: inherit;
  opacity: 1;
  line-height: 20px;
  outline: none;
  padding-inline: 4px;
}
.ask-agent-scalar-input[data-v-78f5377c]::placeholder {
  color: var(--scalar-color-2);
  font-family: inherit;
}
/** Input label */
.ask-agent-scalar-input-label[data-v-78f5377c] {
  /** Shown by default */
  color: var(--scalar-color-1);
  font-weight: var(--scalar-semibold);
  margin-left: 4px;
}
.agent-button-container:has(.ask-agent-scalar-input-not-empty)
  .ask-agent-scalar-input-label[data-v-78f5377c],
.agent-button-container:focus-within .ask-agent-scalar-input-label[data-v-78f5377c] {
  /** Hidden when input is focused */
  display: none;
}
/** Send button */
.ask-agent-scalar-send[data-v-78f5377c] {
  background: var(--scalar-color-blue);
  color: #fff;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--scalar-radius);
  outline-offset: 1px;
  /* Hidden by default */
  display: none;
}
.agent-button-container:has(.ask-agent-scalar-input-not-empty)
  .ask-agent-scalar-send[data-v-78f5377c] {
  /** Show when input is not empty */
  display: flex;
}
.ask-agent-scalar-send[data-v-78f5377c]:hover {
  background: color-mix(in srgb, var(--scalar-color-blue), transparent 10%);
}
/*
 * The operation is a single grid so the request example can sit beside the
 * details on wide screens, then be lifted directly under the description when
 * the layout collapses (see the container query below). Vertical rhythm comes
 * from element margins rather than row-gap, because the details block carries
 * its own leading margin (mt-6) that already spaces it from whatever precedes
 * it — a row-gap would double that gap.
 */
.operation-layout[data-v-af3f9eee] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  grid-template-areas:
    'heading     badge'
    'description examples'
    'details     examples';
  column-gap: 48px;
  row-gap: 0;
}
.operation-title[data-v-af3f9eee] {
  grid-area: heading;
  margin-bottom: 12px;

  /* Mirror the shared section header typography (see SectionHeader.vue) */
  font-size: var(--font-size, var(--scalar-heading-1));
  font-weight: var(--font-weight, var(--scalar-bold));
  color: var(--scalar-color-1);
  line-height: 1.45;
}
.operation-auth[data-v-af3f9eee] {
  grid-area: badge;
  justify-self: end;
  align-self: start;
}
.operation-description[data-v-af3f9eee] {
  grid-area: description;
  min-width: 0;
}
.operation-details[data-v-af3f9eee] {
  grid-area: details;
  min-width: 0;
}
.examples[data-v-af3f9eee] {
  grid-area: examples;
  align-self: start;
  min-width: 0;

  position: sticky;
  top: calc(var(--refs-viewport-offset) + 24px);
}
.examples[data-v-af3f9eee] > * {
  max-height: calc((var(--refs-viewport-height) - 60px) / 2);
  position: relative;
}
.examples[data-v-af3f9eee] > *:first-of-type:last-of-type {
  max-height: calc((var(--refs-viewport-height) - 60px));
}
/*
 * Don't constrain card height on mobile
 * (or zoomed in screens)
 */
@media (max-width: 600px) {
.examples[data-v-af3f9eee] > * {
    max-height: unset;
}
}
.deprecated[data-v-af3f9eee] * {
  -webkit-text-decoration: line-through;
  text-decoration: line-through;
}
/*
 * On narrow containers the layout collapses to a single column: the request
 * example is lifted directly under the description, and the auth badge becomes
 * an eyebrow above the title.
 */
@container narrow-references-container (max-width: 900px) {
.operation-layout[data-v-af3f9eee] {
    grid-template-columns: 1fr;
    grid-template-areas:
      'badge'
      'heading'
      'description'
      'examples'
      'details';
    column-gap: 0;
}
.operation-auth[data-v-af3f9eee] {
    justify-self: start;
    margin-bottom: 4px;
}
.operation-title[data-v-af3f9eee] {
    margin-bottom: 24px;
}
.operation-description[data-v-af3f9eee] {
    margin-bottom: 24px;
}

  /* Don't make the examples sticky on narrow viewports */
.examples[data-v-af3f9eee] {
    position: static;
}
}
.section-flare[data-v-5cebff7a] {
  position: fixed;
  top: 0;
  right: 0;
  pointer-events: none;
}
.narrow-references-container {
  container-name: narrow-references-container;
  container-type: inline-size;
}
.ref-search-meta[data-v-25f2d34f] {
  background: var(--scalar-background-1);
  border-bottom-left-radius: var(--scalar-radius-lg);
  border-bottom-right-radius: var(--scalar-radius-lg);
  padding: 6px 12px;
  font-size: var(--scalar-font-size-4);
  color: var(--scalar-color-3);
  font-weight: var(--scalar-semibold);
  display: flex;
  gap: 12px;
  border-top: var(--scalar-border-width) solid var(--scalar-border-color);
}
/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@media (max-width: 1000px) {
.agent-scalar.agent-scalar[data-v-34fa4e92] {
    border-top-left-radius: var(--scalar-radius-lg);
    border-top-right-radius: var(--scalar-radius-lg);
    inset-inline: 0;
    top: 48px;
}
.agent-scalar.agent-scalar[data-v-34fa4e92], .agent-scalar-overlay.agent-scalar-overlay[data-v-34fa4e92] {
    z-index: 15;
}
}
.scalar-mcp-layer[data-v-d469cd5e] {
  gap: 2px;
  display: flex;
  flex-direction: column;
  background: transparent;
  position: relative;
  justify-content: flex-end;
  transition: all 0.4s ease-in-out;
  height: 32px;
}
.scalar-mcp-layer[data-v-d469cd5e]:hover {
  height: 172px;
}
.scalar-mcp-layer-link[data-v-d469cd5e]:hover {
  cursor: pointer !important;
}
.scalar-mcp-layer .scalar-mcp-layer-link[data-v-d469cd5e] {
  cursor: pointer;
  width: 100%;
  padding: 9px 6px;
  height: 31px;
  display: block;
  text-align: center;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: var(--scalar-small);
  line-height: 1.385;
  -webkit-text-decoration: none;
  text-decoration: none;
  border-radius: var(--scalar-radius);
  border: var(--scalar-border-width) solid var(--scalar-border-color);
  gap: 6px;
  color: var(--scalar-sidebar-color-1);
  background: var(--scalar-background-1);
  transition: transform 0.2s ease-in-out;
  position: absolute;
  bottom: 0;
}
/* increase click area for gap */
.scalar-mcp-layer-link[data-v-d469cd5e]:after {
  content: '';
  position: absolute;
  bottom: -2px;
  height: 2px;
  width: 100%;
  left: 0;
}
.scalar-mcp-layer div.scalar-mcp-layer-link[data-v-d469cd5e] {
  cursor: default;
}
.scalar-mcp-layer .scalar-mcp-layer-link[data-v-d469cd5e]:nth-last-child(1) {
  transform: translate3d(0, 0, 0);
  position: relative;
}
.scalar-mcp-layer .scalar-mcp-layer-link[data-v-d469cd5e]:nth-last-child(2) {
  transform: translate3d(0, -2px, 0) scale(0.99);
}
.scalar-mcp-layer:hover a[data-v-d469cd5e]:nth-last-child(2) {
  transform: translate3d(0, calc(-100% - 2px), 0) scale(0.99);
}
.scalar-mcp-layer .scalar-mcp-layer-link[data-v-d469cd5e]:nth-last-child(3) {
  transform: translate3d(0, -4px, 0) scale(0.98);
}
.scalar-mcp-layer:hover a[data-v-d469cd5e]:nth-last-child(3) {
  transform: translate3d(0, calc(-200% - 4px), 0) scale(1);
}
.scalar-mcp-layer .scalar-mcp-layer-link[data-v-d469cd5e]:nth-last-child(4) {
  transform: translate3d(0, -6px, 0) scale(0.97);
}
.scalar-mcp-layer:hover a[data-v-d469cd5e]:nth-last-child(4) {
  transform: translate3d(0, calc(-300% - 6px), 0) scale(1);
}
.scalar-mcp-layer .scalar-mcp-layer-link[data-v-d469cd5e]:nth-last-child(5) {
  transform: translate3d(0, -8px, 0) scale(0.96);
}
.scalar-mcp-layer:hover .scalar-mcp-layer-link[data-v-d469cd5e]:nth-last-child(5) {
  transform: translate3d(0, calc(-400% - 8px), 0) scale(1);
}
.scalar-mcp-layer:hover .scalar-mcp-layer-link[data-v-d469cd5e] {
  transition: transform 0.2s ease-in-out 0.1s;
}
.scalar-mcp-layer .scalar-mcp-layer-link[data-v-d469cd5e]:hover {
  background: var(--scalar-background-2);
}
.scalar-mcp-layer .mcp-logo[data-v-d469cd5e] {
  width: 16px;
  height: 16px;
  color: var(--scalar-sidebar-color-1);
}
.mcp-nav[data-v-d469cd5e] {
  color: var(--scalar-sidebar-color-2);
}
/* Add base styles to the body. Removed browser default margins for a better experience. */
@layer scalar-base {
body {
    margin: 0;
    background-color: var(--scalar-background-1);
}
}
/** Used to check if css is loaded */
:root {
  --scalar-loaded-api-reference: true;
}
/* Configurable Layout Variables */
@layer scalar-config {
.scalar-api-reference[data-v-be46ef19] {
    /* The header height */
    --refs-header-height: calc(
      var(--scalar-custom-header-height, 0px) + var(--scalar-header-height, 0px)
    );
    /* The offset of visible references content (minus headers) */
    --refs-viewport-offset: calc(
      var(--refs-header-height, 0px) + var(--refs-content-offset, 0px)
    );
    /* The calculated height of visible references content (minus headers) */
    --refs-viewport-height: calc(
      var(--full-height, 100dvh) - var(--refs-viewport-offset, 0px)
    );
    /* The width of the sidebar */
    --refs-sidebar-width: var(--scalar-sidebar-width, 0px);
    /* The height of the sidebar */
    --refs-sidebar-height: calc(
      var(--full-height, 100dvh) - var(--refs-header-height, 0px)
    );
    /* The maximum width of the content column */
    --refs-content-max-width: var(--scalar-content-max-width, 1540px);
}
.scalar-api-reference.references-classic[data-v-be46ef19] {
    /* Classic layout is wider */
    --refs-content-max-width: var(--scalar-content-max-width, 1420px);
    min-height: 100dvh;
    --refs-sidebar-width: 0;
}
}
.t-doc__sidebar[data-v-be46ef19] {
  z-index: 10;
}
/* ----------------------------------------------------- */
/* References Layout */
.references-layout[data-v-be46ef19] {
  /* Try to fill the container */
  min-height: 100dvh;
  min-width: 100%;
  max-width: 100%;
  flex: 1;

  /*
  Calculated by a resize observer and set in the style attribute
  Falls back to the viewport height
  */
  --full-height: 100dvh;

  /* Grid layout */
  display: grid;
  grid-template-rows: var(--scalar-header-height, 0px) repeat(2, auto);
  grid-template-columns: auto 1fr;
  grid-template-areas:
    'header header'
    'navigation rendered'
    'footer footer';

  background: var(--scalar-background-1);
}
.references-editor[data-v-be46ef19] {
  grid-area: editor;
  display: flex;
  min-width: 0;
  background: var(--scalar-background-1);
}
.references-rendered[data-v-be46ef19] {
  position: relative;
  grid-area: rendered;
  min-width: 0;
  background: var(--scalar-background-1);
}
.scalar-api-reference.references-classic[data-v-be46ef19],
.references-classic .references-rendered[data-v-be46ef19] {
  height: initial !important;
  max-height: initial !important;
}
@layer scalar-config {
.references-sidebar[data-v-be46ef19] {
    /* Set a default width if references are enabled */
    --refs-sidebar-width: var(--scalar-sidebar-width, 288px);
}
}
/* Footer */
.references-footer[data-v-be46ef19] {
  grid-area: footer;
}
/* ----------------------------------------------------- */
/* Responsive / Mobile Layout */
@media (max-width: 1000px) {
  /* Keep toolbar hidden on mobile without forcing desktop display mode. */
.references-developer-tools[data-v-be46ef19] {
    display: none;
}

  /* Stack view on mobile */
.references-layout[data-v-be46ef19] {
    /* Adjust the sidebar height to the viewport height minus the header height */
    --refs-sidebar-height: calc(
      var(--full-height, 100dvh) - var(--scalar-custom-header-height, 0px)
    );

    grid-template-columns: 100%;
    grid-template-rows: var(--scalar-header-height, 0px) 0px auto auto;

    grid-template-areas:
      'header'
      'navigation'
      'rendered'
      'footer';
}
.references-editable[data-v-be46ef19] {
    grid-template-areas:
      'header'
      'navigation'
      'editor';
}
.references-rendered[data-v-be46ef19] {
    position: static;
}
}
/**
* Sidebar CSS for standalone
* TODO: @brynn move this to the sidebar block OR the ApiReferenceStandalone component
* when the new elements are available
*/
@media (max-width: 1000px) {
.scalar-api-references-standalone-mobile[data-v-be46ef19]:not(.references-classic) {
    --scalar-header-height: 50px;
}
}
.darklight-reference[data-v-be46ef19] {
  width: 100%;
  margin-top: auto;
}
.start[data-v-68d4d91b] {
  padding: 24px;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 0;
}
.swagger-editor .start[data-v-68d4d91b] {
  padding-top: 24px;
}
.start-h1[data-v-68d4d91b] {
  font-size: var(--scalar-heading-2);
  margin-top: 0;
  line-height: 1.45;
  margin-bottom: 0;
  font-weight: var(--scalar-bold);
  color: var(--scalar-color-1);
  width: 100%;
  position: relative;
}
.start-h3[data-v-68d4d91b] {
  font-size: var(--scalar-paragraph);
  margin-top: 0;
  margin-bottom: 6px;
  display: block;
  line-height: 1.45;
  font-weight: var(--scalar-bold);
  color: var(--scalar-color-1);
  width: 100%;
}
.start-h1[data-v-68d4d91b]:not(:first-of-type) {
  margin-top: 24px;
}
.start-p[data-v-68d4d91b] {
  font-size: var(--scalar-paragraph);
  color: var(--scalar-color-2);
  line-height: 1.5;
  width: 100%;
  margin-top: 12px;
}
.start-ul[data-v-68d4d91b] {
  margin-top: 12px;
  font-size: var(--scalar-paragraph);
  line-height: 1.5;
  padding-left: 0;
  list-style: initial;
  display: flex;
  flex-flow: wrap;
  gap: 24px;
}
.start-ul li[data-v-68d4d91b] {
  margin: 0;
  padding: 0;
  list-style: none;
  width: calc(50% - 24px);
  color: var(--scalar-color-2);
}
.start-ul li[data-v-68d4d91b]:first-of-type {
  margin-top: 0;
}
.start-section[data-v-68d4d91b] {
  width: 100%;
  margin-bottom: 12px;
  display: flex;
  flex-flow: wrap;
}
.start-section[data-v-68d4d91b]:last-of-type {
  margin-bottom: 48px;
}
.start-h2[data-v-68d4d91b] {
  background: var(--scalar-background-2);
  border-top-left-radius: var(--scalar-radius-lg);
  border-top-right-radius: var(--scalar-radius-lg);
  border: 1px solid var(--scalar-border-color);
  color: var(--scalar-color-3);
  font-size: var(--scalar-mini);
  font-weight: var(--scalar-semibold);
  padding: 9px;
  width: 100%;
}
.start-item[data-v-68d4d91b] {
  align-items: center;
  background: var(--scalar-background-2);
  border-right: 1px solid var(--scalar-border-color);
  border-bottom: 1px solid var(--scalar-border-color);
  color: var(--scalar-color-1);
  cursor: pointer;
  display: flex;
  flex: 1;
  font-size: var(--scalar-mini);
  font-weight: var(--scalar-semibold);
  padding: 9px;
  text-transform: capitalize;
  -webkit-user-select: none;
          user-select: none;
}
.start-section-integrations .start-item[data-v-68d4d91b]:first-of-type {
  border-bottom-left-radius: var(--scalar-radius-lg);
  border-left: 1px solid var(--scalar-border-color);
}
.start-section-integrations .start-item[data-v-68d4d91b]:last-of-type {
  border-bottom-right-radius: var(--scalar-radius-lg);
}
.start-section-colors .start-item[data-v-68d4d91b] {
  min-width: 33.33%;
}
.start-section-colors .start-item[data-v-68d4d91b]:nth-child(3n + 2) {
  border-left: 1px solid var(--scalar-border-color);
}
.start-section-colors .start-item[data-v-68d4d91b]:last-of-type,
.start-section-colors .start-item-active[data-v-68d4d91b]:last-of-type::before {
  border-radius: 0 0 var(--scalar-radius-lg) var(--scalar-radius-lg);
}
.start-item[data-v-68d4d91b]:empty {
  pointer-events: none;
}
.start-item svg[data-v-68d4d91b] {
  width: 14px;
  height: 14px;
  margin-right: 6px;
}
.start-item[data-v-68d4d91b]:hover {
  background: var(--scalar-background-3);
}
.start-item-active[data-v-68d4d91b] {
  z-index: 10;
  position: relative;
  color: var(--scalar-color-1);
}
.start-item-active[data-v-68d4d91b]::before {
  border: 1px solid var(--scalar-color-1);
  content: '';
  inset: -1px -1px -1px -1px;
  pointer-events: none;
  position: absolute;
}
.start-section-color .start-item[data-v-68d4d91b] {
  text-transform: capitalize;
}
.start-cta[data-v-68d4d91b] {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 0;
}
.start-row[data-v-68d4d91b] {
  width: 100%;
  margin-top: 12px;
  overflow: hidden;
}
.start-hero-copy[data-v-68d4d91b] {
  background: var(--scalar-background-2);
  padding: 12px;
  border-radius: var(--scalar-radius-lg);
}
.start-p-small[data-v-68d4d91b] {
  font-weight: var(--scalar-semibold);
  font-size: var(--scalar-mini);
  color: var(--scalar-color-2);
  margin-bottom: 12px;
  line-height: 1.4;
}
.start-cta[data-v-68d4d91b] {
  margin-bottom: 12px;
  width: fit-content;
  white-space: nowrap;
}
.start-copy[data-v-68d4d91b] {
  padding: 76px 48px 48px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.start-logo[data-v-68d4d91b] {
  color: var(--scalar-color-1);
  margin-bottom: 24px;
  width: 72px;
  aspect-ratio: 1;
  position: relative;
  box-shadow: var(--scalar-shadow-2);
  border-radius: 50%;
}
.start-logo[data-v-68d4d91b]:before {
  content: '';
  width: 300%;
  aspect-ratio: 1;
  left: -100%;
  top: -100%;
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background-size: 24px 24px;
  box-shadow:
    inset 0 0 50px var(--scalar-background-1),
    inset 0 0 50px var(--scalar-background-1);
  background-image:
    linear-gradient(to right, var(--scalar-border-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--scalar-border-color) 1px, transparent 1px);
}
.start-logo svg[data-v-68d4d91b] {
  width: 100%;
  height: auto;
  background: var(--scalar-background-1);
  padding: 3px;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 600px) {
.start-section-colors .start-item[data-v-68d4d91b],
  .start-item[data-v-68d4d91b] {
    width: 100%;
    border-radius: 0;
    border-right: none;
    border-top: 1px solid var(--scalar-border-color);
}
.start-item[data-v-68d4d91b]:empty {
    display: none;
}
.start-h2[data-v-68d4d91b] {
    border-bottom: none;
}
.start li[data-v-68d4d91b] {
    width: 100%;
}
.start-copy[data-v-68d4d91b] {
    padding: 48px 0 24px 0;
}
}
@media screen and (max-width: 1000px) {
.start[data-v-68d4d91b] {
    padding: 0;
    overflow: auto;
}
}
/*$vite$:1*/
/*$vite$:1*/
/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

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

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

.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: var(--docusaurus-highlighted-code-line-bg);
  display: block;
  margin: 0 calc(-1 * var(--ifm-pre-padding));
  padding: 0 var(--ifm-pre-padding);
}

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

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

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

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

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

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

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

/**
 * Copyright (c) Facebook, Inc. and 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;
  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.
 */

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

/**
 * Copyright (c) Facebook, Inc. and 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;
}

.dialog_Z2aW {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  align-self: center;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dialog_Z2aW::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.dialogHeader_hAkw {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.closeButton_JpAj {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.viewMoreButton_HRyF {
  margin-top: 0.5rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  cursor: pointer;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
}

/**
 * Copyright (c) Facebook, Inc. and 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.
 */

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

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

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

@media print {
  .noPrint_WFHX {
    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.
 */

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

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

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

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

.containsTaskList_mC6p {
  list-style: none;
}

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

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

.img_ev3q {
  height: auto;
}

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

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

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

  .docItemContainer_F8PC {
    padding: 0 0.3rem;
  }
}

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

.admonition_xJq3 {
  margin-bottom: 1em;
}

.admonitionHeading_Gvgb {
  font: var(--ifm-heading-font-weight) var(--ifm-h5-font-size) /
    var(--ifm-heading-line-height) var(--ifm-heading-font-family);
  text-transform: uppercase;
}

/* Heading alone without content (does not handle fragment content) */
.admonitionHeading_Gvgb:not(:last-child) {
  margin-bottom: 0.3rem;
}

.admonitionHeading_Gvgb code {
  text-transform: none;
}

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

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

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

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

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

.mdxPageWrapper_j9I6 {
  justify-content: center;
}

