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

.navbar__icon {
    font-family: poppins,sans-serif;
    font-size: 16px;
  }

.navbar__icon:before {
  content: "";
  display: inline-flex;
  height: 20px;
  width: 20px;
  margin-right: 4px;
  background-color: var(--ifm-navbar-link-color);
}

.navbar__rancher:before {
  -webkit-mask: url(/assets/images/icon-rancher-mask-73e198d51ae2f3c9da976547742995bc.png) no-repeat 100% 100%;
          mask: url(/assets/images/icon-rancher-mask-73e198d51ae2f3c9da976547742995bc.png) no-repeat 100% 100%;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 35px;
  height: 13px;
  padding-bottom: 10px;
  background-color: #2e68e9;
}

.navbar__rd:before {
  -webkit-mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZAAAAFKCAYAAAAzGgmFAAAAxXpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVBtDsMgCP3vKXYEvqpwHLt2yW6w4w8Fk3bZS+AhTwEp5+f9Ko8BQimyNa1WKzjExKh7oBDo0yPI9BO2Irzni/QMyZmdOQStwbjy+WAxjnfbpZA+U9jvgkkw6U+hbMRjIvLgyEKWhZhCwCzQ41tQTdv1C/sJd2hYGU4F9tm9pfZzlubbOzbvw0QnI4N7ZokBeBgX7kNw7we/iFxnxmbGchJfyL89LZQvaIRZwn57syoAAAGFaUNDUElDQyBwcm9maWxlAAB4nH2RPUjDQBiG37ZKpVQELSjikKGKgwVREUetQhEqhFqhVQeTS/+gSUOS4uIouBYc/FmsOrg46+rgKgiCPyCuLk6KLlLid0mhRYx3HPfw3ve+3H0H+Otlppod44CqWUYqERcy2VUh+IoQ+mn2YlRipj4nikl4jq97+Ph+F+NZ3nV/jm4lZzLAJxDPMt2wiDeIpzctnfM+cYQVJYX4nHjMoAsSP3JddvmNc8FhP8+MGOnUPHGEWCi0sdzGrGioxFPEUUXVKN+fcVnhvMVZLVdZ8578heGctrLMdVpDSGARSxAhQEYVJZRhIUa7RoqJFJ3HPfyDjl8kl0yuEhg5FlCBCsnxg//B796a+ckJNykcBzpfbPtjGAjuAo2abX8f23bjBAg8A1day1+pAzOfpNdaWvQI6NkGLq5bmrwHXO4AA0+6ZEiOFKDlz+eB9zP6pizQdwuE1ty+Nc9x+gCkqVfJG+DgEBgpUPa6x7u72vv2b02zfz+OuHKyFIjAqwAADXhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDQuNC4wLUV4aXYyIj4KIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgIHhtbG5zOkdJTVA9Imh0dHA6Ly93d3cuZ2ltcC5vcmcveG1wLyIKICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIgogICB4bXBNTTpEb2N1bWVudElEPSJnaW1wOmRvY2lkOmdpbXA6YzFlMWViZTktOTQyOS00YWFiLTg5ZDMtYjM2N2U3ODRlMTk4IgogICB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjI1NGI3NmM0LWUxZjQtNDM5Ni1hZWUxLTE1MDdkNGU4ODhmNSIKICAgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjQ0ODY3YzliLTA1OTMtNDNkZi1iZTViLWEzN2RlNWU3MGFkYyIKICAgZGM6Rm9ybWF0PSJpbWFnZS9wbmciCiAgIEdJTVA6QVBJPSIyLjAiCiAgIEdJTVA6UGxhdGZvcm09IkxpbnV4IgogICBHSU1QOlRpbWVTdGFtcD0iMTY5ODEwMzE2OTQyMTMzMiIKICAgR0lNUDpWZXJzaW9uPSIyLjEwLjM0IgogICB0aWZmOk9yaWVudGF0aW9uPSIxIgogICB4bXA6Q3JlYXRvclRvb2w9IkdJTVAgMi4xMCIKICAgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyMzoxMDoyM1QxNjoxOToyOS0wNzowMCIKICAgeG1wOk1vZGlmeURhdGU9IjIwMjM6MTA6MjNUMTY6MTk6MjktMDc6MDAiPgogICA8eG1wTU06SGlzdG9yeT4KICAgIDxyZGY6U2VxPgogICAgIDxyZGY6bGkKICAgICAgc3RFdnQ6YWN0aW9uPSJzYXZlZCIKICAgICAgc3RFdnQ6Y2hhbmdlZD0iLyIKICAgICAgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDphY2RmM2ZiNi1hMGI2LTQxN2UtODczZi01ZTRhYWM5YjNlZjEiCiAgICAgIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkdpbXAgMi4xMCAoTGludXgpIgogICAgICBzdEV2dDp3aGVuPSIyMDIzLTEwLTIzVDE2OjE5OjI5LTA3OjAwIi8+CiAgICA8L3JkZjpTZXE+CiAgIDwveG1wTU06SGlzdG9yeT4KICA8L3JkZjpEZXNjcmlwdGlvbj4KIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/PrJSgCsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAAHYcAAB2HAY/l8WUAAAAHdElNRQfnChcXEx1ba26jAAAQGklEQVR42u3de5CddX3H8c9zdrMLIYHcgDDWG1pCaotIYsUpFHYDgrQ6ddqiqUrH3qzV8R8odqSYs9g6heK0xWkddJjpaKGKneoQ6yCXjYIUWxYQewnhJqKFBHJPSLKb3fPrHwmSBEiym2T3XF6vGSYk2ezZ/T7POe/9Peec56kyleq3zkl6z0itnJJGtTBVFiTlxCQzksza/WtPADrTSJKtSTbu+rVak5JVqZWVaVSPJMMPpH7h+qn64qpJvbXrvtWbDb39SZYkVV+S05PU7CMAE9JI8oOUajBVYzCzhwfz8YuG2ysgVw0uSiOXpMrSJMfb5gBHxMYky1OqL2XZuXemqkprBuT6oWlZs+X9KeUTSU61XQEmU1mZqnZNTpx5Yz68eGdrBKR+c0+qub+fVJcneZ2NCDClnkzKNSnrbkj94pHmDchVg+ek5B+S/IJtBtBUK5JHU/Kx1Jfc1lwBqa+Yn5TPpsrv2EgAzdyR3JRUl6bet3rqAzJwR19SuzHJSbYMQEt4LqW6JPW+W6cmIDff3JWVc69MqivjpbgArbcWKflcTjr2sok+yT6xgNRXzEiVf03K+bYBQAurclsa1W+m3rf1yAekfuucVL3fTMrbTR6gLQyl7Py11C949sgFpH77a1J13Z7kFPMGaCuPpIydn/r5Tx3+gNRXzEtV7o43BQK0q8fS3TgrV5y35mA++OCe/K4vn54qt4gHQFt7Y0Zr38zV35t5eAJSX9Gd2jFf95wHQEdYnOGRf8nNN3cdekCqRj0l7zBTgA5R8o6snLfsgHnY79/uepPg7Um6TBSgozRSyjv3d+qTVw5IfcX8VOWhJCeYI0BHejalevMrnfZkP4ewymfFA6CjnZCqXDu+Fcius+quyGRfsRCA5lPKktSXDB54BVK/uSelfF48ANi11Kg+n+u+1XvggOy6GNRCEwNgt1OysfdDL8nFXr+7fmhaVm9eleT15gXAHp5KWfvze17VcO8VyOpNHxAPAF7Ga1Idv3TPP3gxIKVUSf7UjAB4eY1P7G7FPgEZGHy75z4AeGXVwgx8520vDUhqHzQcAPbfkHLJz/43ya6X7lbznk4y13QA2I8Nmb3jpHz8ouFdK5Bq7hLxAOAgzM6G3v7kxUNYS8wEgINT9e0ZkH4DAeAg9SdJlfqtc1L1PJeDvTohAJ2ukTJyfC3pPUM8ABiHWqqet9RSa7jOOQDjU2VBLY3aApMAYFwaWVBLFQEBYHxqObWWlJNMAoBxKZlfSzLTJAAYp5kCAsCEAzLDHACYSEB6zAGAcer1BkIAJkRAABAQAAQEAAEBQEAAQEAAEBAABAQAAQFAQABAQAAQEAAEBAABAUBAAEBAABAQAAQEAAEBQEAAQEAAEBAABAQAAQFAQABAQAAQEAAEBAABAUBAAEBAABAQAAQEgLbR3Ypf9PRpXZk/o2fSb3fbzrGs3jpir4E2NX9GT6ZP65r02129dSTbdo4JyGQ47+TZueV9p1VTcuMDg8XdbJ+dqFbl9bOOyoJ50/PNpW+uTKS5/cZXf7j+4bXbZj++fnt2NuzOez2QX3rWlOy/7/7KD8stq9YKCO3v2N7unPPaWVm+dFfER5M8uvs/mt833nvanH3/7D1f/a+h7/5446L123caEALC4dXTVcsFb5iT5UtPqzYnWW4kbeXr7/2lxXv+/pjPfLc834KHVBAQmsjco6dl3eVnV09vG1k0b3rP/SbSGZ7/5DlVksz/7PeK5/0QEMZlztHTsv7ys6t1u38vHp3phecETrz2e2XN80LC3ryMl71USbKsv1r5J7+82DR4wZrLzqqyrL/qqrxGAgHhZbxu1lEpy/p3/cQ5o9eKg5cY+1RftXDedINAQHjRuxfMy/1/uNiqgwNa+dEzq+z+QYPO5jmQDlclKcv6q1uSzDUOxmNZf9X96RVl1HtJrEDowJ8eatXPDlnBRIxe2VdNxTu3ERCm0FHdtYxe2SceHLJtnzynOq7XwQwBoSN0VVV2XHGueHDYbPqzX62O6vZwIiC0tSq7XkljEhxuO644t+qu2bUEhLblOQ+OJIdFBYQ29bZXHWsIHHHvXjDPEASEdjL36Gn5jz9Y7KdDjrgb3nXq4p87ttcgOoCXTnSIdZefLR5MiuOP6bk/SeXaOVYgtIFfefVxhsCke9cpDmUJCC2tq6pyz+8tsvpg0i1fepqX9goIrcxLdplK3m8kILQo91yaQU+XhxkBoeX8umPQNIGRP7cKERBazvKlp7njAgLC+JxwTI8h0DROdREqAaF1PHvZWVYfNI2HP3qm/VFAAEBA2pYL/NCM5s9wWFVAaHpnvcY7z2k+qy91WFVAaHq3feB0d1RAQAAQEGAKPfv8yCJT4HByOvd2+4mgqtKY4q9h7jV3l3Xbd9oYTeYN192bTPEZbo7t7c7m4VEbwwqEZjSjZ2pfgdXzF98Rjya1ZWQstatWTOk1Ok44ZpoNISA0q5lTGJAzbxgqI2MNG6GJNUrJGz93b+nE/RMBoUlXIKu3Dp/8/Z9utgFawGPrt0/dDzi9jpoLCE3rmCkKyPwZvU+YPgfcP73JVUBoXt4AQlPvn3ZQAQEAAQGgcwIy2ii2HNA2WvUxrSUDsmV4bMpu+0QXaoK2NJVnC57Kx7SOC8jWkal7J+uay86qnJYa2stJM3qm9GzBrfru/JZ8UfamKa71Yd/RBgYdk4OJWNZ/WO6Lz0z5Y1prBqQlVyBPbdrhjgO0jZ9uHhaQyeJJdKCdeBIdgI4iIAB0VkDOvGHIcSyg5S3+4n0t+1jWsgEZenqLPQ9oaRu27zz5wWe2WoFMNk+kA61u9tHTnhgrrftY1tLPgbzzxodUBGhZ53/5By39GNbSAbnt8fX2QKBlDf5oQ0t//S0dkFZe+gG0+mNYy7+Md841d6sI0HJmX31Xyz92tXxA1m/faU8EWs6GHaMt/z20xRsJZ199V1mzdXiRXRJodqu3Dp88qw1WH20TkA07RnPijN777ZpAs5s/o/eJjW2w+mibgCRJ5ZTogMcqAZmIkuTVf3NPWbttxKEsoOms2zay6LV/++9t9drRtjqZ4k82D+d3v7FyyK4KNJsP3fLw0I/b7FpGbXc23n97dJ09FWg6t6xa23bfU3uezt3zIYDHJAGZqK6rVogI4LFIQMZvrBQRAaZU96dXlHY+5VJbX5FwrBSHs4CpMTBY2v2yE7VO2ZDnffnBsnrr8Mn2auBIee75kUUX3fRQ6ZQfXLs7ZcPe8cSGvPWLQ48nqezmwJFw+vX3Df3fluGO+X5rnbRxf7J5OBkYLL/9tf8+z2oEOJyqgcHSSfHoqBXInr72v8/efvsT62M1AkzUhu07T5599LQnjvuru8qm4dF04pOttU7d+Bt3jCYDg6VdzooJTK7X/d29j2dgsGwaHu3YGXR3+k7wQkhqVZX+18/KHR98S7Vu28iiudN7nN0XSJKs3TayaN70nvv7v/Rg+c6TG9MoJZ0cjo5fgeyrUUrueGJDMjBYjr/2nqEzvnCflQmQt1z/n+WEa+8ZysBgGfzRhjRcStsK5EAxeeCZLXu9h6RWVXnVzJ4c29udGT1dmdnbdVhua+vIWL7/082GDhNwxhfuK3OOPvSHsS3DY9k6MpZNw6N5esvIXpF4cPVWgxaQQ4/KTzYPJxk2DGgSDzyzxRCmkENYAAgIAAICgIAAICAAICAACAgAAgKAgAAgIAAgIAAICAACAoCAACAgACAgAAgIAAICgIAAICAAICAACAgAAgKAgAAgIABwELqNgMNmWX9lCGAFAgACAoCAACAgAAgIAAICAAICgIAAICAACAgAAgIAAgKAgAAgIAAICAACAgACAoCAACAgAAgIAAgIAAICgIAAICAACAgACAgAAgKAgAAgIAC0uSoDg8UY2sf0aV1ZOG+6QdCUHlu/PZuGRw2iTXQbQXvZtnMs9z+zxSCAI84hLAAEBAABAUBAABAQABAQAAQEAAEBQEAAEBAAEBAABAQAAQFAQAAQEAAQEAAEBIAp5oqEE7TopJm5/4/eWpkEtPh9+Qv3FVfxtAKZVNOndRkCuC8LCAAICAACAoCAACAgACAgAAgIAAICgIAAICAAICAACAgAAgKAgAAgIAAgIAAICAACAoCAACAgACAgAAgIAAICgIAAICAAICAACAgAAgJAS6syMFiMYfyO7q7ltbOOMghocT/euCPbRxsGMQHdRjAx20cbeXjtNoMAOpZDWAAICAACAoCAACAgACAgAAgIAAICgIAAICAAICAACAgAAgKAgAAgIAAgIAAICAACAoCAACAgACAgAAgIAAICgIAAICAAICAACAgAAgKAgAAgIAAgIAAICAACAoCAACAgI8YAwDgN15JsMQcAxmmLgAAw0YAUAQFgvDbXUlXPmAMA41JlTS2N6hGTAGBcGnm4llpjlUkAMC61rKqlUXvYJAAYl5JVtWT4gSQN0wDgIDVSRh6spX7h+qQ8ZB4AHKQHU79w/QunMhk0DwAO0mDy4rmw7jQPAA5KqfYISFl3Z5J1pgLAAazPnO0rXgxI/eKRlOpr5gLA/lcf+Uo+ftHwiwFJkjS+bDIA7F/1s1ZUL1alVLlq8H+SaqEBAfAyy4+V+VT/m1JVZe8VyK4/+GsDAuDl1a5+IR57ByRJ5h/3T0l+ZEgA7OOpzJ9501452euvP7x4Z1KsQgDYR/WZXY14pYAkSVl3Q1JWGhYAuz2S2dv/cd8/fGlA6hePpOSPkxQzAyClfOSFl+7uPyBJUl9yV0r+2dQAOt6NqS952dNd1V7531SXJnnW7AA61rMp1WWv9JevHJB63+qk8b4kY2YI0HEaKeWDu1ow3oAkybLzViTlr8wRoOP8ZepLbtvfB9QO+CkWrluWKreZJUDH+HYWrh040AcdOCAXXzyWxvPvSap7zRSg7Q2lVL+Viy8+4NMX1UF/yvqKeanK3UlONV+AtvRYuhtn5Yrz1hzMB9cO+tPW+9amjF2Q5BEzBmg7j6SMLTnYeIwvIElSP/+plJG3O5wF0FaGUnaenfr5T43nH9XGfTP1C9en5B2eWAdoC99OqfpSv2Dc7/urTejm6n1bc+rai5IykKRh/gAtp6Tkusw/9l2p922dyCeoDvlLGLijL6ndmOQk2wOgJTyXUl2Set+th/JJaof8ZSw7b0VKdUZKbrJNAJp+3XFTSnXaocbj8KxA9nTV4Dkp+fskb7KVAJqqHI+m5GMHenf55K5A9vSp/u+mrD0jVflIkidtMIAp92Sq8pGUdb94OONx+Fcge7p+aFrWbHl/SuPypFpoGwJM6opjZVK7OvNn3rTvlQSbPyB7umpwURq5JFWWJjnehgU4IjYmWZ5SfSnLzr0zVXVELwxYTeq3dt23erOhtz+l1p+q9Cc5PYf7MBpA52gk+UFKNZjkzszZvuLlrhzYHgHZV/3WOUnvGamVU1JyaqosSMmJSWYmmZVkRpIe+wjQoUaSbN29stiSKmtSsipVHk6jeiQZfiD1C9dP1Rf3//rYDazElsZ/AAAAAElFTkSuQmCC) no-repeat 100% 100%;
          mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZAAAAFKCAYAAAAzGgmFAAAAxXpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVBtDsMgCP3vKXYEvqpwHLt2yW6w4w8Fk3bZS+AhTwEp5+f9Ko8BQimyNa1WKzjExKh7oBDo0yPI9BO2Irzni/QMyZmdOQStwbjy+WAxjnfbpZA+U9jvgkkw6U+hbMRjIvLgyEKWhZhCwCzQ41tQTdv1C/sJd2hYGU4F9tm9pfZzlubbOzbvw0QnI4N7ZokBeBgX7kNw7we/iFxnxmbGchJfyL89LZQvaIRZwn57syoAAAGFaUNDUElDQyBwcm9maWxlAAB4nH2RPUjDQBiG37ZKpVQELSjikKGKgwVREUetQhEqhFqhVQeTS/+gSUOS4uIouBYc/FmsOrg46+rgKgiCPyCuLk6KLlLid0mhRYx3HPfw3ve+3H0H+Otlppod44CqWUYqERcy2VUh+IoQ+mn2YlRipj4nikl4jq97+Ph+F+NZ3nV/jm4lZzLAJxDPMt2wiDeIpzctnfM+cYQVJYX4nHjMoAsSP3JddvmNc8FhP8+MGOnUPHGEWCi0sdzGrGioxFPEUUXVKN+fcVnhvMVZLVdZ8578heGctrLMdVpDSGARSxAhQEYVJZRhIUa7RoqJFJ3HPfyDjl8kl0yuEhg5FlCBCsnxg//B796a+ckJNykcBzpfbPtjGAjuAo2abX8f23bjBAg8A1day1+pAzOfpNdaWvQI6NkGLq5bmrwHXO4AA0+6ZEiOFKDlz+eB9zP6pizQdwuE1ty+Nc9x+gCkqVfJG+DgEBgpUPa6x7u72vv2b02zfz+OuHKyFIjAqwAADXhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDQuNC4wLUV4aXYyIj4KIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgIHhtbG5zOkdJTVA9Imh0dHA6Ly93d3cuZ2ltcC5vcmcveG1wLyIKICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIgogICB4bXBNTTpEb2N1bWVudElEPSJnaW1wOmRvY2lkOmdpbXA6YzFlMWViZTktOTQyOS00YWFiLTg5ZDMtYjM2N2U3ODRlMTk4IgogICB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjI1NGI3NmM0LWUxZjQtNDM5Ni1hZWUxLTE1MDdkNGU4ODhmNSIKICAgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjQ0ODY3YzliLTA1OTMtNDNkZi1iZTViLWEzN2RlNWU3MGFkYyIKICAgZGM6Rm9ybWF0PSJpbWFnZS9wbmciCiAgIEdJTVA6QVBJPSIyLjAiCiAgIEdJTVA6UGxhdGZvcm09IkxpbnV4IgogICBHSU1QOlRpbWVTdGFtcD0iMTY5ODEwMzE2OTQyMTMzMiIKICAgR0lNUDpWZXJzaW9uPSIyLjEwLjM0IgogICB0aWZmOk9yaWVudGF0aW9uPSIxIgogICB4bXA6Q3JlYXRvclRvb2w9IkdJTVAgMi4xMCIKICAgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyMzoxMDoyM1QxNjoxOToyOS0wNzowMCIKICAgeG1wOk1vZGlmeURhdGU9IjIwMjM6MTA6MjNUMTY6MTk6MjktMDc6MDAiPgogICA8eG1wTU06SGlzdG9yeT4KICAgIDxyZGY6U2VxPgogICAgIDxyZGY6bGkKICAgICAgc3RFdnQ6YWN0aW9uPSJzYXZlZCIKICAgICAgc3RFdnQ6Y2hhbmdlZD0iLyIKICAgICAgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDphY2RmM2ZiNi1hMGI2LTQxN2UtODczZi01ZTRhYWM5YjNlZjEiCiAgICAgIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkdpbXAgMi4xMCAoTGludXgpIgogICAgICBzdEV2dDp3aGVuPSIyMDIzLTEwLTIzVDE2OjE5OjI5LTA3OjAwIi8+CiAgICA8L3JkZjpTZXE+CiAgIDwveG1wTU06SGlzdG9yeT4KICA8L3JkZjpEZXNjcmlwdGlvbj4KIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/PrJSgCsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAAHYcAAB2HAY/l8WUAAAAHdElNRQfnChcXEx1ba26jAAAQGklEQVR42u3de5CddX3H8c9zdrMLIYHcgDDWG1pCaotIYsUpFHYDgrQ6ddqiqUrH3qzV8R8odqSYs9g6heK0xWkddJjpaKGKneoQ6yCXjYIUWxYQewnhJqKFBHJPSLKb3fPrHwmSBEiym2T3XF6vGSYk2ezZ/T7POe/9Peec56kyleq3zkl6z0itnJJGtTBVFiTlxCQzksza/WtPADrTSJKtSTbu+rVak5JVqZWVaVSPJMMPpH7h+qn64qpJvbXrvtWbDb39SZYkVV+S05PU7CMAE9JI8oOUajBVYzCzhwfz8YuG2ysgVw0uSiOXpMrSJMfb5gBHxMYky1OqL2XZuXemqkprBuT6oWlZs+X9KeUTSU61XQEmU1mZqnZNTpx5Yz68eGdrBKR+c0+qub+fVJcneZ2NCDClnkzKNSnrbkj94pHmDchVg+ek5B+S/IJt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) no-repeat 100% 100%;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 35px;
  height: 22px;
  padding-bottom: 7px;
  background-color: #0081be;
}

.navbar__kubewarden:before {
  -webkit-mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAAClCAYAAAAZMrIaAAAAxnpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVBBDgMhCLz7ij5BAV18jrtrk/6gz+8o2Ow2ncQRGDIiob9fz/AYoCRB8qallhIBqVKpIdBoaJNTlMkTx9LSvR5adoFQYtxsqRbvX/X0NbCrIcoXIz1c2O9CFffXHyN/iMdEhOB0o+pGTCYkN2j2rViqbtcv7D3eoXbCoKNP75j8td9cNmzvzCgyUWeUwcxiA/A4HLgNAYwEjYnLjDM48poEC/m3p4XwAdmeWjc7SxhTAAABhWlDQ1BJQ0MgcHJvZmlsZQAAeJx9kT1Iw0AYht+2SqVUHFqwiEOG6mRBVMRRq1CECqFWaNXB5NI/aNKQpLg4Cq4FB38Wqw4uzro6uAqC4A+Iq4uToouU+F1SaBHjHcc9vPe9L3ffAf5mlalmzzigapaRSSWFXH5VCL4ihEGaMUQkZupzopiG5/i6h4/vdwme5V335+hXCiYDfALxLNMNi3iDeHrT0jnvE0dZWVKIz4nHDLog8SPXZZffOJcc9vPMqJHNzBNHiYVSF8tdzMqGSjxFHFdUjfL9OZcVzluc1Wqdte/JXxguaCvLXKc1jBQWsQQRAmTUUUEVFhK0a6SYyNB50sM/5PhFcsnkqoCRYwE1qJAcP/gf/O6tWZyccJPCSaD3xbY/RoDgLtBq2Pb3sW23ToDAM3Cldfy1JjDzSXqjo8WPgIFt4OK6o8l7wOUOEHvSJUNypAAtf7EIvJ/RN+WByC0QWnP71j7H6QOQpV6lb4CDQ2C0RNnrHu/u6+7bvzXt/v0AaXFyo6VSLbAAAA14aVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJYTVAgQ29yZSA0LjQuMC1FeGl2MiI+CiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICB4bWxuczpHSU1QPSJodHRwOi8vd3d3LmdpbXAub3JnL3htcC8iCiAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIKICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgeG1wTU06RG9jdW1lbnRJRD0iZ2ltcDpkb2NpZDpnaW1wOjUxOWVmM2ExLTJjZWYtNDhkMC05M2M2LWFhYTYxNWQ1YTAzOSIKICAgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpmZGYxNDU4Yy00YjQzLTQ1ZmMtOTliZi04NmYzODQ2MmFiYTMiCiAgIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo1OGZmY2QwZC00YmI3LTRkM2ItOTE5OS1jMDU2ZTY3NTk0ZDAiCiAgIGRjOkZvcm1hdD0iaW1hZ2UvcG5nIgogICBHSU1QOkFQST0iMi4wIgogICBHSU1QOlBsYXRmb3JtPSJMaW51eCIKICAgR0lNUDpUaW1lU3RhbXA9IjE2OTgxMDM1MDQwODEyNzMiCiAgIEdJTVA6VmVyc2lvbj0iMi4xMC4zNCIKICAgdGlmZjpPcmllbnRhdGlvbj0iMSIKICAgeG1wOkNyZWF0b3JUb29sPSJHSU1QIDIuMTAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjM6MTA6MjNUMTY6MjU6MDQtMDc6MDAiCiAgIHhtcDpNb2RpZnlEYXRlPSIyMDIzOjEwOjIzVDE2OjI1OjA0LTA3OjAwIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii8iCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6ZTg0MTYzZTktMjVmMy00MTM0LWE2YTMtYmQyZDgyNzU0MWIyIgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJHaW1wIDIuMTAgKExpbnV4KSIKICAgICAgc3RFdnQ6d2hlbj0iMjAyMy0xMC0yM1QxNjoyNTowNC0wNzowMCIvPgogICAgPC9yZGY6U2VxPgogICA8L3htcE1NOkhpc3Rvcnk+CiAgPC9yZGY6RGVzY3JpcHRpb24+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgCjw/eHBhY2tldCBlbmQ9InciPz7P4QrDAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAB3RJTUUH5woXFxkExe8u6QAAFCRJREFUeNrtnXlAVUXfx79zuezLFUQQlcWriFxxt9CsXMHUzNxLwT03Mktb9LGstDfT3scWF9LcMXNLQ00T0UxDwFBQAVEQZVNBdmSHO88fCqXivXD35ff5896zzPnN+ZyZOXNmhkFBTvoM9macDQRnvQHuxRjz4BzWAKxAENqjjDGUcs5vc4YkJmVRtUKcHnI1LEmRg7EmSSEeLGIWJjMZ+FQO+FBeEHoDw1WAb6+qFG4elnK8WKWCnG/Tx7JMZPcBwBeCQ0TRJvSYQjC+xqS0+usBt89UKC1IWEe/fgIB2wpATLElDAUOpDCw6YMTT5yTtZ1A1p/hEv8lAhN2iuQgDK/GhfYAPx3u7fehrO1MGvrxM3wmWCox3cDAPpInEUHoMQIw5jfZqZ2T+H7g72dwhjeqBHlRcv4bBjaH4kcYSX1rXl9JxPpGVbHCJf5L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) no-repeat 100% 100%;
          mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAAClCAYAAAAZMrIaAAAAxnpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVBBDgMhCLz7ij5BAV18jrtrk/6gz+8o2Ow2ncQRGDIiob9fz/AYoCRB8qallhIBqVKpIdBoaJNTlMkTx9LSvR5adoFQYtxsqRbvX/X0NbCrIcoXIz1c2O9CFffXHyN/iMdEhOB0o+pGTCYkN2j2rViqbtcv7D3eoXbCoKNP75j8td9cNmzvzCgyUWeUwcxiA/A4HLgNAYwEjYnLjDM48poEC/m3p4XwAdmeWjc7SxhTAAABhWlDQ1BJQ0MgcHJvZmlsZQAAeJx9kT1Iw0AYht+2SqVUHFqwiEOG6mRBVMRRq1CECqFWaNXB5NI/aNKQpLg4Cq4FB38Wqw4uzro6uAqC4A+Iq4uToouU+F1SaBHjHcc9vPe9L3ffAf5mlalmzzigapaRSSWFXH5VCL4ihEGaMUQkZupzopiG5/i6h4/vdwme5V335+hXCiYDfALxLNMNi3iDeHrT0jnvE0dZWVKIz4nHDLog8SPXZZffOJcc9vPMqJHNzBNHiYVSF8tdzMqGSjxFHFdUjfL9OZcVzluc1Wqdte/JXxguaCvLXKc1jBQWsQQRAmTUUUEVFhK0a6SYyNB50sM/5PhFcsnkqoCRYwE1qJAcP/gf/O6tWZyccJPCSaD3xbY/RoDgLtBq2Pb3sW23ToDAM3Cldfy1JjDzSXqjo8WPgIFt4OK6o8l7wOUOEHvSJUNypAAtf7EIvJ/RN+WByC0QWnP71j7H6QOQpV6lb4CDQ2C0RNnrHu/u6+7bvzXt/v0AaXFyo6VSLbAAAA14aVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJYTVAgQ29yZSA0LjQuMC1FeGl2MiI+CiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICB4bWxuczpHSU1QPSJodHRwOi8vd3d3LmdpbXAub3JnL3htcC8iCiAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIKICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgeG1wTU06RG9jdW1lbnRJRD0iZ2ltcDpkb2NpZDpnaW1wOjUxOWVmM2ExLTJjZWYtNDhkMC05M2M2LWFhYTYxNWQ1YTAzOSIKICAgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpmZGYxNDU4Yy00YjQzLTQ1ZmMtOTliZi04NmYzODQ2MmFiYTMiCiAgIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo1OGZmY2QwZC00YmI3LTRkM2ItOTE5OS1jMDU2ZTY3NTk0ZDAiCiAgIGRjOkZvcm1hdD0iaW1hZ2UvcG5nIgogICBHSU1QOkFQST0iMi4wIgogICBHSU1QOlBsYXRmb3JtPSJMaW51eCIKICAgR0lNUDpUaW1lU3RhbXA9IjE2OTgxMDM1MDQwODEyNzMiCiAgIEdJTVA6VmVyc2lvbj0iMi4xMC4zNCIKICAgdGlmZjpPcmllbnRhdGlvbj0iMSIKICAgeG1wOkNyZWF0b3JUb29sPSJHSU1QIDIuMTAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjM6MTA6MjNUMTY6MjU6MDQtMDc6MDAiCiAgIHhtcDpNb2RpZnlEYXRlPSIyMDIzOjEwOjIzVDE2OjI1OjA0LTA3OjAwIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii8iCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6ZTg0MTYzZTktMjVmMy00MTM0LWE2YTMtYmQyZDgyNzU0MWIyIgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJHaW1wIDIuMTAgKExpbnV4KSIKICAgICAgc3RFdnQ6d2hlbj0iMjAyMy0xMC0yM1QxNjoyNTowNC0wNzowMCIvPgogICAgPC9yZGY6U2VxPgogICA8L3htcE1NOkhpc3Rvcnk+CiAgPC9yZGY6RGVzY3JpcHRpb24+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgCjw/eHBhY2tldCBlbmQ9InciPz7P4QrDAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAB3RJTUUH5woXFxkExe8u6QAAFCRJREFUeNrtnXlAVUXfx79zuezLFUQQlcWriFxxt9CsXMHUzNxLwT03Mktb9LGstDfT3scWF9LcMXNLQ00T0UxDwFBQAVEQZVNBdmSHO88fCqXivXD35ff5896zzPnN+ZyZOXNmhkFBTvoM9macDQRnvQHuxRjz4BzWAKxAENqjjDGUcs5vc4YkJmVRtUKcHnI1LEmRg7EmSSEeLGIWJjMZ+FQO+FBeEHoDw1WAb6+qFG4elnK8WKWCnG/Tx7JMZPcBwBeCQ0TRJvSYQjC+xqS0+usBt89UKC1IWEe/fgIB2wpATLElDAUOpDCw6YMTT5yTtZ1A1p/hEv8lAhN2iuQgDK/GhfYAPx3u7fehrO1MGvrxM3wmWCox3cDAPpInEUHoMQIw5jfZqZ2T+H7g72dwhjeqBHlRcv4bBjaH4kcYSX1rXl9JxPpGVbHCJf5L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) no-repeat 100% 100%;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 35px;
  height: 22px;
  padding-bottom: 7px;
  background-color: #004d93;
}

.navbar__fleet:before {
  -webkit-mask: url(/assets/images/icon-fleet-mask-19901badefbeb71402d7c37995a61cc2.png) no-repeat 100% 100%;
          mask: url(/assets/images/icon-fleet-mask-19901badefbeb71402d7c37995a61cc2.png) no-repeat 100% 100%;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 35px;
  height: 22px;
  padding-bottom: 7px;
  background-color: #00b056;
}

.navbar__harvester:before {
  -webkit-mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAABqCAYAAAB04VkvAAAAxnpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVBBDsMgDLvnFXsCYKDhOXTtpP1gz58D6dRWs0RIYtekkf3zfsnDkGKWXBatrdZA5JZb6kw0TPQRY8gjDhwU60tfancisQXe8A+q649+/BnMqzMrJyN9OrFeiZbdX29G/hBsosRkc6PmRkiTiG7QfdLadDn/wrqHK3QesbC2ITWzKb7VeeH2tsJ3kNKOiMAIuAZ2IOhGMLKgMKIyN6qjQH0SLuTfng7IF2QbWbWbv+OtAAABhWlDQ1BJQ0MgcHJvZmlsZQAAeJx9kT1Iw1AUhU9TtVIqDhYUcchQnSyIijhqFYpQIdQKrTqYvPRHaNKQpLg4Cq4FB38Wqw4uzro6uAqC4A+Iq4uToouUeF9SaBHjDY98nHfP4b37AKFeZprVMQZoum2mkwkxm1sRQ68Io5++ALpkZhmzkpSCb33dUx/VXZxn+ff9WT1q3mJAQCSeYYZpE68TT23aBud94igrySrxOfGoSQckfuS64vEb56LLAs+Mmpn0HHGUWCy2sdLGrGRqxJPEMVXTKV/Ieqxy3uKslauseU5+w0heX17iOq0hJLGARUgQoaCKDZRhI05/nRQLadpP+PgHXb9ELoVcG2DkmEcFGmTXD/4Gv2drFSbGvaRIAuh8cZyPYSC0CzRqjvN97DiNEyD4DFzpLX+lDkx/kl5rabEjoHcbuLhuacoecLkDDDwZsim7UpCWUCgA72f0TDmg7xYIr3pza+7j9AHI0KxSN8DBITBSpOw1n3t3t8/t357m/H4AD69yf2/79jEAAA14aVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJYTVAgQ29yZSA0LjQuMC1FeGl2MiI+CiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICB4bWxuczpHSU1QPSJodHRwOi8vd3d3LmdpbXAub3JnL3htcC8iCiAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIKICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgeG1wTU06RG9jdW1lbnRJRD0iZ2ltcDpkb2NpZDpnaW1wOmMwZGZkM2U1LWUzNTYtNDIwMy05NDgyLWM5OWUwNDQ1N2Y0YyIKICAgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowMzM3ZmMxYy1kODQxLTQ5ZWEtODZmOC0yYTBiNGRkNjE5ZmMiCiAgIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDoxNmM1YWRlMi0yOGM1LTQ0Y2YtYmQxNi1mZmRkNTNlYzMyYTIiCiAgIGRjOkZvcm1hdD0iaW1hZ2UvcG5nIgogICBHSU1QOkFQST0iMi4wIgogICBHSU1QOlBsYXRmb3JtPSJMaW51eCIKICAgR0lNUDpUaW1lU3RhbXA9IjE2OTgxMDIxODExMTE1NjgiCiAgIEdJTVA6VmVyc2lvbj0iMi4xMC4zNCIKICAgdGlmZjpPcmllbnRhdGlvbj0iMSIKICAgeG1wOkNyZWF0b3JUb29sPSJHSU1QIDIuMTAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjM6MTA6MjNUMTY6MDI6NTgtMDc6MDAiCiAgIHhtcDpNb2RpZnlEYXRlPSIyMDIzOjEwOjIzVDE2OjAyOjU4LTA3OjAwIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii8iCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NGVjNjRlODYtNzIxNC00YTNjLWI5MzYtODdmOTQ5NzRiOWM0IgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJHaW1wIDIuMTAgKExpbnV4KSIKICAgICAgc3RFdnQ6d2hlbj0iMjAyMy0xMC0yM1QxNjowMzowMS0wNzowMCIvPgogICAgPC9yZGY6U2VxPgogICA8L3htcE1NOkhpc3Rvcnk+CiAgPC9yZGY6RGVzY3JpcHRpb24+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgCjw/eHBhY2tldCBlbmQ9InciPz5qbo63AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAlyAAAJcgErz99GAAAAB3RJTUUH5woXFwMBBaggvQAACvhJREFUeNrtXXtQVNcZ/53LLrvs8hB8i4+KSY2ZdkZEIm1n0v6BMSFWNImPBGsfpjadYn3FiI3Vm8QUn0hGM6k1jz+U+EBFHDWjcaaP6TQooI6ZRDRRG98xCojALq89/UOhC+y95z7OXZbd85thBrl7z577fb/zvc53jwRqoCD4WE4HwVRQPAkgGcAgAE4IhCK8AG4BuA6Cf8EnlSBnZQUIqNINRHGoIjkTwHoAY4VcezW+BIiMnFXF2gjwwdo4OD3bAWQL2YURCErgifkl5i67r0yAotUjQFoPgeIHQmJhic/RhsmYI1/pToA9cixa8B8APxRyCmNQnAOQgdlyHQBIHRdasF0oPyJcwRgQfNjZAux44xkQekRIJ6IswSTMlo9JoCCQaL6QSMRZgjWgIAQ73kwH8Z0UEolA+JAmAT6R7kWuFciWQPBTIYmIJcDP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) no-repeat 100% 100%;
          mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAABqCAYAAAB04VkvAAAAxnpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVBBDsMgDLvnFXsCYKDhOXTtpP1gz58D6dRWs0RIYtekkf3zfsnDkGKWXBatrdZA5JZb6kw0TPQRY8gjDhwU60tfancisQXe8A+q649+/BnMqzMrJyN9OrFeiZbdX29G/hBsosRkc6PmRkiTiG7QfdLadDn/wrqHK3QesbC2ITWzKb7VeeH2tsJ3kNKOiMAIuAZ2IOhGMLKgMKIyN6qjQH0SLuTfng7IF2QbWbWbv+OtAAABhWlDQ1BJQ0MgcHJvZmlsZQAAeJx9kT1Iw1AUhU9TtVIqDhYUcchQnSyIijhqFYpQIdQKrTqYvPRHaNKQpLg4Cq4FB38Wqw4uzro6uAqC4A+Iq4uToouUeF9SaBHjDY98nHfP4b37AKFeZprVMQZoum2mkwkxm1sRQ68Io5++ALpkZhmzkpSCb33dUx/VXZxn+ff9WT1q3mJAQCSeYYZpE68TT23aBud94igrySrxOfGoSQckfuS64vEb56LLAs+Mmpn0HHGUWCy2sdLGrGRqxJPEMVXTKV/Ieqxy3uKslauseU5+w0heX17iOq0hJLGARUgQoaCKDZRhI05/nRQLadpP+PgHXb9ELoVcG2DkmEcFGmTXD/4Gv2drFSbGvaRIAuh8cZyPYSC0CzRqjvN97DiNEyD4DFzpLX+lDkx/kl5rabEjoHcbuLhuacoecLkDDDwZsim7UpCWUCgA72f0TDmg7xYIr3pza+7j9AHI0KxSN8DBITBSpOw1n3t3t8/t357m/H4AD69yf2/79jEAAA14aVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJYTVAgQ29yZSA0LjQuMC1FeGl2MiI+CiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICB4bWxuczpHSU1QPSJodHRwOi8vd3d3LmdpbXAub3JnL3htcC8iCiAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIKICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgeG1wTU06RG9jdW1lbnRJRD0iZ2ltcDpkb2NpZDpnaW1wOmMwZGZkM2U1LWUzNTYtNDIwMy05NDgyLWM5OWUwNDQ1N2Y0YyIKICAgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowMzM3ZmMxYy1kODQxLTQ5ZWEtODZmOC0yYTBiNGRkNjE5ZmMiCiAgIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDoxNmM1YWRlMi0yOGM1LTQ0Y2YtYmQxNi1mZmRkNTNlYzMyYTIiCiAgIGRjOkZvcm1hdD0iaW1hZ2UvcG5nIgogICBHSU1QOkFQST0iMi4wIgogICBHSU1QOlBsYXRmb3JtPSJMaW51eCIKICAgR0lNUDpUaW1lU3RhbXA9IjE2OTgxMDIxODExMTE1NjgiCiAgIEdJTVA6VmVyc2lvbj0iMi4xMC4zNCIKICAgdGlmZjpPcmllbnRhdGlvbj0iMSIKICAgeG1wOkNyZWF0b3JUb29sPSJHSU1QIDIuMTAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjM6MTA6MjNUMTY6MDI6NTgtMDc6MDAiCiAgIHhtcDpNb2RpZnlEYXRlPSIyMDIzOjEwOjIzVDE2OjAyOjU4LTA3OjAwIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii8iCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NGVjNjRlODYtNzIxNC00YTNjLWI5MzYtODdmOTQ5NzRiOWM0IgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJHaW1wIDIuMTAgKExpbnV4KSIKICAgICAgc3RFdnQ6d2hlbj0iMjAyMy0xMC0yM1QxNjowMzowMS0wNzowMCIvPgogICAgPC9yZGY6U2VxPgogICA8L3htcE1NOkhpc3Rvcnk+CiAgPC9yZGY6RGVzY3JpcHRpb24+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgCjw/eHBhY2tldCBlbmQ9InciPz5qbo63AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAlyAAAJcgErz99GAAAAB3RJTUUH5woXFwMBBaggvQAACvhJREFUeNrtXXtQVNcZ/53LLrvs8hB8i4+KSY2ZdkZEIm1n0v6BMSFWNImPBGsfpjadYn3FiI3Vm8QUn0hGM6k1jz+U+EBFHDWjcaaP6TQooI6ZRDRRG98xCojALq89/UOhC+y95z7OXZbd85thBrl7z577fb/zvc53jwRqoCD4WE4HwVRQPAkgGcAgAE4IhCK8AG4BuA6Cf8EnlSBnZQUIqNINRHGoIjkTwHoAY4VcezW+BIiMnFXF2gjwwdo4OD3bAWQL2YURCErgifkl5i67r0yAotUjQFoPgeIHQmJhic/RhsmYI1/pToA9cixa8B8APxRyCmNQnAOQgdlyHQBIHRdasF0oPyJcwRgQfNjZAux44xkQekRIJ6IswSTMlo9JoCCQaL6QSMRZgjWgIAQ73kwH8Z0UEolA+JAmAT6R7kWuFciWQPBTIYmIJcDP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) no-repeat 100% 100%;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 35px;
  height: 22px;
  padding-bottom: 7px;
  background-color: #00a580;
}

.navbar__suse:before {
  -webkit-mask: url(/assets/images/icon-suse-mask-b568419b7df0309b5b523a2f09ac6db4.png) no-repeat 100% 100%;
          mask: url(/assets/images/icon-suse-mask-b568419b7df0309b5b523a2f09ac6db4.png) no-repeat 100% 100%;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 35px;
  height: 13px;
  padding-bottom: 7px;
  background-color: #30ba78;
}
/**
 * Any CSS included here will be global. The classic template
 * bundles Infima by default. Infima is a CSS framework designed to
 * work well for content-centric websites.
 */

 /* CSS for SUSE projects icons */

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

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

.navbar {
  background-color: #4090c7;
}

.navbar__logo img {
  height: 200%;
  margin-top: -20px;
}

.header-github-link:hover {
  opacity: 0.6;
}

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

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

.header-slack-link:hover {
  opacity: 0.6;
}

.header-slack-link::before {
  content: '';
  width: 24px;
  height: 24px;
  display: flex;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.362 10.11c0 .926-.756 1.681-1.681 1.681S0 11.036 0 10.111C0 9.186.756 8.43 1.68 8.43h1.682v1.68zm.846 0c0-.924.756-1.68 1.681-1.68s1.681.756 1.681 1.68v4.21c0 .924-.756 1.68-1.68 1.68a1.685 1.685 0 0 1-1.682-1.68v-4.21zM5.89 3.362c-.926 0-1.682-.756-1.682-1.681S4.964 0 5.89 0s1.68.756 1.68 1.68v1.682H5.89zm0 .846c.924 0 1.68.756 1.68 1.681S6.814 7.57 5.89 7.57H1.68C.757 7.57 0 6.814 0 5.89c0-.926.756-1.682 1.68-1.682h4.21zm6.749 1.682c0-.926.755-1.682 1.68-1.682.925 0 1.681.756 1.681 1.681s-.756 1.681-1.68 1.681h-1.681V5.89zm-.848 0c0 .924-.755 1.68-1.68 1.68A1.685 1.685 0 0 1 8.43 5.89V1.68C8.43.757 9.186 0 10.11 0c.926 0 1.681.756 1.681 1.68v4.21zm-1.681 6.748c.926 0 1.682.756 1.682 1.681S11.036 16 10.11 16s-1.681-.756-1.681-1.68v-1.682h1.68zm0-.847c-.924 0-1.68-.755-1.68-1.68 0-.925.756-1.681 1.68-1.681h4.21c.924 0 1.68.756 1.68 1.68 0 .926-.756 1.681-1.68 1.681h-4.21z'/%3E%3C/svg%3E")
  no-repeat;
}

[data-theme='dark'] .header-slack-link::before {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M3.362 10.11c0 .926-.756 1.681-1.681 1.681S0 11.036 0 10.111C0 9.186.756 8.43 1.68 8.43h1.682v1.68zm.846 0c0-.924.756-1.68 1.681-1.68s1.681.756 1.681 1.68v4.21c0 .924-.756 1.68-1.68 1.68a1.685 1.685 0 0 1-1.682-1.68v-4.21zM5.89 3.362c-.926 0-1.682-.756-1.682-1.681S4.964 0 5.89 0s1.68.756 1.68 1.68v1.682H5.89zm0 .846c.924 0 1.68.756 1.68 1.681S6.814 7.57 5.89 7.57H1.68C.757 7.57 0 6.814 0 5.89c0-.926.756-1.682 1.68-1.682h4.21zm6.749 1.682c0-.926.755-1.682 1.68-1.682.925 0 1.681.756 1.681 1.681s-.756 1.681-1.68 1.681h-1.681V5.89zm-.848 0c0 .924-.755 1.68-1.68 1.68A1.685 1.685 0 0 1 8.43 5.89V1.68C8.43.757 9.186 0 10.11 0c.926 0 1.681.756 1.681 1.68v4.21zm-1.681 6.748c.926 0 1.682.756 1.682 1.681S11.036 16 10.11 16s-1.681-.756-1.681-1.68v-1.682h1.68zm0-.847c-.924 0-1.68-.755-1.68-1.68 0-.925.756-1.681 1.68-1.681h4.21c.924 0 1.68.756 1.68 1.68 0 .926-.756 1.681-1.68 1.681h-4.21z'/%3E%3C/svg%3E")
  no-repeat;
}
body {
	margin: 30px 30px !important; 
	background-color: none !important;
}
.htmltable {
	border: none !important;
	border-collapse: separate !important;
	border-spacing: 15px !important;
	background-color: none !important;
}
.titles {
	font-size: 42px !important; 
	margin-left: 0px !important; 
	font-weight: bold !important;
	text-align: center !important;
	padding-bottom: 0px !important;
	/* margin-bottom: -25px !important; */
}
.subtitles {
	font-size: 18px !important; 
	font-weight: bold !important; 
	text-align: center !important;
	margin-left: 40px !important; 
}
.mainoptions {
	/* viewport max-width adjustment for 3 across main options */
	max-width: 300px !important;
	/* fix for center option box sized smaller at 1200px */
	min-width: 200px !important;
	border: 1px solid black !important;	
	background-color: #f0f0f0 !important;
	/* viewport breakpoint test color 
	background-color: tomato !important; */
	/* padding adjustment for main icons, top & bottom set to 0 */
	padding-top: 0px !important;
	padding-right: 20px !important;
	padding-bottom: 0px !important;
	padding-left: 20px !important;
	/* position adjustments for main section */
	position: relative !important;
	height: 420px !important;
}
/* position adjustments for main section */
.mainoptionicon {
	position: absolute !important;
	top: 40px !important;
    margin-left: auto !important;
    margin-right: auto !important;
	padding-bottom: 20px !important;
    left: 0 !important;
    right: 0 !important;
	width: 100px !important;
	height: 100px !important;
}
/* override Grav framework CSS image control to position main option icons */
/* img {
 	margin: 0 !important;
} */
.mainheadingcontainer {
	display: flex !important;
	flex-direction: row !important;
	text-align: center !important;
	/* postion adjustments for main section */
	margin-top: 90px !important;
}
.mainheadingcenter {
	text-align: center !important;
	margin: auto !important;
}
.mainheading {
	font-size: 36px !important; 
	text-align: center !important;
	font-weight: bold !important;
	color: green !important;
	background-color: none !important;
	margin-bottom: 0px !important;
	/* line height adjust for box re-sizing */
	line-height: 1.2 !important;
	padding-bottom: 10px !important;
}
.maintext {
	font-size: 20px !important; 
	text-align: center !important;
	color: black !important;
	background-color: none !important;
	line-height: 1.2 !important;
	margin-top: 0px !important;
}
.poptopic {
	text-align: center !important;
	background-color: none !important;
	border: none !important;
	min-width: 220px !important;
	padding-top: 0px !important;
	padding-right: 10px !important;
	padding-bottom: 0px !important;
	padding-left: 10px !important;
}
.poptopictitle {
	font-size: 20px !important;
	font-weight: bold !important;
	text-align: center !important;
	color: green !important;
	background-color: none !important;
	margin-top: 40px !important;
	line-height: 99% !important;
	padding-top: 0px !important;
	padding-right: 0px !important;
	padding-bottom: 10px !important;
	padding-left: 20px !important;
	line-height: 1.2 !important;
}
.poptopictext {
	font-size: 16px !important;
	font-weight: normal !important;
	text-align: center !important;
	/* color: black !important; */
	background-color: none !important;
	margin-top: -30px !important;
	line-height: 1.2 !important;
	padding-top: 0px !important;
	padding-right: 0px !important;
	padding-bottom: 0px !important;
	padding-left: 20px !important;
}
.poptopicicon {
	margin: auto !important;
	position: relative !important;
	height: 50px !important;
	width: 50px !important;
}
.poptopiccontainer {
	display: flex !important;
	flex-direction: row !important;
	text-align: center !important;
}
.poptopictextcenter {
	text-align: center !important;
	margin: auto !important;
}
@media (max-width: 1600px) {
	#chapter {
	margin-left: -50px !important;
	}
	.mainoptions {
		border: 1px solid black !important;
		background-color: none !important;
		/* viewport breakpoint test color 
		background-color: yellow !important; */
	}
	.mainheading {
		font-size: 30px !important; 
		 margin-top: 50px !important; 
		/* line height adjust for box re-sizing */
		line-height: 1.2 !important;
	}
	.maintext {
		font-size: 16px !important;
		padding: 1px 1px !important;
	}	
	.poptopiccontainer {
		display: flex !important;
		flex-direction: column !important;
		margin-bottom: -40px !important;
	}
	.poptopicicon {
		margin-top: 20px !important;
	}
	.poptopictextcenter {
		margin-top: -20px !important;
	}
}
@media (max-width: 1200px) {
	table, tr, td {
		/* inline-block enables stepped browser sizing */
		display: inline-block !important;
		text-align: center !important;
		margin: 5px !important;
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	.poptopiccontainer {
		flex-direction: column !important;
		}
	.titles {
		font-size: 36px !important; 
		text-align: center !important;
		margin-bottom: 0px !important;
	}
	.subtitles {
		font-size: 16px !important; 
		text-align: center !important;
		margin-left: 0px !important;
	}
	.mainheadingcontainer {
		margin-top: 190px !important;
	}
	.mainoptions {
		/* max-width adjustment to hold 3 across main headings */
		max-width: 185px !important;
		border: 1px solid black !important;
		min-height: 325px !important;
		max-height: 325px !important;
		background-color: none !important;
		/* 	viewport breakpoint test color 
		background-color: lightgreen !important; */
		}	
	.mainheading {
		font-size: 24px !important; 
		margin-top: -40px !important;
		/* line height adjust for box re-sizing */
		line-height: 1.2 !important;
	}
	.maintext {
		font-size: 16px !important;
		padding: 1px 1px !important;
		}
	.poptopic {
		max-width: 100px !important;
		padding-top: 0px !important;
		padding-right: 0px !important;
		padding-bottom: 0px !important;
		padding-left: 0px !important;
		}	
	.poptopicicon {
		text-align: center !important;
		margin-top: 0px !important;
		margin-bottom: 10px !important;
		margin-right: auto !important;
		margin-left: auto !important;
	}
	.poptopictitle {
		font-size: 18px !important;
		margin-top: 0px !important;
	}
	.poptopictext {
		font-size: 14px !important;
		max-width: 250px !important;
	}
	.poptopiccontainer {
		display: flex !important;
		flex-direction: column !important;
		margin-bottom: -10px !important;
		}
	.poptopictextcenter {
		margin-top: auto !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.
 */

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

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

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

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

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

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

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

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

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

/*
CSS variables, meant to be overridden by final theme
 */
.details_lb9f {
  --docusaurus-details-summary-arrow-size: 0.38rem;
  --docusaurus-details-transition: transform 200ms ease;
  --docusaurus-details-decoration-color: grey;
}

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

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

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

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

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

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

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

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

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

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

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

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

.containsTaskList_kggB {
  list-style: none;
}

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

.img_CujE {
  height: auto;
}

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

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

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

.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) 2017-present, Facebook, Inc.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/* Bottom border of each suggestion */
.algolia-docsearch-suggestion {
  border-bottom-color: #3a3dd1;
}
/* Main category headers */
.algolia-docsearch-suggestion--category-header {
  background-color: #4b54de;
}
/* Highlighted search terms */
.algolia-docsearch-suggestion--highlight {
  color: #3a33d1;
}
/* Highligted search terms in the main category headers */
.algolia-docsearch-suggestion--category-header
  .algolia-docsearch-suggestion--highlight {
  background-color: #4d47d5;
}
/* Currently selected suggestion */
.aa-cursor .algolia-docsearch-suggestion--content {
  color: #272296;
}
.aa-cursor .algolia-docsearch-suggestion {
  background: #ebebfb;
}

/* For bigger screens, when displaying results in two columns */
@media (min-width: 768px) {
  /* Bottom border of each suggestion */
  .algolia-docsearch-suggestion {
    border-bottom-color: #7671df;
  }
  /* Left column, with secondary category header */
  .algolia-docsearch-suggestion--subcategory-column {
    border-right-color: #7671df;
    color: #4e4726;
  }
}

.searchbox {
  display: inline-block;
  position: relative;
  width: 200px;
  height: 32px !important;
  white-space: nowrap;
  box-sizing: border-box;
  visibility: visible !important;
}

.searchbox .algolia-autocomplete {
  display: block;
  width: 100%;
  height: 100%;
}

.searchbox__wrapper {
  width: 100%;
  height: 100%;
  z-index: 999;
  position: relative;
}

.searchbox__input {
  display: inline-block;
  box-sizing: border-box;
  transition: box-shadow 0.4s ease, background 0.4s ease;
  border: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px #cccccc;
  background: #ffffff !important;
  padding: 0;
  padding-right: 26px;
  padding-left: 32px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  white-space: normal;
  font-size: 12px;
  appearance: none;
}

.searchbox__input::-webkit-search-decoration,
.searchbox__input::-webkit-search-cancel-button,
.searchbox__input::-webkit-search-results-button,
.searchbox__input::-webkit-search-results-decoration {
  display: none;
}

.searchbox__input:hover {
  box-shadow: inset 0 0 0 1px #b3b3b3;
}

.searchbox__input:focus,
.searchbox__input:active {
  outline: 0;
  box-shadow: inset 0 0 0 1px #aaaaaa;
  background: #ffffff;
}

.searchbox__input::placeholder {
  color: #aaaaaa;
}

.searchbox__submit {
  position: absolute;
  top: 0;
  margin: 0;
  border: 0;
  border-radius: 16px 0 0 16px;
  background-color: rgba(69, 142, 225, 0);
  padding: 0;
  width: 32px;
  height: 100%;
  vertical-align: middle;
  text-align: center;
  font-size: inherit;
  -webkit-user-select: none;
  user-select: none;
  right: inherit;
  left: 0;
}

.searchbox__submit::before {
  display: inline-block;
  margin-right: -4px;
  height: 100%;
  vertical-align: middle;
  content: '';
}

.searchbox__submit:hover,
.searchbox__submit:active {
  cursor: pointer;
}

.searchbox__submit:focus {
  outline: 0;
}

.searchbox__submit svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  fill: #6d7e96;
}

.searchbox__reset {
  display: block;
  position: absolute;
  top: 8px;
  right: 8px;
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  -webkit-user-select: none;
  user-select: none;
  fill: rgba(0, 0, 0, 0.5);
}

.searchbox__reset.hide {
  display: none;
}

.searchbox__reset:focus {
  outline: 0;
}

.searchbox__reset svg {
  display: block;
  margin: 4px;
  width: 8px;
  height: 8px;
}

.searchbox__input:valid ~ .searchbox__reset {
  display: block;
  animation-name: sbx-reset-in;
  animation-duration: 0.15s;
}

@keyframes sbx-reset-in {
  0% {
    transform: translate3d(-20%, 0, 0);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

.algolia-autocomplete .ds-dropdown-menu:before {
  display: block;
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  background: #373940;
  z-index: 1000;
  top: -7px;
  border-top: 1px solid #373940;
  border-right: 1px solid #373940;
  transform: rotate(-45deg);
  border-radius: 2px;
}

.algolia-autocomplete .ds-dropdown-menu {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2), 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 601px) {
  .algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu {
    right: 0 !important;
    left: inherit !important;
  }

  .algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu:before {
    right: 48px;
  }

  .algolia-autocomplete .ds-dropdown-menu {
    position: relative;
    top: -6px;
    border-radius: 4px;
    margin: 6px 0 0;
    padding: 0;
    text-align: left;
    height: auto;
    position: relative;
    background: transparent;
    border: none;
    z-index: 999;
    max-width: 600px;
    min-width: 500px;
  }
}

@media (max-width: 600px) {
  .algolia-autocomplete .ds-dropdown-menu {
    z-index: 100;
    position: fixed !important;
    top: 50px !important;
    left: auto !important;
    right: 1rem !important;
    width: 600px;
    max-width: calc(100% - 2rem);
    max-height: calc(100% - 5rem);
    display: block;
  }

  .algolia-autocomplete .ds-dropdown-menu:before {
    right: 6rem;
  }
}

.algolia-autocomplete .ds-dropdown-menu .ds-suggestions {
  position: relative;
  z-index: 1000;
}

.algolia-autocomplete .ds-dropdown-menu .ds-suggestion {
  cursor: pointer;
}

.algolia-autocomplete .ds-dropdown-menu [class^='ds-dataset-'] {
  position: relative;
  border-radius: 4px;
  overflow: auto;
  padding: 0;
  background: #ffffff;
}

.algolia-autocomplete .ds-dropdown-menu * {
  box-sizing: border-box;
}

.algolia-autocomplete .algolia-docsearch-suggestion {
  display: block;
  position: relative;
  padding: 0;
  overflow: hidden;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.algolia-autocomplete .ds-cursor .algolia-docsearch-suggestion--wrapper {
  background: #f1f1f1;
  box-shadow: inset -2px 0 0 #61dafb;
}

.algolia-autocomplete .algolia-docsearch-suggestion--highlight {
  background: #ffe564;
  padding: 0.1em 0.05em;
}

.algolia-autocomplete
  .algolia-docsearch-suggestion--category-header
  .algolia-docsearch-suggestion--category-header-lvl0
  .algolia-docsearch-suggestion--highlight,
.algolia-autocomplete
  .algolia-docsearch-suggestion--category-header
  .algolia-docsearch-suggestion--category-header-lvl1
  .algolia-docsearch-suggestion--highlight {
  color: inherit;
  background: inherit;
}

.algolia-autocomplete
  .algolia-docsearch-suggestion--text
  .algolia-docsearch-suggestion--highlight {
  padding: 0 0 1px;
  background: inherit;
  box-shadow: inset 0 -2px 0 0 rgba(69, 142, 225, 0.8);
  color: inherit;
}

.algolia-autocomplete .algolia-docsearch-suggestion--content {
  display: block;
  float: right;
  width: 70%;
  position: relative;
  padding: 5.33333px 0 5.33333px 10.66667px;
  cursor: pointer;
}

.algolia-autocomplete .algolia-docsearch-suggestion--content:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  height: 100%;
  width: 1px;
  background: #ececec;
  left: -1px;
}

.algolia-autocomplete .algolia-docsearch-suggestion--category-header {
  position: relative;
  display: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 700;
  background-color: #373940;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  padding: 5px 8px;
}

.algolia-autocomplete .algolia-docsearch-suggestion--wrapper {
  background-color: #fff;
  width: 100%;
  float: left;
  padding: 8px 0 0 0;
}

.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column {
  float: left;
  width: 30%;
  display: none;
  padding-left: 0;
  text-align: right;
  position: relative;
  padding: 5.33333px 10.66667px;
  color: #777;
  font-size: 0.9em;
  word-wrap: break-word;
}

.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  height: 100%;
  width: 1px;
  background: #ececec;
  right: 0;
}

.algolia-autocomplete
  .algolia-docsearch-suggestion.algolia-docsearch-suggestion__main
  .algolia-docsearch-suggestion--category-header,
.algolia-autocomplete
  .algolia-docsearch-suggestion.algolia-docsearch-suggestion__secondary {
  display: block;
}

.algolia-autocomplete
  .algolia-docsearch-suggestion--subcategory-column
  .algolia-docsearch-suggestion--highlight {
  background-color: inherit;
  color: inherit;
}

.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-inline {
  display: none;
}

.algolia-autocomplete .algolia-docsearch-suggestion--title {
  margin-bottom: 4px;
  color: #02060c;
  font-size: 0.9em;
  font-weight: bold;
}

.algolia-autocomplete .algolia-docsearch-suggestion--text {
  display: block;
  line-height: 1.2em;
  font-size: 0.85em;
  color: #63676d;
  padding-right: 2px;
}

.algolia-autocomplete .algolia-docsearch-suggestion--version {
  display: block;
  font-size: 0.65em;
  color: #a6aab1;
  padding-top: 2px;
  padding-right: 2px;
}

.algolia-autocomplete .algolia-docsearch-suggestion--no-results {
  width: 100%;
  padding: 8px 0;
  text-align: center;
  font-size: 1.2em;
  background-color: #373940;
  margin-top: -8px;
}

.algolia-autocomplete
  .algolia-docsearch-suggestion--no-results
  .algolia-docsearch-suggestion--text {
  color: #ffffff;
  margin-top: 4px;
}

.algolia-autocomplete .algolia-docsearch-suggestion--no-results::before {
  display: none;
}

.algolia-autocomplete .algolia-docsearch-suggestion code {
  padding: 1px 5px;
  font-size: 90%;
  border: none;
  color: #222222;
  background-color: #ebebeb;
  border-radius: 3px;
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.algolia-autocomplete
  .algolia-docsearch-suggestion
  code
  .algolia-docsearch-suggestion--highlight {
  background: none;
}

.algolia-autocomplete
  .algolia-docsearch-suggestion.algolia-docsearch-suggestion__main
  .algolia-docsearch-suggestion--category-header {
  color: white;
  display: block;
}

.algolia-autocomplete
  .algolia-docsearch-suggestion.algolia-docsearch-suggestion__secondary
  .algolia-docsearch-suggestion--subcategory-column {
  display: block;
}

.algolia-autocomplete .algolia-docsearch-footer {
  background-color: #fff;
  width: 100%;
  height: 30px;
  z-index: 2000;
  float: right;
  font-size: 0;
  line-height: 0;
}

.algolia-autocomplete .algolia-docsearch-footer--logo {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 18'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='-36.87%25' x2='129.43%25' y1='134.94%25' y2='-27.7%25'%3E%3Cstop stop-color='%252300AEFF' offset='0%25'/%3E%3Cstop stop-color='%25233369E7' offset='100%25'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='url(%2523a)' d='M59.4.02h13.3a2.37 2.37 0 0 1 2.38 2.37V15.6a2.37 2.37 0 0 1-2.38 2.36H59.4a2.37 2.37 0 0 1-2.38-2.36V2.38A2.37 2.37 0 0 1 59.4.02z'/%3E%3Cpath fill='%2523FFF' d='M66.26 4.56c-2.82 0-5.1 2.27-5.1 5.08 0 2.8 2.28 5.07 5.1 5.07 2.8 0 5.1-2.26 5.1-5.07 0-2.8-2.28-5.07-5.1-5.07zm0 8.65c-2 0-3.6-1.6-3.6-3.56 0-1.97 1.6-3.58 3.6-3.58 1.98 0 3.6 1.6 3.6 3.58a3.58 3.58 0 0 1-3.6 3.57zm0-6.4v2.66c0 .07.08.13.15.1l2.4-1.24c.04-.02.06-.1.03-.14a2.96 2.96 0 0 0-2.46-1.5c-.06 0-.1.05-.1.1zm-3.33-1.96l-.3-.3a.78.78 0 0 0-1.12 0l-.36.36a.77.77 0 0 0 0 1.1l.3.3c.05.05.13.04.17 0 .2-.25.4-.5.6-.7.23-.23.46-.43.7-.6.07-.04.07-.1.03-.16zm5-.8V3.4a.78.78 0 0 0-.78-.78h-1.83a.78.78 0 0 0-.78.78v.63c0 .07.06.12.14.1a5.74 5.74 0 0 1 1.58-.22c.52 0 1.04.07 1.54.2a.1.1 0 0 0 .13-.1z'/%3E%3Cpath fill='%2523182359' d='M102.16 13.76c0 1.46-.37 2.52-1.12 3.2-.75.67-1.9 1-3.44 1-.56 0-1.74-.1-2.67-.3l.34-1.7c.78.17 1.82.2 2.36.2.86 0 1.48-.16 1.84-.5.37-.36.55-.88.55-1.57v-.35a6.37 6.37 0 0 1-.84.3 4.15 4.15 0 0 1-1.2.17 4.5 4.5 0 0 1-1.6-.28 3.38 3.38 0 0 1-1.26-.82 3.74 3.74 0 0 1-.8-1.35c-.2-.54-.3-1.5-.3-2.2 0-.67.1-1.5.3-2.06a3.92 3.92 0 0 1 .9-1.43 4.12 4.12 0 0 1 1.45-.92 5.3 5.3 0 0 1 1.94-.37c.7 0 1.35.1 1.97.2a15.86 15.86 0 0 1 1.6.33v8.46zm-5.95-4.2c0 .9.2 1.88.6 2.3.4.4.9.62 1.53.62.34 0 .66-.05.96-.15a2.75 2.75 0 0 0 .73-.33V6.7a8.53 8.53 0 0 0-1.42-.17c-.76-.02-1.36.3-1.77.8-.4.5-.62 1.4-.62 2.23zm16.13 0c0 .72-.1 1.26-.32 1.85a4.4 4.4 0 0 1-.9 1.53c-.38.42-.85.75-1.4.98-.54.24-1.4.37-1.8.37-.43 0-1.27-.13-1.8-.36a4.1 4.1 0 0 1-1.4-.97 4.5 4.5 0 0 1-.92-1.52 5.04 5.04 0 0 1-.33-1.84c0-.72.1-1.4.32-2 .22-.6.53-1.1.92-1.5.4-.43.86-.75 1.4-.98a4.55 4.55 0 0 1 1.78-.34 4.7 4.7 0 0 1 1.8.34c.54.23 1 .55 1.4.97.38.42.68.92.9 1.5.23.6.35 1.3.35 2zm-2.2 0c0-.92-.2-1.7-.6-2.22-.38-.54-.94-.8-1.64-.8-.72 0-1.27.26-1.67.8-.4.54-.58 1.3-.58 2.22 0 .93.2 1.56.6 2.1.38.54.94.8 1.64.8s1.25-.26 1.65-.8c.4-.55.6-1.17.6-2.1zm6.97 4.7c-3.5.02-3.5-2.8-3.5-3.27L113.57.92l2.15-.34v10c0 .25 0 1.87 1.37 1.88v1.8zm3.77 0h-2.15v-9.2l2.15-.33v9.54zM119.8 3.74c.7 0 1.3-.58 1.3-1.3 0-.7-.58-1.3-1.3-1.3-.73 0-1.3.6-1.3 1.3 0 .72.58 1.3 1.3 1.3zm6.43 1c.7 0 1.3.1 1.78.27.5.18.88.42 1.17.73.28.3.5.74.6 1.18.13.46.2.95.2 1.5v5.47a25.24 25.24 0 0 1-1.5.25c-.67.1-1.42.15-2.25.15a6.83 6.83 0 0 1-1.52-.16 3.2 3.2 0 0 1-1.18-.5 2.46 2.46 0 0 1-.76-.9c-.18-.37-.27-.9-.27-1.44 0-.52.1-.85.3-1.2.2-.37.48-.67.83-.9a3.6 3.6 0 0 1 1.23-.5 7.07 7.07 0 0 1 2.2-.1l.83.16v-.35c0-.25-.03-.48-.1-.7a1.5 1.5 0 0 0-.3-.58c-.15-.18-.34-.3-.58-.4a2.54 2.54 0 0 0-.92-.17c-.5 0-.94.06-1.35.13-.4.08-.75.16-1 .25l-.27-1.74c.27-.1.67-.18 1.2-.28a9.34 9.34 0 0 1 1.65-.14zm.18 7.74c.66 0 1.15-.04 1.5-.1V10.2a5.1 5.1 0 0 0-2-.1c-.23.03-.45.1-.64.2a1.17 1.17 0 0 0-.47.38c-.13.17-.18.26-.18.52 0 .5.17.8.5.98.32.2.74.3 1.3.3zM84.1 4.8c.72 0 1.3.08 1.8.26.48.17.87.42 1.15.73.3.3.5.72.6 1.17.14.45.2.94.2 1.47v5.48a25.24 25.24 0 0 1-1.5.26c-.67.1-1.42.14-2.25.14a6.83 6.83 0 0 1-1.52-.16 3.2 3.2 0 0 1-1.18-.5 2.46 2.46 0 0 1-.76-.9c-.18-.38-.27-.9-.27-1.44 0-.53.1-.86.3-1.22.2-.36.5-.65.84-.88a3.6 3.6 0 0 1 1.24-.5 7.07 7.07 0 0 1 2.2-.1c.26.03.54.08.84.15v-.35c0-.24-.03-.48-.1-.7a1.5 1.5 0 0 0-.3-.58c-.15-.17-.34-.3-.58-.4a2.54 2.54 0 0 0-.9-.15c-.5 0-.96.05-1.37.12-.4.07-.75.15-1 .24l-.26-1.75c.27-.08.67-.17 1.18-.26a8.9 8.9 0 0 1 1.66-.15zm.2 7.73c.65 0 1.14-.04 1.48-.1v-2.17a5.1 5.1 0 0 0-1.98-.1c-.24.03-.46.1-.65.18a1.17 1.17 0 0 0-.47.4c-.12.17-.17.26-.17.52 0 .5.18.8.5.98.32.2.75.3 1.3.3zm8.68 1.74c-3.5 0-3.5-2.82-3.5-3.28L89.45.92 91.6.6v10c0 .25 0 1.87 1.38 1.88v1.8z'/%3E%3Cpath fill='%25231D3657' d='M5.03 11.03c0 .7-.26 1.24-.76 1.64-.5.4-1.2.6-2.1.6-.88 0-1.6-.14-2.17-.42v-1.2c.36.16.74.3 1.14.38.4.1.78.15 1.13.15.5 0 .88-.1 1.12-.3a.94.94 0 0 0 .35-.77.98.98 0 0 0-.33-.74c-.22-.2-.68-.44-1.37-.72-.72-.3-1.22-.62-1.52-1C.23 8.27.1 7.82.1 7.3c0-.65.22-1.17.7-1.55.46-.37 1.08-.56 1.86-.56.76 0 1.5.16 2.25.48l-.4 1.05c-.7-.3-1.32-.44-1.87-.44-.4 0-.73.08-.94.26a.9.9 0 0 0-.33.72c0 .2.04.38.12.52.08.15.22.3.42.4.2.14.55.3 1.06.52.58.24 1 .47 1.27.67.27.2.47.44.6.7.12.26.18.57.18.92zM9 13.27c-.92 0-1.64-.27-2.16-.8-.52-.55-.78-1.3-.78-2.24 0-.97.24-1.73.72-2.3.5-.54 1.15-.82 2-.82.78 0 1.4.25 1.85.72.46.48.7 1.14.7 1.97v.67H7.35c0 .58.17 1.02.46 1.33.3.3.7.47 1.24.47.36 0 .68-.04.98-.1a5.1 5.1 0 0 0 .98-.33v1.02a3.87 3.87 0 0 1-.94.32 5.72 5.72 0 0 1-1.08.1zm-.22-5.2c-.4 0-.73.12-.97.38s-.37.62-.42 1.1h2.7c0-.48-.13-.85-.36-1.1-.23-.26-.54-.38-.94-.38zm7.7 5.1l-.26-.84h-.05c-.28.36-.57.6-.86.74-.28.13-.65.2-1.1.2-.6 0-1.05-.16-1.38-.48-.32-.32-.5-.77-.5-1.34 0-.62.24-1.08.7-1.4.45-.3 1.14-.47 2.07-.5l1.02-.03V9.2c0-.37-.1-.65-.27-.84-.17-.2-.45-.28-.82-.28-.3 0-.6.04-.88.13a6.68 6.68 0 0 0-.8.33l-.4-.9a4.4 4.4 0 0 1 1.05-.4 4.86 4.86 0 0 1 1.08-.12c.76 0 1.33.18 1.7.5.4.33.6.85.6 1.56v4h-.9zm-1.9-.87c.47 0 .83-.13 1.1-.38.3-.26.43-.62.43-1.08v-.52l-.76.03c-.6.03-1.02.13-1.3.3s-.4.45-.4.82c0 .26.08.47.24.6.16.16.4.23.7.23zm7.57-5.2c.25 0 .46.03.62.06l-.12 1.18a2.38 2.38 0 0 0-.56-.06c-.5 0-.92.16-1.24.5-.3.32-.47.75-.47 1.27v3.1h-1.27V7.23h1l.16 1.05h.05c.2-.36.45-.64.77-.85a1.83 1.83 0 0 1 1.02-.3zm4.12 6.17c-.9 0-1.58-.27-2.05-.8-.47-.52-.7-1.27-.7-2.25 0-1 .24-1.77.73-2.3.5-.54 1.2-.8 2.12-.8.63 0 1.2.1 1.7.34l-.4 1c-.52-.2-.96-.3-1.3-.3-1.04 0-1.55.68-1.55 2.05 0 .67.13 1.17.38 1.5.26.34.64.5 1.13.5a3.23 3.23 0 0 0 1.6-.4v1.1a2.53 2.53 0 0 1-.73.28 4.36 4.36 0 0 1-.93.08zm8.28-.1h-1.27V9.5c0-.45-.1-.8-.28-1.02-.18-.23-.47-.34-.88-.34-.53 0-.9.16-1.16.48-.25.3-.38.85-.38 1.6v2.94h-1.26V4.8h1.26v2.12c0 .34-.02.7-.06 1.1h.08a1.76 1.76 0 0 1 .72-.67c.3-.16.66-.24 1.07-.24 1.43 0 2.15.74 2.15 2.2v3.86zM42.2 7.1c.74 0 1.32.28 1.73.82.4.53.62 1.3.62 2.26 0 .97-.2 1.73-.63 2.27-.42.54-1 .82-1.75.82s-1.33-.27-1.75-.8h-.08l-.23.7h-.94V4.8h1.26v2l-.02.64-.03.56h.05c.4-.6 1-.9 1.78-.9zm-.33 1.04c-.5 0-.88.15-1.1.45-.22.3-.34.8-.35 1.5v.08c0 .72.12 1.24.35 1.57.23.32.6.48 1.12.48.44 0 .78-.17 1-.53.24-.35.36-.87.36-1.53 0-1.35-.47-2.03-1.4-2.03zm3.24-.92h1.4l1.2 3.37c.18.47.3.92.36 1.34h.04l.18-.72 1.37-4H51l-2.53 6.73c-.46 1.23-1.23 1.85-2.3 1.85-.3 0-.56-.03-.83-.1v-1c.2.05.4.08.65.08.6 0 1.03-.36 1.28-1.06l.22-.56-2.4-5.94z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  overflow: hidden;
  text-indent: -9000px;
  width: 110px;
  height: 100%;
  display: block;
  margin-left: auto;
  margin-right: 5px;
}

html[data-theme='dark'] .algolia-docsearch-suggestion--category-header,
html[data-theme='dark'] .algolia-docsearch-suggestion--wrapper,
html[data-theme='dark'] .algolia-docsearch-footer {
    background: var(--ifm-background-color) !important;
    color: var(--ifm-font-color-base) !important;
}

html[data-theme='dark'] .algolia-docsearch-suggestion--title {
    color: var(--ifm-font-color-base) !important;
}

html[data-theme='dark'] .ds-cursor .algolia-docsearch-suggestion--wrapper {
    background: var(--ifm-background-surface-color) !important;
}

mark{
  background-color: lightblue;
}

