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

/* src/styles/global.scss */
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-Light-CX5WADKC-eb229bb9406cc043d5a4313f0ecfcb25.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-Regular-55WT6UWF-eca1e21531598d5db58f56b3ba23a8cc.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-SemiBold-R6Y2SZCR-69a8d1d484967aba2389ef57577b76be.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-Bold-SU5XVJMF-1104236696a5d2d1f236f40aa0c491d1.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-primary-100: #fffbfb;
  --color-primary-200: #feece8;
  --color-primary-300: #fed9d1;
  --color-primary-400: #fdb3a4;
  --color-primary-500: #f9401b;
  --color-primary-600: #c73316;
  --color-primary-700: #952610;
  --color-primary-800: #641a0b;
  --color-primary-900: #320d05;
  --color-primary-1000: #270c06;
  --color-secondary-100: #f3f9f4;
  --color-secondary-200: #e8f3ea;
  --color-secondary-300: #d1e6d4;
  --color-secondary-400: #a3cda9;
  --color-secondary-500: #8cc194;
  --color-secondary-600: #739f79;
  --color-secondary-700: #597d5f;
  --color-secondary-800: #405c44;
  --color-secondary-900: #263a2a;
  --color-secondary-1000: #1a291c;
  --color-primary: #f9401b;
  --color-secondary: #feece8;
  --color-neutral-100: #fff;
  --color-neutral-200: #fafafa;
  --color-neutral-300: #eceded;
  --color-neutral-400: #ddddde;
  --color-neutral-500: #bebec0;
  --color-neutral-600: #7F8184;
  --color-neutral-700: #606266;
  --color-neutral-800: #4d4e52;
  --color-neutral-900: #262729;
  --color-neutral-1000: #0a0a0a;
  --color-information-100: #eaf3fd;
  --color-information-200: #d4e7fc;
  --color-information-300: #aad0f9;
  --color-information-400: #7fb8f5;
  --color-information-500: #55a1f2;
  --color-information-600: #2a89ef;
  --color-information-700: #226ebf;
  --color-information-800: #19528f;
  --color-information-900: #113760;
  --color-information-1000: #081b30;
  --color-success-100: #e8f9f2;
  --color-success-200: #d0f2e4;
  --color-success-300: #a1e5c9;
  --color-success-400: #73d8ae;
  --color-success-500: #44cb93;
  --color-success-600: #15be78;
  --color-success-700: #119860;
  --color-success-800: #0d7248;
  --color-success-900: #084c30;
  --color-success-1000: #042618;
  --color-error-100: #fde9eb;
  --color-error-200: #fad2d6;
  --color-error-300: #f5a5ad;
  --color-error-400: #f07884;
  --color-error-500: #eb4b5b;
  --color-error-600: #e61e32;
  --color-error-700: #b81828;
  --color-error-800: #8a121e;
  --color-error-900: #5c0c14;
  --color-error-1000: #2e060a;
  --color-warning-100: #fef7e7;
  --color-warning-200: #feeecf;
  --color-warning-300: #fddd9f;
  --color-warning-400: #fbcd70;
  --color-warning-500: #fabc40;
  --color-warning-600: #f9ab10;
  --color-warning-700: #c7890d;
  --color-warning-800: #95670a;
  --color-warning-900: #644406;
  --color-warning-1000: #322203;
  --color-background-default: #fff;
  --color-background-alt: #fafafa;
  --color-background-inverse: #262729;
  --color-text-default: #606266;
  --color-text-secondary: #bebec0;
  --color-text-inverse: #fff;
  --color-border-default: #ddddde;
  --color-border-hover: #f9401b;
  --color-border-focus: #f9401b;
  --color-feedback-success: #15be78;
  --color-feedback-error: #e61e32;
  --color-feedback-warning: #f9ab10;
  --color-feedback-info: #2a89ef;
  --avatar-bg-color: #ddddde;
  --avatar-text-color: #606266;
  --avatar-border-color: #bebec0;
  --avatar-initials-bg-color: #bebec0;
  --avatar-initials-text-color: #fff;
  --badge-bg-color: #ddddde;
  --badge-text-color: #262729;
  --badge-border-color: #bebec0;
  --padding-0: 0px;
  --padding-1x: 2px;
  --padding-2x: 4px;
  --padding-4x: 8px;
  --padding-5x: 10px;
  --padding-6x: 12px;
  --padding-8x: 16px;
  --padding-10x: 20px;
  --padding-12x: 24px;
  --padding-16x: 32px;
  --padding-20x: 40px;
  --padding-24x: 48px;
  --padding-28x: 56px;
  --padding-32x: 64px;
  --padding-40x: 80px;
  --gap-0: 0px;
  --gap-1x: 2px;
  --gap-2x: 4px;
  --gap-4x: 8px;
  --gap-5x: 10px;
  --gap-6x: 12px;
  --gap-8x: 16px;
  --gap-10x: 20px;
  --gap-12x: 24px;
  --gap-16x: 32px;
  --gap-20x: 40px;
  --gap-24x: 48px;
  --gap-28x: 56px;
  --gap-32x: 64px;
  --gap-40x: 80px;
  --border-radius-none: 0px;
  --border-radius-xsm: 4px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 500px;
  --border-width-none: 0px;
  --border-width-sm: 1px;
  --border-width-md: 2px;
  --border-width-lg: 4px;
  --shadow-none: none;
  --shadow-level-1: 2px 4px 8px 0px rgba(0, 0, 0, 0.08);
  --shadow-level-2: 2px 4px 24px 0px rgba(0, 0, 0, 0.16);
  --shadow-level-3: 2px 8px 32px 0px rgba(0, 0, 0, 0.16);
  --shadow-level-4: 2px 8px 48px 0px rgba(0, 0, 0, 0.32);
  --font-family-primary: Inter, sans-serif;
  --line-height-near: 1;
  --line-height-compact: 1.2;
  --line-height-far: 1.5;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 700;
  --font-size-display-large: 56px;
  --font-size-display-medium: 48px;
  --font-size-display-small: 40px;
  --font-size-h1: 32px;
  --font-size-h2: 24px;
  --font-size-h3: 20px;
  --font-size-h4: 18px;
  --font-size-h5: 16px;
  --font-size-body-large: 18px;
  --font-size-body-medium: 16px;
  --font-size-body-small: 14px;
  --font-size-body-xsmall: 12px;
  --font-size-caption-medium: 12px;
  --font-size-caption-small: 10px;
  --line-height-display-large: 56px;
  --line-height-display-medium: 48px;
  --line-height-display-small: 40px;
  --line-height-h1: 38.4px;
  --line-height-h2: 36px;
  --line-height-h3: 30px;
  --line-height-h4: 27px;
  --line-height-h5: 24px;
  --line-height-body-large: 27px;
  --line-height-body-medium: 24px;
  --line-height-body-small: 21px;
  --line-height-body-xsmall: 18px;
  --line-height-caption-medium: 18px;
  --line-height-caption-small: 14px;
  --breakpoint-xs: 0;
  --breakpoint-sm: 360px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1440px;
  --grid-gutter: 16px;
  --grid-margin: 24px;
  --grid-columns-mobile: 4;
  --grid-columns-desktop: 12;
  --grid-columns-desktop-alt: 8;
}
[data-theme=dark] {
  --color-primary-100: #270c06;
  --color-primary-200: #320d05;
  --color-primary-300: #641a0b;
  --color-primary-400: #952610;
  --color-primary-500: #f9401b;
  --color-primary-600: #fdb3a4;
  --color-primary-700: #fed9d1;
  --color-primary-800: #feece8;
  --color-primary-900: #fffbfb;
  --color-primary-1000: #fffbfb;
  --color-secondary-100: #1a291c;
  --color-secondary-200: #263a2a;
  --color-secondary-300: #405c44;
  --color-secondary-400: #597d5f;
  --color-secondary-500: #8cc194;
  --color-secondary-600: #a3cda9;
  --color-secondary-700: #d1e6d4;
  --color-secondary-800: #e8f3ea;
  --color-secondary-900: #f3f9f4;
  --color-secondary-1000: #f3f9f4;
  --color-primary: #f9401b;
  --color-secondary: #feece8;
  --color-neutral-100: #0a0a0a;
  --color-neutral-200: #1d1d1f;
  --color-neutral-300: #262729;
  --color-neutral-400: #4d4e52;
  --color-neutral-500: #606266;
  --color-neutral-600: #7f8184;
  --color-neutral-700: #bebec0;
  --color-neutral-800: #ddddde;
  --color-neutral-900: #eceded;
  --color-neutral-1000: #fcfcfc;
  --color-information-100: #081b30;
  --color-information-200: #113760;
  --color-information-300: #19528f;
  --color-information-400: #226ebf;
  --color-information-500: #2a89ef;
  --color-information-600: #55a1f2;
  --color-information-700: #7fb8f5;
  --color-information-800: #aad0f9;
  --color-information-900: #d4e7fc;
  --color-information-1000: #eaf3fd;
  --color-success-100: #042618;
  --color-success-200: #084c30;
  --color-success-300: #0d7248;
  --color-success-400: #119860;
  --color-success-500: #15be78;
  --color-success-600: #44cb93;
  --color-success-700: #73d8ae;
  --color-success-800: #a1e5c9;
  --color-success-900: #d0f2e4;
  --color-success-1000: #e8f9f2;
  --color-error-100: #2e060a;
  --color-error-200: #5c0c14;
  --color-error-300: #8a121e;
  --color-error-400: #b81828;
  --color-error-500: #e61e32;
  --color-error-600: #eb4b5b;
  --color-error-700: #f07884;
  --color-error-800: #f5a5ad;
  --color-error-900: #fad2d6;
  --color-error-1000: #fde9eb;
  --color-warning-100: #322203;
  --color-warning-200: #644406;
  --color-warning-300: #95670a;
  --color-warning-400: #c7890d;
  --color-warning-500: #f9ab10;
  --color-warning-600: #fabc40;
  --color-warning-700: #fbcd70;
  --color-warning-800: #fddd9f;
  --color-warning-900: #feeecf;
  --color-warning-1000: #fef7e7;
  --color-background-default: #0a0a0a;
  --color-background-alt: #1d1d1f;
  --color-background-inverse: #eceded;
  --color-text-default: #bebec0;
  --color-text-secondary: #606266;
  --color-text-inverse: #0a0a0a;
  --color-border-default: #4d4e52;
  --color-border-focus: #fdb3a4;
  --color-feedback-success: #15be78;
  --color-feedback-error: #e61e32;
  --color-feedback-warning: #f9ab10;
  --color-feedback-info: #2a89ef;
  --avatar-bg-color: #4d4e52;
  --avatar-text-color: #bebec0;
  --avatar-border-color: #606266;
  --avatar-initials-bg-color: #262729;
  --avatar-initials-text-color: #fcfcfc;
  --badge-bg-color: #4d4e52;
  --badge-text-color: #eceded;
  --badge-border-color: #606266;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-text-default);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html,
body {
  margin: 0;
  padding: 0;
}
a {
  -webkit-text-decoration: none;
  text-decoration: none;
}

@charset "UTF-8";

/* src/styles/index.scss */
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-Light-CX5WADKC-eb229bb9406cc043d5a4313f0ecfcb25.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-Regular-55WT6UWF-eca1e21531598d5db58f56b3ba23a8cc.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-SemiBold-R6Y2SZCR-69a8d1d484967aba2389ef57577b76be.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-Bold-SU5XVJMF-1104236696a5d2d1f236f40aa0c491d1.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-primary-100: #fffbfb;
  --color-primary-200: #feece8;
  --color-primary-300: #fed9d1;
  --color-primary-400: #fdb3a4;
  --color-primary-500: #f9401b;
  --color-primary-600: #c73316;
  --color-primary-700: #952610;
  --color-primary-800: #641a0b;
  --color-primary-900: #320d05;
  --color-primary-1000: #270c06;
  --color-secondary-100: #f3f9f4;
  --color-secondary-200: #e8f3ea;
  --color-secondary-300: #d1e6d4;
  --color-secondary-400: #a3cda9;
  --color-secondary-500: #8cc194;
  --color-secondary-600: #739f79;
  --color-secondary-700: #597d5f;
  --color-secondary-800: #405c44;
  --color-secondary-900: #263a2a;
  --color-secondary-1000: #1a291c;
  --color-primary: #f9401b;
  --color-secondary: #feece8;
  --color-neutral-100: #fff;
  --color-neutral-200: #fafafa;
  --color-neutral-300: #eceded;
  --color-neutral-400: #ddddde;
  --color-neutral-500: #bebec0;
  --color-neutral-600: #7F8184;
  --color-neutral-700: #606266;
  --color-neutral-800: #4d4e52;
  --color-neutral-900: #262729;
  --color-neutral-1000: #0a0a0a;
  --color-information-100: #eaf3fd;
  --color-information-200: #d4e7fc;
  --color-information-300: #aad0f9;
  --color-information-400: #7fb8f5;
  --color-information-500: #55a1f2;
  --color-information-600: #2a89ef;
  --color-information-700: #226ebf;
  --color-information-800: #19528f;
  --color-information-900: #113760;
  --color-information-1000: #081b30;
  --color-success-100: #e8f9f2;
  --color-success-200: #d0f2e4;
  --color-success-300: #a1e5c9;
  --color-success-400: #73d8ae;
  --color-success-500: #44cb93;
  --color-success-600: #15be78;
  --color-success-700: #119860;
  --color-success-800: #0d7248;
  --color-success-900: #084c30;
  --color-success-1000: #042618;
  --color-error-100: #fde9eb;
  --color-error-200: #fad2d6;
  --color-error-300: #f5a5ad;
  --color-error-400: #f07884;
  --color-error-500: #eb4b5b;
  --color-error-600: #e61e32;
  --color-error-700: #b81828;
  --color-error-800: #8a121e;
  --color-error-900: #5c0c14;
  --color-error-1000: #2e060a;
  --color-warning-100: #fef7e7;
  --color-warning-200: #feeecf;
  --color-warning-300: #fddd9f;
  --color-warning-400: #fbcd70;
  --color-warning-500: #fabc40;
  --color-warning-600: #f9ab10;
  --color-warning-700: #c7890d;
  --color-warning-800: #95670a;
  --color-warning-900: #644406;
  --color-warning-1000: #322203;
  --color-background-default: #fff;
  --color-background-alt: #fafafa;
  --color-background-inverse: #262729;
  --color-text-default: #606266;
  --color-text-secondary: #bebec0;
  --color-text-inverse: #fff;
  --color-border-default: #ddddde;
  --color-border-hover: #f9401b;
  --color-border-focus: #f9401b;
  --color-feedback-success: #15be78;
  --color-feedback-error: #e61e32;
  --color-feedback-warning: #f9ab10;
  --color-feedback-info: #2a89ef;
  --avatar-bg-color: #ddddde;
  --avatar-text-color: #606266;
  --avatar-border-color: #bebec0;
  --avatar-initials-bg-color: #bebec0;
  --avatar-initials-text-color: #fff;
  --badge-bg-color: #ddddde;
  --badge-text-color: #262729;
  --badge-border-color: #bebec0;
  --padding-0: 0px;
  --padding-1x: 2px;
  --padding-2x: 4px;
  --padding-4x: 8px;
  --padding-5x: 10px;
  --padding-6x: 12px;
  --padding-8x: 16px;
  --padding-10x: 20px;
  --padding-12x: 24px;
  --padding-16x: 32px;
  --padding-20x: 40px;
  --padding-24x: 48px;
  --padding-28x: 56px;
  --padding-32x: 64px;
  --padding-40x: 80px;
  --gap-0: 0px;
  --gap-1x: 2px;
  --gap-2x: 4px;
  --gap-4x: 8px;
  --gap-5x: 10px;
  --gap-6x: 12px;
  --gap-8x: 16px;
  --gap-10x: 20px;
  --gap-12x: 24px;
  --gap-16x: 32px;
  --gap-20x: 40px;
  --gap-24x: 48px;
  --gap-28x: 56px;
  --gap-32x: 64px;
  --gap-40x: 80px;
  --border-radius-none: 0px;
  --border-radius-xsm: 4px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 500px;
  --border-width-none: 0px;
  --border-width-sm: 1px;
  --border-width-md: 2px;
  --border-width-lg: 4px;
  --shadow-none: none;
  --shadow-level-1: 2px 4px 8px 0px rgba(0, 0, 0, 0.08);
  --shadow-level-2: 2px 4px 24px 0px rgba(0, 0, 0, 0.16);
  --shadow-level-3: 2px 8px 32px 0px rgba(0, 0, 0, 0.16);
  --shadow-level-4: 2px 8px 48px 0px rgba(0, 0, 0, 0.32);
  --font-family-primary: Inter, sans-serif;
  --line-height-near: 1;
  --line-height-compact: 1.2;
  --line-height-far: 1.5;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 700;
  --font-size-display-large: 56px;
  --font-size-display-medium: 48px;
  --font-size-display-small: 40px;
  --font-size-h1: 32px;
  --font-size-h2: 24px;
  --font-size-h3: 20px;
  --font-size-h4: 18px;
  --font-size-h5: 16px;
  --font-size-body-large: 18px;
  --font-size-body-medium: 16px;
  --font-size-body-small: 14px;
  --font-size-body-xsmall: 12px;
  --font-size-caption-medium: 12px;
  --font-size-caption-small: 10px;
  --line-height-display-large: 56px;
  --line-height-display-medium: 48px;
  --line-height-display-small: 40px;
  --line-height-h1: 38.4px;
  --line-height-h2: 36px;
  --line-height-h3: 30px;
  --line-height-h4: 27px;
  --line-height-h5: 24px;
  --line-height-body-large: 27px;
  --line-height-body-medium: 24px;
  --line-height-body-small: 21px;
  --line-height-body-xsmall: 18px;
  --line-height-caption-medium: 18px;
  --line-height-caption-small: 14px;
  --breakpoint-xs: 0;
  --breakpoint-sm: 360px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1440px;
  --grid-gutter: 16px;
  --grid-margin: 24px;
  --grid-columns-mobile: 4;
  --grid-columns-desktop: 12;
  --grid-columns-desktop-alt: 8;
}
[data-theme=dark] {
  --color-primary-100: #270c06;
  --color-primary-200: #320d05;
  --color-primary-300: #641a0b;
  --color-primary-400: #952610;
  --color-primary-500: #f9401b;
  --color-primary-600: #fdb3a4;
  --color-primary-700: #fed9d1;
  --color-primary-800: #feece8;
  --color-primary-900: #fffbfb;
  --color-primary-1000: #fffbfb;
  --color-secondary-100: #1a291c;
  --color-secondary-200: #263a2a;
  --color-secondary-300: #405c44;
  --color-secondary-400: #597d5f;
  --color-secondary-500: #8cc194;
  --color-secondary-600: #a3cda9;
  --color-secondary-700: #d1e6d4;
  --color-secondary-800: #e8f3ea;
  --color-secondary-900: #f3f9f4;
  --color-secondary-1000: #f3f9f4;
  --color-primary: #f9401b;
  --color-secondary: #feece8;
  --color-neutral-100: #0a0a0a;
  --color-neutral-200: #1d1d1f;
  --color-neutral-300: #262729;
  --color-neutral-400: #4d4e52;
  --color-neutral-500: #606266;
  --color-neutral-600: #7f8184;
  --color-neutral-700: #bebec0;
  --color-neutral-800: #ddddde;
  --color-neutral-900: #eceded;
  --color-neutral-1000: #fcfcfc;
  --color-information-100: #081b30;
  --color-information-200: #113760;
  --color-information-300: #19528f;
  --color-information-400: #226ebf;
  --color-information-500: #2a89ef;
  --color-information-600: #55a1f2;
  --color-information-700: #7fb8f5;
  --color-information-800: #aad0f9;
  --color-information-900: #d4e7fc;
  --color-information-1000: #eaf3fd;
  --color-success-100: #042618;
  --color-success-200: #084c30;
  --color-success-300: #0d7248;
  --color-success-400: #119860;
  --color-success-500: #15be78;
  --color-success-600: #44cb93;
  --color-success-700: #73d8ae;
  --color-success-800: #a1e5c9;
  --color-success-900: #d0f2e4;
  --color-success-1000: #e8f9f2;
  --color-error-100: #2e060a;
  --color-error-200: #5c0c14;
  --color-error-300: #8a121e;
  --color-error-400: #b81828;
  --color-error-500: #e61e32;
  --color-error-600: #eb4b5b;
  --color-error-700: #f07884;
  --color-error-800: #f5a5ad;
  --color-error-900: #fad2d6;
  --color-error-1000: #fde9eb;
  --color-warning-100: #322203;
  --color-warning-200: #644406;
  --color-warning-300: #95670a;
  --color-warning-400: #c7890d;
  --color-warning-500: #f9ab10;
  --color-warning-600: #fabc40;
  --color-warning-700: #fbcd70;
  --color-warning-800: #fddd9f;
  --color-warning-900: #feeecf;
  --color-warning-1000: #fef7e7;
  --color-background-default: #0a0a0a;
  --color-background-alt: #1d1d1f;
  --color-background-inverse: #eceded;
  --color-text-default: #bebec0;
  --color-text-secondary: #606266;
  --color-text-inverse: #0a0a0a;
  --color-border-default: #4d4e52;
  --color-border-focus: #fdb3a4;
  --color-feedback-success: #15be78;
  --color-feedback-error: #e61e32;
  --color-feedback-warning: #f9ab10;
  --color-feedback-info: #2a89ef;
  --avatar-bg-color: #4d4e52;
  --avatar-text-color: #bebec0;
  --avatar-border-color: #606266;
  --avatar-initials-bg-color: #262729;
  --avatar-initials-text-color: #fcfcfc;
  --badge-bg-color: #4d4e52;
  --badge-text-color: #eceded;
  --badge-border-color: #606266;
}

/* src/components/atoms/actionTag/ActionTag.scss */
.frota-action-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-2x);
  width: fit-content;
  max-width: 100%;
  padding: var(--padding-4x);
  border-radius: var(--border-radius-sm);
  border: var(--border-width-sm) solid transparent;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-caption-small);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-near);
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  appearance: none;
  transition: filter 0.15s ease-in-out;
}
.frota-action-tag:hover:not(:disabled):not(.frota-action-tag--not-hoverable) {
  filter: brightness(0.92);
}
.frota-action-tag:active:not(:disabled):not(.frota-action-tag--not-hoverable) {
  filter: brightness(0.85);
}
.frota-action-tag:focus-visible {
  outline: 2px solid var(--color-primary-500);
  outline-offset: 2px;
}
.frota-action-tag__label {
  overflow: hidden;
  text-overflow: ellipsis;
}
.frota-action-tag__icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
}
.frota-action-tag__icon svg {
  width: 100%;
  height: 100%;
}
.frota-action-tag--not-hoverable {
  cursor: default;
}
.frota-action-tag--label-caption-medium {
  font-size: var(--font-size-caption-medium);
  line-height: var(--line-height-near);
  font-weight: var(--font-weight-bold);
}
.frota-action-tag--label-body-xsmall {
  font-size: var(--font-size-body-xsmall);
  line-height: var(--line-height-body-xsmall);
  font-weight: var(--font-weight-regular);
}
.frota-action-tag--label-body-small {
  font-size: var(--font-size-body-small);
  line-height: var(--line-height-body-small);
  font-weight: var(--font-weight-regular);
}
.frota-action-tag--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.frota-action-tag--primary.frota-action-tag--accent-off {
  background-color: var(--color-primary-100);
  border-color: var(--color-primary-700);
  color: var(--color-primary-700);
}
.frota-action-tag--primary.frota-action-tag--accent-on {
  background-color: var(--color-primary-500);
  border-color: var(--color-primary-500);
  color: var(--color-neutral-100);
}
.frota-action-tag--secondary.frota-action-tag--accent-off {
  background-color: var(--color-secondary-100);
  border-color: var(--color-secondary-700);
  color: var(--color-secondary-700);
}
.frota-action-tag--secondary.frota-action-tag--accent-on {
  background-color: var(--color-secondary-600);
  border-color: var(--color-secondary-600);
  color: var(--color-neutral-100);
}
.frota-action-tag--neutral.frota-action-tag--accent-off {
  background-color: var(--color-neutral-100);
  border-color: var(--color-neutral-700);
  color: var(--color-neutral-700);
}
.frota-action-tag--neutral.frota-action-tag--accent-on {
  background-color: var(--color-neutral-800);
  border-color: var(--color-neutral-800);
  color: var(--color-neutral-100);
}
.frota-action-tag--info.frota-action-tag--accent-off {
  background-color: var(--color-information-100);
  border-color: var(--color-information-700);
  color: var(--color-information-700);
}
.frota-action-tag--info.frota-action-tag--accent-on {
  background-color: var(--color-information-600);
  border-color: var(--color-information-600);
  color: var(--color-neutral-100);
}
.frota-action-tag--success.frota-action-tag--accent-off {
  background-color: var(--color-success-100);
  border-color: var(--color-success-700);
  color: var(--color-success-700);
}
.frota-action-tag--success.frota-action-tag--accent-on {
  background-color: var(--color-success-600);
  border-color: var(--color-success-600);
  color: var(--color-neutral-100);
}
.frota-action-tag--warning.frota-action-tag--accent-off {
  background-color: var(--color-warning-100);
  border-color: var(--color-warning-700);
  color: var(--color-warning-700);
}
.frota-action-tag--warning.frota-action-tag--accent-on {
  background-color: var(--color-warning-600);
  border-color: var(--color-warning-600);
  color: var(--color-warning-1000);
}
.frota-action-tag--error.frota-action-tag--accent-off {
  background-color: var(--color-error-100);
  border-color: var(--color-error-700);
  color: var(--color-error-700);
}
.frota-action-tag--error.frota-action-tag--accent-on {
  background-color: var(--color-error-600);
  border-color: var(--color-error-600);
  color: var(--color-neutral-100);
}
.frota-action-tag--filter.frota-action-tag--accent-off {
  background-color: var(--color-neutral-100);
  border-color: var(--color-neutral-400);
  color: var(--color-neutral-1000);
}
.frota-action-tag--filter.frota-action-tag--accent-on {
  background-color: var(--color-primary-200);
  border-color: var(--color-primary-500);
  color: var(--color-neutral-1000);
}

/* src/components/atoms/label/Label.scss */
.frota-label {
  font-size: var(--font-size-body-medium);
}

/* src/components/atoms/tabs/Tabs.scss */
.frota-tabs {
  display: flex;
  height: 40px;
  align-items: flex-start;
  flex: 1 0 0;
}
.frota-tabs__tab {
  display: flex;
  height: 40px;
  max-width: 240px;
  align-items: center;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  padding: 0 var(--padding-8x);
  box-sizing: border-box;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-medium);
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-body-medium);
  letter-spacing: 0;
  appearance: none;
  -webkit-user-select: none;
          user-select: none;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.frota-tabs__tab-label {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 1;
}
.frota-tabs__tab--active {
  border-bottom-color: var(--color-primary-500);
  color: var(--color-primary-500);
}
.frota-tabs__tab:hover:not(.frota-tabs__tab--active) {
  border-bottom-color: var(--color-primary-500);
  color: var(--color-primary-500);
}
.frota-tabs__tab:focus-visible {
  outline: 2px solid var(--color-primary-500);
  outline-offset: 2px;
}

/* src/components/atoms/badge/Badge.scss */
.frota-badge {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  width: fit-content;
}
.frota-badge__indicator {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 16px;
  min-width: 16px;
  padding: 0 var(--padding-2x);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-caption-small);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  box-sizing: border-box;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.frota-badge__indicator--primary {
  background-color: var(--color-primary-500);
  color: var(--color-neutral-100);
}
.frota-badge__indicator--error {
  background-color: var(--color-error-700);
  color: var(--color-neutral-100);
}
.frota-badge__indicator--warning {
  background-color: var(--color-warning-500);
  color: var(--color-neutral-1000);
}
.frota-badge__indicator--info {
  background-color: var(--color-information-600);
  color: var(--color-neutral-100);
}
.frota-badge__indicator--success {
  background-color: var(--color-success-600);
  color: var(--color-neutral-100);
}
.frota-badge__indicator--neutral {
  background-color: var(--color-neutral-400);
  color: var(--color-neutral-1000);
}
.frota-badge__indicator--dot {
  padding: 0;
  min-width: 8px;
  min-height: 8px;
  width: 8px;
  height: 8px;
}
.frota-badge__indicator--top-right {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.frota-badge__indicator--top-left {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}
.frota-badge__indicator--bottom-right {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}
.frota-badge__indicator--bottom-left {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}
.frota-badge__indicator--invisible {
  opacity: 0;
  transform: scale(0);
}

/* src/components/atoms/avatar/Avatar.scss */
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-Light-CX5WADKC-eb229bb9406cc043d5a4313f0ecfcb25.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-Regular-55WT6UWF-eca1e21531598d5db58f56b3ba23a8cc.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-SemiBold-R6Y2SZCR-69a8d1d484967aba2389ef57577b76be.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-Bold-SU5XVJMF-1104236696a5d2d1f236f40aa0c491d1.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-primary-100: #fffbfb;
  --color-primary-200: #feece8;
  --color-primary-300: #fed9d1;
  --color-primary-400: #fdb3a4;
  --color-primary-500: #f9401b;
  --color-primary-600: #c73316;
  --color-primary-700: #952610;
  --color-primary-800: #641a0b;
  --color-primary-900: #320d05;
  --color-primary-1000: #270c06;
  --color-secondary-100: #f3f9f4;
  --color-secondary-200: #e8f3ea;
  --color-secondary-300: #d1e6d4;
  --color-secondary-400: #a3cda9;
  --color-secondary-500: #8cc194;
  --color-secondary-600: #739f79;
  --color-secondary-700: #597d5f;
  --color-secondary-800: #405c44;
  --color-secondary-900: #263a2a;
  --color-secondary-1000: #1a291c;
  --color-primary: #f9401b;
  --color-secondary: #feece8;
  --color-neutral-100: #fff;
  --color-neutral-200: #fafafa;
  --color-neutral-300: #eceded;
  --color-neutral-400: #ddddde;
  --color-neutral-500: #bebec0;
  --color-neutral-600: #7F8184;
  --color-neutral-700: #606266;
  --color-neutral-800: #4d4e52;
  --color-neutral-900: #262729;
  --color-neutral-1000: #0a0a0a;
  --color-information-100: #eaf3fd;
  --color-information-200: #d4e7fc;
  --color-information-300: #aad0f9;
  --color-information-400: #7fb8f5;
  --color-information-500: #55a1f2;
  --color-information-600: #2a89ef;
  --color-information-700: #226ebf;
  --color-information-800: #19528f;
  --color-information-900: #113760;
  --color-information-1000: #081b30;
  --color-success-100: #e8f9f2;
  --color-success-200: #d0f2e4;
  --color-success-300: #a1e5c9;
  --color-success-400: #73d8ae;
  --color-success-500: #44cb93;
  --color-success-600: #15be78;
  --color-success-700: #119860;
  --color-success-800: #0d7248;
  --color-success-900: #084c30;
  --color-success-1000: #042618;
  --color-error-100: #fde9eb;
  --color-error-200: #fad2d6;
  --color-error-300: #f5a5ad;
  --color-error-400: #f07884;
  --color-error-500: #eb4b5b;
  --color-error-600: #e61e32;
  --color-error-700: #b81828;
  --color-error-800: #8a121e;
  --color-error-900: #5c0c14;
  --color-error-1000: #2e060a;
  --color-warning-100: #fef7e7;
  --color-warning-200: #feeecf;
  --color-warning-300: #fddd9f;
  --color-warning-400: #fbcd70;
  --color-warning-500: #fabc40;
  --color-warning-600: #f9ab10;
  --color-warning-700: #c7890d;
  --color-warning-800: #95670a;
  --color-warning-900: #644406;
  --color-warning-1000: #322203;
  --color-background-default: #fff;
  --color-background-alt: #fafafa;
  --color-background-inverse: #262729;
  --color-text-default: #606266;
  --color-text-secondary: #bebec0;
  --color-text-inverse: #fff;
  --color-border-default: #ddddde;
  --color-border-hover: #f9401b;
  --color-border-focus: #f9401b;
  --color-feedback-success: #15be78;
  --color-feedback-error: #e61e32;
  --color-feedback-warning: #f9ab10;
  --color-feedback-info: #2a89ef;
  --avatar-bg-color: #ddddde;
  --avatar-text-color: #606266;
  --avatar-border-color: #bebec0;
  --avatar-initials-bg-color: #bebec0;
  --avatar-initials-text-color: #fff;
  --badge-bg-color: #ddddde;
  --badge-text-color: #262729;
  --badge-border-color: #bebec0;
  --padding-0: 0px;
  --padding-1x: 2px;
  --padding-2x: 4px;
  --padding-4x: 8px;
  --padding-5x: 10px;
  --padding-6x: 12px;
  --padding-8x: 16px;
  --padding-10x: 20px;
  --padding-12x: 24px;
  --padding-16x: 32px;
  --padding-20x: 40px;
  --padding-24x: 48px;
  --padding-28x: 56px;
  --padding-32x: 64px;
  --padding-40x: 80px;
  --gap-0: 0px;
  --gap-1x: 2px;
  --gap-2x: 4px;
  --gap-4x: 8px;
  --gap-5x: 10px;
  --gap-6x: 12px;
  --gap-8x: 16px;
  --gap-10x: 20px;
  --gap-12x: 24px;
  --gap-16x: 32px;
  --gap-20x: 40px;
  --gap-24x: 48px;
  --gap-28x: 56px;
  --gap-32x: 64px;
  --gap-40x: 80px;
  --border-radius-none: 0px;
  --border-radius-xsm: 4px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 500px;
  --border-width-none: 0px;
  --border-width-sm: 1px;
  --border-width-md: 2px;
  --border-width-lg: 4px;
  --shadow-none: none;
  --shadow-level-1: 2px 4px 8px 0px rgba(0, 0, 0, 0.08);
  --shadow-level-2: 2px 4px 24px 0px rgba(0, 0, 0, 0.16);
  --shadow-level-3: 2px 8px 32px 0px rgba(0, 0, 0, 0.16);
  --shadow-level-4: 2px 8px 48px 0px rgba(0, 0, 0, 0.32);
  --font-family-primary: Inter, sans-serif;
  --line-height-near: 1;
  --line-height-compact: 1.2;
  --line-height-far: 1.5;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 700;
  --font-size-display-large: 56px;
  --font-size-display-medium: 48px;
  --font-size-display-small: 40px;
  --font-size-h1: 32px;
  --font-size-h2: 24px;
  --font-size-h3: 20px;
  --font-size-h4: 18px;
  --font-size-h5: 16px;
  --font-size-body-large: 18px;
  --font-size-body-medium: 16px;
  --font-size-body-small: 14px;
  --font-size-body-xsmall: 12px;
  --font-size-caption-medium: 12px;
  --font-size-caption-small: 10px;
  --line-height-display-large: 56px;
  --line-height-display-medium: 48px;
  --line-height-display-small: 40px;
  --line-height-h1: 38.4px;
  --line-height-h2: 36px;
  --line-height-h3: 30px;
  --line-height-h4: 27px;
  --line-height-h5: 24px;
  --line-height-body-large: 27px;
  --line-height-body-medium: 24px;
  --line-height-body-small: 21px;
  --line-height-body-xsmall: 18px;
  --line-height-caption-medium: 18px;
  --line-height-caption-small: 14px;
  --breakpoint-xs: 0;
  --breakpoint-sm: 360px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1440px;
  --grid-gutter: 16px;
  --grid-margin: 24px;
  --grid-columns-mobile: 4;
  --grid-columns-desktop: 12;
  --grid-columns-desktop-alt: 8;
}
[data-theme=dark] {
  --color-primary-100: #270c06;
  --color-primary-200: #320d05;
  --color-primary-300: #641a0b;
  --color-primary-400: #952610;
  --color-primary-500: #f9401b;
  --color-primary-600: #fdb3a4;
  --color-primary-700: #fed9d1;
  --color-primary-800: #feece8;
  --color-primary-900: #fffbfb;
  --color-primary-1000: #fffbfb;
  --color-secondary-100: #1a291c;
  --color-secondary-200: #263a2a;
  --color-secondary-300: #405c44;
  --color-secondary-400: #597d5f;
  --color-secondary-500: #8cc194;
  --color-secondary-600: #a3cda9;
  --color-secondary-700: #d1e6d4;
  --color-secondary-800: #e8f3ea;
  --color-secondary-900: #f3f9f4;
  --color-secondary-1000: #f3f9f4;
  --color-primary: #f9401b;
  --color-secondary: #feece8;
  --color-neutral-100: #0a0a0a;
  --color-neutral-200: #1d1d1f;
  --color-neutral-300: #262729;
  --color-neutral-400: #4d4e52;
  --color-neutral-500: #606266;
  --color-neutral-600: #7f8184;
  --color-neutral-700: #bebec0;
  --color-neutral-800: #ddddde;
  --color-neutral-900: #eceded;
  --color-neutral-1000: #fcfcfc;
  --color-information-100: #081b30;
  --color-information-200: #113760;
  --color-information-300: #19528f;
  --color-information-400: #226ebf;
  --color-information-500: #2a89ef;
  --color-information-600: #55a1f2;
  --color-information-700: #7fb8f5;
  --color-information-800: #aad0f9;
  --color-information-900: #d4e7fc;
  --color-information-1000: #eaf3fd;
  --color-success-100: #042618;
  --color-success-200: #084c30;
  --color-success-300: #0d7248;
  --color-success-400: #119860;
  --color-success-500: #15be78;
  --color-success-600: #44cb93;
  --color-success-700: #73d8ae;
  --color-success-800: #a1e5c9;
  --color-success-900: #d0f2e4;
  --color-success-1000: #e8f9f2;
  --color-error-100: #2e060a;
  --color-error-200: #5c0c14;
  --color-error-300: #8a121e;
  --color-error-400: #b81828;
  --color-error-500: #e61e32;
  --color-error-600: #eb4b5b;
  --color-error-700: #f07884;
  --color-error-800: #f5a5ad;
  --color-error-900: #fad2d6;
  --color-error-1000: #fde9eb;
  --color-warning-100: #322203;
  --color-warning-200: #644406;
  --color-warning-300: #95670a;
  --color-warning-400: #c7890d;
  --color-warning-500: #f9ab10;
  --color-warning-600: #fabc40;
  --color-warning-700: #fbcd70;
  --color-warning-800: #fddd9f;
  --color-warning-900: #feeecf;
  --color-warning-1000: #fef7e7;
  --color-background-default: #0a0a0a;
  --color-background-alt: #1d1d1f;
  --color-background-inverse: #eceded;
  --color-text-default: #bebec0;
  --color-text-secondary: #606266;
  --color-text-inverse: #0a0a0a;
  --color-border-default: #4d4e52;
  --color-border-focus: #fdb3a4;
  --color-feedback-success: #15be78;
  --color-feedback-error: #e61e32;
  --color-feedback-warning: #f9ab10;
  --color-feedback-info: #2a89ef;
  --avatar-bg-color: #4d4e52;
  --avatar-text-color: #bebec0;
  --avatar-border-color: #606266;
  --avatar-initials-bg-color: #262729;
  --avatar-initials-text-color: #fcfcfc;
  --badge-bg-color: #4d4e52;
  --badge-text-color: #eceded;
  --badge-border-color: #606266;
}
.frota-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-pill);
  overflow: hidden;
  flex-shrink: 0;
  border: none;
  padding: 0;
  background: none;
  font: inherit;
  color: inherit;
}
.frota-avatar--small {
  width: 24px;
  height: 24px;
  font-size: var(--font-size-body-xsmall);
  line-height: var(--line-height-body-xsmall);
}
.frota-avatar--small svg {
  width: 14px;
  height: 14px;
}
.frota-avatar--medium {
  width: 32px;
  height: 32px;
  font-size: var(--font-size-body-small);
  line-height: var(--line-height-body-small);
}
.frota-avatar--medium svg {
  width: 16px;
  height: 16px;
}
.frota-avatar--large {
  width: 40px;
  height: 40px;
  font-size: var(--font-size-body-medium);
  line-height: var(--line-height-body-medium);
}
.frota-avatar--large svg {
  width: 24px;
  height: 24px;
}
.frota-avatar--initials {
  background-color: var(--color-neutral-1000);
  color: var(--color-neutral-100);
}
.frota-avatar--fallback {
  background-color: var(--color-neutral-300);
  color: var(--color-neutral-600);
}
.frota-avatar--fallback svg {
  color: var(--color-neutral-600);
}
.frota-avatar--interactive {
  cursor: pointer;
}
.frota-avatar--interactive:focus-visible {
  outline: 2px solid var(--color-primary-500);
  outline-offset: 2px;
}
.frota-avatar__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frota-avatar__initials {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-regular);
  text-align: center;
  white-space: nowrap;
}
.frota-avatar__icon {
  width: 60%;
  height: 60%;
}

/* src/components/atoms/button/Button.scss */
.frota-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-4x);
  box-sizing: border-box;
  height: 40px;
  padding: var(--padding-6x) var(--padding-8x);
  border: var(--border-width-sm) solid transparent;
  border-radius: var(--border-radius-sm);
  background-color: transparent;
  color: var(--color-neutral-1000);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-body-small);
  letter-spacing: 0;
  white-space: nowrap;
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    color 0.15s ease-in-out;
  --frota-button-color-main: var(--color-primary-500);
  --frota-button-color-main-hover: var(--color-primary-600);
  --frota-button-color-main-active: var(--color-primary-700);
  --frota-button-color-soft: var(--color-primary-200);
  --frota-button-color-soft-active: var(--color-primary-300);
  --frota-button-text-on-main: var(--color-neutral-100);
}
.frota-button:focus {
  outline: none;
}
.frota-button--full-width {
  width: 100%;
}
.frota-button--small {
  height: 32px;
  padding: var(--padding-4x) var(--padding-6x);
  font-size: var(--font-size-body-xsmall);
  line-height: var(--line-height-body-xsmall);
}
.frota-button--large {
  height: 48px;
  padding: var(--padding-8x) var(--padding-10x);
  font-size: var(--font-size-body-medium);
  line-height: var(--line-height-body-medium);
}
.frota-button__label {
  display: inline-flex;
  align-items: center;
}
.frota-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: currentcolor;
}
.frota-button__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.frota-button--color-primary {
  --frota-button-color-main: var(--color-primary-500);
  --frota-button-color-main-hover: var(--color-primary-600);
  --frota-button-color-main-active: var(--color-primary-700);
  --frota-button-color-soft: var(--color-primary-200);
  --frota-button-color-soft-active: var(--color-primary-300);
  --frota-button-text-on-main: var(--color-neutral-100);
}
.frota-button--color-error {
  --frota-button-color-main: var(--color-error-600);
  --frota-button-color-main-hover: var(--color-error-700);
  --frota-button-color-main-active: var(--color-error-800);
  --frota-button-color-soft: var(--color-error-200);
  --frota-button-color-soft-active: var(--color-error-300);
  --frota-button-text-on-main: var(--color-neutral-100);
}
.frota-button--color-info {
  --frota-button-color-main: var(--color-information-600);
  --frota-button-color-main-hover: var(--color-information-700);
  --frota-button-color-main-active: var(--color-information-800);
  --frota-button-color-soft: var(--color-information-200);
  --frota-button-color-soft-active: var(--color-information-300);
  --frota-button-text-on-main: var(--color-neutral-100);
}
.frota-button--color-success {
  --frota-button-color-main: var(--color-success-600);
  --frota-button-color-main-hover: var(--color-success-700);
  --frota-button-color-main-active: var(--color-success-800);
  --frota-button-color-soft: var(--color-success-200);
  --frota-button-color-soft-active: var(--color-success-300);
  --frota-button-text-on-main: var(--color-neutral-100);
}
.frota-button--color-warning {
  --frota-button-color-main: var(--color-warning-600);
  --frota-button-color-main-hover: var(--color-warning-700);
  --frota-button-color-main-active: var(--color-warning-800);
  --frota-button-color-soft: var(--color-warning-200);
  --frota-button-color-soft-active: var(--color-warning-300);
  --frota-button-text-on-main: var(--color-neutral-1000);
}
.frota-button--primary {
  background-color: var(--color-primary-500);
  border-color: var(--color-primary-500);
  color: var(--color-neutral-100);
}
.frota-button--primary:not(:disabled):not(.frota-button--disabled):hover,
.frota-button--primary:not(:disabled):not(.frota-button--disabled).frota-button--state-hover {
  background-color: var(--color-primary-600);
  border-color: var(--color-primary-600);
}
.frota-button--primary:not(:disabled):not(.frota-button--disabled):active,
.frota-button--primary:not(:disabled):not(.frota-button--disabled).frota-button--state-clicked {
  background-color: var(--color-primary-700);
  border-color: var(--color-primary-700);
}
.frota-button--primary:not(:disabled):not(.frota-button--disabled):focus-visible,
.frota-button--primary:not(:disabled):not(.frota-button--disabled).frota-button--state-focus {
  background-color: var(--color-primary-500);
  border-width: var(--border-width-md);
  border-color: var(--color-primary-600);
}
.frota-button--primary:disabled,
.frota-button--primary.frota-button--disabled {
  background-color: var(--color-neutral-500);
  border-color: var(--color-neutral-500);
  color: var(--color-neutral-700);
}
.frota-button--primary:disabled .frota-button__icon,
.frota-button--primary.frota-button--disabled .frota-button__icon {
  color: var(--color-neutral-800);
}
.frota-button--secondary {
  background-color: var(--color-neutral-100);
  border-color: var(--color-neutral-400);
  color: var(--color-neutral-1000);
}
.frota-button--secondary:not(:disabled):not(.frota-button--disabled):hover,
.frota-button--secondary:not(:disabled):not(.frota-button--disabled).frota-button--state-hover {
  background-color: var(--color-primary-200);
  border-color: var(--color-primary-500);
}
.frota-button--secondary:not(:disabled):not(.frota-button--disabled):active,
.frota-button--secondary:not(:disabled):not(.frota-button--disabled).frota-button--state-clicked {
  background-color: var(--color-primary-300);
  border-color: var(--color-primary-500);
}
.frota-button--secondary:not(:disabled):not(.frota-button--disabled):focus-visible,
.frota-button--secondary:not(:disabled):not(.frota-button--disabled).frota-button--state-focus {
  background-color: var(--color-primary-200);
  border-width: var(--border-width-md);
  border-color: var(--color-primary-500);
}
.frota-button--secondary:disabled,
.frota-button--secondary.frota-button--disabled {
  background-color: var(--color-neutral-300);
  border-color: var(--color-neutral-400);
  color: var(--color-neutral-700);
}
.frota-button--ghost {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-neutral-1000);
}
.frota-button--ghost:not(:disabled):not(.frota-button--disabled):hover,
.frota-button--ghost:not(:disabled):not(.frota-button--disabled).frota-button--state-hover {
  background-color: var(--color-primary-200);
  border-color: var(--color-primary-500);
}
.frota-button--ghost:not(:disabled):not(.frota-button--disabled):active,
.frota-button--ghost:not(:disabled):not(.frota-button--disabled).frota-button--state-clicked {
  background-color: var(--color-primary-300);
  border-color: var(--color-primary-500);
}
.frota-button--ghost:not(:disabled):not(.frota-button--disabled):focus-visible,
.frota-button--ghost:not(:disabled):not(.frota-button--disabled).frota-button--state-focus {
  background-color: var(--color-primary-200);
  border-width: var(--border-width-md);
  border-color: var(--color-primary-500);
}
.frota-button--ghost:disabled,
.frota-button--ghost.frota-button--disabled {
  background-color: var(--color-neutral-100);
  border-color: transparent;
  color: var(--color-neutral-700);
}
.frota-button--ghost:disabled .frota-button__icon,
.frota-button--ghost.frota-button--disabled .frota-button__icon {
  color: var(--color-neutral-600);
}
.frota-button--destructive {
  background-color: transparent;
  border-color: var(--color-error-600);
  color: var(--color-error-600);
}
.frota-button--destructive:not(:disabled):not(.frota-button--disabled):hover,
.frota-button--destructive:not(:disabled):not(.frota-button--disabled).frota-button--state-hover {
  background-color: var(--color-error-100);
  border-color: var(--color-error-600);
}
.frota-button--destructive:not(:disabled):not(.frota-button--disabled):active,
.frota-button--destructive:not(:disabled):not(.frota-button--disabled).frota-button--state-clicked {
  background-color: var(--color-error-700);
  border-color: var(--color-error-600);
  color: var(--color-neutral-100);
}
.frota-button--destructive:not(:disabled):not(.frota-button--disabled):focus-visible,
.frota-button--destructive:not(:disabled):not(.frota-button--disabled).frota-button--state-focus {
  background-color: var(--color-error-500);
  border-width: var(--border-width-md);
  border-color: var(--color-error-600);
  color: var(--color-neutral-100);
}
.frota-button--destructive:disabled,
.frota-button--destructive.frota-button--disabled {
  background-color: var(--color-neutral-100);
  border-color: var(--color-neutral-400);
  color: var(--color-neutral-700);
}
.frota-button--destructive:disabled .frota-button__icon,
.frota-button--destructive.frota-button--disabled .frota-button__icon {
  color: var(--color-neutral-600);
}
.frota-button--contained,
.frota-button--rounded,
.frota-button--pill {
  background-color: var(--frota-button-color-main);
  border-color: var(--frota-button-color-main);
  color: var(--frota-button-text-on-main);
}
.frota-button--contained:not(:disabled):not(.frota-button--disabled):hover,
.frota-button--contained:not(:disabled):not(.frota-button--disabled).frota-button--state-hover,
.frota-button--rounded:not(:disabled):not(.frota-button--disabled):hover,
.frota-button--rounded:not(:disabled):not(.frota-button--disabled).frota-button--state-hover,
.frota-button--pill:not(:disabled):not(.frota-button--disabled):hover,
.frota-button--pill:not(:disabled):not(.frota-button--disabled).frota-button--state-hover {
  background-color: var(--frota-button-color-main-hover);
  border-color: var(--frota-button-color-main-hover);
}
.frota-button--contained:not(:disabled):not(.frota-button--disabled):active,
.frota-button--contained:not(:disabled):not(.frota-button--disabled).frota-button--state-clicked,
.frota-button--rounded:not(:disabled):not(.frota-button--disabled):active,
.frota-button--rounded:not(:disabled):not(.frota-button--disabled).frota-button--state-clicked,
.frota-button--pill:not(:disabled):not(.frota-button--disabled):active,
.frota-button--pill:not(:disabled):not(.frota-button--disabled).frota-button--state-clicked {
  background-color: var(--frota-button-color-main-active);
  border-color: var(--frota-button-color-main-active);
}
.frota-button--contained:not(:disabled):not(.frota-button--disabled):focus-visible,
.frota-button--contained:not(:disabled):not(.frota-button--disabled).frota-button--state-focus,
.frota-button--rounded:not(:disabled):not(.frota-button--disabled):focus-visible,
.frota-button--rounded:not(:disabled):not(.frota-button--disabled).frota-button--state-focus,
.frota-button--pill:not(:disabled):not(.frota-button--disabled):focus-visible,
.frota-button--pill:not(:disabled):not(.frota-button--disabled).frota-button--state-focus {
  border-width: var(--border-width-md);
  border-color: var(--frota-button-color-main-hover);
}
.frota-button--contained:disabled,
.frota-button--contained.frota-button--disabled,
.frota-button--rounded:disabled,
.frota-button--rounded.frota-button--disabled,
.frota-button--pill:disabled,
.frota-button--pill.frota-button--disabled {
  background-color: var(--color-neutral-500);
  border-color: var(--color-neutral-500);
  color: var(--color-neutral-700);
}
.frota-button--contained:disabled .frota-button__icon,
.frota-button--contained.frota-button--disabled .frota-button__icon,
.frota-button--rounded:disabled .frota-button__icon,
.frota-button--rounded.frota-button--disabled .frota-button__icon,
.frota-button--pill:disabled .frota-button__icon,
.frota-button--pill.frota-button--disabled .frota-button__icon {
  color: var(--color-neutral-800);
}
.frota-button--rounded,
.frota-button--pill {
  border-radius: var(--border-radius-pill);
  padding-inline: var(--padding-10x);
}
.frota-button--outlined {
  background-color: transparent;
  border-color: var(--frota-button-color-main);
  color: var(--frota-button-color-main);
}
.frota-button--outlined:not(:disabled):not(.frota-button--disabled):hover,
.frota-button--outlined:not(:disabled):not(.frota-button--disabled).frota-button--state-hover {
  background-color: var(--frota-button-color-soft);
  border-color: var(--frota-button-color-main);
}
.frota-button--outlined:not(:disabled):not(.frota-button--disabled):active,
.frota-button--outlined:not(:disabled):not(.frota-button--disabled).frota-button--state-clicked {
  background-color: var(--frota-button-color-soft-active);
  border-color: var(--frota-button-color-main);
}
.frota-button--outlined:not(:disabled):not(.frota-button--disabled):focus-visible,
.frota-button--outlined:not(:disabled):not(.frota-button--disabled).frota-button--state-focus {
  background-color: var(--frota-button-color-soft);
  border-width: var(--border-width-md);
  border-color: var(--frota-button-color-main);
}
.frota-button--outlined:disabled,
.frota-button--outlined.frota-button--disabled {
  background-color: var(--color-neutral-100);
  border-color: var(--color-neutral-400);
  color: var(--color-neutral-700);
}
.frota-button--outlined:disabled .frota-button__icon,
.frota-button--outlined.frota-button--disabled .frota-button__icon {
  color: var(--color-neutral-600);
}
.frota-button--text {
  background-color: transparent;
  border-color: transparent;
  color: var(--frota-button-color-main);
}
.frota-button--text:not(:disabled):not(.frota-button--disabled):hover,
.frota-button--text:not(:disabled):not(.frota-button--disabled).frota-button--state-hover {
  background-color: var(--frota-button-color-soft);
}
.frota-button--text:not(:disabled):not(.frota-button--disabled):active,
.frota-button--text:not(:disabled):not(.frota-button--disabled).frota-button--state-clicked {
  background-color: var(--frota-button-color-soft-active);
}
.frota-button--text:not(:disabled):not(.frota-button--disabled):focus-visible,
.frota-button--text:not(:disabled):not(.frota-button--disabled).frota-button--state-focus {
  background-color: var(--frota-button-color-soft);
  border-width: var(--border-width-md);
  border-color: var(--frota-button-color-main);
}
.frota-button--text:disabled,
.frota-button--text.frota-button--disabled {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-neutral-700);
}
.frota-button--text:disabled .frota-button__icon,
.frota-button--text.frota-button--disabled .frota-button__icon {
  color: var(--color-neutral-600);
}

/* src/components/atoms/checkbox/Checkbox.scss */
.frota-checkbox__label-wrapper {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  position: relative;
}
.frota-checkbox__label-wrapper--disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.frota-checkbox__native-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
}
.frota-checkbox__native-input:focus-visible + .frota-checkbox__input {
  box-shadow: 0 0 0 3px var(--color-primary);
}
.frota-checkbox__input {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-border-default);
  border-radius: 4px;
  background-color: var(--color-background-default);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}
.frota-checkbox__input .frota-checkbox__icon {
  fill: none;
  color: var(--color-primary);
  width: 18px;
  height: 18px;
  transform: scale(0);
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.frota-checkbox__input--primary.frota-checkbox__input--checked,
.frota-checkbox__input--primary.frota-checkbox__input--indeterminate {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.frota-checkbox__input--primary.frota-checkbox__input--checked .frota-checkbox__icon,
.frota-checkbox__input--primary.frota-checkbox__input--indeterminate .frota-checkbox__icon {
  fill: white;
  transform: scale(1);
}
.frota-checkbox__input--error.frota-checkbox__input--checked,
.frota-checkbox__input--error.frota-checkbox__input--indeterminate {
  background-color: var(--color-background-default);
  border-color: var(--color-feedback-error);
}
.frota-checkbox__input--error.frota-checkbox__input--checked .frota-checkbox__icon,
.frota-checkbox__input--error.frota-checkbox__input--indeterminate .frota-checkbox__icon {
  fill: currentcolor;
  transform: scale(1);
}
.frota-checkbox__input--info.frota-checkbox__input--checked,
.frota-checkbox__input--info.frota-checkbox__input--indeterminate {
  background-color: var(--color-background-default);
  border-color: var(--color-feedback-info);
}
.frota-checkbox__input--info.frota-checkbox__input--checked .frota-checkbox__icon,
.frota-checkbox__input--info.frota-checkbox__input--indeterminate .frota-checkbox__icon {
  fill: currentcolor;
  transform: scale(1);
}
.frota-checkbox__input--success.frota-checkbox__input--checked,
.frota-checkbox__input--success.frota-checkbox__input--indeterminate {
  background-color: var(--color-background-default);
  border-color: var(--color-feedback-success);
}
.frota-checkbox__input--success.frota-checkbox__input--checked .frota-checkbox__icon,
.frota-checkbox__input--success.frota-checkbox__input--indeterminate .frota-checkbox__icon {
  fill: currentcolor;
  transform: scale(1);
}
.frota-checkbox__input--warning.frota-checkbox__input--checked,
.frota-checkbox__input--warning.frota-checkbox__input--indeterminate {
  background-color: var(--color-background-default);
  border-color: var(--color-feedback-warning);
}
.frota-checkbox__input--warning.frota-checkbox__input--checked .frota-checkbox__icon,
.frota-checkbox__input--warning.frota-checkbox__input--indeterminate .frota-checkbox__icon {
  fill: currentcolor;
  transform: scale(1);
}
.frota-checkbox__label {
  margin-left: 8px;
  font-size: 1rem;
  color: var(--color-text-default);
}

/* src/components/atoms/chip/Chip.scss */
.frota-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-2x);
  padding: var(--padding-4x);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-neutral-400);
  background-color: var(--color-neutral-100);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-body-xsmall);
  line-height: var(--line-height-compact);
  transition: all 0.2s ease-in-out;
  cursor: default;
  -webkit-user-select: none;
          user-select: none;
  text-align: left;
  -webkit-text-decoration: none;
  text-decoration: none;
  appearance: none;
}
.frota-chip--neutral {
  border-color: var(--color-neutral-400);
  background-color: var(--color-neutral-100);
}
.frota-chip--neutral .frota-chip__icon svg {
  color: var(--color-neutral-1000);
}
.frota-chip--neutral.frota-chip--selected {
  background-color: var(--color-neutral-200);
  border-color: var(--color-neutral-1000);
}
.frota-chip--primary {
  border-color: var(--color-neutral-400);
  background-color: var(--color-neutral-100);
}
.frota-chip--primary .frota-chip__icon svg {
  color: var(--color-primary-500);
}
.frota-chip--primary.frota-chip--selected {
  background-color: var(--color-primary-200);
  border-color: var(--color-primary-500);
}
.frota-chip--primary-dark {
  border-color: var(--color-neutral-400);
  background-color: var(--color-neutral-100);
}
.frota-chip--primary-dark .frota-chip__icon svg {
  color: var(--color-primary-700);
}
.frota-chip--primary-dark.frota-chip--selected {
  background-color: var(--color-primary-200);
  border-color: var(--color-primary-700);
}
.frota-chip--red {
  border-color: var(--color-neutral-400);
  background-color: var(--color-neutral-100);
}
.frota-chip--red .frota-chip__icon svg {
  color: var(--color-error-600);
}
.frota-chip--red.frota-chip--selected {
  background-color: var(--color-error-200);
  border-color: var(--color-error-600);
}
.frota-chip--red-dark {
  border-color: var(--color-neutral-400);
  background-color: var(--color-neutral-100);
}
.frota-chip--red-dark .frota-chip__icon svg {
  color: var(--color-error-800);
}
.frota-chip--red-dark.frota-chip--selected {
  background-color: var(--color-error-100);
  border-color: var(--color-error-800);
}
.frota-chip--yellow {
  border-color: var(--color-neutral-400);
  background-color: var(--color-neutral-100);
}
.frota-chip--yellow .frota-chip__icon svg {
  color: var(--color-warning-600);
}
.frota-chip--yellow.frota-chip--selected {
  background-color: var(--color-warning-200);
  border-color: var(--color-warning-600);
}
.frota-chip--blue {
  border-color: var(--color-neutral-400);
  background-color: var(--color-neutral-100);
}
.frota-chip--blue .frota-chip__icon svg {
  color: var(--color-information-600);
}
.frota-chip--blue.frota-chip--selected {
  background-color: var(--color-information-200);
  border-color: var(--color-information-600);
}
.frota-chip--green {
  border-color: var(--color-neutral-400);
  background-color: var(--color-neutral-100);
}
.frota-chip--green .frota-chip__icon svg {
  color: var(--color-success-600);
}
.frota-chip--green.frota-chip--selected {
  background-color: var(--color-success-200);
  border-color: var(--color-success-600);
}
.frota-chip--selected {
  font-weight: var(--font-weight-medium);
}
.frota-chip--clickable {
  cursor: pointer;
}
.frota-chip--clickable:hover:not(.frota-chip--disabled) {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
.frota-chip--clickable:active:not(.frota-chip--disabled) {
  transform: translateY(0);
}
.frota-chip--with-close {
  position: relative;
  padding: 0;
}
.frota-chip--with-close .frota-chip__action {
  padding: var(--padding-4x);
  padding-right: var(--gap-2x);
}
.frota-chip--with-close .frota-chip__close {
  position: relative;
  z-index: 1;
  margin-right: var(--gap-2x);
}
.frota-chip--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.frota-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.frota-chip__icon svg {
  width: 100%;
  height: 100%;
}
.frota-chip__trailing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.frota-chip__trailing-icon svg {
  width: 100%;
  height: 100%;
}
.frota-chip__action {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-2x);
  padding: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
  flex: 1;
  min-width: 0;
}
.frota-chip__action:disabled {
  cursor: not-allowed;
}
.frota-chip__action:focus-visible {
  outline: none;
}
.frota-chip__label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.frota-chip__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--border-radius-md);
  min-height: var(--border-radius-md);
  padding: 0 var(--gap-2x);
  border-radius: var(--border-radius-md);
  flex-shrink: 0;
  background-color: var(--color-neutral-400);
  color: var(--color-neutral-1000);
}
.frota-chip__badge--neutral.frota-chip__badge--selected {
  background-color: var(--color-neutral-1000);
  color: var(--color-neutral-100);
}
.frota-chip__badge--primary.frota-chip__badge--selected {
  background-color: var(--color-primary-500);
  color: var(--color-neutral-100);
}
.frota-chip__badge--primary-dark.frota-chip__badge--selected {
  background-color: var(--color-primary-700);
  color: var(--color-neutral-100);
}
.frota-chip__badge--red.frota-chip__badge--selected {
  background-color: var(--color-error-600);
  color: var(--color-neutral-100);
}
.frota-chip__badge--red-dark.frota-chip__badge--selected {
  background-color: var(--color-error-800);
  color: var(--color-neutral-100);
}
.frota-chip__badge--yellow.frota-chip__badge--selected {
  background-color: var(--color-warning-600);
  color: var(--color-neutral-100);
}
.frota-chip__badge--blue.frota-chip__badge--selected {
  background-color: var(--color-information-600);
  color: var(--color-neutral-100);
}
.frota-chip__badge--green.frota-chip__badge--selected {
  background-color: var(--color-success-600);
  color: var(--color-neutral-100);
}
.frota-chip__badge-count {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  font-size: 10px;
  line-height: 18px;
  text-transform: uppercase;
}
.frota-chip__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
  color: var(--color-error-600);
}
.frota-chip__close svg {
  color: var(--color-error-600);
}
.frota-chip__close:hover:not(:disabled) {
  opacity: 0.7;
}
.frota-chip__close:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.frota-chip:focus-visible {
  outline: 2px solid var(--color-primary-500);
  outline-offset: var(--padding-1x);
}
.frota-chip__close:focus-visible {
  outline: 2px solid var(--color-primary-500);
  outline-offset: var(--padding-1x);
  border-radius: var(--border-radius-xsm);
}

/* src/components/atoms/iconButton/IconButton.scss */
.frota-icon-button {
  appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  line-height: 1;
  -webkit-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  padding: 0;
  transition:
    background-color 200ms ease-in-out,
    border-color 200ms ease-in-out,
    color 200ms ease-in-out;
}
.frota-icon-button--medium {
  width: 40px;
  height: 40px;
  padding: var(--padding-5x);
}
.frota-icon-button--medium svg {
  height: 20px;
  width: 20px;
}
.frota-icon-button--small {
  width: 32px;
  height: 32px;
  padding: var(--padding-4x);
}
.frota-icon-button--small svg {
  height: 16px;
  width: 16px;
}
.frota-icon-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.frota-icon-button__icon svg {
  display: block;
}
.frota-icon-button--rounded {
  border-radius: var(--border-radius-pill);
  background-color: var(--color-neutral-100);
  border: var(--border-width-sm) solid var(--color-neutral-400);
}
.frota-icon-button--rounded:hover:not(:disabled) {
  background-color: var(--color-primary-200);
  border-color: var(--color-primary-400);
  color: var(--color-primary-500);
}
.frota-icon-button--rounded:active:not(:disabled) {
  background-color: var(--color-primary-300);
  border-color: var(--color-primary-400);
  color: var(--color-primary-500);
}
.frota-icon-button--rounded:focus-visible:not(:disabled) {
  background-color: var(--color-primary-200);
  border-width: 2px;
  border-color: var(--color-primary-400);
  color: var(--color-primary-500);
}
.frota-icon-button--outlined {
  border-radius: var(--border-radius-sm);
  background-color: var(--color-neutral-100);
  border: var(--border-width-sm) solid var(--color-neutral-400);
}
.frota-icon-button--outlined:hover:not(:disabled) {
  background-color: var(--color-primary-200);
  border-color: var(--color-primary-400);
  color: var(--color-primary-500);
}
.frota-icon-button--outlined:active:not(:disabled) {
  background-color: var(--color-primary-300);
  border-color: var(--color-primary-400);
  color: var(--color-primary-500);
}
.frota-icon-button--outlined:focus-visible:not(:disabled) {
  background-color: var(--color-primary-200);
  border-width: 2px;
  border-color: var(--color-primary-400);
  color: var(--color-primary-500);
}
.frota-icon-button--ghost {
  border-radius: var(--border-radius-sm);
  background-color: transparent;
  border: none;
}
.frota-icon-button--ghost:hover:not(:disabled) {
  background-color: var(--color-primary-200);
  color: var(--color-primary-500);
}
.frota-icon-button--ghost:active:not(:disabled) {
  background-color: var(--color-primary-300);
  color: var(--color-primary-500);
}
.frota-icon-button--ghost:focus-visible:not(:disabled) {
  background-color: var(--color-primary-200);
  color: var(--color-primary-500);
}
.frota-icon-button--neutral {
  color: var(--color-neutral-1000);
}
.frota-icon-button--primary {
  color: var(--color-primary-500);
}
.frota-icon-button--disabled {
  cursor: not-allowed;
  pointer-events: none;
  color: var(--color-neutral-600);
  background-color: var(--color-neutral-300);
  border-color: var(--color-neutral-400);
}
.frota-icon-button--disabled.frota-icon-button--ghost {
  border: none;
}

/* src/components/atoms/image/Image.scss */
.frota-image {
  display: block;
  object-fit: cover;
  background-color: #f0f0f0;
  border: 1px solid #e0e0e0;
}
.frota-image--rounded {
  border-radius: 8px;
}
.frota-image--circular {
  border-radius: 50%;
}
.frota-image--default {
  border-radius: "none";
}
.frota-image--small {
  width: 64px;
  height: 64px;
}
.frota-image--medium {
  width: 128px;
  height: 128px;
}
.frota-image--large {
  width: 256px;
  height: 256px;
}

/* src/components/atoms/paper/Paper.scss */
.frota-paper {
  background-color: var(--color-background-default, #fff);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.frota-paper--rounded {
  border-radius: 8px;
}
.frota-paper--square {
  border-radius: 0;
}
.frota-paper--elevation-0 {
  box-shadow: none;
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-border-default, #333);
}
.frota-paper--elevation-1 {
  box-shadow:
    0 2px 1px -1px rgba(0, 0, 0, 0.2),
    0 1px 1px 0 rgba(0, 0, 0, 0.14),
    0 1px 3px 0 rgba(0, 0, 0, 0.12);
}
.frota-paper--elevation-2 {
  box-shadow:
    0 3px 3px -2px rgba(0, 0, 0, 0.2),
    0 3px 4px 0 rgba(0, 0, 0, 0.14),
    0 1px 8px 0 rgba(0, 0, 0, 0.12);
}
.frota-paper--elevation-3 {
  box-shadow:
    0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 5px 8px 0 rgba(0, 0, 0, 0.14),
    0 1px 14px 0 rgba(0, 0, 0, 0.12);
}
.frota-paper--elevation-4 {
  box-shadow:
    0 2px 4px -1px rgba(0, 0, 0, 0.2),
    0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.frota-paper--elevation-5 {
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.frota-paper--elevation-6 {
  box-shadow:
    0 6px 6px -3px rgba(0, 0, 0, 0.2),
    0 10px 14px 1px rgba(0, 0, 0, 0.14),
    0 4px 18px 3px rgba(0, 0, 0, 0.12);
}
.frota-paper--elevation-7 {
  box-shadow:
    0 7px 8px -4px rgba(0, 0, 0, 0.2),
    0 12px 17px 2px rgba(0, 0, 0, 0.14),
    0 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.frota-paper--elevation-8 {
  box-shadow:
    0 8px 10px -5px rgba(0, 0, 0, 0.2),
    0 14px 20px 2px rgba(0, 0, 0, 0.14),
    0 5px 24px 4px rgba(0, 0, 0, 0.12);
}

/* src/components/atoms/stack/Stack.scss */
.frota-stack {
  display: flex;
}
.frota-stack--direction-row {
  flex-direction: row;
}
.frota-stack--direction-column {
  flex-direction: column;
}
.frota-stack--direction-row-reverse {
  flex-direction: row-reverse;
}
.frota-stack--direction-column-reverse {
  flex-direction: column-reverse;
}
.frota-stack--spacing-0 {
  gap: 0;
}
.frota-stack--spacing-1 {
  gap: 0.5rem;
}
.frota-stack--spacing-2 {
  gap: 1rem;
}
.frota-stack--spacing-3 {
  gap: 1.5rem;
}
.frota-stack--spacing-4 {
  gap: 2rem;
}
.frota-stack--spacing-5 {
  gap: 2.5rem;
}
.frota-stack--spacing-6 {
  gap: 3rem;
}
.frota-stack--spacing-7 {
  gap: 3.5rem;
}
.frota-stack--spacing-8 {
  gap: 4rem;
}
.frota-stack--spacing-9 {
  gap: 4.5rem;
}
.frota-stack--spacing-10 {
  gap: 5rem;
}
.frota-stack--spacing-11 {
  gap: 5.5rem;
}
.frota-stack--spacing-12 {
  gap: 6rem;
}
.frota-stack--spacing-13 {
  gap: 6.5rem;
}
.frota-stack--spacing-14 {
  gap: 7rem;
}
.frota-stack--spacing-15 {
  gap: 7.5rem;
}
.frota-stack--spacing-16 {
  gap: 8rem;
}
.frota-stack--spacing-17 {
  gap: 8.5rem;
}
.frota-stack--spacing-18 {
  gap: 9rem;
}
.frota-stack--spacing-19 {
  gap: 9.5rem;
}
.frota-stack--spacing-20 {
  gap: 10rem;
}
.frota-stack--spacing-xs-0 {
  gap: 0;
}
.frota-stack--spacing-xs-1 {
  gap: 0.5rem;
}
.frota-stack--spacing-xs-2 {
  gap: 1rem;
}
.frota-stack--spacing-xs-3 {
  gap: 1.5rem;
}
.frota-stack--spacing-xs-4 {
  gap: 2rem;
}
.frota-stack--spacing-xs-5 {
  gap: 2.5rem;
}
.frota-stack--spacing-xs-6 {
  gap: 3rem;
}
.frota-stack--spacing-xs-7 {
  gap: 3.5rem;
}
.frota-stack--spacing-xs-8 {
  gap: 4rem;
}
.frota-stack--spacing-xs-9 {
  gap: 4.5rem;
}
.frota-stack--spacing-xs-10 {
  gap: 5rem;
}
.frota-stack--spacing-xs-11 {
  gap: 5.5rem;
}
.frota-stack--spacing-xs-12 {
  gap: 6rem;
}
.frota-stack--spacing-xs-13 {
  gap: 6.5rem;
}
.frota-stack--spacing-xs-14 {
  gap: 7rem;
}
.frota-stack--spacing-xs-15 {
  gap: 7.5rem;
}
.frota-stack--spacing-xs-16 {
  gap: 8rem;
}
.frota-stack--spacing-xs-17 {
  gap: 8.5rem;
}
.frota-stack--spacing-xs-18 {
  gap: 9rem;
}
.frota-stack--spacing-xs-19 {
  gap: 9.5rem;
}
.frota-stack--spacing-xs-20 {
  gap: 10rem;
}
@media (min-width: 360px) {
  .frota-stack--spacing-sm-0 {
    gap: 0;
  }
  .frota-stack--spacing-sm-1 {
    gap: 0.5rem;
  }
  .frota-stack--spacing-sm-2 {
    gap: 1rem;
  }
  .frota-stack--spacing-sm-3 {
    gap: 1.5rem;
  }
  .frota-stack--spacing-sm-4 {
    gap: 2rem;
  }
  .frota-stack--spacing-sm-5 {
    gap: 2.5rem;
  }
  .frota-stack--spacing-sm-6 {
    gap: 3rem;
  }
  .frota-stack--spacing-sm-7 {
    gap: 3.5rem;
  }
  .frota-stack--spacing-sm-8 {
    gap: 4rem;
  }
  .frota-stack--spacing-sm-9 {
    gap: 4.5rem;
  }
  .frota-stack--spacing-sm-10 {
    gap: 5rem;
  }
  .frota-stack--spacing-sm-11 {
    gap: 5.5rem;
  }
  .frota-stack--spacing-sm-12 {
    gap: 6rem;
  }
  .frota-stack--spacing-sm-13 {
    gap: 6.5rem;
  }
  .frota-stack--spacing-sm-14 {
    gap: 7rem;
  }
  .frota-stack--spacing-sm-15 {
    gap: 7.5rem;
  }
  .frota-stack--spacing-sm-16 {
    gap: 8rem;
  }
  .frota-stack--spacing-sm-17 {
    gap: 8.5rem;
  }
  .frota-stack--spacing-sm-18 {
    gap: 9rem;
  }
  .frota-stack--spacing-sm-19 {
    gap: 9.5rem;
  }
  .frota-stack--spacing-sm-20 {
    gap: 10rem;
  }
}
@media (min-width: 768px) {
  .frota-stack--spacing-md-0 {
    gap: 0;
  }
  .frota-stack--spacing-md-1 {
    gap: 0.5rem;
  }
  .frota-stack--spacing-md-2 {
    gap: 1rem;
  }
  .frota-stack--spacing-md-3 {
    gap: 1.5rem;
  }
  .frota-stack--spacing-md-4 {
    gap: 2rem;
  }
  .frota-stack--spacing-md-5 {
    gap: 2.5rem;
  }
  .frota-stack--spacing-md-6 {
    gap: 3rem;
  }
  .frota-stack--spacing-md-7 {
    gap: 3.5rem;
  }
  .frota-stack--spacing-md-8 {
    gap: 4rem;
  }
  .frota-stack--spacing-md-9 {
    gap: 4.5rem;
  }
  .frota-stack--spacing-md-10 {
    gap: 5rem;
  }
  .frota-stack--spacing-md-11 {
    gap: 5.5rem;
  }
  .frota-stack--spacing-md-12 {
    gap: 6rem;
  }
  .frota-stack--spacing-md-13 {
    gap: 6.5rem;
  }
  .frota-stack--spacing-md-14 {
    gap: 7rem;
  }
  .frota-stack--spacing-md-15 {
    gap: 7.5rem;
  }
  .frota-stack--spacing-md-16 {
    gap: 8rem;
  }
  .frota-stack--spacing-md-17 {
    gap: 8.5rem;
  }
  .frota-stack--spacing-md-18 {
    gap: 9rem;
  }
  .frota-stack--spacing-md-19 {
    gap: 9.5rem;
  }
  .frota-stack--spacing-md-20 {
    gap: 10rem;
  }
}
@media (min-width: 1024px) {
  .frota-stack--spacing-lg-0 {
    gap: 0;
  }
  .frota-stack--spacing-lg-1 {
    gap: 0.5rem;
  }
  .frota-stack--spacing-lg-2 {
    gap: 1rem;
  }
  .frota-stack--spacing-lg-3 {
    gap: 1.5rem;
  }
  .frota-stack--spacing-lg-4 {
    gap: 2rem;
  }
  .frota-stack--spacing-lg-5 {
    gap: 2.5rem;
  }
  .frota-stack--spacing-lg-6 {
    gap: 3rem;
  }
  .frota-stack--spacing-lg-7 {
    gap: 3.5rem;
  }
  .frota-stack--spacing-lg-8 {
    gap: 4rem;
  }
  .frota-stack--spacing-lg-9 {
    gap: 4.5rem;
  }
  .frota-stack--spacing-lg-10 {
    gap: 5rem;
  }
  .frota-stack--spacing-lg-11 {
    gap: 5.5rem;
  }
  .frota-stack--spacing-lg-12 {
    gap: 6rem;
  }
  .frota-stack--spacing-lg-13 {
    gap: 6.5rem;
  }
  .frota-stack--spacing-lg-14 {
    gap: 7rem;
  }
  .frota-stack--spacing-lg-15 {
    gap: 7.5rem;
  }
  .frota-stack--spacing-lg-16 {
    gap: 8rem;
  }
  .frota-stack--spacing-lg-17 {
    gap: 8.5rem;
  }
  .frota-stack--spacing-lg-18 {
    gap: 9rem;
  }
  .frota-stack--spacing-lg-19 {
    gap: 9.5rem;
  }
  .frota-stack--spacing-lg-20 {
    gap: 10rem;
  }
}
@media (min-width: 1440px) {
  .frota-stack--spacing-xl-0 {
    gap: 0;
  }
  .frota-stack--spacing-xl-1 {
    gap: 0.5rem;
  }
  .frota-stack--spacing-xl-2 {
    gap: 1rem;
  }
  .frota-stack--spacing-xl-3 {
    gap: 1.5rem;
  }
  .frota-stack--spacing-xl-4 {
    gap: 2rem;
  }
  .frota-stack--spacing-xl-5 {
    gap: 2.5rem;
  }
  .frota-stack--spacing-xl-6 {
    gap: 3rem;
  }
  .frota-stack--spacing-xl-7 {
    gap: 3.5rem;
  }
  .frota-stack--spacing-xl-8 {
    gap: 4rem;
  }
  .frota-stack--spacing-xl-9 {
    gap: 4.5rem;
  }
  .frota-stack--spacing-xl-10 {
    gap: 5rem;
  }
  .frota-stack--spacing-xl-11 {
    gap: 5.5rem;
  }
  .frota-stack--spacing-xl-12 {
    gap: 6rem;
  }
  .frota-stack--spacing-xl-13 {
    gap: 6.5rem;
  }
  .frota-stack--spacing-xl-14 {
    gap: 7rem;
  }
  .frota-stack--spacing-xl-15 {
    gap: 7.5rem;
  }
  .frota-stack--spacing-xl-16 {
    gap: 8rem;
  }
  .frota-stack--spacing-xl-17 {
    gap: 8.5rem;
  }
  .frota-stack--spacing-xl-18 {
    gap: 9rem;
  }
  .frota-stack--spacing-xl-19 {
    gap: 9.5rem;
  }
  .frota-stack--spacing-xl-20 {
    gap: 10rem;
  }
}
.frota-stack--justify-flex-start {
  justify-content: flex-start;
}
.frota-stack--justify-flex-end {
  justify-content: flex-end;
}
.frota-stack--justify-center {
  justify-content: center;
}
.frota-stack--justify-space-between {
  justify-content: space-between;
}
.frota-stack--justify-space-around {
  justify-content: space-around;
}
.frota-stack--justify-space-evenly {
  justify-content: space-evenly;
}
.frota-stack--align-flex-start {
  align-items: flex-start;
}
.frota-stack--align-flex-end {
  align-items: flex-end;
}
.frota-stack--align-center {
  align-items: center;
}
.frota-stack--align-baseline {
  align-items: baseline;
}
.frota-stack--align-stretch {
  align-items: stretch;
}
.frota-stack--wrap-nowrap {
  flex-wrap: nowrap;
}
.frota-stack--wrap-wrap {
  flex-wrap: wrap;
}
.frota-stack--wrap-wrap-reverse {
  flex-wrap: wrap-reverse;
}

/* src/components/atoms/tag/Tag.scss */
.frota-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  padding: var(--padding-1x) var(--padding-4x);
  border-radius: var(--border-radius-pill);
  box-sizing: border-box;
  cursor: default;
  -webkit-user-select: none;
          user-select: none;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-caption-medium);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-near);
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}
.frota-tag--hoverable {
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
}
.frota-tag__label {
  overflow: hidden;
  text-overflow: ellipsis;
}
.frota-tag--primary.frota-tag--accent-off {
  background-color: var(--color-primary-200);
  color: var(--color-primary-800);
}
.frota-tag--primary.frota-tag--accent-off.frota-tag--hoverable:hover {
  background-color: var(--color-primary-300);
}
.frota-tag--primary.frota-tag--accent-on {
  background-color: var(--color-primary-500);
  color: var(--color-neutral-100);
}
.frota-tag--primary.frota-tag--accent-on.frota-tag--hoverable:hover {
  background-color: var(--color-primary-600);
}
.frota-tag--secondary.frota-tag--accent-off {
  background-color: var(--color-secondary-200);
  color: var(--color-secondary-800);
}
.frota-tag--secondary.frota-tag--accent-off.frota-tag--hoverable:hover {
  background-color: var(--color-secondary-300);
}
.frota-tag--secondary.frota-tag--accent-on {
  background-color: var(--color-secondary-600);
  color: var(--color-neutral-100);
}
.frota-tag--secondary.frota-tag--accent-on.frota-tag--hoverable:hover {
  background-color: var(--color-secondary-700);
}
.frota-tag--neutral.frota-tag--accent-off {
  background-color: var(--color-neutral-300);
  color: var(--color-neutral-800);
}
.frota-tag--neutral.frota-tag--accent-off.frota-tag--hoverable:hover {
  background-color: var(--color-neutral-400);
}
.frota-tag--neutral.frota-tag--accent-on {
  background-color: var(--color-neutral-800);
  color: var(--color-neutral-100);
}
.frota-tag--neutral.frota-tag--accent-on.frota-tag--hoverable:hover {
  background-color: var(--color-neutral-900);
}
.frota-tag--info.frota-tag--accent-off {
  background-color: var(--color-information-200);
  color: var(--color-information-800);
}
.frota-tag--info.frota-tag--accent-off.frota-tag--hoverable:hover {
  background-color: var(--color-information-300);
}
.frota-tag--info.frota-tag--accent-on {
  background-color: var(--color-information-600);
  color: var(--color-neutral-100);
}
.frota-tag--info.frota-tag--accent-on.frota-tag--hoverable:hover {
  background-color: var(--color-information-700);
}
.frota-tag--success.frota-tag--accent-off {
  background-color: var(--color-success-200);
  color: var(--color-success-800);
}
.frota-tag--success.frota-tag--accent-off.frota-tag--hoverable:hover {
  background-color: var(--color-success-300);
}
.frota-tag--success.frota-tag--accent-on {
  background-color: var(--color-success-600);
  color: var(--color-neutral-100);
}
.frota-tag--success.frota-tag--accent-on.frota-tag--hoverable:hover {
  background-color: var(--color-success-700);
}
.frota-tag--warning.frota-tag--accent-off {
  background-color: var(--color-warning-200);
  color: var(--color-warning-800);
}
.frota-tag--warning.frota-tag--accent-off.frota-tag--hoverable:hover {
  background-color: var(--color-warning-300);
}
.frota-tag--warning.frota-tag--accent-on {
  background-color: var(--color-warning-600);
  color: var(--color-warning-1000);
}
.frota-tag--warning.frota-tag--accent-on.frota-tag--hoverable:hover {
  background-color: var(--color-warning-700);
}
.frota-tag--error.frota-tag--accent-off {
  background-color: var(--color-error-200);
  color: var(--color-error-800);
}
.frota-tag--error.frota-tag--accent-off.frota-tag--hoverable:hover {
  background-color: var(--color-error-300);
}
.frota-tag--error.frota-tag--accent-on {
  background-color: var(--color-error-600);
  color: var(--color-neutral-100);
}
.frota-tag--error.frota-tag--accent-on.frota-tag--hoverable:hover {
  background-color: var(--color-error-700);
}

/* src/components/atoms/tooltip/Tooltip.scss */
.frota-tooltip__trigger {
  display: inline-block;
}
.frota-tooltip__popper {
  position: fixed;
  background-color: rgba(97, 97, 97, 0.92);
  color: #fff;
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4em;
  max-width: 300px;
  overflow-wrap: break-word;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin: 0;
  box-sizing: border-box;
}
.frota-tooltip__popper--visible {
  opacity: 0;
  visibility: visible;
}
.frota-tooltip__popper--visible.frota-tooltip__popper--positioned {
  opacity: 1;
}
.frota-tooltip__content {
  position: relative;
  z-index: 1;
}
.frota-tooltip__arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.frota-tooltip__arrow--top {
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px 5px 0;
  border-color: rgba(97, 97, 97, 0.92) transparent transparent;
}
.frota-tooltip__arrow--bottom {
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 5px 5px;
  border-color: transparent transparent rgba(97, 97, 97, 0.92);
}
.frota-tooltip__arrow--left {
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent rgba(97, 97, 97, 0.92);
}
.frota-tooltip__arrow--right {
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 5px 5px 0;
  border-color: transparent rgba(97, 97, 97, 0.92) transparent transparent;
}

/* src/components/atoms/typography/Typography.scss */
.frota-typography {
  margin: 0;
  font-family: var(--font-family-primary);
}
.frota-typography--color-primary-100 {
  color: var(--color-primary-100);
}
.frota-typography--color-primary-200 {
  color: var(--color-primary-200);
}
.frota-typography--color-primary-300 {
  color: var(--color-primary-300);
}
.frota-typography--color-primary-400 {
  color: var(--color-primary-400);
}
.frota-typography--color-primary-500 {
  color: var(--color-primary-500);
}
.frota-typography--color-primary-600 {
  color: var(--color-primary-600);
}
.frota-typography--color-primary-700 {
  color: var(--color-primary-700);
}
.frota-typography--color-primary-800 {
  color: var(--color-primary-800);
}
.frota-typography--color-primary-900 {
  color: var(--color-primary-900);
}
.frota-typography--color-primary-1000 {
  color: var(--color-primary-1000);
}
.frota-typography--color-secondary-100 {
  color: var(--color-secondary-100);
}
.frota-typography--color-secondary-200 {
  color: var(--color-secondary-200);
}
.frota-typography--color-secondary-300 {
  color: var(--color-secondary-300);
}
.frota-typography--color-secondary-400 {
  color: var(--color-secondary-400);
}
.frota-typography--color-secondary-500 {
  color: var(--color-secondary-500);
}
.frota-typography--color-secondary-600 {
  color: var(--color-secondary-600);
}
.frota-typography--color-secondary-700 {
  color: var(--color-secondary-700);
}
.frota-typography--color-secondary-800 {
  color: var(--color-secondary-800);
}
.frota-typography--color-secondary-900 {
  color: var(--color-secondary-900);
}
.frota-typography--color-secondary-1000 {
  color: var(--color-secondary-1000);
}
.frota-typography--color-neutral-100 {
  color: var(--color-neutral-100);
}
.frota-typography--color-neutral-200 {
  color: var(--color-neutral-200);
}
.frota-typography--color-neutral-300 {
  color: var(--color-neutral-300);
}
.frota-typography--color-neutral-400 {
  color: var(--color-neutral-400);
}
.frota-typography--color-neutral-500 {
  color: var(--color-neutral-500);
}
.frota-typography--color-neutral-600 {
  color: var(--color-neutral-600);
}
.frota-typography--color-neutral-700 {
  color: var(--color-neutral-700);
}
.frota-typography--color-neutral-800 {
  color: var(--color-neutral-800);
}
.frota-typography--color-neutral-900 {
  color: var(--color-neutral-900);
}
.frota-typography--color-neutral-1000 {
  color: var(--color-neutral-1000);
}
.frota-typography--color-information-100 {
  color: var(--color-information-100);
}
.frota-typography--color-information-200 {
  color: var(--color-information-200);
}
.frota-typography--color-information-300 {
  color: var(--color-information-300);
}
.frota-typography--color-information-400 {
  color: var(--color-information-400);
}
.frota-typography--color-information-500 {
  color: var(--color-information-500);
}
.frota-typography--color-information-600 {
  color: var(--color-information-600);
}
.frota-typography--color-information-700 {
  color: var(--color-information-700);
}
.frota-typography--color-information-800 {
  color: var(--color-information-800);
}
.frota-typography--color-information-900 {
  color: var(--color-information-900);
}
.frota-typography--color-information-1000 {
  color: var(--color-information-1000);
}
.frota-typography--color-success-100 {
  color: var(--color-success-100);
}
.frota-typography--color-success-200 {
  color: var(--color-success-200);
}
.frota-typography--color-success-300 {
  color: var(--color-success-300);
}
.frota-typography--color-success-400 {
  color: var(--color-success-400);
}
.frota-typography--color-success-500 {
  color: var(--color-success-500);
}
.frota-typography--color-success-600 {
  color: var(--color-success-600);
}
.frota-typography--color-success-700 {
  color: var(--color-success-700);
}
.frota-typography--color-success-800 {
  color: var(--color-success-800);
}
.frota-typography--color-success-900 {
  color: var(--color-success-900);
}
.frota-typography--color-success-1000 {
  color: var(--color-success-1000);
}
.frota-typography--color-error-100 {
  color: var(--color-error-100);
}
.frota-typography--color-error-200 {
  color: var(--color-error-200);
}
.frota-typography--color-error-300 {
  color: var(--color-error-300);
}
.frota-typography--color-error-400 {
  color: var(--color-error-400);
}
.frota-typography--color-error-500 {
  color: var(--color-error-500);
}
.frota-typography--color-error-600 {
  color: var(--color-error-600);
}
.frota-typography--color-error-700 {
  color: var(--color-error-700);
}
.frota-typography--color-error-800 {
  color: var(--color-error-800);
}
.frota-typography--color-error-900 {
  color: var(--color-error-900);
}
.frota-typography--color-error-1000 {
  color: var(--color-error-1000);
}
.frota-typography--color-warning-100 {
  color: var(--color-warning-100);
}
.frota-typography--color-warning-200 {
  color: var(--color-warning-200);
}
.frota-typography--color-warning-300 {
  color: var(--color-warning-300);
}
.frota-typography--color-warning-400 {
  color: var(--color-warning-400);
}
.frota-typography--color-warning-500 {
  color: var(--color-warning-500);
}
.frota-typography--color-warning-600 {
  color: var(--color-warning-600);
}
.frota-typography--color-warning-700 {
  color: var(--color-warning-700);
}
.frota-typography--color-warning-800 {
  color: var(--color-warning-800);
}
.frota-typography--color-warning-900 {
  color: var(--color-warning-900);
}
.frota-typography--color-warning-1000 {
  color: var(--color-warning-1000);
}
.frota-typography--display-large-bold {
  font-size: var(--font-size-display-large);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-near);
}
.frota-typography--display-large-regular {
  font-size: var(--font-size-display-large);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-near);
}
.frota-typography--display-medium-bold {
  font-size: var(--font-size-display-medium);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-near);
}
.frota-typography--display-medium-regular {
  font-size: var(--font-size-display-medium);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-near);
}
.frota-typography--display-small-bold {
  font-size: var(--font-size-display-small);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-compact);
}
.frota-typography--display-small-regular {
  font-size: var(--font-size-display-small);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-compact);
}
.frota-typography--heading-h1-bold {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-far);
}
.frota-typography--heading-h1-regular {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-far);
}
.frota-typography--heading-h2-bold {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-far);
}
.frota-typography--heading-h2-regular {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-far);
}
.frota-typography--heading-h3-bold {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-far);
}
.frota-typography--heading-h3-regular {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-far);
}
.frota-typography--heading-h4-bold {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-far);
}
.frota-typography--heading-h4-regular {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-far);
}
.frota-typography--heading-h5-bold {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-far);
}
.frota-typography--heading-h5-regular {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-far);
}
.frota-typography--body-large-bold {
  font-size: var(--font-size-body-large);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-far);
}
.frota-typography--body-large-regular {
  font-size: var(--font-size-body-large);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-far);
}
.frota-typography--body-medium-bold {
  font-size: var(--font-size-body-medium);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-far);
}
.frota-typography--body-medium-regular {
  font-size: var(--font-size-body-medium);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-far);
}
.frota-typography--body-small-bold {
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-far);
}
.frota-typography--body-small-regular {
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-far);
}
.frota-typography--body-xsmall-bold {
  font-size: var(--font-size-body-xsmall);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-far);
}
.frota-typography--body-xsmall-regular {
  font-size: var(--font-size-body-xsmall);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-far);
}
.frota-typography--caption-medium-bold {
  font-size: var(--font-size-caption-medium);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-compact);
  text-transform: uppercase;
}
.frota-typography--caption-medium-regular {
  font-size: var(--font-size-caption-medium);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-compact);
  text-transform: uppercase;
}
.frota-typography--caption-small-bold {
  font-size: var(--font-size-caption-small);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-compact);
  text-transform: uppercase;
}
.frota-typography--caption-small-regular {
  font-size: var(--font-size-caption-small);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-compact);
  text-transform: uppercase;
}
.frota-typography--gutter-bottom {
  margin-bottom: 0.35em;
}
.frota-typography--no-wrap {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* src/components/molecules/autocomplete/Autocomplete.scss */
.frota-autocomplete {
  position: relative;
  width: 100%;
}
.frota-autocomplete .frota-autocomplete__label {
  display: block;
  margin-bottom: 4px;
  cursor: pointer;
  pointer-events: none;
}
.frota-autocomplete .frota-autocomplete__input-container {
  position: relative;
  display: flex;
  align-items: center;
}
.frota-autocomplete .frota-autocomplete__input {
  width: 100%;
  height: 40px;
  padding: 0 56px 0 13px;
  border: 1px solid var(--color-gray-medium, #ccc);
  border-radius: var(--border-radius-xsm);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  line-height: var(--line-height-far);
  color: var(--color-neutral-1000);
  background-color: var(--color-background-default);
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  outline: none;
  cursor: pointer;
}
.frota-autocomplete .frota-autocomplete__input::placeholder {
  color: var(--color-neutral-600);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  line-height: var(--line-height-far);
}
.frota-autocomplete .frota-autocomplete__input:focus {
  border-color: var(--color-primary);
}
.frota-autocomplete .frota-autocomplete__chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-secondary);
  pointer-events: none;
  transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}
.frota-autocomplete .frota-autocomplete__chevron svg {
  display: block;
}
.frota-autocomplete .frota-autocomplete__clear,
.frota-autocomplete .frota-autocomplete__spinner {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
}
.frota-autocomplete .frota-autocomplete__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
}
.frota-autocomplete .frota-autocomplete__clear:hover {
  color: var(--color-text-default);
}
.frota-autocomplete .frota-autocomplete__spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.frota-autocomplete .frota-autocomplete__spinner-dot {
  width: 14px;
  height: 14px;
  border: 2px solid var(--color-border-default);
  border-top-color: var(--color-primary-500);
  border-radius: 50%;
  animation: frota-autocomplete-spin 0.8s linear infinite;
}
.frota-autocomplete .frota-autocomplete__helper-text {
  margin-top: 4px;
  display: block;
}
.frota-autocomplete.frota-autocomplete--error .frota-autocomplete__input {
  border-color: var(--color-feedback-error);
}
.frota-autocomplete.frota-autocomplete--error .frota-autocomplete__input:focus {
  border-color: var(--color-feedback-error);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.frota-autocomplete.frota-autocomplete--error .frota-autocomplete__chevron,
.frota-autocomplete.frota-autocomplete--error .frota-autocomplete__clear {
  color: var(--color-feedback-error);
}
.frota-autocomplete.frota-autocomplete--disabled .frota-autocomplete__input {
  background-color: var(--color-background-alt);
  color: var(--color-text-secondary);
  cursor: not-allowed;
  opacity: 0.6;
}
.frota-autocomplete.frota-autocomplete--disabled .frota-autocomplete__input:hover {
  border-color: var(--color-border-default);
}
.frota-autocomplete.frota-autocomplete--disabled .frota-autocomplete__chevron {
  opacity: 0.6;
}
.frota-autocomplete.frota-autocomplete--open .frota-autocomplete__input {
  border-color: var(--color-primary);
}
.frota-autocomplete.frota-autocomplete--open .frota-autocomplete__chevron {
  transform: translateY(-50%) rotate(180deg);
  color: var(--color-primary);
}
@keyframes frota-autocomplete-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.frota-autocomplete__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  margin-top: 4px;
  background-color: var(--color-background-default);
  border: 1px solid var(--color-border-default);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-level-2);
  max-height: 200px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease-in-out,
    transform 0.2s ease-in-out,
    visibility 0.2s ease-in-out;
}
.frota-autocomplete__dropdown.frota-autocomplete__dropdown--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.frota-autocomplete__options {
  list-style: none;
  margin: 0;
  padding: 4px 0;
}
.frota-autocomplete__option {
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
  border: none;
  background: none;
}
.frota-autocomplete__option .frota-typography {
  color: var(--color-neutral-1000);
}
.frota-autocomplete__option:hover,
.frota-autocomplete__option--focused {
  background-color: var(--color-background-alt);
}
.frota-autocomplete__option--selected {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 500;
}
.frota-autocomplete__option--selected:hover,
.frota-autocomplete__option--selected.frota-autocomplete__option--focused {
  background-color: var(--color-secondary);
}
.frota-autocomplete__option--disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.frota-autocomplete__option--disabled:hover {
  background-color: transparent;
}
.frota-autocomplete__option--loading,
.frota-autocomplete__option--no-options {
  cursor: default;
  text-align: center;
}
.frota-autocomplete__option--loading:hover,
.frota-autocomplete__option--no-options:hover {
  background-color: transparent;
}
@media (width <= 768px) {
  .frota-autocomplete__dropdown {
    max-height: 150px;
  }
  .frota-autocomplete__option {
    padding: 10px 12px;
  }
}

/* src/components/molecules/breadcrumb/Breadcrumb.scss */
.frota-breadcrumb__nav {
  display: block;
}
.frota-breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  font-size: var(--font-size-body-small);
  color: var(--color-text-default);
}
.frota-breadcrumb__item {
  display: flex;
  align-items: center;
}
.frota-breadcrumb__item .frota-typography {
  white-space: nowrap;
}
.frota-breadcrumb__separator {
  margin: 0 8px;
  color: var(--color-text-secondary, #ccc);
  -webkit-user-select: none;
          user-select: none;
}
.frota-breadcrumb__link {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: var(--color-primary);
}
.frota-breadcrumb__link:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

/* src/components/molecules/card/Card.scss */
.frota-card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-width: 275px;
  overflow: hidden;
  position: relative;
  border-radius: var(--border-radius-md, 16px);
  border: 1px solid var(--color-border-default, #dee2e6);
  box-shadow: var(--shadow-level-1);
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.frota-card:hover {
  box-shadow: var(--shadow-level-2);
}
.frota-card__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
}
.frota-card__title {
  margin: 0;
  font-family: var(--font-family-primary);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}
.frota-card__description {
  margin: 0;
  font-family: var(--font-family-primary);
  font-size: 0.875rem;
  opacity: 0.85;
}
.frota-card__content {
  padding: 24px;
  padding-top: 0;
}
.frota-card__footer {
  display: flex;
  align-items: center;
  padding: 24px;
  padding-top: 0;
}
.frota-card .card__kpi,
.frota-card__kpi {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
}
.frota-card .card__kpi-top,
.frota-card__kpi-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.frota-card .card__kpi-icon,
.frota-card__kpi-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.frota-card .card__kpi-label,
.frota-card__kpi-label {
  font-family: var(--font-family-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.9;
}
.frota-card .card__kpi-value,
.frota-card__kpi-value {
  font-family: var(--font-family-primary);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}
.frota-card .card__kpi-subtitle,
.frota-card__kpi-subtitle {
  font-family: var(--font-family-primary);
  font-size: 0.75rem;
  opacity: 0.9;
  line-height: 1.35;
}
.frota-card.card--success,
.frota-card--success {
  background:
    linear-gradient(
      180deg,
      rgb(51, 201, 106),
      rgb(27, 161, 76));
  border-color: rgba(33, 196, 93, 0.6);
  color: var(--color-text-inverse);
}
.frota-card.card--success::before,
.frota-card.card--success::after,
.frota-card--success::before,
.frota-card--success::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.frota-card.card--success::before,
.frota-card--success::before {
  width: 140px;
  height: 140px;
  top: -70px;
  right: -70px;
}
.frota-card.card--success::after,
.frota-card--success::after {
  width: 110px;
  height: 110px;
  bottom: -55px;
  right: 18px;
  background: rgba(255, 255, 255, 0.08);
}
.frota-card.card--error,
.frota-card--error {
  background:
    linear-gradient(
      180deg,
      rgb(240, 82, 82),
      rgb(196, 55, 55));
  border-color: rgba(239, 67, 67, 0.6);
  color: var(--color-text-inverse);
}
.frota-card.card--error::before,
.frota-card.card--error::after,
.frota-card--error::before,
.frota-card--error::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.frota-card.card--error::before,
.frota-card--error::before {
  width: 140px;
  height: 140px;
  top: -70px;
  right: -70px;
}
.frota-card.card--error::after,
.frota-card--error::after {
  width: 110px;
  height: 110px;
  bottom: -55px;
  right: 18px;
  background: rgba(255, 255, 255, 0.08);
}
.frota-card.card--clickable,
.frota-card--clickable {
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.frota-card.card--clickable:hover,
.frota-card--clickable:hover {
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12);
  background-color: rgba(var(--color-primary-rgb, 25, 118, 210), 0.04);
}
.frota-card.card--clickable:active,
.frota-card--clickable:active {
  background-color: rgba(var(--color-primary-rgb, 25, 118, 210), 0.08);
  box-shadow:
    0 3px 3px -2px rgba(0, 0, 0, 0.2),
    0 3px 4px 0 rgba(0, 0, 0, 0.14),
    0 1px 8px 0 rgba(0, 0, 0, 0.12);
}

/* src/components/molecules/cardV1/CardV1.scss */
.frota-card-v1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-8x);
  width: 100%;
  padding: var(--padding-8x);
  box-sizing: border-box;
  background-color: var(--color-neutral-100);
  border: var(--border-width-sm) solid var(--color-neutral-400);
  border-radius: var(--border-radius-sm);
  transition:
    box-shadow 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    background-color 0.15s ease-in-out;
}
.frota-card-v1:focus {
  outline: none;
}
.frota-card-v1--state-hover {
  box-shadow: var(--shadow-level-1);
}
.frota-card-v1--state-focus {
  border-color: var(--color-neutral-400);
  box-shadow: 0 0 0 var(--border-width-sm) var(--color-primary-500), var(--shadow-level-1);
}
.frota-card-v1--state-loading {
  border-color: transparent;
  box-shadow: var(--shadow-level-1);
}
.frota-card-v1--variant-outline.frota-card-v1--state-hover,
.frota-card-v1--variant-outline.frota-card-v1--state-loading {
  box-shadow: none;
}
.frota-card-v1--variant-outline.frota-card-v1--state-loading {
  border-color: var(--color-neutral-400);
}
.frota-card-v1--variant-outline.frota-card-v1--state-focus {
  box-shadow: 0 0 0 var(--border-width-sm) var(--color-primary-500);
}
.frota-card-v1__body {
  display: flex;
  align-items: center;
  gap: var(--gap-8x);
  width: 100%;
}
.frota-card-v1__info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: var(--gap-2x);
  min-width: 0;
}
.frota-card-v1__label {
  color: var(--color-neutral-700);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-small);
}
.frota-card-v1__value {
  color: var(--color-neutral-1000);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-heading-h3);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading-h3);
  overflow-wrap: anywhere;
}
.frota-card-v1__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
}
.frota-card-v1__additional {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-1x);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-xsmall);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-xsmall);
}
.frota-card-v1--orientation-horizontal-right .frota-card-v1__body {
  flex-direction: row;
}
.frota-card-v1--orientation-horizontal-left .frota-card-v1__body {
  flex-direction: row-reverse;
}
.frota-card-v1--orientation-vertical .frota-card-v1__body {
  flex-direction: column;
  align-items: flex-start;
}
.frota-card-v1--orientation-vertical .frota-card-v1__icon {
  order: -1;
}
.frota-card-v1--type-positive .frota-card-v1__icon {
  color: var(--color-success-600);
}
.frota-card-v1--type-positive .frota-card-v1__additional {
  color: var(--color-success-700);
}
.frota-card-v1--type-negative .frota-card-v1__icon {
  color: var(--color-error-600);
}
.frota-card-v1--type-negative .frota-card-v1__additional {
  color: var(--color-error-700);
}
.frota-card-v1--type-attention .frota-card-v1__icon {
  color: var(--color-warning-600);
}
.frota-card-v1--type-attention .frota-card-v1__additional {
  color: var(--color-warning-700);
}
.frota-card-v1--type-neutral .frota-card-v1__icon {
  color: var(--color-information-600);
}
.frota-card-v1--type-neutral .frota-card-v1__additional {
  color: var(--color-information-700);
}
.frota-card-v1--type-primary .frota-card-v1__icon {
  color: var(--color-primary-500);
}
.frota-card-v1--type-primary .frota-card-v1__additional {
  color: var(--color-primary-600);
}
.frota-card-v1--icon-variant-badge .frota-card-v1__icon {
  padding: var(--padding-4x);
  border-radius: var(--border-radius-sm);
}
.frota-card-v1--icon-variant-badge.frota-card-v1--type-positive .frota-card-v1__icon {
  background-color: var(--color-success-100);
}
.frota-card-v1--icon-variant-badge.frota-card-v1--type-negative .frota-card-v1__icon {
  background-color: var(--color-error-100);
}
.frota-card-v1--icon-variant-badge.frota-card-v1--type-attention .frota-card-v1__icon {
  background-color: var(--color-warning-200);
}
.frota-card-v1--icon-variant-badge.frota-card-v1--type-neutral .frota-card-v1__icon {
  background-color: var(--color-information-100);
}
.frota-card-v1--icon-variant-badge.frota-card-v1--type-primary .frota-card-v1__icon {
  background-color: var(--color-primary-200);
}
.frota-card-v1__skeleton {
  display: block;
  background-color: var(--color-neutral-300);
  border-radius: var(--border-radius-sm);
  animation: frota-card-v1-shimmer 1.4s ease-in-out infinite;
}
.frota-card-v1__skeleton--label {
  width: 60%;
  height: 21px;
}
.frota-card-v1__skeleton--value {
  width: 80%;
  height: 30px;
}
.frota-card-v1__skeleton--icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.frota-card-v1__skeleton--additional {
  width: 94px;
  height: 15px;
}
@keyframes frota-card-v1-shimmer {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

/* src/components/molecules/dialog/Dialog.scss */
.frota-dialog {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frota-dialog.frota-dialog--open .frota-dialog__backdrop {
  opacity: 1;
}
.frota-dialog.frota-dialog--open .frota-dialog__paper {
  opacity: 1;
  transform: scale(1);
}
.frota-dialog__backdrop {
  position: fixed;
  inset: 0;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  cursor: pointer;
}
.frota-dialog__container {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 0;
  pointer-events: none;
}
.frota-dialog__paper {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: calc(100% - 64px);
  background-color: #fff;
  border-radius: 4px;
  box-shadow:
    0 11px 15px -7px rgba(0, 0, 0, 0.2),
    0 24px 38px 3px rgba(0, 0, 0, 0.14),
    0 9px 46px 8px rgba(0, 0, 0, 0.12);
  margin: 32px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1), transform 225ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}
.frota-dialog__paper.frota-dialog__paper--max-width-xs {
  max-width: 444px;
}
.frota-dialog__paper.frota-dialog__paper--max-width-sm {
  max-width: 600px;
}
.frota-dialog__paper.frota-dialog__paper--max-width-md {
  max-width: 900px;
}
.frota-dialog__paper.frota-dialog__paper--max-width-lg {
  max-width: 1200px;
}
.frota-dialog__paper.frota-dialog__paper--max-width-xl {
  max-width: 1536px;
}
.frota-dialog__paper.frota-dialog__paper--full-width {
  width: calc(100% - 64px);
}
.frota-dialog__paper.frota-dialog__paper--full-screen {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  border-radius: 0;
}
.frota-dialog__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  flex: 0 0 auto;
}
.frota-dialog__title-text {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.87);
}
.frota-dialog__close-button {
  margin-left: auto;
  margin-right: -8px;
  color: rgba(0, 0, 0, 0.54);
}
.frota-dialog__close-button span {
  font-size: 28px;
  line-height: 1;
}
.frota-dialog__content {
  flex: 1 1 auto;
  padding: 20px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.frota-dialog__content.frota-dialog__content--dividers {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.frota-dialog__content:first-child {
  padding-top: 20px;
}
.frota-dialog__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 8px;
  flex: 0 0 auto;
}

/* src/components/molecules/dropdown/Dropdown.scss */
.frota-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}
.frota-dropdown-menu {
  min-width: 160px;
  padding: 4px 0;
  box-sizing: border-box;
  list-style: none;
  margin: 6px 0;
  max-height: 200px;
  overflow-y: auto;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.frota-dropdown-menu.frota-dropdown-menu--open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.frota-dropdown-menu.frota-dropdown-menu--top_start,
.frota-dropdown-menu.frota-dropdown-menu--top_end {
  transform: translateY(-10px);
}
.frota-dropdown-menu.frota-dropdown-menu--top_start.frota-dropdown-menu--open,
.frota-dropdown-menu.frota-dropdown-menu--top_end.frota-dropdown-menu--open {
  transform: translateY(0);
}
.frota-dropdown-menu.frota-dropdown-menu--bottom_start,
.frota-dropdown-menu.frota-dropdown-menu--bottom_end {
  transform: translateY(10px);
}
.frota-dropdown-menu.frota-dropdown-menu--bottom_start.frota-dropdown-menu--open,
.frota-dropdown-menu.frota-dropdown-menu--bottom_end.frota-dropdown-menu--open {
  transform: translateY(0);
}
.frota-dropdown-menu__item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-user-select: none;
          user-select: none;
  transition: background-color 0.15s ease-in-out;
}
.frota-dropdown-menu__item:hover {
  background-color: var(--color-background-alt);
}
.frota-dropdown-menu__item:focus {
  outline: none;
  background-color: var(--color-background-alt);
}
.frota-dropdown-menu__item--selected {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 500;
}
.frota-dropdown-menu__item--selected:hover,
.frota-dropdown-menu__item--selected:focus {
  background-color: var(--color-secondary);
}
.frota-dropdown-menu__item--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  background-color: transparent !important;
}
.frota-dropdown-menu__item .frota-typography {
  width: 100%;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  color: var(--color-neutral-1000);
}
@media (width <= 768px) {
  .frota-dropdown-menu {
    max-height: 150px;
  }
  .frota-dropdown-menu__item {
    padding: 10px 12px;
  }
}

/* src/components/molecules/emptyState/EmptyState.scss */
.frota-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-12x);
  width: min(100%, 540px);
  margin: 0 auto;
  padding: var(--padding-20x);
  text-align: center;
  background-color: var(--frota-empty-state-bg, transparent);
  box-sizing: border-box;
}
.frota-empty-state__icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  padding: var(--padding-12x);
  border-radius: var(--border-radius-pill);
  background-color: var(--color-neutral-200);
  color: var(--color-neutral-1000);
  flex-shrink: 0;
  box-sizing: border-box;
}
.frota-empty-state__default-icon {
  width: 40px;
  height: 40px;
}
.frota-empty-state__text-container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2x);
  width: 100%;
}
.frota-empty-state__title {
  margin: 0;
  color: var(--color-neutral-1000);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-large);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-body-large);
  letter-spacing: 0;
}
.frota-empty-state__subtitle {
  margin: 0;
  color: var(--color-neutral-800);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-small);
  letter-spacing: 0;
}
.frota-empty-state__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-8x);
  flex-wrap: wrap;
  width: 100%;
}
.frota-empty-state__button {
  min-width: unset;
  min-height: 40px;
  height: 40px;
  padding: var(--padding-6x) var(--padding-8x);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-body-small);
  letter-spacing: 0;
  box-sizing: border-box;
}
.frota-empty-state__button .frota-button__icon {
  width: 16px;
  height: 16px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.frota-empty-state__button .frota-button__icon svg {
  width: 100%;
  height: 100%;
}
.frota-empty-state__button .frota-button__icon--start {
  margin-right: var(--gap-4x);
}
.frota-empty-state__button .frota-button__icon--end {
  margin-left: var(--gap-4x);
}
.frota-empty-state__button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-primary-300);
}
.frota-empty-state__button--secondary.frota-button .frota-button__icon {
  color: var(--color-primary-500);
}
@media (width <= 768px) {
  .frota-empty-state {
    gap: var(--gap-8x);
    padding: var(--padding-12x);
  }
  .frota-empty-state__actions {
    flex-direction: column;
  }
  .frota-empty-state__button {
    width: 100%;
  }
}

/* src/components/molecules/form-grid/FormGrid.scss */
.frota-form-grid {
  display: grid;
  width: 100%;
}
.frota-form-grid--columns-1 {
  grid-template-columns: repeat(1, 1fr);
}
.frota-form-grid--columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.frota-form-grid--columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.frota-form-grid--columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.frota-form-grid--columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.frota-form-grid--columns-12 {
  grid-template-columns: repeat(12, 1fr);
}
.frota-form-grid--spacing-0 {
  gap: 0;
}
.frota-form-grid--spacing-1 {
  gap: 0.5rem;
}
.frota-form-grid--spacing-2 {
  gap: 1rem;
}
.frota-form-grid--spacing-3 {
  gap: 1.5rem;
}
.frota-form-grid--spacing-4 {
  gap: 2rem;
}
.frota-form-grid--spacing-5 {
  gap: 2.5rem;
}
.frota-form-grid--spacing-6 {
  gap: 3rem;
}
.frota-form-grid--spacing-7 {
  gap: 3.5rem;
}
.frota-form-grid--spacing-8 {
  gap: 4rem;
}
.frota-form-grid--align-flex-start {
  align-items: flex-start;
}
.frota-form-grid--align-flex-end {
  align-items: flex-end;
}
.frota-form-grid--align-center {
  align-items: center;
}
.frota-form-grid--align-baseline {
  align-items: baseline;
}
.frota-form-grid--align-stretch {
  align-items: stretch;
}
@media (width <= 767px) {
  .frota-form-grid:not(.frota-form-grid--no-responsive).frota-form-grid--columns-2,
  .frota-form-grid:not(.frota-form-grid--no-responsive).frota-form-grid--columns-3,
  .frota-form-grid:not(.frota-form-grid--no-responsive).frota-form-grid--columns-4,
  .frota-form-grid:not(.frota-form-grid--no-responsive).frota-form-grid--columns-6,
  .frota-form-grid:not(.frota-form-grid--no-responsive).frota-form-grid--columns-12 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (width >= 768px) and (width <= 1023px) {
  .frota-form-grid:not(.frota-form-grid--no-responsive).frota-form-grid--columns-3,
  .frota-form-grid:not(.frota-form-grid--no-responsive).frota-form-grid--columns-4,
  .frota-form-grid:not(.frota-form-grid--no-responsive).frota-form-grid--columns-6,
  .frota-form-grid:not(.frota-form-grid--no-responsive).frota-form-grid--columns-12 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 1024px) and (width <= 1439px) {
  .frota-form-grid:not(.frota-form-grid--no-responsive).frota-form-grid--columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .frota-form-grid:not(.frota-form-grid--no-responsive).frota-form-grid--columns-6,
  .frota-form-grid:not(.frota-form-grid--no-responsive).frota-form-grid--columns-12 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width >= 1440px) {
  .frota-form-grid:not(.frota-form-grid--no-responsive).frota-form-grid--columns-12 {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* src/components/molecules/input/Input.scss */
.frota-input-wrapper {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  vertical-align: top;
  width: 100%;
}
.frota-input__label {
  margin-bottom: 4px;
  display: block;
  cursor: pointer;
  pointer-events: none;
}
.frota-input__label .frota-typography {
  line-height: 1.5;
}
.frota-input__control-container {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-gray-medium, #ccc);
  border-radius: 4px;
  background-color: var(--color-background-default, #fff);
  height: 42px;
  padding: 8px 13px;
  box-sizing: border-box;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.frota-input__control-container:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(var(--color-primary), 0.2);
}
.frota-input__control-container:has(input[readonly]) {
  cursor: pointer;
}
.frota-input {
  flex-grow: 1;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--color-neutral-1000);
  padding: 0;
  width: 100%;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  line-height: var(--line-height-far);
}
.frota-input::placeholder {
  color: var(--color-neutral-600);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  line-height: var(--line-height-far);
}
.frota-input-wrapper--disabled .frota-input {
  cursor: not-allowed;
  color: var(--color-text-secondary, #555);
}
.frota-input-wrapper--error .frota-input {
  color: var(--color-feedback-error);
}
.frota-input__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary, #555);
}
.frota-input__icon svg {
  width: 20px;
  height: 20px;
}
.frota-input__icon--start {
  margin-right: 8px;
}
.frota-input__icon--end {
  margin-left: 8px;
}
.frota-input-wrapper--error .frota-input__icon {
  color: var(--color-feedback-error);
}
.frota-input-wrapper--disabled .frota-input__icon {
  color: var(--color-text-secondary, #999);
}
.frota-input__helper-text {
  margin-top: 4px;
}
.frota-input-wrapper--error .frota-input__control-container {
  border-color: var(--color-feedback-error);
  box-shadow: 0 0 0 2px rgba(var(--color-feedback-error), 0.2);
}
.frota-input-wrapper--disabled .frota-input__control-container {
  background-color: var(--color-background-alt, #f5f5f5);
  border-color: var(--color-border-default, #e0e0e0);
  cursor: not-allowed;
}

/* src/components/molecules/inputV1/InputV1.scss */
.frota-input-v1 {
  display: inline-flex;
  flex-direction: column;
  gap: var(--gap-2x);
  width: 100%;
}
.frota-input-v1__label {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-1x);
  cursor: default;
}
.frota-input-v1__required {
  line-height: 1;
  color: var(--color-error-600);
}
.frota-input-v1__field {
  display: flex;
  align-items: center;
  gap: var(--gap-6x);
  height: 40px;
  padding: var(--padding-6x) var(--padding-8x);
  border: var(--border-width-sm) solid var(--color-neutral-400);
  border-radius: var(--border-radius-sm);
  background-color: var(--color-neutral-100);
  box-sizing: border-box;
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
.frota-input-v1__field:focus-within {
  border-color: var(--color-primary-500);
}
.frota-input-v1__input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0;
  background-color: transparent;
  color: var(--color-neutral-1000);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-small);
  letter-spacing: 0;
}
.frota-input-v1__input::placeholder {
  color: var(--color-neutral-600);
}
.frota-input-v1__input:disabled {
  cursor: not-allowed;
  color: var(--color-neutral-600);
}
.frota-input-v1__textarea {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0;
  resize: vertical;
  background-color: transparent;
  color: var(--color-neutral-1000);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-small);
  letter-spacing: 0;
}
.frota-input-v1__textarea::placeholder {
  color: var(--color-neutral-600);
}
.frota-input-v1__textarea:disabled {
  cursor: not-allowed;
  color: var(--color-neutral-600);
}
.frota-input-v1__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-neutral-1000);
}
.frota-input-v1__icon svg {
  width: 16px;
  height: 16px;
  display: block;
  color: currentcolor;
}
.frota-input-v1__helper {
  margin: 0;
}
.frota-input-v1--error .frota-input-v1__field {
  border-color: var(--color-error-600);
}
.frota-input-v1--error .frota-input-v1__icon {
  color: var(--color-error-600);
}
.frota-input-v1--disabled .frota-input-v1__field {
  background-color: var(--color-neutral-300);
  border-color: var(--color-neutral-400);
  cursor: not-allowed;
}
.frota-input-v1--disabled .frota-input-v1__icon {
  color: var(--color-neutral-600);
}
.frota-input-v1--text .frota-input-v1__field {
  align-items: flex-start;
  height: auto;
  min-height: 92px;
}

/* src/components/molecules/list/List.scss */
.frota-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--frota-list-gap, 0);
}
.frota-list--disable-padding {
  padding: 0;
}
.frota-list-item {
  display: flex;
  align-items: center;
  gap: var(--gap-4x);
  padding: var(--padding-4x);
  width: 100%;
  box-sizing: border-box;
  cursor: default;
  transition: background-color 150ms ease-in-out;
}
.frota-list-item__slot1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.frota-list-item__slot2 {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  gap: var(--gap-2x);
  min-width: 0;
  overflow: hidden;
}
.frota-list-item__label {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-small, 21px);
  color: var(--color-neutral-1000);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.frota-list-item__supporting-text {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-xsmall);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-xsmall, 15px);
  color: var(--color-neutral-600);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.frota-list-item__slot3 {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.frota-list-item__slot3 + .frota-list-item__slot4 {
  margin-left: var(--gap-4x);
}
.frota-list-item__slot4 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-neutral-1000);
}
.frota-list-item--interactive {
  cursor: pointer;
}
.frota-list-item--interactive:hover {
  background-color: var(--color-neutral-200);
  border-radius: var(--border-radius-sm);
}
.frota-list-item--interactive:focus-visible {
  background-color: var(--color-neutral-200);
  outline: 1px solid var(--color-primary-500);
  border-radius: var(--border-radius-sm);
}
.frota-list-item--selected {
  background-color: var(--color-primary-200);
  border-radius: var(--border-radius-sm);
}
.frota-list-item--disabled {
  pointer-events: none;
}
.frota-list-item--disabled .frota-list-item__label,
.frota-list-item--disabled .frota-list-item__supporting-text {
  color: var(--color-neutral-500);
}
.frota-list-item--disabled .frota-list-item__slot1,
.frota-list-item--disabled .frota-list-item__slot3,
.frota-list-item--disabled .frota-list-item__slot4 {
  opacity: 0.4;
}

/* src/components/molecules/pagination/Pagination.scss */
.frota-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}
.frota-pagination.frota-pagination--center {
  justify-content: center;
}
@media (width <= 767px) {
  .frota-pagination {
    flex-direction: column;
    gap: 12px;
  }
}
.frota-pagination__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.frota-pagination__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 4px;
}
.frota-pagination__button {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--color-text-default);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frota-pagination__button:hover:not(:disabled):not(.frota-pagination__button--active) {
  background-color: var(--color-background-alt);
}
.frota-pagination__button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.frota-pagination__button.frota-pagination__button--active {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}
.frota-pagination__button.frota-pagination__button--active:hover {
  background-color: var(--color-border-hover);
  opacity: 0.9;
}
.frota-pagination__button.frota-pagination__button--selected {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}
.frota-pagination__button.frota-pagination__button--selected:hover {
  background-color: var(--color-border-hover);
  opacity: 0.9;
}
.frota-pagination__ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  color: var(--color-text-secondary);
  -webkit-user-select: none;
          user-select: none;
  font-size: 14px;
}
.frota-pagination__info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-secondary);
  font-size: 14px;
}
@media (width <= 767px) {
  .frota-pagination__info {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
}
.frota-pagination__page-size {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.frota-pagination__page-size-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 60px;
  height: 32px;
  padding: 6px 12px;
  border: 1px solid var(--color-border-default);
  border-radius: 16px;
  background-color: var(--color-background-default);
  color: var(--color-text-default);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: none;
}
.frota-pagination__page-size-select:hover {
  border-color: var(--color-text-secondary);
  background-color: var(--color-background-alt);
}
.frota-pagination__page-size-select:focus {
  outline: none;
  border-color: var(--color-border-focus);
}
.frota-pagination__page-size-icon {
  width: 12px;
  height: 12px;
  color: var(--color-text-default);
  transition: transform 0.2s ease;
}
.frota-pagination__page-size-icon.frota-pagination__page-size-icon--open {
  transform: rotate(180deg);
}
.frota-pagination__page-size-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 50px;
  margin: 0;
  padding: 4px;
  list-style: none;
  background-color: var(--color-background-default);
  border: 1px solid var(--color-border-default);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.frota-pagination__page-size-dropdown.frota-pagination__page-size-dropdown--upwards {
  top: auto;
  bottom: calc(100% + 4px);
}
.frota-pagination__page-size-option {
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--color-text-default);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: none;
}
.frota-pagination__page-size-option:hover {
  background-color: var(--color-background-alt);
}
.frota-pagination__page-size-option.frota-pagination__page-size-option--active {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}
.frota-pagination__page-size-option.frota-pagination__page-size-option--active:hover {
  background-color: var(--color-primary);
  opacity: 0.9;
}
.frota-pagination__records-info {
  white-space: nowrap;
  font-size: 14px;
  color: #575962;
}
@media (width <= 767px) {
  .frota-pagination__records-info {
    white-space: normal;
    text-align: center;
    font-size: 12px;
  }
}

/* src/components/molecules/select/Select.scss */
.frota-input-wrapper {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  vertical-align: top;
  width: 100%;
}
.frota-input__label {
  margin-bottom: 4px;
  display: block;
  cursor: pointer;
  pointer-events: none;
}
.frota-input__label .frota-typography {
  line-height: 1.5;
}
.frota-input__control-container {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-gray-medium, #ccc);
  border-radius: 4px;
  background-color: var(--color-background-default, #fff);
  height: 42px;
  padding: 8px 13px;
  box-sizing: border-box;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.frota-input__control-container:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(var(--color-primary), 0.2);
}
.frota-input__control-container:has(input[readonly]) {
  cursor: pointer;
}
.frota-input {
  flex-grow: 1;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--color-neutral-1000);
  padding: 0;
  width: 100%;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  line-height: var(--line-height-far);
}
.frota-input::placeholder {
  color: var(--color-neutral-600);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  line-height: var(--line-height-far);
}
.frota-input-wrapper--disabled .frota-input {
  cursor: not-allowed;
  color: var(--color-text-secondary, #555);
}
.frota-input-wrapper--error .frota-input {
  color: var(--color-feedback-error);
}
.frota-input__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary, #555);
}
.frota-input__icon svg {
  width: 20px;
  height: 20px;
}
.frota-input__icon--start {
  margin-right: 8px;
}
.frota-input__icon--end {
  margin-left: 8px;
}
.frota-input-wrapper--error .frota-input__icon {
  color: var(--color-feedback-error);
}
.frota-input-wrapper--disabled .frota-input__icon {
  color: var(--color-text-secondary, #999);
}
.frota-input__helper-text {
  margin-top: 4px;
}
.frota-input-wrapper--error .frota-input__control-container {
  border-color: var(--color-feedback-error);
  box-shadow: 0 0 0 2px rgba(var(--color-feedback-error), 0.2);
}
.frota-input-wrapper--disabled .frota-input__control-container {
  background-color: var(--color-background-alt, #f5f5f5);
  border-color: var(--color-border-default, #e0e0e0);
  cursor: not-allowed;
}
.frota-select-container {
  display: inline-flex;
  width: 100%;
  position: relative;
}
.frota-select-container .frota-input-wrapper {
  margin-bottom: 0;
}
.frota-select__input-trigger {
  width: 100%;
}
.frota-select__input-trigger .frota-input__control-container {
  cursor: pointer;
}
.frota-select__input-trigger .frota-input {
  cursor: pointer;
  caret-color: transparent;
}
.frota-select__input-trigger .frota-input__icon {
  transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}
.frota-select__input-trigger.frota-select__input-trigger--disabled .frota-input__control-container,
.frota-select__input-trigger.frota-select__input-trigger--disabled .frota-input {
  cursor: not-allowed;
}
.frota-dropdown--open .frota-select__input-trigger .frota-input__control-container {
  border-color: var(--color-primary);
}
.frota-dropdown--open .frota-select__input-trigger .frota-input__icon {
  color: var(--color-primary);
  transform: rotate(180deg);
  transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}

/* src/components/molecules/staticField/StaticField.scss */
.frota-static-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-4x);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.frota-static-field__label,
.frota-static-field__value {
  display: block;
  width: 100%;
  min-width: 0;
}

/* src/components/molecules/stepper/Stepper.scss */
.frota-stepper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 24px;
}
.frota-stepper__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-height: 48px;
}
.frota-stepper__connector {
  width: 1px;
  flex: 1;
  min-height: var(--gap-4x);
  border-left: var(--border-width-sm) solid var(--color-neutral-400);
}
.frota-stepper__connector--top {
  margin-bottom: var(--gap-2x);
}
.frota-stepper__connector--bottom {
  margin-top: var(--gap-2x);
}
.frota-stepper__connector--hidden {
  visibility: hidden;
}
.frota-stepper__circle {
  width: 24px;
  height: 24px;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-caption-small);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-caption-medium);
  text-transform: uppercase;
  border: var(--border-width-sm) solid transparent;
}
.frota-stepper__circle--completed {
  background-color: var(--color-success-300);
  color: var(--color-secondary-1000);
  border-color: transparent;
}
.frota-stepper__circle--active {
  background-color: var(--color-neutral-100);
  border-color: var(--color-neutral-600);
  color: var(--color-neutral-600);
}
.frota-stepper__circle--pending {
  background-color: transparent;
  border-color: var(--color-neutral-600);
  color: var(--color-neutral-600);
}

/* src/components/molecules/textarea/Textarea.scss */
.frota-textarea-wrapper {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  vertical-align: top;
  width: 100%;
  margin-bottom: 16px;
}
.frota-textarea__label {
  margin-bottom: 4px;
  display: block;
  cursor: pointer;
}
.frota-textarea__label .frota-typography {
  line-height: 1;
}
.frota-textarea__control-container {
  display: flex;
  align-items: flex-start;
  border: 1px solid var(--color-text-default, #ccc);
  border-radius: 4px;
  background-color: var(--color-background-default, #fff);
  padding: 8px 12px;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-sizing: border-box;
}
.frota-textarea__control-container:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(var(--color-primary), 0.2);
}
.frota-textarea {
  flex-grow: 1;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--color-text-default, #333);
  padding: 0;
  width: 100%;
  resize: vertical;
}
.frota-textarea::placeholder {
  color: var(--color-text-default, #999);
}
.frota-textarea-wrapper--disabled .frota-textarea {
  cursor: not-allowed;
  color: var(--color-text-default, #555);
}
.frota-textarea-wrapper--error .frota-textarea {
  color: var(--color-feedback-error);
}
.frota-textarea-wrapper--no-resize .frota-textarea {
  resize: none;
}
.frota-textarea__helper-text {
  margin-top: 4px;
}
.frota-textarea-wrapper--error .frota-textarea__control-container {
  border-color: var(--color-feedback-error);
  box-shadow: 0 0 0 2px rgba(var(--color-feedback-error), 0.2);
}
.frota-textarea-wrapper--disabled .frota-textarea__control-container {
  background-color: var(--color-background-alt, #f5f5f5);
  border-color: var(--color-border-default, #e0e0e0);
  cursor: not-allowed;
}

/* src/components/molecules/datepicker/Datepicker.scss */
.frota-datepicker {
  position: relative;
  display: inline-block;
  width: 100%;
}
.frota-datepicker__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
}
.frota-datepicker--open .frota-datepicker__trigger .frota-input__control-container {
  border-color: var(--color-primary-500);
}
.frota-datepicker__custom-trigger {
  display: inline-block;
}
.frota-datepicker__custom-trigger--disabled {
  pointer-events: none;
  opacity: 0.7;
}
.frota-datepicker-popover {
  position: fixed;
  z-index: 1400;
  width: 310px;
  padding: 12px;
  box-sizing: border-box;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.frota-datepicker-popover.frota-datepicker-popover--open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.frota-datepicker__header {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.frota-datepicker__month {
  text-align: center;
  text-transform: capitalize;
}
.frota-datepicker__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}
.frota-datepicker__weekday {
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
}
.frota-datepicker__grid {
  width: 100%;
  border-collapse: separate;
  border-spacing: 6px;
}
.frota-datepicker__cell {
  padding: 0;
}
.frota-datepicker__day {
  width: 100%;
  height: 34px;
  border: none;
  background: transparent;
  border-radius: 6px;
  color: #111827;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}
.frota-datepicker__day:hover {
  background-color: #f3f4f6;
}
.frota-datepicker__day:focus {
  outline: none;
}
.frota-datepicker__day--outside {
  color: #9ca3af;
}
.frota-datepicker__day--selected {
  background-color: #F9401B;
  color: #fff;
}
.frota-datepicker__day--selected:hover {
  background-color: #F9401B;
}
.frota-datepicker__day--today {
  font-weight: 600;
}
.frota-datepicker__day--disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.frota-datepicker__day--disabled:hover {
  background-color: transparent;
}
.frota-datepicker__day--range-start,
.frota-datepicker__day--range-end {
  background-color: var(--color-primary-500);
  color: #fff;
  border-radius: 6px;
}
.frota-datepicker__day--range-start:hover,
.frota-datepicker__day--range-end:hover {
  background-color: var(--color-primary-500);
}
.frota-datepicker__cell--in-range {
  background-color: rgba(249, 64, 27, 0.1);
}
.frota-datepicker__day--in-range {
  background-color: transparent;
  border-radius: 0;
  color: var(--color-text-default);
}
.frota-datepicker__day--in-range:hover {
  background-color: rgba(249, 64, 27, 0.2);
}

/* src/components/molecules/modal/Modal.scss */
.frota-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--padding-8x);
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  max-width: none;
  max-height: none;
}
.frota-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
  border: none;
  padding: 0;
  cursor: default;
}
.frota-modal__paper {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 100%;
  padding: var(--padding-8x);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-md);
  background: var(--color-background-default);
  box-shadow: var(--shadow-level-2);
}
.frota-modal__paper--md {
  width: 640px;
  gap: var(--gap-8x);
}
.frota-modal__paper--sm {
  min-width: 378px;
  width: fit-content;
  gap: var(--gap-12x);
}

/* src/components/organisms/header/Header.scss */
.frota-header {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: var(--padding-4x) var(--padding-6x);
  background-color: var(--color-background-default);
  border-bottom: var(--border-width-sm) solid var(--color-border-default);
  box-shadow: var(--shadow-level-1);
  position: relative;
  z-index: 100;
}
.frota-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--gap-4x);
}
.frota-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.frota-header__logo img,
.frota-header__logo svg {
  height: 32px;
  width: auto;
}
.frota-header__logo--clickable {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.frota-header__banner {
  display: none;
}
@media (min-width: 1024px) {
  .frota-header__banner {
    display: flex;
    align-items: center;
    gap: var(--gap-4x);
    padding: var(--padding-2x) var(--padding-4x);
    background-color: var(--color-primary-100);
    border-radius: var(--border-radius-md);
    flex: 1;
    max-width: 480px;
    margin: 0 auto;
  }
}
.frota-header__actions {
  display: none;
}
@media (min-width: 768px) {
  .frota-header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap-4x);
    flex-shrink: 0;
  }
}
.frota-header__balance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-2x);
  height: 40px;
  padding: var(--padding-2x) var(--padding-4x) var(--padding-2x) var(--padding-6x);
  background-color: var(--color-neutral-100);
  border: var(--border-width-sm) solid var(--color-neutral-400);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
}
.frota-header__balance-content {
  display: flex;
  align-items: center;
  gap: var(--gap-2x);
}
.frota-header__balance-label,
.frota-header__balance-value {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-body-small, 21px);
  color: var(--color-neutral-1000);
  white-space: nowrap;
}
.frota-header__balance-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--color-neutral-1000);
}
.frota-header__divider {
  width: var(--border-width-sm);
  height: 24px;
  background-color: var(--color-border-default);
  flex-shrink: 0;
}
.frota-header__account-trigger {
  padding: 0;
  border: none;
  background: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  overflow: hidden;
}
.frota-header__account-trigger:hover {
  background-color: var(--color-neutral-200);
}
.frota-header__account-trigger .frota-list-item {
  cursor: pointer;
}
.frota-header__dropdown-wrapper {
  position: relative;
}
.frota-header__dropdown {
  position: absolute;
  top: calc(100% + var(--padding-2x));
  right: 0;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-4x);
  padding: var(--padding-4x);
  background-color: var(--color-neutral-100);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-level-1);
  z-index: 200;
}
.frota-header__dropdown-divider {
  height: var(--border-width-sm);
  background-color: var(--color-neutral-300);
  border: none;
  margin: 0;
  flex-shrink: 0;
}
.frota-header__dropdown-banner {
  display: flex;
  flex-direction: column;
  gap: var(--gap-6x);
  padding: var(--padding-6x);
  background-color: var(--color-primary-200);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.frota-header__mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 768px) {
  .frota-header__mobile {
    display: none;
  }
}
.frota-header__mobile-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.frota-header__mobile-logo img,
.frota-header__mobile-logo svg {
  height: 28px;
  width: auto;
}
.frota-header__desktop {
  display: none;
}
@media (min-width: 768px) {
  .frota-header__desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
.frota-header__notification {
  position: relative;
}
.frota-header__notification .frota-badge__indicator--top-right {
  top: 4px;
  right: 4px;
}
.frota-header__notification svg {
  color: var(--color-primary-500);
}
.frota-header__mobile .frota-header__dropdown {
  gap: var(--gap-8x);
}
.frota-header__mobile .frota-header__dropdown .frota-header__balance {
  width: 100%;
}

/* src/components/organisms/sidebar/Sidebar.scss */
.frota-sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-neutral-1000);
  opacity: 0;
  visibility: hidden;
  z-index: 1200;
  transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
}
.frota-sidebar-backdrop--visible {
  opacity: 0.32;
  visibility: visible;
}
.frota-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background-color: var(--color-neutral-100);
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  z-index: 1000;
  overflow: hidden auto;
  transition: width 200ms ease-in-out, transform 300ms ease-in-out;
  width: 72px;
  padding: 0 var(--gap-8x);
  border-right: var(--border-width-sm) solid var(--color-neutral-300);
}
.frota-sidebar--expanded {
  width: 305px;
  padding: 0 var(--gap-12x);
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.08);
}
.frota-sidebar--mobile {
  width: 305px;
  padding: var(--gap-12x);
  transform: translateX(-100%);
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.08);
  z-index: 1300;
}
.frota-sidebar--mobile-open {
  transform: translateX(0);
}
.frota-sidebar__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--gap-8x);
}
.frota-sidebar__nav {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.frota-sidebar__icons {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: var(--gap-12x) 0;
}
.frota-sidebar__icons .frota-icon-button {
  margin-bottom: var(--gap-12x);
}
.frota-sidebar__icons .frota-icon-button:last-child {
  margin-bottom: 0;
}
.frota-sidebar__icon-button--active {
  background-color: var(--color-primary-200) !important;
  border-color: var(--color-primary-400) !important;
}
.frota-sidebar__submenu {
  --frota-list-gap: 0;
  margin-top: calc(-1 * var(--gap-12x));
  display: flex;
  padding-left: var(--padding-12x);
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
@media (max-width: 768px) {
  .frota-sidebar:not(.frota-sidebar--mobile) {
    display: none;
  }
}

/* src/components/organisms/table/Table.scss */
.frota-table__container {
  background: var(--color-background-default);
  overflow: hidden;
  width: 100%;
}
.frota-table__wrapper {
  overflow-x: auto;
}
.frota-table__element {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.4;
}
.frota-table__header {
  background-color: var(--color-secondary);
  border-bottom: 1px solid var(--color-border-default);
}
.frota-table__header th {
  padding: 16px 10px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  color: var(--color-text-default);
  border-bottom: 1px solid var(--color-border-default);
  white-space: nowrap;
}
.frota-table__header th:first-child {
  padding-left: 24px;
}
.frota-table__header th:last-child {
  padding-right: 24px;
}
.frota-table__header--sortable {
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}
.frota-table__header--sorted {
  color: var(--color-primary);
}
.frota-table__header--center {
  text-align: center !important;
}
.frota-table__header--right {
  text-align: right !important;
}
.frota-table__header-content {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.frota-table__sort-button {
  all: unset;
  display: inline-flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  color: var(--color-text-default);
  transition: color 0.2s ease;
}
.frota-table__sort-button:hover {
  color: var(--color-primary);
}
.frota-table__sort-button:hover .frota-table__sort-icon {
  opacity: 1;
}
.frota-table__sort-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}
.frota-table__header--sorted .frota-table__sort-button {
  color: var(--color-primary);
}
.frota-table__sort-icon {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.frota-table__sort-icon--neutral {
  opacity: 0.4;
}
.frota-table__header--sorted .frota-table__sort-icon {
  opacity: 1;
  color: var(--color-primary);
}
.frota-table__body tr {
  border-bottom: 1px solid var(--color-border-default);
  transition: background-color 0.2s ease;
}
.frota-table__body tr:hover {
  background-color: var(--color-background-alt);
}
.frota-table__body tr:last-child {
  border-bottom: none;
}
.frota-table__row--clickable {
  cursor: pointer;
}
.frota-table__body td {
  padding: 11px 10px;
  color: var(--color-text-default);
  font-size: 12px;
  vertical-align: middle;
}
.frota-table__body td:first-child {
  padding-left: 24px;
}
.frota-table__body td:last-child {
  padding-right: 24px;
}
.frota-table__td--center {
  text-align: center;
}
.frota-table__td--right {
  text-align: right;
}
.frota-table__actions {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
}
.frota-table__container .table__action-button,
.frota-table__action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}
.frota-table__container .table__action-button:hover,
.frota-table__action-button:hover {
  transform: scale(1.05);
}
.frota-table__container .table__action-button:focus,
.frota-table__action-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(248, 64, 27, 0.2);
}
.frota-table__container .table__action-button:disabled,
.frota-table__action-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.frota-table__container .table__action-button--default,
.frota-table__action-button--default {
  background: var(--color-primary);
  color: white;
}
.frota-table__container .table__action-button--default:hover:not(:disabled),
.frota-table__action-button--default:hover:not(:disabled) {
  background: var(--color-primary-600);
}
.frota-table__container .table__action-button--destructive,
.frota-table__action-button--destructive {
  background: var(--color-error-600);
  color: white;
}
.frota-table__container .table__action-button--destructive:hover:not(:disabled),
.frota-table__action-button--destructive:hover:not(:disabled) {
  background: var(--color-error-700);
}
.frota-table__container .table__action-button--success,
.frota-table__action-button--success {
  background: var(--color-success-600);
  color: white;
}
.frota-table__container .table__action-button--success:hover:not(:disabled),
.frota-table__action-button--success:hover:not(:disabled) {
  background: var(--color-success-700);
}
.frota-table__container .table__action-button--outline,
.frota-table__action-button--outline {
  background: var(--color-background-default);
  color: var(--color-text-default);
  border: 1px solid var(--color-border-default);
}
.frota-table__container .table__action-button--outline:hover:not(:disabled),
.frota-table__action-button--outline:hover:not(:disabled) {
  background: var(--color-background-alt);
  border-color: var(--color-primary);
}
.frota-table__empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--color-text-secondary);
  font-style: italic;
}
.frota-table__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 24px;
  color: var(--color-text-secondary);
}
.frota-table__loading-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-border-default);
  border-top: 2px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 12px;
}
.frota-table__container.table--striped .frota-table__body tr:nth-child(even),
.frota-table__container.frota-table--striped .frota-table__body tr:nth-child(even) {
  background-color: var(--color-background-alt);
}
.frota-table__container.table--striped .frota-table__body tr:nth-child(even):hover,
.frota-table__container.frota-table--striped .frota-table__body tr:nth-child(even):hover {
  background-color: var(--color-background-alt);
  filter: brightness(0.98);
}
.frota-table__container.table--bordered .frota-table__element th,
.frota-table__container.table--bordered .frota-table__element td,
.frota-table__container.frota-table--bordered .frota-table__element th,
.frota-table__container.frota-table--bordered .frota-table__element td {
  border-right: 1px solid var(--color-border-default);
}
.frota-table__container.table--bordered .frota-table__element th:last-child,
.frota-table__container.table--bordered .frota-table__element td:last-child,
.frota-table__container.frota-table--bordered .frota-table__element th:last-child,
.frota-table__container.frota-table--bordered .frota-table__element td:last-child {
  border-right: none;
}
.frota-table__container.table--sm .frota-table__header th,
.frota-table__container.frota-table--sm .frota-table__header th {
  padding: 8px 12px;
  font-size: 11px;
}
.frota-table__container.table--sm .frota-table__header th:first-child,
.frota-table__container.frota-table--sm .frota-table__header th:first-child {
  padding-left: 16px;
}
.frota-table__container.table--sm .frota-table__header th:last-child,
.frota-table__container.frota-table--sm .frota-table__header th:last-child {
  padding-right: 16px;
}
.frota-table__container.table--sm .frota-table__body td,
.frota-table__container.frota-table--sm .frota-table__body td {
  padding: 12px;
  font-size: 13px;
}
.frota-table__container.table--sm .frota-table__body td:first-child,
.frota-table__container.frota-table--sm .frota-table__body td:first-child {
  padding-left: 16px;
}
.frota-table__container.table--sm .frota-table__body td:last-child,
.frota-table__container.frota-table--sm .frota-table__body td:last-child {
  padding-right: 16px;
}
.frota-table__container.table--sm .table__action-button,
.frota-table__container.frota-table--sm .table__action-button,
.frota-table__container.table--sm .frota-table__action-button,
.frota-table__container.frota-table--sm .frota-table__action-button {
  width: 28px;
  height: 28px;
  font-size: 12px;
}
.frota-table__container.table--lg .frota-table__header th,
.frota-table__container.frota-table--lg .frota-table__header th {
  padding: 16px 20px;
  font-size: 13px;
}
.frota-table__container.table--lg .frota-table__header th:first-child,
.frota-table__container.frota-table--lg .frota-table__header th:first-child {
  padding-left: 32px;
}
.frota-table__container.table--lg .frota-table__header th:last-child,
.frota-table__container.frota-table--lg .frota-table__header th:last-child {
  padding-right: 32px;
}
.frota-table__container.table--lg .frota-table__body td,
.frota-table__container.frota-table--lg .frota-table__body td {
  padding: 20px;
  font-size: 15px;
}
.frota-table__container.table--lg .frota-table__body td:first-child,
.frota-table__container.frota-table--lg .frota-table__body td:first-child {
  padding-left: 32px;
}
.frota-table__container.table--lg .frota-table__body td:last-child,
.frota-table__container.frota-table--lg .frota-table__body td:last-child {
  padding-right: 32px;
}
.frota-table__container.table--lg .table__action-button,
.frota-table__container.frota-table--lg .table__action-button,
.frota-table__container.table--lg .frota-table__action-button,
.frota-table__container.frota-table--lg .frota-table__action-button {
  width: 36px;
  height: 36px;
  font-size: 16px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* src/components/organisms/table-v1/TableV1.scss */
.frota-table-v1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: var(--border-radius-sm);
  border: var(--border-width-sm) solid var(--color-border-default);
  overflow: hidden;
}
.frota-table-v1__wrapper {
  width: 100%;
  overflow-x: auto;
}
.frota-table-v1__table {
  width: 100%;
  border-collapse: collapse;
}
.frota-table-v1__head-row {
  background: var(--color-neutral-200);
  border-bottom: var(--border-width-sm) solid var(--color-neutral-400);
}
.frota-table-v1__th {
  height: 48px;
  padding: 0 var(--padding-6x);
  vertical-align: middle;
  text-align: left;
  white-space: nowrap;
  color: var(--color-neutral-800);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-caption-medium);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-caption-medium);
  letter-spacing: 0;
  text-transform: uppercase;
}
.frota-table-v1__th--selection {
  width: 48px;
  text-align: center;
  padding: 0 var(--padding-6x);
}
.frota-table-v1__th--actions {
  text-align: right;
}
.frota-table-v1__th--center {
  text-align: center;
}
.frota-table-v1__th--right {
  text-align: right;
}
.frota-table-v1__th--sortable {
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}
.frota-table-v1__th--sorted {
  color: var(--color-primary-500);
}
.frota-table-v1__th-content {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-2x);
}
.frota-table-v1__sort-btn {
  all: unset;
  display: inline-flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  transition: color 0.2s ease;
}
.frota-table-v1__sort-btn:hover {
  color: var(--color-primary-500);
}
.frota-table-v1__sort-btn:focus-visible {
  outline: 2px solid var(--color-primary-500);
  outline-offset: 2px;
  border-radius: 2px;
}
.frota-table-v1__sort-icon {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.frota-table-v1__sort-icon--neutral {
  opacity: 0.4;
}
.frota-table-v1__th--sorted .frota-table-v1__sort-icon {
  opacity: 1;
  color: var(--color-primary-500);
}
.frota-table-v1__row {
  border-bottom: var(--border-width-sm) solid var(--color-neutral-400);
  transition: background-color 0.15s ease;
}
.frota-table-v1__row:hover {
  background-color: var(--color-background-alt);
}
.frota-table-v1__row:last-child {
  border-bottom: none;
}
.frota-table-v1__row--clickable {
  cursor: pointer;
}
.frota-table-v1__td {
  padding: var(--padding-6x);
  vertical-align: middle;
  background: var(--color-neutral-100);
  color: var(--color-neutral-800);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-small);
}
.frota-table-v1__td--selection {
  width: 48px;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}
.frota-table-v1__td--actions {
  text-align: right;
}
.frota-table-v1__td--center {
  text-align: center;
}
.frota-table-v1__td--right {
  text-align: right;
}
.frota-table-v1__cell-text {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  flex: 1 0 0;
}
.frota-table-v1__actions {
  display: flex;
  gap: var(--gap-2x);
  justify-content: flex-end;
  align-items: center;
}
.frota-table-v1__empty {
  text-align: center;
  padding: var(--padding-16x) var(--padding-8x);
  color: var(--color-text-secondary);
  font-style: italic;
  font-size: var(--font-size-body-small);
  font-family: var(--font-family-primary);
}
.frota-table-v1__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--padding-16x) var(--padding-8x);
  color: var(--color-text-secondary);
  font-size: var(--font-size-body-small);
  font-family: var(--font-family-primary);
  width: 100%;
}
.frota-table-v1__loading-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-border-default);
  border-top: 2px solid var(--color-primary-500);
  border-radius: 50%;
  animation: frota-table-v1-spin 1s linear infinite;
  margin-right: var(--gap-4x);
  flex-shrink: 0;
}
.frota-table-v1__footer {
  display: flex;
  padding: var(--padding-6x) var(--padding-8x);
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  background: var(--color-neutral-100);
  border-top: var(--border-width-sm) solid var(--color-border-default);
}
.frota-table-v1__page-size {
  display: flex;
  align-items: center;
  gap: var(--gap-4x);
}
.frota-table-v1__page-size-select {
  padding: var(--padding-2x) var(--padding-4x);
  border: var(--border-width-sm) solid var(--color-border-default);
  border-radius: var(--border-radius-xsm);
  background: var(--color-background-default);
  color: var(--color-neutral-1000);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-body-small);
  letter-spacing: 0;
  cursor: pointer;
}
.frota-table-v1__page-size-select:focus {
  outline: 2px solid var(--color-primary-500);
  outline-offset: 2px;
}
.frota-table-v1__page-size-label {
  color: var(--color-neutral-1000);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-small);
  letter-spacing: 0;
}
.frota-table-v1__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gap-4x);
}
.frota-table-v1__pagination-info {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.frota-table-v1__pagination-info--range {
  color: var(--color-neutral-1000);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-body-small);
  letter-spacing: 0;
}
.frota-table-v1__pagination-info--total {
  color: var(--color-neutral-700);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-small);
  letter-spacing: 0;
}
.frota-table-v1__pagination-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gap-2x);
}
.frota-table-v1__pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0 var(--padding-6x);
  border: var(--border-width-sm) solid var(--color-neutral-400);
  border-radius: var(--border-radius-sm);
  background: var(--color-neutral-100);
  color: var(--color-neutral-700);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-small);
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.15s ease;
}
.frota-table-v1__pagination-btn:hover:not(:disabled) {
  border-color: var(--color-primary-500);
  color: var(--color-primary-500);
}
.frota-table-v1__pagination-btn:focus-visible {
  outline: 2px solid var(--color-primary-500);
  outline-offset: 2px;
}
.frota-table-v1__pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.frota-table-v1__pagination-btn--active {
  background: var(--color-primary-500);
  border-color: var(--color-primary-500);
  color: var(--color-neutral-100);
  font-weight: var(--font-weight-bold);
}
.frota-table-v1__pagination-btn--active:hover:not(:disabled) {
  background: var(--color-primary-600);
  border-color: var(--color-primary-600);
  color: var(--color-neutral-100);
}
.frota-table-v1__pagination-btn--arrow {
  padding: var(--padding-4x);
}
.frota-table-v1__pagination-btn--arrow:hover:not(:disabled) {
  border-color: var(--color-primary-500);
  background: var(--color-neutral-100);
  color: var(--color-primary-500);
}
.frota-table-v1__pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--color-neutral-700);
  font-size: var(--font-size-body-small);
  font-family: var(--font-family-primary);
}
.frota-table-v1__radio {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--color-primary-500);
}
.frota-table-v1--striped .frota-table-v1__row:nth-child(even) {
  background-color: var(--color-background-alt);
}
.frota-table-v1--striped .frota-table-v1__row:nth-child(even):hover {
  filter: brightness(0.97);
}
.frota-table-v1--bordered .frota-table-v1__th,
.frota-table-v1--bordered .frota-table-v1__td {
  border-right: var(--border-width-sm) solid var(--color-border-default);
}
.frota-table-v1--bordered .frota-table-v1__th:last-child,
.frota-table-v1--bordered .frota-table-v1__td:last-child {
  border-right: none;
}
@keyframes frota-table-v1-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

:root {
  /* frota-ds primary color override (default: #f9401b laranja Frota) */
  --color-primary-500: #f9401b;
  --color-primary-400: #fa6444;
  --color-primary-300: #fb8b72;

  /* Docusaurus IFM mapping */
  --ifm-color-primary: var(--color-primary-500);
  --ifm-color-primary-dark: #d93518;
  --ifm-color-primary-darker: #bf2e14;
  --ifm-color-primary-darkest: #8a210e;
  --ifm-color-primary-light: var(--color-primary-400);
  --ifm-color-primary-lighter: var(--color-primary-300);
  --ifm-color-primary-lightest: #fdb8aa;

  /* Typography */
  --ifm-font-family-base: var(--font-family-default);
  --ifm-font-size-base: var(--font-size-body-medium);

  --ifm-code-font-size: 95%;
  --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}

[data-theme='dark'] {
  --color-primary-500: #fa6444;
  --ifm-color-primary: var(--color-primary-500);
  --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}

/* Scalar API Reference — mapeado para frota-ds */
.scalar-api-reference {
  --scalar-color-1: var(--color-text-default);
  --scalar-color-accent: var(--color-primary-500);
  --scalar-background-1: var(--color-background-default);
  --scalar-border-color: var(--color-neutral-200);
  --scalar-font: var(--font-family-default);
}

/* ===========================
   VARIÁVEIS GLOBAIS
   =========================== */
:root {
  --ifm-navbar-height: 64px;
  --ifm-navbar-padding-horizontal: 1.5rem;
  --ifm-navbar-padding-vertical: 0;
  --ifm-border-radius: 8px;
  --ifm-transition-fast: 0.15s;
  --navbar-bg: rgba(255, 255, 255, 0.97);
  --navbar-border: rgba(0, 0, 0, 0.08);
  --navbar-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
}

[data-theme='dark'] {
  --navbar-bg: rgba(14, 14, 18, 0.97);
  --navbar-border: rgba(255, 255, 255, 0.07);
  --navbar-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ===========================
   NAVBAR — estrutura base
   =========================== */
.navbar {
  height: var(--ifm-navbar-height);
  background: var(--navbar-bg) !important;
  border-bottom: 1px solid var(--navbar-border);
  box-shadow: var(--navbar-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 200;
}

/* Linha laranja decorativa no topo */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary-500) 0%, #fa6444 100%);
}

.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* ===========================
   LOGO
   =========================== */
.navbar__brand {
  padding: 0;
  margin-right: 2.5rem;
  flex-shrink: 0;
}

.navbar__frota-logo {
  height: 28px;
  width: auto;
  display: block;
}

/* ===========================
   LINKS DE NAVEGAÇÃO
   =========================== */
.navbar__items {
  gap: 0.25rem;
}

.navbar__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ifm-color-emphasis-700) !important;
  border-radius: 6px;
  padding: 0.45rem 0.75rem;
  transition: background 0.15s ease, color 0.15s ease;
  position: relative;
  letter-spacing: -0.005em;
}

.navbar__link:hover {
  color: var(--ifm-color-emphasis-900) !important;
  background: var(--ifm-color-emphasis-100);
  -webkit-text-decoration: none;
  text-decoration: none;
}

[data-theme='dark'] .navbar__link:hover {
  background: rgba(255, 255, 255, 0.07);
}

.navbar__link--active {
  color: var(--color-primary-500) !important;
  font-weight: 600;
  background: rgba(249, 64, 27, 0.07);
}

[data-theme='dark'] .navbar__link--active {
  background: rgba(249, 64, 27, 0.12);
}

/* Ícone seta do dropdown */
.dropdown > .navbar__link::after {
  border-top-color: currentColor;
  margin-left: 0.35rem;
  vertical-align: middle;
}

/* ===========================
   DROPDOWN
   =========================== */
.dropdown__menu {
  border-radius: 10px !important;
  border: 1px solid var(--navbar-border) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  padding: 0.375rem !important;
  min-width: 220px !important;
  overflow: hidden;
  backdrop-filter: blur(16px);
  background: var(--navbar-bg) !important;
}

[data-theme='dark'] .dropdown__menu {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.dropdown__link {
  border-radius: 6px !important;
  padding: 0.55rem 0.75rem !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  transition: background 0.12s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.dropdown__link:hover {
  background: var(--ifm-color-emphasis-100) !important;
  color: var(--ifm-color-emphasis-900) !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
}

[data-theme='dark'] .dropdown__link:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  color: #fff !important;
}

/* Badge "Disponível" no item v1 */
.navbar__dropdown-item--stable::after {
  content: '✓';
  margin-left: auto;
  font-size: 0.75rem;
  color: #22c55e;
  font-weight: 700;
}

/* Badge "Em breve" no item v2 */
.navbar__dropdown-item--soon {
  opacity: 0.75;
}

.navbar__dropdown-item--soon::after {
  content: 'Em breve';
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 600;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  white-space: nowrap;
}

/* ===========================
   NAVBAR ITEMS "EM BREVE"
   =========================== */
.navbar__item--soon-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  cursor: default;
  -webkit-user-select: none;
          user-select: none;
}

a.navbar__item--soon-link {
  cursor: pointer !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
}

a.navbar__item--soon-link:hover .navbar__item--soon-label {
  color: var(--ifm-color-emphasis-800);
}

.navbar__item--soon-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ifm-color-emphasis-500);
  letter-spacing: -0.005em;
}

.navbar__item--soon-badge {
  font-size: 0.65rem;
  font-weight: 600;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 4px;
  padding: 0.1rem 0.35rem;
  line-height: 1.4;
  white-space: nowrap;
}

/* ===========================
   BOTÃO CTA (direita)
   =========================== */
.navbar__cta-button {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 1rem;
  background: var(--color-primary-500);
  color: #fff !important;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 7px;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  letter-spacing: -0.01em;
  box-shadow: 0 1px 3px rgba(249, 64, 27, 0.35);
}

.navbar__cta-button:hover {
  background: #d93518;
  box-shadow: 0 3px 10px rgba(249, 64, 27, 0.45);
  transform: translateY(-1px);
}

.navbar__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(249, 64, 27, 0.35);
}

/* ===========================
   HAMBURGER MOBILE
   =========================== */
.navbar__toggle {
  color: var(--ifm-color-emphasis-700);
  padding: 0.4rem;
  border-radius: 6px;
  transition: background 0.15s ease;
}

.navbar__toggle:hover {
  background: var(--ifm-color-emphasis-100);
}

/* ===========================
   SIDEBAR MOBILE (navbar)
   =========================== */
.navbar-sidebar {
  background: var(--navbar-bg) !important;
  border-right: 1px solid var(--navbar-border);
}

.navbar-sidebar__brand {
  border-bottom: 1px solid var(--navbar-border);
  padding: 1rem 1.25rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #f8f8f8 !important;
  border-top: 1px solid var(--ifm-color-emphasis-200);
  padding: 3.5rem 0 2rem;
}

.footer__title {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  color: #6b7280 !important;
  margin-bottom: 1rem !important;
}

.footer__link-item {
  font-size: 0.875rem !important;
  color: #374151 !important;
  transition: color 0.15s ease !important;
  line-height: 2 !important;
}

.footer__link-item:hover {
  color: var(--color-primary-500) !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
}

.footer__bottom {
  border-top: 1px solid var(--ifm-color-emphasis-200) !important;
  margin-top: 2.5rem !important;
  padding-top: 1.5rem !important;
}

.footer__copyright {
  font-size: 0.8125rem !important;
  color: #9ca3af !important;
}

[data-theme='dark'] .footer {
  background: #18181b !important;
  border-top-color: rgba(255, 255, 255, 0.07) !important;
}

[data-theme='dark'] .footer__title {
  color: rgba(255, 255, 255, 0.4) !important;
}

[data-theme='dark'] .footer__link-item {
  color: rgba(255, 255, 255, 0.6) !important;
}

[data-theme='dark'] .footer__link-item:hover {
  color: #fff !important;
}

[data-theme='dark'] .footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.07) !important;
}

[data-theme='dark'] .footer__copyright {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* ===========================
   FOCO E ACESSIBILIDADE
   =========================== */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===========================
   SCALAR — OCULTAR ASK AI
   =========================== */
/* O CDN do Scalar pode carregar versões com Ask AI;
   esconder via CSS pois não há opção de config no @scalar/types@0.11.0 */
[class*="ask-ai"],
[class*="AskAi"],
[class*="askAi"],
[data-testid*="ask-ai"],
[aria-label*="Ask AI"],
[aria-label*="Ask Ai"],
.scalar-ask-ai,
.scalar-ai-chat-trigger,
.scalar-app [class*="ai-chat"],
.scalar-app [class*="AiChat"] {
  display: none !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.
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footerLogoLink_BH7S:hover {
  opacity: 1;
}

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

.menuExternalLink_NmtK {
  align-items: center;
}

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

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

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

/* ===========================
   HERO
   =========================== */
.hero_aEcG {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f2 60%, #ffffff 100%);
  border-bottom: 1px solid var(--ifm-color-emphasis-200);
  overflow: hidden;
  padding: 5rem 2rem;
}

.hero_aEcG::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-500) 0%, #fa6444 100%);
  z-index: 3;
}

[data-theme='dark'] .hero_aEcG {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-bottom-color: transparent;
}

[data-theme='dark'] .hero_aEcG::before {
  opacity: 0.6;
}

.heroContent_mKPX {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.heroBadge_Z6oq {
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.hero_aEcG h1 {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  line-height: 1.15 !important;
  margin-bottom: 1rem !important;
}

.hero_aEcG > .heroContent_mKPX > p {
  font-size: 1.125rem !important;
  max-width: 540px;
  margin: 0 auto 1.5rem !important;
  opacity: 0.85;
}

/* "Novas funcionalidades" banner */
.heroBanner_qdFl {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(249, 64, 27, 0.06);
  border: 1px solid rgba(249, 64, 27, 0.2);
  border-radius: 1rem;
  padding: 0.65rem 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
  line-height: 1.5;
}

[data-theme='dark'] .heroBanner_qdFl {
  background: rgba(249, 64, 27, 0.12);
  border-color: rgba(249, 64, 27, 0.3);
}

.heroBannerDot_CRMz {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary-400);
  flex-shrink: 0;
  margin-top: 0.43em;
  animation: pulse_vKli 2s infinite;
}

@keyframes pulse_vKli {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* Dark mode: revert texto do hero para claro */
[data-theme='dark'] .heroContent_mKPX [class*='color-neutral-900'],
[data-theme='dark'] .heroContent_mKPX [class*='color-neutral-600'] {
  color: #fff !important;
}

[data-theme='dark'] .heroContent_mKPX [class*='color-neutral-600'] {
  color: rgba(255, 255, 255, 0.75) !important;
}

.heroActions_Z2kl {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.heroLink_mlT7 {
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
}

/* Decoration */
.heroDecoration_qnf4 {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.heroOrb_hYhN {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 64, 27, 0.07) 0%, transparent 65%);
  right: -150px;
  top: -150px;
}

[data-theme='dark'] .heroOrb_hYhN {
  background: radial-gradient(circle, rgba(249, 64, 27, 0.18) 0%, transparent 70%);
}

.heroGrid_ibpR {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

[data-theme='dark'] .heroGrid_ibpR {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* ===========================
   SECTION HEADER
   =========================== */
.sectionHeader_Gahl {
  text-align: center;
  margin-bottom: 3rem;
}

.sectionHeader_Gahl h2 {
  margin-bottom: 0.75rem !important;
}

.sectionHeader_Gahl p {
  max-width: 520px;
  margin: 0 auto !important;
}

/* ===========================
   HIGHLIGHTS
   =========================== */
.highlights_myJb {
  padding: 5rem 0;
  background: var(--ifm-background-color);
}

.highlightGrid_mI1M {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

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

.highlightCardLink_V0DX {
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  color: inherit;
  height: 100%;
  display: flex;
}

.highlightCard_lrX0 {
  padding: 1.75rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease;
  height: 100%;
  width: 100%;
}

.highlightCard_lrX0:hover {
  transform: translateY(-3px);
}

/* ===========================
   HIGHLIGHT FEATURED CARD (v2)
   =========================== */
.highlightFeaturedLink_gL5_ {
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  color: inherit;
  display: block;
  margin-bottom: 1.25rem;
}

.highlightFeaturedCard_HMXz {
  padding: 1.75rem 2rem !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  border-color: rgba(59, 130, 246, 0.4) !important;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04) 0%, rgba(99, 102, 241, 0.04) 100%) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlightFeaturedCard_HMXz:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12) !important;
}

[data-theme='dark'] .highlightFeaturedCard_HMXz {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%) !important;
}

.highlightFeaturedLeft_N9e9 {
  flex-shrink: 0;
}

.highlightFeaturedIconWrap_uTje {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme='dark'] .highlightFeaturedIconWrap_uTje {
  background: rgba(59, 130, 246, 0.2);
}

.highlightFeaturedIcon_YD2a {
  font-size: 1.75rem;
  line-height: 1;
}

.highlightFeaturedBody_Erf3 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.highlightFeaturedBody_Erf3 h3 {
  margin: 0 !important;
}

.highlightFeaturedBody_Erf3 p {
  margin: 0 !important;
}

.highlightFeaturedCta_GnWI {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .highlightFeaturedCard_HMXz {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .highlightFeaturedCta_GnWI {
    align-self: flex-start;
  }
}

.highlightCardCta_DKmB {
  margin-top: auto;
  padding-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary-500);
}

/* Destaque para cards "Em breve" — borda sutil azul */
.highlightCardSoon_EEAL {
  border-color: rgba(59, 130, 246, 0.35) !important;
  background: rgba(59, 130, 246, 0.03) !important;
}

[data-theme='dark'] .highlightCardSoon_EEAL {
  background: rgba(59, 130, 246, 0.06) !important;
}

.highlightIcon_v9kZ {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 92, 38, 0.1);
  border-radius: 10px;
  color: #e85c26;
  flex-shrink: 0;
}

[data-theme='dark'] .highlightIcon_v9kZ {
  background: rgba(232, 92, 38, 0.15);
}

.highlightTagRow_zM7I {
  display: flex;
}

.highlightCard_lrX0 h3 {
  margin: 0 !important;
}

.highlightCard_lrX0 p {
  margin: 0 !important;
  flex: 1;
}

/* ===========================
   API VERSIONS
   =========================== */
.versions_izCI {
  padding: 5rem 0;
  background: var(--ifm-background-surface-color, #f8f8f8);
}

[data-theme='dark'] .versions_izCI {
  background: var(--ifm-background-surface-color, #1c1c1e);
}

.versionsGrid_UlZY {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

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

.versionCard_EGWy {
  padding: 2rem !important;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* v1 ativo — destaque primário */
.versionCardActive_neZD {
  border-color: var(--color-primary-500) !important;
  box-shadow: 0 0 0 1px var(--color-primary-500), 0 8px 32px rgba(249, 64, 27, 0.1) !important;
}

/* v2 disponível — borda azul sólida para diferenciar da v1 */
.versionCardNew_yKUw {
  border-color: rgba(59, 130, 246, 0.5) !important;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.25), 0 8px 32px rgba(59, 130, 246, 0.08) !important;
}

.versionCardHeader_TpR4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.versionCard_EGWy h3 {
  margin: 0 !important;
}

.versionCard_EGWy p {
  margin: 0 !important;
}

.versionFeatureList__p4Z {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.versionFeatureList__p4Z li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.versionFeatureList__p4Z li::before {
  content: '✓';
  color: var(--color-primary-500);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Item "em breve" dentro de card disponível */
.versionFeatureItemSoon_s1El::before {
  content: '·' !important;
  color: var(--ifm-color-emphasis-400) !important;
  font-size: 1.25rem !important;
  line-height: 1 !important;
}

/* Divisor "Em breve" entre features disponíveis e futuras */
.versionFeatureSoonDivider_St4S {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  list-style: none;
}

.versionFeatureSoonDivider_St4S::before {
  content: none !important;
}

.versionFeatureSoonDivider_St4S span {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ifm-color-emphasis-500);
  white-space: nowrap;
}

.versionFeatureSoonDivider_St4S::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ifm-color-emphasis-200);
}

.versionCardCta_X9Sp {
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  margin-top: auto;
}

/* ===========================
   HERO — TWO-COLUMN LAYOUT
   =========================== */
.heroLayout_anMo {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.heroLayout_anMo .heroContent_mKPX {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.heroLayout_anMo .heroContent_mKPX > p {
  font-size: 1.125rem;
  margin: 0 0 1.5rem !important;
  opacity: 0.85;
}

.heroLayout_anMo .heroActions_Z2kl {
  justify-content: flex-start;
}

.heroLayout_anMo .heroBadge_Z6oq {
  justify-content: flex-start;
}

.heroCodeCol_iCs3 {
  position: relative;
  z-index: 2;
}

/* ===========================
   HERO — CODE WINDOW
   =========================== */
.heroCodeWrap_Ip9k {
  background: #0d1117;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.8rem;
  line-height: 1.75;
}

[data-theme='dark'] .heroCodeWrap_Ip9k {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.heroCodeHeader_me1V {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.875rem 1.25rem;
  background: #161b22;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.heroCodeDot_ntd2 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.heroCodeDot_ntd2:nth-child(1) { background: #ff5f57; }
.heroCodeDot_ntd2:nth-child(2) { background: #ffbd2e; }
.heroCodeDot_ntd2:nth-child(3) { background: #28c840; }

.heroCodeTitle_SvE4 {
  margin-left: 0.5rem;
  font-size: 0.725rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: inherit;
}

.heroCodePre_MtBV {
  margin: 0 !important;
  padding: 1.25rem 1.5rem !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow-x: auto;
}

.heroCodePre_MtBV code {
  color: #c9d1d9;
  background: transparent !important;
  font-size: inherit;
  white-space: pre;
  padding: 0 !important;
}

.heroCodeDivider_NR51 {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.heroCodeResponseLabel_vune {
  padding: 0.75rem 1.5rem 0;
  font-size: 0.6875rem;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Ghost lines for decorative back pane */
.heroCodeGhostLines_pP8B {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.25rem 1.5rem;
}

.heroCodeGhostLines_pP8B span {
  display: block;
  height: 10px;
  width: 85%;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
}

/* 3D stacked cards layout */
.heroCodeStack_nP3t {
  position: relative;
  padding: 0 18px 18px 0;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.8rem;
  line-height: 1.75;
}

.heroCodePaneBack_BKYc {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 0;
  bottom: 0;
  background: #1c2128;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  z-index: 0;
  opacity: 0.7;
}

.heroCodePaneFront_R8OF {
  position: relative;
  z-index: 1;
  background: #0d1117;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

[data-theme='dark'] .heroCodePaneFront_R8OF {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.heroCodeResponse_rTPq {
  margin: 0 !important;
  padding: 0.75rem 1.5rem 1.25rem !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow-x: auto;
}

.heroCodeResponse_rTPq code {
  color: #7ee787;
  background: transparent !important;
  font-size: inherit;
  white-space: pre;
  padding: 0 !important;
}

/* Responsive: stack on tablet/mobile */
@media (max-width: 996px) {
  .heroLayout_anMo {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .heroLayout_anMo .heroActions_Z2kl {
    justify-content: center;
  }

  .heroLayout_anMo .heroBadge_Z6oq {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .heroCodeWrap_Ip9k,
  .heroCodeStack_nP3t {
    font-size: 0.725rem;
  }
  .heroCodeStack_nP3t {
    padding: 0 12px 12px 0;
  }
  .heroCodePaneBack_BKYc {
    top: 12px;
    left: 12px;
  }
}

/* ===========================
   HOW TO START
   =========================== */
.howToStart_DRvZ {
  padding: 5rem 2rem;
  background: var(--ifm-background-surface-color);
  border-bottom: 1px solid var(--ifm-color-emphasis-200);
}

.howToStartGrid_VCwd {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.howToStartCard_BUfn {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
  background: var(--ifm-background-color);
  border-radius: 12px;
  border: 1px solid var(--ifm-color-emphasis-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.howToStartNumber_KL33 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary-500, #e85c26);
  line-height: 1;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.howToStartCta_KATW {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

@media (max-width: 996px) {
  .howToStartGrid_VCwd {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ===========================
   V2 CALLOUT
   =========================== */
.v2Callout_vjiL {
  padding: 4rem 2rem;
  background: #111827;
}

.v2CalloutInner_TRYA {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.v2CalloutTag_jea8 {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e85c26;
  background: rgba(232, 92, 38, 0.15);
  border: 1px solid rgba(232, 92, 38, 0.4);
  border-radius: 4px;
  padding: 3px 10px;
  line-height: 1.5;
}

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

.v2BetaTag_vKD6 {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #f59e0b;
  border-radius: 4px;
  padding: 3px 10px;
  line-height: 1.5;
}

.v2CalloutTitle_gkpw {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: #f9fafb;
}

.v2CalloutDesc_qN2M {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #9ca3af;
  max-width: 600px;
}

@media (max-width: 768px) {
  .v2CalloutTitle_gkpw {
    font-size: 1.375rem;
  }
}

.page_LpqG {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

/* ===========================
   BANNER GLOBAL
   =========================== */
.globalBanner_PeCC {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--ifm-color-emphasis-100);
  border: 1px solid var(--ifm-color-emphasis-200);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

[data-theme='dark'] .globalBanner_PeCC {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.bannerMain_qhCA {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bannerMain_qhCA h1 {
  margin: 0 !important;
}

.bannerGroupSummary_seiv {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding-left: 1.75rem;
}

.bannerGroupItem_PhHG {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.bannerGroupDot_cX_N {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bannerGroupName_lWAJ {
  font-size: 0.8125rem;
  color: var(--ifm-color-emphasis-700);
}

.bannerGroupStatus_VWi_ {
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===========================
   CONTAINER
   =========================== */
.container_zP4T {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.timestamp_HOmg {
  margin: 0 !important;
}

.divider_wU6w {
  border: none;
  border-top: 1px solid var(--ifm-color-emphasis-200);
  margin: 0;
}

[data-theme='dark'] .divider_wU6w {
  border-top-color: rgba(255, 255, 255, 0.07);
}

/* ===========================
   SECTION GENÉRICA
   =========================== */
.section_vx03 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sectionLabel_z24R {
  margin: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===========================
   GRUPOS DE SERVIÇO
   =========================== */
.groups_DsXA {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

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

.groupLabel_JnsP {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.groupDot_W2Kk {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===========================
   SERVICE LIST
   =========================== */
.serviceList_e07z {
  border: 1px solid var(--ifm-color-emphasis-200);
  border-radius: 10px;
  overflow: hidden;
}

[data-theme='dark'] .serviceList_e07z {
  border-color: rgba(255, 255, 255, 0.08);
}

.row_WyTc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.125rem;
  border-bottom: 1px solid var(--ifm-color-emphasis-200);
  transition: background 0.12s ease;
}

[data-theme='dark'] .row_WyTc {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.row_WyTc:last-child {
  border-bottom: none;
}

.row_WyTc:hover {
  background: var(--ifm-color-emphasis-100);
}

[data-theme='dark'] .row_WyTc:hover {
  background: rgba(255, 255, 255, 0.03);
}

.rowAffected_Gpck {
  background: rgba(239, 68, 68, 0.04) !important;
}

[data-theme='dark'] .rowAffected_Gpck {
  background: rgba(239, 68, 68, 0.07) !important;
}

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

.badge_Jk9A {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.versionPill_iI6W {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ifm-color-emphasis-600);
  background: var(--ifm-color-emphasis-200);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
}

/* ===========================
   DOT
   =========================== */
.dot_GnoT {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot-color, #22c55e);
  flex-shrink: 0;
  position: relative;
}

.dotLarge_NfOh {
  width: 12px;
  height: 12px;
}

.dotPulse_kesN::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--dot-color, #22c55e);
  opacity: 0.25;
  animation: ping_WRcG 2s ease-in-out infinite;
}

.dotLarge_NfOh.dotPulse_kesN::after {
  inset: -4px;
}

@keyframes ping_WRcG {
  0%   { transform: scale(1); opacity: 0.25; }
  70%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ===========================
   INCIDENTES ATIVOS
   =========================== */
.incidentList_y83E {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.incidentCard_JTBi {
  border: 1px solid color-mix(in srgb, var(--incident-color) 35%, transparent);
  background: color-mix(in srgb, var(--incident-color) 5%, transparent);
  border-radius: 10px;
  padding: 1rem 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

[data-theme='dark'] .incidentCard_JTBi {
  background: color-mix(in srgb, var(--incident-color) 10%, transparent);
}

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

.incidentTime_rOYi {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--ifm-color-emphasis-500);
  white-space: nowrap;
}

.incidentMsg_to4P {
  margin: 0 !important;
  padding-left: 1.25rem;
}

.incidentImpactRow_sxHY {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-left: 1.25rem;
}

.incidentImpactBadge_Co7N {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===========================
   TIMELINE DE INCIDENTE
   =========================== */
.timeline_DJ0s {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-left: 1.25rem;
  padding-top: 0.25rem;
}

.timelineStep_erdu {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.timelineConnector_vhAi {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  height: 16px;
}

.timelineLine_A1iV {
  flex: 1;
  height: 1px;
  background: var(--ifm-color-emphasis-300);
}

.timelineLineFilled_YFI6 {
  background: #22c55e;
}

[data-theme='dark'] .timelineLine_A1iV {
  background: rgba(255, 255, 255, 0.15);
}

[data-theme='dark'] .timelineLineFilled_YFI6 {
  background: #22c55e;
}

.timelineDot_DRuG {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ifm-color-emphasis-300);
  flex-shrink: 0;
  z-index: 1;
}

[data-theme='dark'] .timelineDot_DRuG {
  background: rgba(255, 255, 255, 0.2);
}

.timelineStepActive_jMdQ .timelineDot_DRuG {
  background: #22c55e;
}

.timelineDotCurrent_welB {
  background: #f59e0b !important;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

.timelineContent_NBcF {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding-top: 0.375rem;
}

.timelineLabel_s0mk {
  font-size: 0.68rem;
  font-weight: 500;
  text-align: center;
  color: var(--ifm-color-emphasis-700);
  line-height: 1.2;
}

.timelineStepActive_jMdQ .timelineLabel_s0mk {
  color: var(--ifm-color-emphasis-800);
}

.timelineDotCurrent_welB + .timelineContent_NBcF .timelineLabel_s0mk,
.timelineStepActive_jMdQ.timelineDotCurrent_welB .timelineLabel_s0mk {
  font-weight: 700;
}

.timelineTime_UimF {
  font-size: 0.63rem;
  color: var(--ifm-color-emphasis-600);
  text-align: center;
}

.timelineStepPending_IFa8 {
  opacity: 0.55;
}

/* ===========================
   HISTÓRICO DE INCIDENTES
   =========================== */
.historyList_qrg1 {
  display: flex;
  flex-direction: column;
}

.historyItem_B68s {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--ifm-color-emphasis-200);
}

[data-theme='dark'] .historyItem_B68s {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.historyItem_B68s:last-child {
  border-bottom: none;
}

.historyMeta_arHB {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-top: 2px;
}

.historyDurationPill_R2fu {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ifm-color-emphasis-700);
  background: var(--ifm-color-emphasis-200);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  width: fit-content;
}

.historyBody_hxFo {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.historyHeader_MHlB {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
  margin-bottom: 0.125rem;
}

.historyDesc_DKsL {
  margin: 0 !important;
  font-size: 0.8125rem;
}

.historyTagRow_ISd4 {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.historyTagLabel_RYPe {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ifm-color-emphasis-600);
  background: var(--ifm-color-emphasis-200);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.historyTagResolution_LDw6 {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
}

[data-theme='dark'] .historyTagResolution_LDw6 {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
}

/* ===========================
   COPY LINK BUTTON
   =========================== */
.copyLink_wyhS {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.15rem 0.3rem;
  font-size: 0.75rem;
  color: var(--ifm-color-emphasis-400);
  border-radius: 4px;
  transition: color 0.12s ease, background 0.12s ease;
  line-height: 1;
  flex-shrink: 0;
}

.copyLink_wyhS:hover {
  color: var(--ifm-color-emphasis-700);
  background: var(--ifm-color-emphasis-100);
}

[data-theme='dark'] .copyLink_wyhS:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* ===========================
   INCIDENT TIMES
   =========================== */
.incidentTimes_XvLK {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--ifm-color-emphasis-700);
  white-space: nowrap;
  flex-wrap: wrap;
}

.incidentTimeDot_B1nC {
  color: var(--ifm-color-emphasis-500);
}

/* ===========================
   FOOTER
   =========================== */
.footer_rTOe {
  font-size: 0.8125rem;
  color: var(--ifm-color-emphasis-500);
  margin: 0 !important;
}

.footer_rTOe a {
  color: var(--color-primary-500);
  -webkit-text-decoration: none;
  text-decoration: none;
}

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

/* ===========================
   COMING SOON
   =========================== */
.comingSoon_QE0M {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 1.25rem;
  padding: 4rem 1.5rem;
  text-align: center;
}

.comingSoon_QE0M h1 { margin: 0 !important; }
.comingSoon_QE0M p  { max-width: 440px; margin: 0 !important; }
.comingSoon_QE0M a  { color: var(--color-primary-500); }

.comingSoonIcon_AVfY {
  width: 48px;
  height: 48px;
  color: var(--color-primary-500);
  opacity: 0.8;
}

.page_Vyl1 {
  max-width: 740px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

/* ===========================
   HERO
   =========================== */
.hero_Hyu4 {
  margin-bottom: 2.5rem;
}

.hero_Hyu4 h1 {
  margin: 0 0 0.5rem !important;
}

/* ===========================
   FILTER BAR
   =========================== */
.filterBar_H2Tg {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.chip_wmA1 {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--ifm-color-emphasis-200);
  background: transparent;
  color: var(--ifm-color-emphasis-700);
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
  -webkit-user-select: none;
          user-select: none;
}

.chip_wmA1:hover {
  border-color: var(--ifm-color-emphasis-400);
  background: var(--ifm-color-emphasis-100);
}

[data-theme='dark'] .chip_wmA1 {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ifm-color-emphasis-600);
}

[data-theme='dark'] .chip_wmA1:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.chipActive_kq7s {
  background: var(--color-primary-500);
  border-color: var(--color-primary-500);
  color: #fff !important;
}

.chipActive_kq7s:hover {
  background: var(--color-primary-600, var(--color-primary-500));
  border-color: var(--color-primary-600, var(--color-primary-500));
}

[data-theme='dark'] .chipActive_kq7s {
  background: var(--color-primary-500);
  border-color: var(--color-primary-500);
  color: #fff !important;
}

/* ===========================
   TIMELINE
   =========================== */
.timeline_jg27 {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.monthGroup_KA8c {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0 1.5rem;
}

.monthTrack_F0tj {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.monthDot_KxPg {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary-500);
  border: 2px solid var(--ifm-background-color);
  box-shadow: 0 0 0 2px var(--color-primary-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.monthLine_EsaF {
  width: 2px;
  flex-grow: 1;
  background: var(--ifm-color-emphasis-200);
  margin-top: 6px;
}

[data-theme='dark'] .monthLine_EsaF {
  background: rgba(255, 255, 255, 0.07);
}

.monthContent_kH1W {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.monthLabel_cfwz {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary-500);
  text-transform: uppercase;
  margin: 0 !important;
}

/* ===========================
   ENTRY CARD
   =========================== */
.entry_xip_ {
  border: 1px solid var(--ifm-color-emphasis-200);
  border-radius: 12px;
  padding: 1.375rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  background: var(--ifm-background-color);
}

[data-theme='dark'] .entry_xip_ {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.entryTop_Vqze {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

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

.entryDate_geZO {
  font-size: 0.72rem;
  color: var(--ifm-color-emphasis-500);
}

.entryTitle_OgG4 {
  margin: 0 !important;
}

.entryBadges_mrs9 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
}

.entryDesc__1_N {
  margin: 0 !important;
}

.entryFeatures_mMoS {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.entryFeatures_mMoS li {
  padding: 0;
}

.entryLinks_aFCk {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 0.25rem;
  border-top: 1px solid var(--ifm-color-emphasis-200);
}

[data-theme='dark'] .entryLinks_aFCk {
  border-top-color: rgba(255, 255, 255, 0.06);
}

.entryLink_Kr2h {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary-500) !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  transition: opacity 0.12s ease;
}

.entryLink_Kr2h:hover {
  opacity: 0.8;
  -webkit-text-decoration: underline !important;
  text-decoration: underline !important;
}

/* ===========================
   BADGES
   =========================== */
.newBadge_isfp {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #22c55e;
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1.5;
  vertical-align: middle;
}

.betaBadge_rmW4 {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #f59e0b;
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1.5;
  vertical-align: middle;
}

.breakingBadge_aAhH {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #ef4444;
  border-radius: 4px;
  padding: 2px 7px;
  line-height: 1.5;
  vertical-align: middle;
}

.tagPill_G2dn {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1.5;
  background: var(--ifm-color-emphasis-200);
  color: var(--ifm-color-emphasis-700);
}

.tagPillV1_W5rx {
  background: rgba(14, 165, 233, 0.12);
  color: #0ea5e9;
}

.tagPillV2_pfI6 {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

.tagPillPortal_L_RL {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

[data-theme='dark'] .tagPillV1_W5rx  { color: #38bdf8; }
[data-theme='dark'] .tagPillV2_pfI6  { color: #a78bfa; }
[data-theme='dark'] .tagPillPortal_L_RL { color: #4ade80; }

/* ===========================
   COPY LINK
   =========================== */
.copyLink_RIhK {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0.35rem;
  font-size: 0.75rem;
  color: var(--ifm-color-emphasis-400);
  border-radius: 4px;
  transition: color 0.12s ease, background 0.12s ease;
  line-height: 1;
  flex-shrink: 0;
}

.copyLink_RIhK:hover {
  color: var(--ifm-color-emphasis-700);
  background: var(--ifm-color-emphasis-100);
}

[data-theme='dark'] .copyLink_RIhK:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* ===========================
   EMPTY STATE
   =========================== */
.empty_IlmZ {
  text-align: center;
  padding: 3rem 0;
  color: var(--ifm-color-emphasis-400);
  font-size: 0.9rem;
}

/* ===========================
   FOOTER NOTE
   =========================== */
.footerNote__z1V {
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  background: var(--ifm-color-emphasis-100);
  border-left: 3px solid var(--color-primary-500);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1rem;
}

[data-theme='dark'] .footerNote__z1V {
  background: rgba(255, 255, 255, 0.03);
}

.footerNote__z1V p {
  margin: 0 !important;
}

.subscribeLink_NMyY {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary-500) !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: opacity 0.12s ease;
}

.subscribeLink_NMyY:hover {
  opacity: 0.8;
  -webkit-text-decoration: underline !important;
  text-decoration: underline !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.
 */

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

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

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

.codeBlockTitle_OeMC + .codeBlockContent_QJqH .codeBlock_a8dz {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

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

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

