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

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

/* Common */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

* {
  box-sizing: border-box;
}

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

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

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

/* Layout */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Content */

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

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

a code {
  color: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

img {
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Consistent spacing between content paragraphs. */

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

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

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

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

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

/* Lists */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Links */

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

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

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

/* Paragraphs */

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

/* Blockquotes */

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

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

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

/* Horizontal Rules */

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

/* Utilities */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text--no-decoration,
  .text--no-decoration:hover {
    text-decoration: none;
  }

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

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

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

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

/* Components */

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

.alert--primary {
      --ifm-alert-background-color: var(
        --ifm-color-primary-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(53, 120, 229, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-primary-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-primary-dark);
    }

.alert--secondary {
      --ifm-alert-background-color: var(
        --ifm-color-secondary-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(235, 237, 240, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-secondary-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-secondary-dark);
    }

.alert--success {
      --ifm-alert-background-color: var(
        --ifm-color-success-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(0, 164, 0, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-success-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-success-dark);
    }

.alert--info {
      --ifm-alert-background-color: var(
        --ifm-color-info-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(84, 199, 236, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-info-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-info-dark);
    }

.alert--warning {
      --ifm-alert-background-color: var(
        --ifm-color-warning-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(255, 186, 0, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-warning-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-warning-dark);
    }

.alert--danger {
      --ifm-alert-background-color: var(
        --ifm-color-danger-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(250, 56, 62, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-danger-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-danger-dark);
    }

.alert {

  --ifm-code-background: var(--ifm-alert-background-color-highlight);
  --ifm-link-color: var(--ifm-alert-foreground-color);
  --ifm-link-hover-color: var(--ifm-alert-foreground-color);
  --ifm-link-decoration: underline;
  --ifm-tabs-color: var(--ifm-alert-foreground-color);
  --ifm-tabs-color-active: var(--ifm-alert-foreground-color);
  --ifm-tabs-color-active-border: var(--ifm-alert-border-color);

  background-color: var(--ifm-alert-background-color);
  border: var(--ifm-alert-border-width) solid var(--ifm-alert-border-color);
  border-left-width: var(--ifm-alert-border-left-width);
  border-radius: var(--ifm-alert-border-radius);
  box-shadow: var(--ifm-alert-shadow);
  color: var(--ifm-alert-foreground-color);
  padding: var(--ifm-alert-padding-vertical) var(--ifm-alert-padding-horizontal);
}

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

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

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

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

    opacity: 0.75;
  }

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

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

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

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

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

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

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

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

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

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

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

.avatar__subtitle {
    margin-top: 0.25rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

.breadcrumbs__item {
    display: inline-block;
  }

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

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

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

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

.breadcrumbs__link:any-link:hover {
      background: var(--ifm-breadcrumb-item-background-active);
      text-decoration: none;
    }

.breadcrumbs--sm {
    --ifm-breadcrumb-size-multiplier: 0.8;
  }

.breadcrumbs--lg {
    --ifm-breadcrumb-size-multiplier: 1.2;
  }

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

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

.button:hover {
    color: var(--ifm-button-color); /* Override for button links. */
    text-decoration: none;
  }

.button--outline {
    --ifm-button-background-color: transparent;
    --ifm-button-color: var(--ifm-button-border-color);
  }

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

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

.button--link {
    --ifm-button-background-color: transparent;
    --ifm-button-border-color: transparent;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Because of border-radius. */

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-of-contents__link:hover,
    .table-of-contents__link:hover code,
    .table-of-contents__link--active,
    .table-of-contents__link--active code {
      color: var(--ifm-color-primary);
      text-decoration: none;
    }

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

.close {
  color: var(--ifm-color-black);
  float: right;
  font-size: 1.5rem;
  font-weight: var(--ifm-font-weight-bold);
  line-height: 1;
  opacity: 0.5;
  padding: 1rem;
  transition: opacity var(--ifm-transition-fast) var(--ifm-transition-timing-default);
}

.close:hover {
    opacity: 0.7;
  }

.close:focus {
    opacity: 0.8;
  }

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

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

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

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

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

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

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

.dropdown__link:hover,
    .dropdown__link--active {
      background-color: var(--ifm-dropdown-hover-background-color);
      color: var(--ifm-dropdown-link-color);
      text-decoration: none;
    }

.dropdown__link--active,
    .dropdown__link--active:hover {
      --ifm-dropdown-link-color: var(--ifm-link-color);
    }

.dropdown > .navbar__link:after {
    border-color: currentColor transparent;
    border-style: solid;
    border-width: 0.4em 0.4em 0;
    content: '';
    display: inline-block;
    margin-left: 0.3em;
    position: relative;
    top: 2px;
    transform: translateY(-50%);
  }

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

.footer {
  background-color: var(--ifm-footer-background-color);
  color: var(--ifm-footer-color);
  padding: var(--ifm-footer-padding-vertical)
    var(--ifm-footer-padding-horizontal);
}

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

.footer__links {
    margin-bottom: 1rem;
  }

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

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

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

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

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

.footer__item {
    margin-top: 0;
  }

.footer__items {
    margin-bottom: 0;
  }

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

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

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

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

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

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

.hero__title {
    font-size: 3rem;
  }

.hero__subtitle {
    font-size: 1.5rem;
  }

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

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

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

/* Non-top level menus */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.navbar__brand:hover {
      color: var(--ifm-navbar-link-hover-color);
      text-decoration: none;
    }

.navbar__title {
    flex: 1 1 auto;
  }

.navbar__toggle {
    display: none;
    margin-right: 0.5rem;
  }

.navbar__logo {
    flex: 0 0 auto;
    height: 2rem;
    margin-right: 0.5rem;
  }

.navbar__logo img {
      height: 100%;
    }

.navbar__items {
    align-items: center;
    display: flex;
    flex: 1;
    min-width: 0;
  }

.navbar__items--center {
      flex: 0 0 auto;
    }

.navbar__items--center .navbar__brand {
        margin: 0;
      }

.navbar__items--center + .navbar__items--right {
        flex: 1;
      }

.navbar__items--right {
      flex: 0 0 auto;
      justify-content: flex-end;
    }

.navbar__items--right > :last-child {
        padding-right: 0;
      }

.navbar__item {
    display: inline-block;
    padding: var(--ifm-navbar-item-padding-vertical)
      var(--ifm-navbar-item-padding-horizontal);
  }

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

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

.navbar__link:hover,
    .navbar__link--active {
      color: var(--ifm-navbar-link-hover-color);
      text-decoration: none;
    }

.navbar--dark,
  .navbar--primary {
    --ifm-menu-color: var(--ifm-color-gray-300);
    --ifm-navbar-link-color: var(--ifm-color-gray-100);
    --ifm-navbar-search-input-background-color: rgba(255, 255, 255, 0.1);
    --ifm-navbar-search-input-placeholder-color: rgba(255, 255, 255, 0.5);

    color: var(--ifm-color-white);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pagination__item {
    display: inline-flex;
  }

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

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

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

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

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

.pagination__link:hover {
      text-decoration: none;
    }

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

.pagination-nav {
  display: grid;
  grid-gap: var(--ifm-spacing-horizontal);
  gap: var(--ifm-spacing-horizontal);
  grid-template-columns: repeat(2, 1fr);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Mode */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .footer__link-separator {
      display: none;
    }

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

    .footer__link-item {
      display: block;
    }

.hero {
    padding-left: 0;
    padding-right: 0
}

.navbar > .container,
  .navbar > .container-fluid {
      padding: 0
  }

.navbar__toggle {
      display: inherit
  }

.navbar__item {
      display: none
  }

.navbar__search-input {
        width: 9rem
    }

.pills--block {
      flex-direction: column
  }

.tabs--block {
      flex-direction: column
  }
}

@media (max-width: 576px) {
    .markdown h1:first-child {
      --ifm-h1-font-size: 2rem;
    }
    .markdown > h2 {
      --ifm-h2-font-size: 1.5rem;
    }
    .markdown > h3 {
      --ifm-h3-font-size: 1.25rem;
    }
}

@media (pointer: fine) {
  .thin-scrollbar {
    scrollbar-width: thin;
  }
  .thin-scrollbar::-webkit-scrollbar {
    height: var(--ifm-scrollbar-size);
    width: var(--ifm-scrollbar-size);
  }
  .thin-scrollbar::-webkit-scrollbar-track {
    background: var(--ifm-scrollbar-track-background-color);
    border-radius: 10px;
  }
  .thin-scrollbar::-webkit-scrollbar-thumb {
    background: var(--ifm-scrollbar-thumb-background-color);
    border-radius: 10px;
  }
  .thin-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--ifm-scrollbar-thumb-hover-background-color);
  }
}

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

@media print {

.table-of-contents {
    display: none
}

.footer {
    display: none
}

.menu {
    display: none
}

.navbar {
    display: none
}

.pagination-nav {
    display: none
}

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

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

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

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

#nprogress {
  pointer-events: none;
}

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

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

/**
 * Any CSS included here will be global. The classic template
 * bundles Infima by default. Infima is a CSS framework designed to
 * work well for content-centric websites.
 */

/* You can override the default Infima variables here. */


:root {
  /* mandla litapalletta */
  --Litur-svartur: #000000;
  --Litur-beige: #E1DAC7;
  --Litur-ljos-beige: #F7F3E6;
  --Litur-grænn: #72A03F;
  --Litur-ljos-grænn: rgba(114,160,63,0.3);
  --Litur-appelsinugulur-dempadur: #E6C28B;
  --Litur-dökk-grænn: #577831;
 --Litur-hvítur: #ffffff;
 --Litur-Grár: #333333;
 --Litur-Ljós-grár: #737373;
 --Litur-ljós-grár-dempaður: rgba(115, 115, 115, 0.1);
 /* Docusaurus litapalletta */
  --ifm-color-primary: var(--Litur-svartur);
  --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);
 /* Navbar */
 --ifm-menu-color-background-active: transparent;
 --ifm-menu-color: var(--Litur-svartur);
 --ifm-menu-color-background-hover: var(--Litur-ljós-grár-dempaður);
 --ifm-navbar-link-hover-color:var(--Litur-svartur);
 --ifm-navbar-link-color:var(--Litur-svartur);
 --ifm-dropdown-hover-background-color:var(--Litur-ljós-grár-dempaður);
 --ifm-dropdown-link-color:var(--Litur-svartur);
 --ifm-color-emphasis-600:var(--Litur-svartur);
 --ifm-color-white:var(--Litur-beige);


}

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

/* Leturfræði */

.hero__title{
  font-size: 2rem !important;
}
main{
  display: flex;
  flex-direction: column;
  align-items: center;
}
html {
  font-size: 3.5vw;
}
body {
  scroll-behavior: smooth;
  overflow-y: auto; 
}

h1,h2,h3,h4,h5,p,a,summary,li{
  font-family: "Museo Sans", sans-serif;
  text-align: center;
  font-style: normal;
  color: var(--Litur-svartur);
  margin-bottom: 0.3rem;
}

article h1 {
  text-align: left;
  max-width: 80vw;
  hyphens: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

article h2 , article h3, article p, article li{
  text-align: left;
}

h1 {
  font-weight: 500;
  margin-top: 2rem;
  font-size: 3.5rem;
  line-height: 3.5rem;
}

h2 {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 2.8rem;
  margin-bottom: 0.5rem;
}

h3 {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.8rem;
}

h4, summary {
  font-weight: 300 !important;
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin-bottom: 0.3vh;
}

h5, .navbar__link {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6rem;

}

p, li, a {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6rem;
}

/* Desktop */
@media screen and (min-width: 700px) {
  html {
    font-size: 1.1vw;
  }

  h1, h2, h3, h4, p, li, a, summary {
    text-align: left;
  }
  h1 {
    margin-top: 0;
    font-size: 4.5rem;
    line-height: 4.5rem;
  }
  
  h2 {
    font-size: 3.2rem;
    line-height: 3.5rem;
    margin-bottom: 0.5rem;
  }
  
  h3 {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }
  
  h4, summary {
    font-size: 1.48rem;
    line-height: 2rem;
    margin-bottom: 0.3vh;
  }
  
  h5, .navbar__link {
    font-size: 1.2rem;
    line-height: 1.5rem;
  
  }
  
  p, li, a {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}

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

.container_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugLayout-styles-module {
  padding: 20px;
  padding-top: 80px;
  overflow-x: hidden;
  background-color: #18191a;
  color: white;
  min-height: 100vh;
}

.container_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugLayout-styles-module code {
  color: white;
  background-color: #444950;
}

.nav_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugLayout-styles-module {
  position: fixed;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 3.75rem;
  background-color: #242526;
  width: 100%;
  z-index: 1;
}

.navlink_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugLayout-styles-module {
  color: white;
  font-weight: 500;
  font-size: clamp(12px, 4vw, 16px);
  text-align: center;
  border-radius: 4px;
  padding: 6px;
}

.navlink_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugLayout-styles-module:hover {
  text-decoration: none;
  background-color: #292a2b;
}

.active_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugLayout-styles-module {
  background-color: #363739;
}

@media screen and (min-width: 800px) {
  .nav_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugLayout-styles-module {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    width: 200px;
    float: left;
    background-color: #18191a;
    border-right: 1px solid #606770;
    padding-top: 20px;
  }

  .navlink_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugLayout-styles-module {
    width: 80%;
    margin-top: 20px;
    text-align: left;
  }

  .container_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugLayout-styles-module {
    padding-top: 40px;
    float: right;
    width: calc(100% - 200px);
  }
}

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

.containerParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module {
  font-family: monospace;
  cursor: default;
  background-color: rgb(41 42 43);
  position: relative;
  margin-top: 10px;
  padding: 10px;
  border-radius: 4px;
  font-size: 13px;
}

.basicElementParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module {
  color: white;
  padding: 3px 5px 3px 20px;
  border-left: 1px solid rgb(79 66 76);
}

.labelParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module {
  color: rgb(231 233 219);
  letter-spacing: 0.5px;
  margin-right: 3px;
}

.nullValueParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module {
  display: inline-block;
  color: rgb(254 196 24);
  font-size: 11px;
  font-weight: bold;
  background-color: rgb(79 66 76);
  padding: 1px 2px;
  border-radius: 3px;
  text-transform: uppercase;
}

.undefinedValueParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module {
  color: rgb(141 134 135);
}

.stringValueParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module {
  color: rgb(249 155 21);
}

.booleanValueParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module {
  color: rgb(129 91 164);
}

.numberValueParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module {
  color: rgb(233 107 168);
}

.otherValueParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module {
  color: white;
}

.punctuationParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module {
  color: white;
}

.expandIconParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module {
  display: inline-block;
  color: rgb(129 91 164);
  font-size: 22px;
  vertical-align: baseline;
  margin-right: 3px;
  line-height: 10px;
}

.collapseIconParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module::after {
  content: '\25BE';
}

.collapseIconParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module {
  display: inline-block;
  color: rgb(6 182 239);
  font-size: 22px;
  vertical-align: baseline;
  margin-right: 3px;
  line-height: 10px;
}

.expandIconParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module::after {
  content: '\25B8';
}

.collapseContentParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module {
  color: rgb(249 155 21);
  font-size: 18px;
  line-height: 10px;
  cursor: pointer;
}

.collapseContentParaiso_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugJsonView-styles-module::after {
  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.
 */

.listItem_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugRegistry-styles-module {
  background-color: #242526;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

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

.listItem_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugRoutes-styles-module {
  background-color: #242526;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.route_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugRoutes-styles-module {
  margin-bottom: 10px;
}

.routeName_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugRoutes-styles-module {
  color: #e06b6b;
}

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

.sectionTitle_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugSiteMetadata-styles-module {
  margin-top: 20px;
}

.listItem_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugSiteMetadata-styles-module {
  background-color: #242526;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.version_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugSiteMetadata-styles-module {
  float: right;
}

.name_node_modules-\@docusaurus-plugin-debug-lib-theme-DebugSiteMetadata-styles-module {
  font-weight: 800;
  color: #e06b6b;
}

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

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

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

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

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

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

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

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

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

.tagWithCount_node_modules-\@docusaurus-theme-classic-lib-theme-Tag-styles-module span {
  background: var(--ifm-color-secondary);
  color: var(--ifm-color-black);
  font-size: 0.7rem;
  line-height: 1.2;
  border-radius: var(--ifm-global-radius);
  padding: 0.1rem 0.4rem;
  margin-left: 0.3rem;
}

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

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

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

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

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

.backToTopButton_node_modules-\@docusaurus-theme-classic-lib-theme-BackToTopButton-styles-module::after {
  content: ' ';
  display: inline-block;
  mask: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem no-repeat;
  background-color: var(--ifm-color-emphasis-1000);
  width: 100%;
  height: 100%;
}

@media (hover: hover) {
  .backToTopButton_node_modules-\@docusaurus-theme-classic-lib-theme-BackToTopButton-styles-module:hover {
    background-color: var(--ifm-color-emphasis-300);
  }
}

.backToTopButtonShow_node_modules-\@docusaurus-theme-classic-lib-theme-BackToTopButton-styles-module {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}

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

.skipToContent_src-theme-SkipToContent-styles-module:focus {
  left: 1rem;
  box-shadow: var(--ifm-global-shadow-md);
}

.closeButton_src-theme-AnnouncementBar-CloseButton-styles-module {
  padding: 0;
  line-height: 0;
}

.content_src-theme-AnnouncementBar-Content-styles-module {
  font-size: 85%;
  text-align: center;
  padding: 5px 0;
}

.content_src-theme-AnnouncementBar-Content-styles-module a {
  color: inherit;
  text-decoration: underline;
}

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

.announcementBar_src-theme-AnnouncementBar-styles-module {
  display: flex;
  align-items: center;
  height: var(--docusaurus-announcement-bar-height);
  background-color: var(--ifm-color-white);
  color: var(--ifm-color-black);

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

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

html[data-announcement-bar-initially-dismissed='true'] .announcementBar_src-theme-AnnouncementBar-styles-module {
  display: none;
}

.announcementBarPlaceholder_src-theme-AnnouncementBar-styles-module {
  flex: 0 0 10px;
}

.announcementBarClose_src-theme-AnnouncementBar-styles-module {
  flex: 0 0 30px;
  align-self: stretch;
}

.announcementBarContent_src-theme-AnnouncementBar-styles-module {
  flex: 1 1 auto;
}

@media print {
  .announcementBar_src-theme-AnnouncementBar-styles-module {
    display: none;
  }
}

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

  .announcementBarPlaceholder_src-theme-AnnouncementBar-styles-module,
  .announcementBarClose_src-theme-AnnouncementBar-styles-module {
    flex-basis: 50px;
  }
}

/* Farsími fyrst */


.navbarSidebar_src-theme-Navbar-MobileSidebar-Layout-styles-module:hidden{
  position: fixed; /* or absolute, depending on your needs */
  top: 0; /* adjust as needed */
  right: -100px; /* or any value you need to position it outside */
  transition: transform 0.3s ease; /* Add a transition for smooth animation */
  transform: translateX(100%); /* Start the element off-screen */
}

.navbarSidebar_src-theme-Navbar-MobileSidebar-Layout-styles-module{
    bottom:auto;
    left: auto;
    right: 0;
    transform: translateX(0); 
    width: 100%; 
}


a:not([href]) {
  max-width: 10rem;
}

.navbarSidebarItem_src-theme-Navbar-MobileSidebar-Layout-styles-module{
  padding: 0.5rem 1rem;
  /* background-color: var(--Litur-beige); */
}

.navbarBrand_src-theme-Navbar-MobileSidebar-Layout-styles-module{
  padding: 0 1.8rem 0 1rem;
  box-shadow: none;
  background-color: var(--Litur-beige);
}
 
/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.toggle_node_modules-\@docusaurus-theme-classic-lib-theme-ColorModeToggle-styles-module {
  width: 2rem;
  height: 2rem;
}

.toggleButton_node_modules-\@docusaurus-theme-classic-lib-theme-ColorModeToggle-styles-module {
  -webkit-tap-highlight-color: transparent;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: background var(--ifm-transition-fast);
}

.toggleButton_node_modules-\@docusaurus-theme-classic-lib-theme-ColorModeToggle-styles-module:hover {
  background: var(--ifm-color-emphasis-200);
}

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

.toggleButtonDisabled_node_modules-\@docusaurus-theme-classic-lib-theme-ColorModeToggle-styles-module {
  cursor: not-allowed;
}

.darkNavbarColorModeToggle_src-theme-Navbar-ColorModeToggle-styles-module:hover {
  background: var(--ifm-color-gray-800);
}

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

.themedComponent_node_modules-\@docusaurus-theme-common-lib-components-ThemedComponent-styles-module {
  display: none;
}

[data-theme='light'] .themedComponent--light_node_modules-\@docusaurus-theme-common-lib-components-ThemedComponent-styles-module {
  display: initial;
}

[data-theme='dark'] .themedComponent--dark_node_modules-\@docusaurus-theme-common-lib-components-ThemedComponent-styles-module {
  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_node_modules-\@docusaurus-theme-common-lib-components-ThemedComponent-styles-module {
  display: initial;
}

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

:root {
  --docusaurus-collapse-button-bg: transparent;
  --docusaurus-collapse-button-bg-hover: rgb(0 0 0 / 10%);
}

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

@media (min-width: 997px) {
  .collapseSidebarButton_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-CollapseButton-styles-module {
    display: block !important;
    background-color: var(--docusaurus-collapse-button-bg);
    height: 40px;
    position: sticky;
    bottom: 0;
    border-radius: 0;
    border: 1px solid var(--ifm-toc-border-color);
  }

  .collapseSidebarButtonIcon_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-CollapseButton-styles-module {
    transform: rotate(180deg);
    margin-top: 4px;
  }

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

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

.collapseSidebarButton_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-CollapseButton-styles-module {
  display: none;
  margin: 0;
}

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

.iconExternalLink_node_modules-\@docusaurus-theme-classic-lib-theme-Icon-ExternalLink-styles-module {
  margin-left: 0.3rem;
}

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

.menuExternalLink_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebarItem-Link-styles-module {
  align-items: center;
}

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

@media (min-width: 997px) {
  .menuHtmlItem_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebarItem-Html-styles-module {
    padding: var(--ifm-menu-link-padding-vertical)
      var(--ifm-menu-link-padding-horizontal);
  }
}

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

@media (min-width: 997px) {
  .menu_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-Content-styles-module {
    flex-grow: 1;
    padding: 0.5rem;
  }
  @supports (scrollbar-gutter: stable) {
    .menu_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-Content-styles-module {
      padding: 0.5rem 0 0.5rem 0.5rem;
      scrollbar-gutter: stable;
    }
  }

  .menuWithAnnouncementBar_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-Content-styles-module {
    margin-bottom: var(--docusaurus-announcement-bar-height);
  }
}

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

@media (min-width: 997px) {
  .sidebar_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-styles-module {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: var(--ifm-navbar-height);
    width: var(--doc-sidebar-width);
  }

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

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

  .sidebarLogo_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-styles-module {
    display: flex !important;
    align-items: center;
    margin: 0 var(--ifm-navbar-padding-horizontal);
    min-height: var(--ifm-navbar-height);
    max-height: var(--ifm-navbar-height);
    color: inherit !important;
    text-decoration: none !important;
  }

  .sidebarLogo_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-styles-module img {
    margin-right: 0.5rem;
    height: 2rem;
  }
}

.sidebarLogo_node_modules-\@docusaurus-theme-classic-lib-theme-DocSidebar-Desktop-styles-module {
  display: none;
}

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

@media (min-width: 997px) {
  .expandButton_node_modules-\@docusaurus-theme-classic-lib-theme-DocRoot-Layout-Sidebar-ExpandButton-styles-module {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--ifm-transition-fast) ease;
    background-color: var(--docusaurus-collapse-button-bg);
  }

  .expandButton_node_modules-\@docusaurus-theme-classic-lib-theme-DocRoot-Layout-Sidebar-ExpandButton-styles-module:hover,
  .expandButton_node_modules-\@docusaurus-theme-classic-lib-theme-DocRoot-Layout-Sidebar-ExpandButton-styles-module:focus {
    background-color: var(--docusaurus-collapse-button-bg-hover);
  }

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

  [dir='rtl'] .expandButtonIcon_node_modules-\@docusaurus-theme-classic-lib-theme-DocRoot-Layout-Sidebar-ExpandButton-styles-module {
    transform: rotate(180deg);
  }
}

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

:root {
  --doc-sidebar-width: 300px;
  --doc-sidebar-hidden-width: 30px;
}

.docSidebarContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocRoot-Layout-Sidebar-styles-module {
  display: none;
}

@media (min-width: 997px) {
  .docSidebarContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocRoot-Layout-Sidebar-styles-module {
    display: block;
    width: var(--doc-sidebar-width);
    margin-top: calc(-1 * var(--ifm-navbar-height));
    border-right: 1px solid var(--ifm-toc-border-color);
    will-change: width;
    transition: width var(--ifm-transition-fast) ease;
    clip-path: inset(0);
  }

  .docSidebarContainerHidden_node_modules-\@docusaurus-theme-classic-lib-theme-DocRoot-Layout-Sidebar-styles-module {
    width: var(--doc-sidebar-hidden-width);
    cursor: pointer;
  }

  .sidebarViewport_node_modules-\@docusaurus-theme-classic-lib-theme-DocRoot-Layout-Sidebar-styles-module {
    top: 0;
    position: sticky;
    height: 100%;
    max-height: 100vh;
  }
}

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

.docMainContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocRoot-Layout-Main-styles-module {
  display: flex;
  width: 100%;
}

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

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

  .docItemWrapperEnhanced_node_modules-\@docusaurus-theme-classic-lib-theme-DocRoot-Layout-Main-styles-module {
    max-width: calc(
      var(--ifm-container-width) + var(--doc-sidebar-width)
    ) !important;
  }
}

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

.docRoot_node_modules-\@docusaurus-theme-classic-lib-theme-DocRoot-Layout-styles-module {
  display: flex;
  width: 100%;
}

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

.dropdownNavbarItemMobile_node_modules-\@docusaurus-theme-classic-lib-theme-NavbarItem-DropdownNavbarItem-styles-module {
  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_node_modules-\@docusaurus-theme-classic-lib-theme-NavbarItem-LocaleDropdownNavbarItem-styles-module {
  vertical-align: text-bottom;
  margin-right: 5px;
}

/*
Workaround to avoid rendering empty search container
See https://github.com/facebook/docusaurus/pull/9385
*/
/*
TODO temporary @supports check, remove before 2025
only needed for Firefox < 121
see https://github.com/facebook/docusaurus/issues/9527#issuecomment-1805272379
 */
@supports selector(:has(*)) {
  .navbarSearchContainer_src-theme-Navbar-Search-styles-module:not(:has(> *)) {
    display: none;
  }
}

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

@media (min-width: 700px) {
  .navbarSearchContainer_src-theme-Navbar-Search-styles-module {
    padding: var(--ifm-navbar-item-padding-vertical)
      var(--ifm-navbar-item-padding-horizontal);
  }
}

.navbarHideable_src-theme-Navbar-Layout-styles-module {
  transition: transform var(--ifm-transition-fast) ease;
}

.navbarHidden_src-theme-Navbar-Layout-styles-module {
  transform: translate3d(0, calc(-100% - 2px), 0);
}

/* Farsími fyrst */

/* Navigation bar */
.navbar_src-theme-Navbar-Layout-styles-module {
  padding: 0 1rem;
  background-color: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: blur(35px);
          backdrop-filter: blur(35px);
}

.navbarBackdropStyle_src-theme-Navbar-Layout-styles-module {
  background: none;
}

/* Desktop */
@media screen and (min-width: 700px) {
  .navbar_src-theme-Navbar-Layout-styles-module {
    padding: 0 6rem;
  }
}



/*
Hide color mode toggle in small viewports
 */

/* Farsími fyrst */

.colorModeToggle_src-theme-Navbar-Content-styles-module {
  display: none;
}
a{
width: -moz-fit-content !important;
width: fit-content !important;
border-radius: 0 !important;
}
a[class="menu__link menu__link--active"]{
  text-decoration: underline !important;
  font-weight: 500 !important;
}
a[class="menu__link"],
li[class="menu__list"],
a[class="dropdownNavbarItemMobile_node_modules-@docusaurus-theme-classic-lib-theme-NavbarItem-DropdownNavbarItem-styles-module menu__link menu__link--sublist menu__link--sublist-caret"] {
  font-weight: 500 !important;
}


/* Desktop */
@media screen and (min-width: 700px) {
  .colorModeToggle_src-theme-Navbar-Content-styles-module {
    display: block;
  }
ul{
  min-width: -moz-fit-content !important;
  min-width: fit-content !important;
border-radius: 0 !important;
}
u[class="dropdown__menu"]{
  background-color: var(--Litur-beige) !important;

}
[class="navbar__item navbar__link"]:hover{
 text-decoration: underline;

}
a[class="dropdown__link"]{
  color: black;
  font-weight: 500;
}
a[class="dropdown__link dropdown__link--active"]{
  text-decoration: underline;
  background-color: transparent;
  font-weight: 500;
}
  a[class="dropdown__link dropdown__link--active"]:hover{
    text-decoration: underline;
}
[class="navbar__items navbar__items--right"] {
  align-items: flex-end;
  padding-bottom: 0.6rem;
}

[class="navbar__link"] svg {
width: 1.5vw;
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.
 */

.errorBoundaryError_node_modules-\@docusaurus-theme-common-lib-utils-errorBoundaryUtils-module {
  white-space: pre-wrap;
  color: red;
}

.errorBoundaryFallback_node_modules-\@docusaurus-theme-common-lib-utils-errorBoundaryUtils-module {
  color: red;
  padding: 0.55rem;
}

.footerLogoLink_src-theme-Footer-Logo-styles-module {
  opacity: 0.5;
  transition: opacity var(--ifm-transition-fast)
    var(--ifm-transition-timing-default);
}

.footerLogoLink_src-theme-Footer-Logo-styles-module:hover {
  opacity: 1;
}

/* Farsími fyrst */
@media (max-width: 300px) {
  footer {
    overflow-wrap: break-word;
    width: -webkit-fill-available;
  }
}

footer {
  background-color: var(--Litur-appelsinugulur-dempadur) !important;
}

.footerContainer_src-theme-Footer-Layout-styles-module {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

[class="footer__items clean-list"] {
  display: flex;
  flex-direction: column;
  align-items: center;
}

[class="footer__link-item"] {
  color: var(--Litur-svartur);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6rem;
}

[class="footer__title"] {
  color: var(--Litur-svartur);
  font-weight: 500 !important;
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin-bottom: 1vh;
}

.footerContainer_src-theme-Footer-Layout-styles-module h2 {
  max-width: 9em;
}

[class="row footer__links"] {
  margin-top: 2rem;
}

/* Desktop */
@media screen and (min-width: 700px) {
  .footerContainer_src-theme-Footer-Layout-styles-module {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 7fr 1fr;
    align-items: start;
    width: 100vw;
  }
  .footerContainer_src-theme-Footer-Layout-styles-module h2{
    font-size: 2.6rem;
    line-height: 3rem;
    max-width: 11em;
  }

  [class="footer__copyright"], [class="footer__title"] {
    text-align: left;
  }

  [class="footer__items clean-list"] {
    align-items: flex-start;
  }

  [class="row footer__links"] {
    padding-bottom: 2rem;
    margin-bottom: 0;
    margin-top: 0;
  }
  [class="container container-fluid"] {
    margin:  0;
    max-width: none;
    display: flex;
    justify-content: center;
    width: 100vw;
    padding: 0 6rem;
    max-width: none !important;
  }

  [class="footer footer--light"] {
    padding: 2rem 0;
  }
}

.buttons_src-theme-Buttons-styles-module {
   grid-gap: 2rem !important;
   flex-direction: column;
   display: flex;
   align-items: center;
   justify-content: center;
   padding-bottom: 1rem;
   padding-top: 1rem;
 }
 .buttonGoogle_src-theme-Buttons-styles-module, .buttonApple_src-theme-Buttons-styles-module  {
   width: 30vw;
   height: 10vw;
   max-width: 150px;
    max-height: 50px;
   }
 .buttonApple_src-theme-Buttons-styles-module {
   background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iYXJ0d29yayIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAxMTkuNyA0MCI+CiAgPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5jbHMtMSB7CiAgICAgICAgZmlsbDogI2E2YTZhNjsKICAgICAgfQoKICAgICAgLmNscy0xLCAuY2xzLTIsIC5jbHMtMyB7CiAgICAgICAgc3Ryb2tlLXdpZHRoOiAwcHg7CiAgICAgIH0KCiAgICAgIC5jbHMtMiB7CiAgICAgICAgZmlsbDogIzAwMDsKICAgICAgfQoKICAgICAgLmNscy0zIHsKICAgICAgICBmaWxsOiAjZmZmOwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8Zz4KICAgIDxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTExMC4xLDBIOC40Yy0uMywwLS42LDAtLjksMC0uNywwLTEuMywwLTIsLjItLjcuMS0xLjMuMy0xLjkuNnMtMS4xLjctMS42LDEuMmMtLjUuNS0uOSwxLTEuMiwxLjYtLjMuNi0uNSwxLjItLjYsMS45LS4xLjctLjIsMS4zLS4yLDJzMCwuNiwwLC45djIzLjFjMCwuMywwLC42LDAsLjksMCwuNywwLDEuMy4yLDJzLjMsMS4zLjYsMS45Yy4zLjYuNywxLjEsMS4yLDEuNi41LjUsMSwuOSwxLjYsMS4yLjYuMywxLjIuNSwxLjkuNi43LjEsMS4zLjIsMiwuMi4zLDAsLjYsMCwuOSwwaDEwMi44Yy4zLDAsLjYsMCwuOSwwLC43LDAsMS4zLDAsMi0uMnMxLjMtLjMsMS45LS42Yy42LS4zLDEuMS0uNywxLjYtMS4yLjUtLjUuOS0xLDEuMi0xLjYuMy0uNi41LTEuMi42LTEuOXMuMi0xLjMuMi0yVjcuNWMwLS43LDAtMS4zLS4yLTItLjEtLjctLjMtMS4zLS42LTEuOS0uNi0xLjItMS42LTIuMi0yLjgtMi44LS42LS4zLTEuMi0uNS0xLjktLjYtLjctLjEtMS4zLS4yLTItLjItLjMsMC0uNiwwLS45LDBoLTEuMVoiLz4KICAgIDxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTguNCwzOS4xYy0uMywwLS42LDAtLjksMC0uNiwwLTEuMiwwLTEuOS0uMi0uNiwwLTEuMS0uMy0xLjctLjUtLjUtLjMtMS0uNi0xLjQtMXMtLjgtLjktMS0xLjQtLjUtMS4xLS41LTEuN2MtLjEtLjYtLjItMS4yLS4yLTEuOSwwLS4yLDAtLjksMC0uOVY4LjRzMC0uNywwLS45YzAtLjYsMC0xLjIuMi0xLjkuMS0uNi4zLTEuMS41LTEuN3MuNi0xLDEtMS40Yy40LS40LjktLjgsMS40LTFzMS4xLS41LDEuNy0uNWMuNi0uMSwxLjItLjIsMS45LS4yaDEwMy43cy45LDAsLjksMGMuNiwwLDEuMiwwLDEuOS4yLjYuMSwxLjEuMywxLjcuNSwxLC41LDEuOSwxLjQsMi40LDIuNC4zLjUuNCwxLjEuNSwxLjcsMCwuNi4yLDEuMi4yLDEuOXYyNC45YzAsLjYsMCwxLjItLjIsMS44LDAsLjYtLjMsMS4xLS41LDEuNy0uMy41LS42LDEtMSwxLjQtLjQuNC0uOS44LTEuNCwxLS41LjMtMS4xLjUtMS43LjUtLjYsMC0xLjIuMi0xLjkuMnMtLjYsMC0uOSwwSDguNGgwWiIvPgogIDwvZz4KICA8ZyBpZD0iX0dyb3VwXyIgZGF0YS1uYW1lPSIgR3JvdXAgIj4KICAgIDxnIGlkPSJfR3JvdXBfMiIgZGF0YS1uYW1lPSIgR3JvdXAgMiI+CiAgICAgIDxnIGlkPSJfR3JvdXBfMyIgZGF0YS1uYW1lPSIgR3JvdXAgMyI+CiAgICAgICAgPHBhdGggaWQ9Il9QYXRoXyIgZGF0YS1uYW1lPSIgUGF0aCAiIGNsYXNzPSJjbHMtMyIgZD0iTTI0LjgsMjAuM2MwLTEuNy45LTMuMywyLjQtNC4xLS45LTEuMy0yLjQtMi4xLTQtMi4yLTEuNy0uMi0zLjMsMS00LjIsMXMtMi4yLTEtMy42LTFjLTEuOSwwLTMuNiwxLjEtNC41LDIuNy0xLjksMy40LS41LDguMywxLjQsMTEsLjksMS4zLDIsMi44LDMuNCwyLjgsMS40LDAsMS45LS45LDMuNi0uOXMyLjEuOSwzLjYuOWMxLjUsMCwyLjQtMS4zLDMuMy0yLjcuNy0uOSwxLjItMiwxLjUtMy4xLTEuOC0uOC0yLjktMi41LTIuOS00LjRoMFoiLz4KICAgICAgICA8cGF0aCBpZD0iX1BhdGhfMiIgZGF0YS1uYW1lPSIgUGF0aCAyIiBjbGFzcz0iY2xzLTMiIGQ9Ik0yMiwxMi4yYy44LTEsMS4yLTIuMiwxLjEtMy41LTEuMi4xLTIuNC43LTMuMiwxLjctLjguOS0xLjIsMi4xLTEuMSwzLjQsMS4zLDAsMi41LS42LDMuMi0xLjVaIi8+CiAgICAgIDwvZz4KICAgIDwvZz4KICAgIDxnPgogICAgICA8cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik00Mi4zLDI3LjFoLTQuN2wtMS4xLDMuNGgtMmw0LjUtMTIuNGgyLjFsNC41LDEyLjRoLTJsLTEuMS0zLjRoMFpNMzguMSwyNS42aDMuOGwtMS44LTUuNWgwcy0xLjgsNS41LTEuOSw1LjVaIi8+CiAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTU1LjIsMjZjMCwyLjgtMS41LDQuNi0zLjgsNC42LTEuMiwwLTIuMy0uNS0yLjgtMS42aDB2NC41aC0xLjl2LTEyaDEuOHYxLjVoMGMuNi0xLDEuNy0xLjYsMi45LTEuNiwyLjMsMCwzLjgsMS44LDMuOCw0LjZoMFpNNTMuMiwyNmMwLTEuOC0xLTMtMi40LTNzLTIuNCwxLjItMi40LDMsMSwzLDIuNCwzLDIuNC0xLjIsMi40LTMuMVoiLz4KICAgICAgPHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNjUuMSwyNmMwLDIuOC0xLjUsNC42LTMuOCw0LjYtMS4yLDAtMi4zLS41LTIuOC0xLjZoMHY0LjVoLTEuOXYtMTJoMS44djEuNWgwYy42LTEsMS43LTEuNiwyLjktMS42LDIuMywwLDMuOCwxLjgsMy44LDQuNmgwWk02My4yLDI2YzAtMS44LTEtMy0yLjQtM3MtMi40LDEuMi0yLjQsMywxLDMsMi40LDMsMi40LTEuMiwyLjQtM2gwWiIvPgogICAgICA8cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03MS43LDI3Yy4xLDEuMiwxLjMsMiwzLDJzMi43LS44LDIuNy0xLjktLjctMS41LTIuMy0xLjlsLTEuNi0uNGMtMi4zLS41LTMuMy0xLjYtMy4zLTMuNHMxLjktMy42LDQuNS0zLjYsNC40LDEuNSw0LjUsMy42aC0xLjljLS4xLTEuMi0xLjEtMi0yLjYtMnMtMi41LjgtMi41LDEuOS43LDEuNCwyLjIsMS44bDEuNC4zYzIuNi42LDMuNiwxLjYsMy42LDMuNHMtMS44LDMuOC00LjgsMy44LTQuNi0xLjQtNC43LTMuN2gxLjksMFoiLz4KICAgICAgPHBhdGggY2xhc3M9ImNscy0zIiBkPSJNODMuMywxOS4zdjIuMWgxLjd2MS41aC0xLjd2NWMwLC44LjMsMS4xLDEuMSwxLjFzLjQsMCwuNiwwdjEuNWMtLjMsMC0uNywwLTEsMC0xLjgsMC0yLjYtLjctMi42LTIuNHYtNS4yaC0xLjN2LTEuNWgxLjN2LTIuMWgxLjlaIi8+CiAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTg2LjEsMjZjMC0yLjksMS43LTQuNiw0LjMtNC42czQuMywxLjgsNC4zLDQuNi0xLjcsNC42LTQuMyw0LjYtNC4zLTEuOC00LjMtNC42Wk05Mi44LDI2YzAtMi0uOS0zLjEtMi40LTMuMXMtMi40LDEuMi0yLjQsMy4xLjksMy4xLDIuNCwzLjEsMi40LTEuMSwyLjQtMy4xaDBaIi8+CiAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTk2LjIsMjEuNGgxLjh2MS41aDBjLjItMSwxLjItMS43LDIuMi0xLjYuMiwwLC40LDAsLjYsMHYxLjdjLS4zLDAtLjYtLjEtLjgtLjEtMSwwLTEuOS44LTEuOSwxLjgsMCwuMSwwLC4yLDAsLjN2NS40aC0xLjl2LTloMFoiLz4KICAgICAgPHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMTA5LjQsMjcuOGMtLjIsMS42LTEuOCwyLjgtMy45LDIuOHMtNC4zLTEuOC00LjMtNC42LDEuNi00LjcsNC4yLTQuNyw0LjEsMS43LDQuMSw0LjV2LjZoLTYuNGMtLjEsMS40LjgsMi42LDIuMSwyLjcsMCwwLC4yLDAsLjMsMCwuOSwwLDEuOC0uNCwyLjEtMS4zaDEuOFpNMTAzLjEsMjUuMWg0LjVjMC0xLjItLjgtMi4yLTIuMS0yLjNoLS4yYy0xLjMsMC0yLjMsMS0yLjMsMi4zaDBzMCwwLDAsMFoiLz4KICAgIDwvZz4KICA8L2c+CiAgPGcgaWQ9Il9Hcm91cF80IiBkYXRhLW5hbWU9IiBHcm91cCA0Ij4KICAgIDxnPgogICAgICA8cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0zNy44LDguN2MxLjUtLjEsMi43LDEsMi44LDIuNCwwLC4yLDAsLjQsMCwuNSwwLDEuOS0xLDMtMi44LDNoLTIuMnYtNmgyLjJaTTM2LjYsMTMuOWgxLjFjMSwwLDEuOS0uNywyLTEuOCwwLS4xLDAtLjMsMC0uNC4xLTEtLjYtMi0xLjYtMi4xLS4xLDAtLjIsMC0uNCwwaC0xLjF2NC4zaDBaIi8+CiAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTQxLjcsMTIuNGMtLjEtMS4yLjgtMi4yLDEuOS0yLjMsMS4yLS4xLDIuMi44LDIuMywxLjksMCwuMSwwLC4zLDAsLjQuMSwxLjItLjcsMi4yLTEuOSwyLjMtMS4yLjEtMi4yLS43LTIuMy0xLjksMC0uMSwwLS4zLDAtLjRaTTQ1LDEyLjRjMC0xLS40LTEuNi0xLjItMS42cy0xLjIuNi0xLjIsMS42LjQsMS42LDEuMiwxLjYsMS4yLS42LDEuMi0xLjZoMFoiLz4KICAgICAgPHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTEuNiwxNC43aC0uOWwtLjktMy4zaDBsLS45LDMuM2gtLjlsLTEuMi00LjVoLjlsLjgsMy40aDBsLjktMy40aC44bC45LDMuNGgwbC44LTMuNGguOWwtMS4yLDQuNWgwWiIvPgogICAgICA8cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik01My44LDEwLjJoLjl2LjdoMGMuMi0uNS44LS45LDEuMy0uOC44LDAsMS41LjUsMS42LDEuNCwwLC4xLDAsLjIsMCwuM3YyLjloLS45di0yLjdjMC0uNy0uMy0xLjEtMS0xLjEtLjYsMC0xLC40LTEuMSwxdjIuOGgtLjl2LTQuNVoiLz4KICAgICAgPHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNTkuMSw4LjRoLjl2Ni4zaC0uOXYtNi4zWiIvPgogICAgICA8cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik02MS4yLDEyLjRjLS4xLTEuMi44LTIuMiwxLjktMi4zLDEuMi0uMSwyLjIuOCwyLjMsMS45LDAsLjEsMCwuMywwLC40LjEsMS4yLS43LDIuMi0xLjksMi4zcy0yLjItLjctMi4zLTEuOWMwLS4xLDAtLjMsMC0uNFpNNjQuNiwxMi40YzAtMS0uNC0xLjYtMS4yLTEuNnMtMS4yLjYtMS4yLDEuNi40LDEuNiwxLjIsMS42LDEuMi0uNiwxLjItMS42WiIvPgogICAgICA8cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik02Ni40LDEzLjRjMC0uOC42LTEuMywxLjctMS4zaDEuMnYtLjVjMC0uNS0uMy0uNy0uOS0uN3MtLjguMi0uOS41aC0uOWMwLS44LjgtMS4zLDEuOC0xLjNzMS44LjYsMS44LDEuNXYzLjFoLS45di0uNmgwYy0uMy41LS44LjctMS4zLjctLjgsMC0xLjQtLjUtMS41LTEuMmgwYzAtLjEsMC0uMiwwLS4yWk02OS4zLDEzdi0uNGgtMS4xYy0uNi4xLS45LjMtLjkuN3MuMy42LjguNmMuNiwwLDEuMS0uNCwxLjItLjloMHMwLDAsMCwwWiIvPgogICAgICA8cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik03MS4zLDEyLjRjMC0xLjQuNy0yLjMsMS45LTIuMy42LDAsMS4xLjMsMS40LjhoMHYtMi41aC45djYuM2gtLjh2LS43aDBjLS4zLjUtLjguOC0xLjQuOC0xLjIsMC0xLjktLjktMS45LTIuM2gwWk03Mi4zLDEyLjRjMCwxLC40LDEuNSwxLjIsMS41czEuMi0uNiwxLjItMS41LS41LTEuNS0xLjItMS41LTEuMi42LTEuMiwxLjVoMFoiLz4KICAgICAgPHBhdGggY2xhc3M9ImNscy0zIiBkPSJNNzkuMiwxMi40Yy0uMS0xLjIuOC0yLjIsMS45LTIuM3MyLjIuOCwyLjMsMS45YzAsLjEsMCwuMywwLC40LjEsMS4yLS43LDIuMi0xLjksMi4zLTEuMi4xLTIuMi0uNy0yLjMtMS45LDAtLjEsMC0uMywwLS40Wk04Mi42LDEyLjRjMC0xLS40LTEuNi0xLjItMS42cy0xLjIuNi0xLjIsMS42LjQsMS42LDEuMiwxLjYsMS4yLS42LDEuMi0xLjZaIi8+CiAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTg0LjcsMTAuMmguOXYuN2gwYy4yLS41LjgtLjksMS4zLS44LjgsMCwxLjUuNSwxLjYsMS40LDAsLjEsMCwuMiwwLC4zdjIuOWgtLjl2LTIuN2MwLS43LS4zLTEuMS0xLTEuMS0uNiwwLTEuMS40LTEuMSwxdjIuOGgtLjlzMC00LjUsMC00LjVaIi8+CiAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTkzLjUsOS4xdjEuMWgxdi44aC0xdjIuM2MwLC41LjIuNy42LjdzLjIsMCwuMywwdi43Yy0uMiwwLS4zLDAtLjUsMC0xLDAtMS40LS40LTEuNC0xLjJ2LTIuNWgtLjd2LS44aC43di0xLjFoLjksMFoiLz4KICAgICAgPHBhdGggY2xhc3M9ImNscy0zIiBkPSJNOTUuNyw4LjRoLjl2Mi41aDBjLjItLjUuOC0uOSwxLjQtLjguOCwwLDEuNS42LDEuNiwxLjQsMCwwLDAsLjIsMCwuM3YyLjloLS45di0yLjdjMC0uNy0uMy0xLjEtMS0xLjEtLjYsMC0xLjEuNC0xLjEsMXYyLjhoLS45czAtNi4zLDAtNi4zWiIvPgogICAgICA8cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0xMDQuOCwxMy41Yy0uMi45LTEuMSwxLjQtMS45LDEuMy0xLjEsMC0yLjEtLjktMi4xLTIsMC0uMSwwLS4yLDAtLjMtLjItMS4xLjctMi4yLDEuOC0yLjMsMCwwLC4yLDAsLjMsMCwxLjIsMCwyLC45LDIsMi4zdi4zaC0zLjJjMCwuNy40LDEuMywxLjEsMS4zaC4xYy40LDAsLjktLjIsMS4xLS42aC45Wk0xMDEuNiwxMmgyLjNjMC0uNi0uNC0xLjEtMS0xLjJoLS4xYy0uNiwwLTEuMi41LTEuMiwxLjFoMHMwLDAsMCwwWiIvPgogICAgPC9nPgogIDwvZz4KPC9zdmc+) !important;
   background-repeat: no-repeat !important;
   cursor: pointer;
 }
 
 .buttonGoogle_src-theme-Buttons-styles-module {
   background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iYXJ0d29yayIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAxMjguNiA0MyI+CiAgPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5jbHMtMSB7CiAgICAgICAgZmlsbDogI2E2YTZhNjsKICAgICAgfQoKICAgICAgLmNscy0xLCAuY2xzLTIsIC5jbHMtMywgLmNscy00LCAuY2xzLTUsIC5jbHMtNiwgLmNscy03IHsKICAgICAgICBzdHJva2Utd2lkdGg6IDBweDsKICAgICAgfQoKICAgICAgLmNscy04LCAuY2xzLTksIC5jbHMtMTAsIC5jbHMtMTEsIC5jbHMtMTIsIC5jbHMtMTMgewogICAgICAgIGZvbnQtZmFtaWx5OiBBcmlhbE1ULCBBcmlhbDsKICAgICAgICBmb250LXNpemU6IDcuOXB4OwogICAgICAgIGlzb2xhdGlvbjogaXNvbGF0ZTsKICAgICAgfQoKICAgICAgLmNscy04LCAuY2xzLTksIC5jbHMtMTIsIC5jbHMtNyB7CiAgICAgICAgZmlsbDogI2ZmZjsKICAgICAgfQoKICAgICAgLmNscy05LCAuY2xzLTEwIHsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMGVtOwogICAgICB9CgogICAgICAuY2xzLTEwLCAuY2xzLTExLCAuY2xzLTEzIHsKICAgICAgICBmaWxsOiBub25lOwogICAgICAgIHN0cm9rZTogI2ZmZjsKICAgICAgICBzdHJva2UtbWl0ZXJsaW1pdDogMTA7CiAgICAgICAgc3Ryb2tlLXdpZHRoOiAuMnB4OwogICAgICB9CgogICAgICAuY2xzLTIgewogICAgICAgIGZpbGw6ICMzNGE4NTM7CiAgICAgIH0KCiAgICAgIC5jbHMtMyB7CiAgICAgICAgZmlsbDogIzAwMDsKICAgICAgfQoKICAgICAgLmNscy00IHsKICAgICAgICBmaWxsOiAjNDI4NWY0OwogICAgICB9CgogICAgICAuY2xzLTEyLCAuY2xzLTEzIHsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMGVtOwogICAgICB9CgogICAgICAuY2xzLTUgewogICAgICAgIGZpbGw6ICNlYTQzMzU7CiAgICAgIH0KCiAgICAgIC5jbHMtNiB7CiAgICAgICAgZmlsbDogI2ZiYmMwNDsKICAgICAgfQogICAgPC9zdHlsZT4KICA8L2RlZnM+CiAgPHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMTIzLjQsNDIuOEg1LjNjLTIuNiwwLTQuNy0yLjQtNC43LTUuM1Y1LjVDLjYsMi42LDIuNy4yLDUuMy4yaDExOC4xYzIuNiwwLDQuNywyLjQsNC43LDUuM3YzMmMwLDIuOS0yLjEsNS4zLTQuNyw1LjNaIi8+CiAgPHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTIzLjQsMWMyLjIsMCw0LDIsNCw0LjV2MzJjMCwyLjUtMS44LDQuNS00LDQuNUg1LjNjLTIuMiwwLTQtMi00LTQuNVY1LjVjMC0yLjUsMS44LTQuNSw0LTQuNWgxMTguMU0xMjMuNC4ySDUuM0MyLjcuMi42LDIuNi42LDUuNXYzMmMwLDIuOSwyLjEsNS4zLDQuNyw1LjNoMTE4LjFjMi42LDAsNC43LTIuNCw0LjctNS4zVjUuNWMwLTIuOS0yLjEtNS4zLTQuNy01LjNoMFoiLz4KICA8dGV4dCBjbGFzcz0iY2xzLTkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5LjMgMTQuOSkiPjx0c3BhbiB4PSIwIiB5PSIwIj5HRVQgSVQ8L3RzcGFuPjwvdGV4dD4KICA8dGV4dCBjbGFzcz0iY2xzLTEwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOS4zIDE0LjkpIj48dHNwYW4geD0iMCIgeT0iMCI+R0VUIElUPC90c3Bhbj48L3RleHQ+CiAgPHRleHQgY2xhc3M9ImNscy04IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2My4xIDE0LjkpIj48dHNwYW4geD0iMCIgeT0iMCI+IDwvdHNwYW4+PC90ZXh0PgogIDx0ZXh0IGNsYXNzPSJjbHMtMTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDYzLjEgMTQuOSkiPjx0c3BhbiB4PSIwIiB5PSIwIj4gPC90c3Bhbj48L3RleHQ+CiAgPHRleHQgY2xhc3M9ImNscy0xMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjcuNSAxNC45KSI+PHRzcGFuIHg9IjAiIHk9IjAiPk9OPC90c3Bhbj48L3RleHQ+CiAgPHRleHQgY2xhc3M9ImNscy0xMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjcuNSAxNC45KSI+PHRzcGFuIHg9IjAiIHk9IjAiPk9OPC90c3Bhbj48L3RleHQ+CiAgPHBhdGggY2xhc3M9ImNscy03IiBkPSJNNjQuOSwyMy4yYy0yLjIsMC00LDEuNy00LDRzMS44LDQsNCw0LDQtMS43LDQtNC0xLjgtNC00LTRaTTY0LjksMjkuNmMtMS4yLDAtMi4zLTEtMi4zLTIuNHMxLjEtMi40LDIuMy0yLjQsMi4zLDEsMi4zLDIuNC0xLjEsMi40LTIuMywyLjRaTTU2LjEsMjMuMmMtMi4yLDAtNCwxLjctNCw0czEuOCw0LDQsNCw0LTEuNyw0LTQtMS44LTQtNC00Wk01Ni4xLDI5LjZjLTEuMiwwLTIuMy0xLTIuMy0yLjRzMS4xLTIuNCwyLjMtMi40LDIuMywxLDIuMywyLjQtMS4xLDIuNC0yLjMsMi40Wk00NS43LDI0LjR2MS43aDQuMWMtLjEsMS0uNCwxLjctLjksMi4xLS42LjYtMS41LDEuMi0zLjIsMS4yLTIuNSwwLTQuNS0yLTQuNS00LjVzMi00LjUsNC41LTQuNSwyLjMuNSwzLjEsMS4ybDEuMi0xLjJjLTEtMS0yLjQtMS43LTQuMy0xLjctMy40LDAtNi4zLDIuOC02LjMsNi4yczIuOSw2LjIsNi4zLDYuMiwzLjMtLjYsNC4zLTEuN2MxLjEtMS4xLDEuNS0yLjcsMS41LTRzMC0uOCwwLTEuMWgtNS43Wk04OC41LDI1LjdjLS4zLS45LTEuNC0yLjYtMy40LTIuNnMtMy44LDEuNi0zLjgsNCwxLjcsNCw0LDQsMi45LTEuMSwzLjMtMS44bC0xLjQtLjljLS41LjctMS4xLDEuMS0yLDEuMXMtMS41LS40LTItMS4ybDUuNC0yLjItLjItLjVoMFpNODMsMjcuMWMwLTEuNiwxLjItMi4zLDIuMS0yLjNzMS4zLjQsMS41LjljMCwwLTMuNiwxLjUtMy42LDEuNVpNNzguNiwzMC45aDEuOHYtMTEuOGgtMS44djExLjhaTTc1LjcsMjQuMWgwYy0uNC0uNS0xLjItLjktMi4xLS45LTIsMC0zLjgsMS44LTMuOCw0czEuOCw0LDMuOCw0LDEuNy0uNCwyLjEtLjloMHYuNmMwLDEuNS0uOCwyLjQtMi4xLDIuNHMtMS43LS44LTItMS40bC0xLjUuNmMuNCwxLjEsMS42LDIuNCwzLjYsMi40czMuOC0xLjIsMy44LTQuMnYtNy4yaC0xLjd2LjdoMFpNNzMuNywyOS42Yy0xLjIsMC0yLjItMS0yLjItMi40czEtMi41LDIuMi0yLjUsMi4xLDEsMi4xLDIuNS0uOSwyLjQtMi4xLDIuNFpNOTYuNywxOS4xaC00LjJ2MTEuOGgxLjh2LTQuNWgyLjVjMiwwLDMuOS0xLjQsMy45LTMuN3MtMS45LTMuNy0zLjktMy43Wk05Ni44LDI0LjhoLTIuNXYtNGgyLjVjMS4zLDAsMi4xLDEuMSwyLjEsMnMtLjcsMi0yLjEsMlpNMTA3LjcsMjMuMWMtMS4zLDAtMi42LjYtMy4xLDEuOGwxLjYuN2MuMy0uNywxLS45LDEuNi0uOXMxLjguNSwxLjksMS41aDBjLS4zLDAtMS0uMy0xLjgtLjMtMS43LDAtMy40LjktMy40LDIuN3MxLjQsMi42LDIuOSwyLjYsMS44LS41LDIuMi0xLjJoMHYuOWgxLjd2LTQuNWMwLTIuMS0xLjYtMy4zLTMuNi0zLjNoMFpNMTA3LjUsMjkuNmMtLjYsMC0xLjQtLjMtMS40LTFzMS0xLjMsMS45LTEuMywxLjEuMiwxLjYuNGMtLjEsMS4xLTEuMSwxLjktMi4xLDEuOWgwWk0xMTcuNSwyMy40bC0yLDUuMWgwbC0yLjEtNS4xaC0xLjlsMy4xLDcuMi0xLjgsNGgxLjhsNC44LTExLjFoLTJaTTEwMS42LDMwLjloMS44di0xMS44aC0xLjh2MTEuOFoiLz4KICA8Zz4KICAgIDxwYXRoIGNsYXNzPSJjbHMtNSIgZD0iTTIwLjEsMjFsLTEwLjEsMTAuN2gwYy4zLDEuMiwxLjQsMiwyLjYsMnMxLS4xLDEuNC0uNGgwczExLjMtNi42LDExLjMtNi42bC01LjMtNS44aDBaIi8+CiAgICA8cGF0aCBjbGFzcz0iY2xzLTYiIGQ9Ik0zMC4zLDE5LjFoMGwtNC45LTIuOC01LjUsNC45LDUuNSw1LjUsNC45LTIuOGMuOS0uNSwxLjQtMS40LDEuNC0yLjRzLS42LTEuOS0xLjQtMi40aDBaIi8+CiAgICA8cGF0aCBjbGFzcz0iY2xzLTQiIGQ9Ik0xMC4xLDExLjRjMCwuMiwwLC41LDAsLjd2MTguOWMwLC4yLDAsLjUsMCwuN2wxMC40LTEwLjQtMTAuNC05LjloMFoiLz4KICAgIDxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTIwLjIsMjEuNWw1LjItNS4yLTExLjMtNi42Yy0uNC0uMi0uOS0uNC0xLjQtLjQtMS4zLDAtMi4zLjktMi42LDJoMGwxMC4xLDEwLjFoMFoiLz4KICA8L2c+Cjwvc3ZnPg==) !important;
   background-repeat: no-repeat !important;
   cursor: pointer;
 }
 
 /* Desktop */
 @media screen and (min-width: 700px) {
   .buttons_src-theme-Buttons-styles-module {
     flex-direction: row;
     justify-content: flex-start;
   }
   .buttonGoogle_src-theme-Buttons-styles-module, .buttonApple_src-theme-Buttons-styles-module  {
   width: 9vw;
   height: 3vw;
   max-width: none;
   max-height: none;
   }
 }
 
 /* Larger desktops */
 @media screen and (min-width: 1728px) {

 
   .buttonApple_src-theme-Buttons-styles-module, .buttonGoogle_src-theme-Buttons-styles-module {
    width: 10vw;
    height: 4vw;
   }
 }
 
/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

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

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

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

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

/*
When the navbar is sticky, ensure that on anchor click,
the browser does not scroll that anchor behind the navbar
See https://twitter.com/JoshWComeau/status/1332015868725891076
 */
.anchorWithStickyNavbar_node_modules-\@docusaurus-theme-classic-lib-theme-Heading-styles-module {
  scroll-margin-top: calc(var(--ifm-navbar-height) + 0.5rem);
}

.anchorWithHideOnScrollNavbar_node_modules-\@docusaurus-theme-classic-lib-theme-Heading-styles-module {
  scroll-margin-top: 0.5rem;
}

.hash-link {
  opacity: 0;
  padding-left: 0.5rem;
  transition: opacity var(--ifm-transition-fast);
  -webkit-user-select: none;
          user-select: none;
}

.hash-link::before {
  content: '#';
}

.hash-link:focus,
*:hover > .hash-link {
  opacity: 1;
}

html,
body {
  height: 100%;
  background-color:var( --Litur-beige);
  overflow-x: hidden !important;
}

main{
  padding: 2rem 1rem;
}


.mainWrapper_src-theme-Layout-styles-module {
  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;
}

/* Desktop */
@media screen and (min-width: 700px) {
  main{
    padding: 2rem 6rem;
  }
}
.errorWrapper_src-theme-NotFound-Content-style-module{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.imgWrapper_src-theme-NotFound-Content-style-module img{
    padding-bottom: 2rem;
}
.errorTextWrapper_src-theme-NotFound-Content-style-module h1, .errorTextWrapper_src-theme-NotFound-Content-style-module p{
    text-align: center;
}
.goBackButton_src-theme-NotFound-Content-style-module{
    
    text-decoration: underline;
    text-align: center;
}
.goBackButtonContainer_src-theme-NotFound-Content-style-module{
    padding: 0 1rem 1rem;
    text-align: center;
}
/* Desktop */
@media screen and (min-width: 700px) {
    .goBackButton_src-theme-NotFound-Content-style-module{
        text-decoration: none;
    }
}
.features2Wrapper_src-components-HomepageFeatures-styles-module {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
}

.features_src-components-HomepageFeatures-styles-module {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.featuresWrapper_src-components-HomepageFeatures-styles-module {
  background-color: var(--Litur-ljos-beige);
  padding: clamp(1rem, 2vw, 3rem);
  width: 90%;
  max-width: 100%;
}

.serviceWrapper_src-components-HomepageFeatures-styles-module {
  margin-top: 3rem;
}

/* Priview */
.PreviewWrapper_src-components-HomepageFeatures-styles-module {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.PreviewWrapper_src-components-HomepageFeatures-styles-module img {
  height: auto;
  background-size: cover;
}

.phoneWrapperPreview_src-components-HomepageFeatures-styles-module {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  justify-items: center;
  align-items: center;
  max-width: 70vw;
}

.mynd_src-components-HomepageFeatures-styles-module {
  width: 67%;
  grid-area: 1 / 1 / 2 / 2;
  filter: drop-shadow(0.5rem 1rem 2rem rgba(0, 0, 0, 0.3));
}

.midiWrapperPreview_src-components-HomepageFeatures-styles-module {
  grid-area: 1 / 1 / 2 / 2;
  display: flex;
  position: relative;
  justify-content: flex-start;
  align-items: center;
}

.midi_src-components-HomepageFeatures-styles-module {
  width: 67%;
  height: auto;
  position: relative;
  left: 35%;
  margin-bottom: -17rem;
  filter: drop-shadow(0.5rem 1rem 2rem rgba(0, 0, 0, 0.3));
}

/* About */
.textContainer_src-components-HomepageFeatures-styles-module {
  padding-bottom: 2rem;
}

.featuresAboutWrapper_src-components-HomepageFeatures-styles-module {
  margin-top: 13rem;
  background-color: var(--Litur-ljos-beige);
  padding: clamp(1rem, 2vw, 3rem);
  width: 90%;
}

.circleContainer_src-components-HomepageFeatures-styles-module {
  min-width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--Litur-appelsinugulur-dempadur);
  display: flex;
  justify-content: center;
  align-items: center;
}

.circleContainer_src-components-HomepageFeatures-styles-module h3 {
  margin: 0;
}

.leidbeiningarContainer_src-components-HomepageFeatures-styles-module {
  display: flex;
  align-items: center;
  flex-direction: column;
  grid-gap: 1rem;
  padding-bottom: 1.5rem;
}

.leidbeiningarContainer_src-components-HomepageFeatures-styles-module h4 {
  max-width: 22em;
  margin: 0;
}

.skrefContainer_src-components-HomepageFeatures-styles-module {
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dalkur_src-components-HomepageFeatures-styles-module {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* FAQ */

.faqWrapper_src-components-HomepageFeatures-styles-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}

.faqContainer_src-components-HomepageFeatures-styles-module {
  width: clamp(40vw, 60vw, 70vw);
}

.questionContainer_src-components-HomepageFeatures-styles-module {
  background-color: var(--Litur-ljos-beige);
  padding: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.questionContainer_src-components-HomepageFeatures-styles-module p {
  max-width: 20em;
}

.questionContainer_src-components-HomepageFeatures-styles-module h4 {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.questionIcon_src-components-HomepageFeatures-styles-module {
  margin-left: 5px;
  transition: 0.25s ease-in-out;
  font-size: 0.9rem;
}

.answerWrapper_src-components-HomepageFeatures-styles-module {
  overflow: hidden;
}

/* Þjónustuaðilar */
.merkiContainer_src-components-HomepageFeatures-styles-module {
  display: flex;
  justify-content: center;
}

/* .mosMerki {
  background-image: url('../../../static/img/MOS-merki+texti-svart.svg') !important;
  background-repeat: no-repeat !important;
  width: 15rem;
  height: 5rem;
} */
.kjosMerki_src-components-HomepageFeatures-styles-module {
  background-image: url(/assets/images/kjosmerki-fff7bf3463fb76abe682b3502258e367.svg) !important;
  background-repeat: no-repeat !important;
  width: 15rem;
  height: 5rem;
}

/* Desktop */
@media screen and (min-width: 700px) {
  .features2Wrapper_src-components-HomepageFeatures-styles-module {
    flex-direction: row-reverse;
    align-content: flex-start;
    justify-content: space-between;
  }

  .featuresWrapper_src-components-HomepageFeatures-styles-module {
    padding: 3rem;
    width: 46vw;
  }

  .mynd_src-components-HomepageFeatures-styles-module {
    width: 40%;
  }

  .midi_src-components-HomepageFeatures-styles-module {
    width: 38%;
    left: 50%;
  }

  .phoneWrapperPreview_src-components-HomepageFeatures-styles-module {
    padding-top: 0;
    max-width: 40vw;
  }

  .mosMerki_src-components-HomepageFeatures-styles-module {
    margin-left: -1rem;
  }

  /* About */
  .featuresAboutWrapper_src-components-HomepageFeatures-styles-module {
    padding: 3rem;
    margin-bottom: 5rem;
    width: auto;
  }

  .inngangurTextAbout_src-components-HomepageFeatures-styles-module {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
    column-gap: 3rem;
  }

  .leidbeiningarContainer_src-components-HomepageFeatures-styles-module {
    flex-direction: row;
  }

  .skrefContainer_src-components-HomepageFeatures-styles-module {
    align-items: flex-start;
    padding-top: 15rem;
    padding-bottom: 0;
  }

  .features_src-components-HomepageFeatures-styles-module {
    justify-content: flex-start;
  }

  .faqWrapper_src-components-HomepageFeatures-styles-module {
    align-items: flex-start;
  }

  .faqContainer_src-components-HomepageFeatures-styles-module {
    max-width: none;
    width: 40vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .questionContainer_src-components-HomepageFeatures-styles-module {
    align-items: flex-start;
  }

  .questionContainer_src-components-HomepageFeatures-styles-module h4 {
    justify-content: flex-start;
  }

  .questionContainer_src-components-HomepageFeatures-styles-module p {
    max-width: none;
  }

  .merkiContainer_src-components-HomepageFeatures-styles-module {
    padding-top: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* Larger Desktop */
@media screen and (min-width: 3000px) {
  .features2Wrapper_src-components-HomepageFeatures-styles-module {
    column-gap: 14rem;
  }

  .mynd_src-components-HomepageFeatures-styles-module {
    width: auto;
  }

  .midi_src-components-HomepageFeatures-styles-module {
    width: auto;
  }
}
/**
 * CSS files with the .module.css suffix will be treated as CSS modules
 * and scoped locally.
 */
 @media (max-width: 300px) {
  .heroBanner_src-pages-index-module {
    overflow-wrap: break-word;
  }



  .ContainerWrapper_src-pages-index-module, .container_src-pages-index-module {
    width: -webkit-fill-available;
  }

  .myndband_src-pages-index-module {
    width: 70%;
    grid-area: 1 / 1 / 2 / 2;
  }
}

/******** Farsíma version fyrst ********/
.heroBanner_src-pages-index-module {
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  padding-right: 1rem;
  padding-left: 1rem;
  overflow: visible;
}

.heroBanner_src-pages-index-module h1 {
  max-width: 80vw;
  padding-bottom: 1rem;
}

section {
  margin-bottom: 5rem;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.ContainerWrapper_src-pages-index-module, .leidbeiningarWrapper_src-pages-index-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -2rem;
}

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

.phoneContainer_src-pages-index-module {
  display: flex;
}

.phoneWrapper1_src-pages-index-module {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  justify-items: center;
  max-width: 70vw;
}

.phoneWrapper2_src-pages-index-module {
  display: none;
  background-color: var(--Litur-beige);
}

.phoneContainer_src-pages-index-module img {
  height: auto;
  background-size: cover;
}

.rammi_src-pages-index-module {
  width: 75%;
  grid-area: 1 / 1 / 2 / 2;
  z-index: 1;
}

.myndband_src-pages-index-module {
  width: 70%;
  grid-area: 1 / 1 / 2 / 2;
  filter: drop-shadow(0.5rem 1rem 2rem rgba(0, 0, 0, 0.3));
  border-radius: 2rem;
  z-index: 0;
}

/* Service */
.facFeatures_src-pages-index-module {
  background-color: var(--Litur-appelsinugulur-dempadur);
  margin-right: -50%;
  margin-left: -50%;
}

/* Markdown */
article {
  display: flex;
  flex-direction: column;
  margin: 0 1rem;
  text-align: left;
  row-gap: 0.5rem;
}

article a {
  font-size: 1rem;
}

/* About */
.aboutWrapper_src-pages-index-module {
  margin: 2rem auto;
  max-width: inherit;
  padding: 0 var(--ifm-spacing-horizontal);
  width: 100%;
}

.headerText_src-pages-index-module {
  margin-bottom: 2rem;
}

.paragraphwrapper_src-pages-index-module {
  margin-bottom: 2rem;
  margin-left: -1rem;
  margin-right: -1rem;
}

.imageWrapper_src-pages-index-module {
  display: flex;
  justify-content: center;
}

.imageContainer_src-pages-index-module {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iTGF5ZXJfNSIgZGF0YS1uYW1lPSJMYXllciA1IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMjE1IDMzMiI+CiAgPGRlZnM+CiAgICA8Y2xpcFBhdGggaWQ9ImNsaXBwYXRoIj4KICAgICAgPHBhdGggZD0iTTkzLjgzLDg3LjYxbC0zMi4yLS4wNkwxMTcuMTcsNC4yNHMyOS40Niw1OS4xLDUyLjE2LDQ3LjkzYzE4LTguODUsMy4zNS0yOS40OC05Ljg1LTIyLjQ2LTIwLjA2LDEwLjY2LDEzLjIsNTcuODYsMTMuMiw1Ny44NmwtNi45MywxMC4zOS00OC41OCw3Mi44OS01NS41NC04My4zTDExNy4xNyw0LjI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMxZDFkMWIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgogICAgPC9jbGlwUGF0aD4KICA8L2RlZnM+CiAgPGc+CiAgICA8ZWxsaXBzZSBjeD0iMjA0LjkzIiBjeT0iMTgxLjYxIiByeD0iMy40NyIgcnk9IjQuNzciIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yNS44NCAzNC4yMikgcm90YXRlKC04Ljk4KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMWQxZDFiIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KICAgIDxlbGxpcHNlIGN4PSIyMDIuNDMiIGN5PSIxNjUuNjUiIHJ4PSIzLjQ3IiByeT0iNC43NyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIzLjM4IDMzLjYzKSByb3RhdGUoLTguOTgpIiBmaWxsPSJub25lIiBzdHJva2U9IiMxZDFkMWIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgogICAgPHBhdGggZD0iTTIwMy4xNywxNzAuMzZzMi4yMywxLjU3LDIuMzcsMy4zMi0xLjM0LDMuMjItMS4zNCwzLjIyIiBmaWxsPSJub25lIiBzdHJva2U9IiMxZDFkMWIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgogICAgPHBhdGggZD0iTTIwMy44NCwxNjEuNTJzLTMuNzItNy40MS0yLjktMTAuMTVjLjExLS4zNi4yOS0uNjQuNTctLjgxLDEuODctMS4xNCw0Ljg4Ljk5LDYuMjcsMy45NCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMWQxZDFiIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KICAgIDxwYXRoIGQ9Ik0yMDkuMywxNjEuNmMxLjc2LDcuMDMsNS43NCwxOC4wOSwzLjQ0LDI1Ljc0LTIuODQsOS40OS03LjA3LTEuMDMtNy4wNy0xLjAzIiBmaWxsPSJub25lIiBzdHJva2U9IiMxZDFkMWIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgogIDwvZz4KICA8Zz4KICAgIDxwYXRoIGQ9Ik05OS4wOSwyMTQuNjhjLTcuOTctLjQ2LTEzLjE1LDQuNzktMTYuMDEtMi4zMS00LjkzLTEyLjI2LDI3LjItNC44NiwzNS43My0xMi40MSwyLjU4LTIuMjgsNy44Ny05LjA1LDEyLjc1LTE4LjgxIiBmaWxsPSJub25lIiBzdHJva2U9IiMxZDFkMWIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgogICAgPHBhdGggZD0iTTgzLjgxLDIxNC4zOXMtMTkuODYsMS4yNy0xNy4xNyw4LjdjMi4zOSw2LjYyLDQuNDUsMTMuMzYsNy4yNiwyMS4xNCwzLjI3LDkuMDQsNjEuMywxLjA5LDc0LjY0LTQ2LjI5IiBmaWxsPSJub25lIiBzdHJva2U9IiMxZDFkMWIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgogIDwvZz4KICA8Zz4KICAgIDxwYXRoIGQ9Ik0xMTQuMjksMTY2Ljk5Yy0yNi40MiwyOC4xNy00Ni44OSwyNC01MC43LDIxLjQ4LTguNTUtNS42NC0xOS42LTI4LjczLTI3LjMxLTI1LjQ4LS44Ni4zNi0xLjY4LDEuMDUtMi40NSwyLjE0LTMuMDMsNC4yNi0uNjMsNi4zMiwyLjQ1LDkuNDEsMS40NCwxLjQ0LDMuMDIsMy4xLDQuMjYsNS4zMSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMWQxZDFiIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KICAgIDxwYXRoIGQ9Ik0zMi41MiwxNjYuODRzLTExLjgtMTYuMDItMTYuNi05Ljc1Yy00LjI3LDUuNTktOC44MywxMC45Ny0xMy44NSwxNy41NC00LjkxLDYuNDIsMjYuMzgsMzcuMzMsNzIuNjUsMzcuMzMiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzFkMWQxYiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+CiAgPC9nPgogIDxwYXRoIGQ9Ik0zMy44MywxNjUuMTNjLTMuMDMsNC4yNi0uNjMsNi4zMiwyLjQ1LDkuNDF2MTYuNGMwLDIuMzMtMS44OSw0LjIyLTQuMjIsNC4yMmgtMTQuOTZjLTIuMjcsMC00LjEzLTEuOC00LjIxLTQuMDUtLjAxLS4wNS0uMDEtLjExLS4wMS0uMTd2LTM0LjY2YzAtMi4zMywxLjg5LTQuMjIsNC4yMi00LjIyaDE0Ljk2YzIuMzMsMCw0LjIyLDEuODksNC4yMiw0LjIydjYuNzFjLS44Ni4zNi0xLjY4LDEuMDUtMi40NSwyLjE0WiIgZmlsbD0iIzFkMWQxYiIgc3Ryb2tlPSIjMWQxZDFiIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KICA8Y2lyY2xlIGN4PSIxMDUuOSIgY3k9IjY3LjQ4IiByPSIzLjg3IiBmaWxsPSJub25lIiBzdHJva2U9IiMxZDFkMWIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgogIDxwYXRoIGQ9Ik0xMzQuMDcsMjYxLjJjLTE4LjgyLDQ1Ljk3LTQ3Ljk1LDY5LjUyLTQ3Ljk1LDY5LjUybC0zOC41Ny0yNy41NiwxNC4wOC0uNnMyMy4xOS0xOS42NiwzNS44OC00MS4zNiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMWQxZDFiIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KICA8cG9seWxpbmUgcG9pbnRzPSIxMjkuNDggMjcwLjU1IDE1Ni4yNyAyOTAuMDggMTI5LjE5IDMyOS45IDEyOS44OSAzMDguMyAxMTUuMjYgMjk1LjUyIiBmaWxsPSJub25lIiBzdHJva2U9IiMxZDFkMWIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgogIDxnPgogICAgPHBvbHlsaW5lIHBvaW50cz0iNzUuNDkgMjE2LjEyIDcyLjI2IDE5OC42NyAxMTkuNjcgMTk4LjY3IiBmaWxsPSJub25lIiBzdHJva2U9IiMxZDFkMWIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgogICAgPHBvbHlsaW5lIHBvaW50cz0iODEuMjkgMjQ3LjQgODIuNzMgMjU1LjEzIDk3LjUxIDI2MS4yIDE2NS4yOCAyNjEuMiAxNzkuNzYgMjU1LjM3IDE4NC42MSAyMzAuNTciIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzFkMWQxYiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+CiAgICA8bGluZSB4MT0iMTYwLjI0IiB5MT0iMTk4LjY3IiB4Mj0iMTYwLjA1IiB5Mj0iMTk4LjY3IiBmaWxsPSJub25lIiBzdHJva2U9IiMxZDFkMWIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgogICAgPHBhdGggZD0iTTE0OC4wNSwxOTguNjdzLTYuNjctNDUuNjItMTYuMjctNDUuNjItMTcuMTcsNDUuNjItMTcuMTcsNDUuNjIiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzFkMWQxYiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+CiAgICA8cGF0aCBkPSJNMTYwLjA1LDE5OC42N3MtLjAyLS4xMi0uMDctLjM2IiBmaWxsPSJub25lIiBzdHJva2U9IiMxZDFkMWIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgogICAgPHBhdGggZD0iTTE1OC45OSwxOTMuNzNjLS4xMy0uNjQtLjI5LTEuMzItLjQ3LTIuMDYtMy4zMi0xNC4wNS0xMC44Ny00NC4yOC0yMy43Mi00Ny43NyIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMWQxZDFiIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KICAgIDxwYXRoIGQ9Ik0xMDIuMTMsMTk4LjY3czUuNDEtMTYuNiwxMi4xNS0zMS42OSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMWQxZDFiIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KICA8L2c+CiAgPGc+CiAgICA8cGF0aCBkPSJNMTY1LjgxLDE5My43NmMzLjQxLTcuNTEsNS4yOS04LjgzLDExLjk1LTMuNDcsMCwwLDEuOTUsMS4xMiwyLjI3LDQuNjciIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzFkMWQxYiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+CiAgICA8cGF0aCBkPSJNMTg4Ljg0LDE5NC4xOWM1LjQ4LTYuODYsMTEuMjMtMTYsMTUuNjktMjMuNTYuMDktLjE2LjE5LS4zMS4yOC0uNDciIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzFkMWQxYiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+CiAgICA8cGF0aCBkPSJNMjA1LjU0LDE2OC4yNGMxLjE3LTIuMDIsMy4yOS01LjA5LDQuMTUtNi42NCwxLjc0LTMuMTQsMi43Ny01LjExLDIuNzctNS4xMSwwLDAtMS43MS0uNzktNC4xMy0xLjk5LTEuNzgtLjg4LTMuOTUtMS45OC02LjEtMy4xMy0xLjg3LTEtMy43My0yLjA1LTUuMjktMy4wMi01LjgtMy42Mi0xMi4yMS04Ljk2LTEyLjIxLTguOTYsMCwwLTE1LjAzLDMyLjU3LTIwLjMzLDUyLjI4aDBjLS4xOS43MS0uMzcsMS4zOS0uNTMsMi4wNiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMWQxZDFiIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KICA8L2c+CiAgPHBhdGggZD0iTTE1Ni45NywxODUuMTRjMi44NS0xNy44Myw2LjkxLTQ0LjA1LDYuOTEtNDQuMDUsMCwwLDguOTIsNS45MywxNy43Nyw1LjE5IiBmaWxsPSJub25lIiBzdHJva2U9IiMxZDFkMWIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgogIDxsaW5lIHgxPSIxNzkuMiIgeTE9IjE2NC4xOSIgeDI9IjE3NS45OSIgeTI9IjE3OS43OCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMWQxZDFiIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KICA8bGluZSB4MT0iMTg1LjE0IiB5MT0iMTczLjQxIiB4Mj0iMTgwLjA0IiB5Mj0iMTgyLjE4IiBmaWxsPSJub25lIiBzdHJva2U9IiMxZDFkMWIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgogIDxsaW5lIHgxPSIxOTguMDUiIHkxPSIxNzQuNTUiIHgyPSIxODUuNDciIHkyPSIxODUuMDIiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzFkMWQxYiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+CiAgPGxpbmUgeDE9IjE2Ni41MiIgeTE9IjE1Mi43NSIgeDI9IjE2Ny4zMSIgeTI9IjE3MC40NiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMWQxZDFiIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KICA8cGF0aCBkPSJNOTMuODMsODcuNjFsLTMyLjItLjA2TDExNy4xNyw0LjI0czI5LjQ2LDU5LjEsNTIuMTYsNDcuOTNjMTgtOC44NSwzLjM1LTI5LjQ4LTkuODUtMjIuNDYtMjAuMDYsMTAuNjYsMTMuMiw1Ny44NiwxMy4yLDU3Ljg2bC02LjkzLDEwLjM5LTQ4LjU4LDcyLjg5LTU1LjU0LTgzLjNMMTE3LjE3LDQuMjQiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzFkMWQxYiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+CiAgPGc+CiAgICA8ZyBjbGlwLXBhdGg9InVybCgjY2xpcHBhdGgpIj4KICAgICAgPHBhdGggZD0iTTczLjE4LDExMS45NnMyNi41OCwxMy40Miw0Ni40OS0xNC40NCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMWQxZDFiIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KICAgIDwvZz4KICAgIDxwYXRoIGQ9Ik05My44Myw4Ny42MWwtMzIuMi0uMDZMMTE3LjE3LDQuMjRzMjkuNDYsNTkuMSw1Mi4xNiw0Ny45M2MxOC04Ljg1LDMuMzUtMjkuNDgtOS44NS0yMi40Ni0yMC4wNiwxMC42NiwxMy4yLDU3Ljg2LDEzLjIsNTcuODZsLTYuOTMsMTAuMzktNDguNTgsNzIuODktNTUuNTQtODMuM0wxMTcuMTcsNC4yNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMWQxZDFiIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KICA8L2c+CiAgPGc+CiAgICA8cGF0aCBkPSJNMTY4LjIyLDIzNi42NXMzMC4xNC0xMC40MiwzMS4zNy0xMy43MS0zLjc0LTMxLjctMTMuMDgtMjguOTEtMjQuNDQtMS40Ni0zMi4xMiwwIiBmaWxsPSJub25lIiBzdHJva2U9IiMxZDFkMWIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgogICAgPGxpbmUgeDE9IjE2NS45MSIgeTE9IjIyNS45NCIgeDI9IjE3NS40NCIgeTI9IjIyMi41OSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMWQxZDFiIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KICAgIDxsaW5lIHgxPSIxNjMuOTYiIHkxPSIyMTMuNzMiIHgyPSIxNzEuNTUiIHkyPSIyMTEuOTIiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzFkMWQxYiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+CiAgICA8bGluZSB4MT0iMTYxLjc1IiB5MT0iMjAxLjY1IiB4Mj0iMTY3Ljk3IiB5Mj0iMjAwLjg3IiBmaWxsPSJub25lIiBzdHJva2U9IiMxZDFkMWIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgogICAgPHBhdGggZD0iTTE0OC41NCwxOTguMDNzMy4wOC02LDcuNTQtMy4zMWM5LjQ1LDUuNyw2LjQ5LDE4LjczLDguNjQsMjcuNzcsMS4yMiw1LjEyLDYuMDcsMTEuNTksMy40OSwxNC4xNnMtOS40OC05LjAxLTkuNDctMTYuMzdjMC0xMC4xMywzLjQ3LTIwLjQxLTIuNzgtMjEuN2wtNy45MS4wOCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMWQxZDFiIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KICA8L2c+Cjwvc3ZnPg==) !important;
  background-repeat: no-repeat !important;
  width: 11rem;
  height: 17rem;
}

/* Leiðbeiningar */
.myndLeidbeiningarMobil_src-pages-index-module {
  margin-top: 2rem;
  margin-bottom: -2rem;
  width: 40vw;
}

.instroctionsWrapper_src-pages-index-module {
  display: flex;
  flex-direction: column;
}

.instroctionsContainer_src-pages-index-module {
  margin: 0 1rem;
  padding: 2rem 0;
  background-color: var(--Litur-ljos-beige);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.PreviewWrapperLeidbeiningar_src-pages-index-module img {
  height: auto;
  background-size: cover;
}

.phoneWrapperPreviewLeidbeiningar_src-pages-index-module {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  justify-items: center;
  align-items: center;
  max-width: 70vw;
}

.myndLeidbeiningar_src-pages-index-module {
  width: 40%;
  grid-area: 1 / 1 / 2 / 2;
  filter: drop-shadow(0.5rem 1rem 2rem rgba(0, 0, 0, 0.3));
}

.midiWrapperPreviewLeidbeiningar_src-pages-index-module {
  grid-area: 1 / 1 / 2 / 2;
  display: flex;
  position: relative;
  justify-content: flex-start;
  align-items: center;
}

.midiLeidbeiningar_src-pages-index-module {
  width: 40%;
  height: auto;
  position: relative;
  left: 40%;
  margin-bottom: -5rem;
  filter: drop-shadow(0.5rem 1rem 2rem rgba(0, 0, 0, 0.2));

}

/* Desktop */
@media screen and (min-width: 700px) {
  .heroBanner_src-pages-index-module {
    padding: 2rem 6rem;
    width: 100%;
  }

  .heroBanner_src-pages-index-module h1 {
    max-width: none;
    padding-bottom: 0.5rem;
  }
  section {
    width: 100%;
  }
  .ContainerWrapper_src-pages-index-module, .leidbeiningarWrapper_src-pages-index-module {
    display: grid;
    align-items: start;
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr;
    position: relative;
    width: 100%;
    margin-top: 0;
  }

  .container_src-pages-index-module{
    align-items: flex-start;
  }
  .container_src-pages-index-module h4{
   max-width: 22em;
  }

  .leidbeiningarWrapper_src-pages-index-module {
    margin-top: -20vh;
  }

  .inngangur_src-pages-index-module {
    position: sticky;
    top: 15vh;
    padding-bottom: 2rem;
  }

  .phoneContainer_src-pages-index-module {
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr;
    justify-items: center;
    justify-content: center;
  }

  .phoneWrapper1_src-pages-index-module {
    padding-top: 3.8rem;
    max-width: 25vw;
  }

  .phoneWrapper2_src-pages-index-module {
    opacity: 0;
    padding-top: 20rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
    display: none;
  }

  .facFeatures_src-pages-index-module {
    padding-left: 50%;
  }

  .features_src-pages-index-module {
    padding: 2rem 6rem;
    width: 100vw;
  }

  .headerText_src-pages-index-module {
    margin-bottom: 5vh;
  }

  article {
    align-items: flex-start;
  }

  [class="container container--fluid margin-vert--lg"] {
    padding: 0 6rem !important;
    max-width: none !important;
  }

  [class="row mdxPageWrapper_node_modules-@docusaurus-theme-classic-lib-theme-MDXPage-styles-module"] {
    justify-content: flex-start !important;
  }

  [class="col col--2"] {
    --ifm-col-width: calc(4 / 12 * 100%);
  }

  [class="table-of-contents__link toc-highlight"] {
    display: contents;
  }

  .aboutWrapper_src-pages-index-module {
    margin: auto;
    max-width: inherit;
    padding: 2rem 6rem;
    display: flex;
    align-items: flex-end;
  }

  .row2_src-pages-index-module {
    grid-area: 2/2/3/3 !important;
  }

  .imageWrapper_src-pages-index-module {
    justify-content: flex-start;
    padding-left: 10rem;
  }

  .imageContainer_src-pages-index-module {
    width: 30rem;
    height: 46rem;
  }

  .myndLeidbeiningarMobil_src-pages-index-module {
    display: none;
  }

  .instroctionsWrapper_src-pages-index-module {
    align-items: flex-start;
    width: 100%;
    margin-bottom: 13rem;
  }

  .instroctionsContainer_src-pages-index-module {
    margin: 0;
    margin-bottom: 2rem;
    padding: 2rem;
    flex-direction: row;
    align-items: center;
    column-gap: 1rem;
    height: 7rem;
    position: relative;
    z-index: 0;
  }

  .instroctionsTextContainer_src-pages-index-module {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1rem;
    max-width: 56vw;
  }

  .lengdEitt_src-pages-index-module {
    width: 56.5vw;
  }

  .lengdTvo_src-pages-index-module {
    width: 75.8vw;
  }

  .lengdThrju_src-pages-index-module {
    width: 85.2vw;
  }

  .PreviewWrapperLeidbeiningar_src-pages-index-module {
    width: auto;
    margin-right: 7rem;
  }

  .PreviewWrapperLeidbeiningar_src-pages-index-module img {
    height: auto;
    background-size: cover;
  }

  .phoneWrapperPreviewLeidbeiningar_src-pages-index-module {
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
    align-items: center;
    max-width: 0;
  }

  .myndLeidbeiningar_src-pages-index-module {
    width: 35%;
    position: relative;
    z-index: 2;
    left: -30%;
    top: 0;
    margin-top: -1rem;
  }

  .midiWrapperPreviewLeidbeiningar_src-pages-index-module {
    width: 37rem;
    height: auto;
  }

  .midiLeidbeiningar_src-pages-index-module {
    width: 35%;
    filter: drop-shadow(0.5rem 1rem 2rem rgba(0, 0, 0, 0.3));
    z-index: 3;
    position: absolute !important;
    left: 25%;
    margin-top: 10rem;
  }
}



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

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

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

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

.codeBlockTitle_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module {
  border-bottom: 1px solid var(--ifm-color-emphasis-300);
  font-size: var(--ifm-code-font-size);
  font-weight: 500;
  padding: 0.75rem var(--ifm-pre-padding);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.codeBlock_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module {
  --ifm-pre-background: var(--prism-background-color);
  margin: 0;
  padding: 0;
}

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

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

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

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

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

.buttonGroup_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module {
  display: flex;
  column-gap: 0.2rem;
  position: absolute;
  /* rtl:ignore */
  right: calc(var(--ifm-pre-padding) / 2);
  top: calc(var(--ifm-pre-padding) / 2);
}

.buttonGroup_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module button {
  display: flex;
  align-items: center;
  background: var(--prism-background-color);
  color: var(--prism-color);
  border: 1px solid var(--ifm-color-emphasis-300);
  border-radius: var(--ifm-global-radius);
  padding: 0.4rem;
  line-height: 0;
  transition: opacity var(--ifm-transition-fast) ease-in-out;
  opacity: 0;
}

.buttonGroup_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module button:focus-visible,
.buttonGroup_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module button:hover {
  opacity: 1 !important;
}

.theme-code-block:hover .buttonGroup_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module button {
  opacity: 0.4;
}

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

/* Intentionally has zero specificity, so that to be able to override
the background in custom CSS file due bug https://github.com/facebook/docusaurus/issues/3678 */
:where(:root) {
  --docusaurus-highlighted-code-line-bg: rgb(72 77 91);
}

:where([data-theme='dark']) {
  --docusaurus-highlighted-code-line-bg: rgb(100 100 100);
}

.theme-code-block-highlighted-line {
  background-color: var(--docusaurus-highlighted-code-line-bg);
  display: block;
  margin: 0 calc(-1 * var(--ifm-pre-padding));
  padding: 0 var(--ifm-pre-padding);
}

.codeLine_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Line-styles-module {
  display: table-row;
  counter-increment: line-count;
}

.codeLineNumber_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Line-styles-module {
  display: table-cell;
  text-align: right;
  width: 1%;
  position: sticky;
  left: 0;
  padding: 0 var(--ifm-pre-padding);
  background: var(--ifm-pre-background);
  overflow-wrap: normal;
}

.codeLineNumber_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Line-styles-module::before {
  content: counter(line-count);
  opacity: 0.4;
}

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

.codeLineContent_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Line-styles-module {
  padding-right: var(--ifm-pre-padding);
}

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

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

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

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

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

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

.copyButtonCopied_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-CopyButton-styles-module .copyButtonSuccessIcon_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-CopyButton-styles-module {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition-delay: 0.075s;
}

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

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

.wordWrapButtonEnabled_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-WordWrapButton-styles-module .wordWrapButtonIcon_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-WordWrapButton-styles-module {
  color: var(--ifm-color-primary);
}

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

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

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

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

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

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

.details_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module > summary::before {
  position: absolute;
  top: 0.45rem;
  left: 0;

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

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

/* When JS disabled/failed to load: we use the open property for arrow animation: */
.details_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module[open]:not(.isBrowser_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module) > summary::before,

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

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

.collapsibleContent_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module p:last-child {
  margin-bottom: 0;
}

.details_node_modules-\@docusaurus-theme-common-lib-components-Details-styles-module > summary > p:last-child {
  margin-bottom: 0;
}

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

.lastUpdated_node_modules-\@docusaurus-theme-classic-lib-theme-EditMetaRow-styles-module {
  font-size: smaller;
  font-style: italic;
  margin-top: 0.2rem;
}

@media (min-width: 997px) {
  .lastUpdated_node_modules-\@docusaurus-theme-classic-lib-theme-EditMetaRow-styles-module {
    text-align: right;
  }
}

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

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

.tocCollapsibleButton_node_modules-\@docusaurus-theme-classic-lib-theme-TOCCollapsible-CollapseButton-styles-module::after {
  content: '';
  background: var(--ifm-menu-link-sublist-icon) 50% 50% / 2rem 2rem no-repeat;
  filter: var(--ifm-menu-link-sublist-icon-filter);
  height: 1.25rem;
  width: 1.25rem;
  transform: rotate(180deg);
  transition: transform var(--ifm-transition-fast);
}

.tocCollapsibleButtonExpanded_node_modules-\@docusaurus-theme-classic-lib-theme-TOCCollapsible-CollapseButton-styles-module::after {
  transform: none;
}

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

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

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

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

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

.tocCollapsibleExpanded_node_modules-\@docusaurus-theme-classic-lib-theme-TOCCollapsible-styles-module {
  transform: none;
}

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

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

@media print {
  .tocMobile_node_modules-\@docusaurus-theme-classic-lib-theme-DocItem-TOC-Mobile-styles-module {
    display: none;
  }
}

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

.details_node_modules-\@docusaurus-theme-classic-lib-theme-Details-styles-module {
  --docusaurus-details-decoration-color: var(--ifm-alert-border-color);
  --docusaurus-details-transition: transform var(--ifm-transition-fast) ease;
  margin: 0 0 var(--ifm-spacing-vertical);
  border: 1px solid var(--ifm-alert-border-color);
}

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

.containsTaskList_node_modules-\@docusaurus-theme-classic-lib-theme-MDXComponents-Ul-styles-module {
  list-style: none;
}

:not(.containsTaskList_node_modules-\@docusaurus-theme-classic-lib-theme-MDXComponents-Ul-styles-module > li) > .containsTaskList_node_modules-\@docusaurus-theme-classic-lib-theme-MDXComponents-Ul-styles-module {
  padding-left: 0;
}

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

.img_node_modules-\@docusaurus-theme-classic-lib-theme-MDXComponents-Img-styles-module {
  height: auto;
}

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

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

@media (max-width: 996px) {
  .tableOfContents_node_modules-\@docusaurus-theme-classic-lib-theme-TOC-styles-module {
    display: none;
  }

  .docItemContainer_node_modules-\@docusaurus-theme-classic-lib-theme-TOC-styles-module {
    padding: 0 0.3rem;
  }
}

.admonition_src-theme-Admonition-Layout-styles-module {
  margin-bottom: 1em;
}

.admonitionHeading_src-theme-Admonition-Layout-styles-module {
  font: var(--ifm-heading-font-weight) var(--ifm-h5-font-size) /
    var(--ifm-heading-line-height) var(--ifm-heading-font-family);
  text-transform: uppercase;
}

/* Heading alone without content (does not handle fragment content) */
.admonitionHeading_src-theme-Admonition-Layout-styles-module:not(:last-child) {
  margin-bottom: 0.3rem;
}

.admonitionHeading_src-theme-Admonition-Layout-styles-module code {
  text-transform: none;
}

.admonitionIcon_src-theme-Admonition-Layout-styles-module {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4em;
}

.admonitionIcon_src-theme-Admonition-Layout-styles-module svg {
  display: inline-block;
  height: 1.6em;
  width: 1.6em;
  fill: var(--ifm-alert-foreground-color);
}

.admonitionContent_src-theme-Admonition-Layout-styles-module > :last-child {
  margin-bottom: 0;
}

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

.breadcrumbHomeIcon_node_modules-\@docusaurus-theme-classic-lib-theme-DocBreadcrumbs-Items-Home-styles-module {
  position: relative;
  top: 1px;
  vertical-align: top;
  height: 1.1rem;
  width: 1.1rem;
}

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

.breadcrumbsContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocBreadcrumbs-styles-module {
  --ifm-breadcrumb-size-multiplier: 0.8;
  margin-bottom: 0.8rem;
}

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

.docItemContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocItem-Layout-styles-module header + *,
.docItemContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocItem-Layout-styles-module article > *:first-child {
  margin-top: 0;
}

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

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

.mdxPageWrapper_node_modules-\@docusaurus-theme-classic-lib-theme-MDXPage-styles-module {
  justify-content: center;
}

