/* CUSTOM WEBFONTS */
/* Outfit: primary identity typeface, used for headers */

@font-face {
  font-family: "Outfit-Web";
  src: url("../webfonts/Outfit-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

/* all three "bold" weights reference Outfit-Medium */
@font-face {
  font-family: "Outfit-Web";
  src: url("../webfonts/Outfit-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Outfit-Web";
  src: url("../webfonts/Outfit-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Outfit-Web";
  src: url("../webfonts/Outfit-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

/*
  Inter: utilitarian, main implementation typeface 
  (note that Medium weight is used over Regular, Medium has better overall color)
*/

@font-face {
  font-family: "Inter-Web";
  src: url("../webfonts/Inter-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Web";
  src: url("../webfonts/Inter-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

/* all three "bold" weights reference Inter-SemiBold */
@font-face {
  font-family: "Inter-Web";
  src: url("../webfonts/Inter-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Web";
  src: url("../webfonts/Inter-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Web";
  src: url("../webfonts/Inter-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

/* JetBrains Mono: monospace typeface, used for code, values, etc. */

@font-face {
  font-family: "JetBrains-Mono-Web";
  src: url("../webfonts/JetBrainsMono-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains-Mono-Web";
  src: url("../webfonts/JetBrainsMono-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

/* global FICO overrides (--md-*) + extra variables (no "--md-" prefix) */
:root > * {
  /* TYPOGRAPHY */

  --font-base: "Inter-Web", "system-ui", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "sans-serif", "Inter-Web";
  --font-headline: "Outfit-Web", "system-ui", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "sans-serif", "Outfit-Web";
  --font-mono: "JetBrains-Mono-Web", "SFMono-Regular", "Consolas", "Liberation Mono", "Menlo", "monospace", "JetBrains-Mono-Web";
  
  --md-text-font: var(--font-base);
  --md-code-font: var(--font-mono);

  /*
    COLORS
    - the "--light/er/est" flags on the end of colors are definitions for
      on-page contrast not light/dark mode
  */

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

  /* accent-fg and primary-fg are treated as the same variable */
  --md-accent-fg-color: #0a6de6;                /* --fds-blue-70 (main FICO identity color) */
  --md-primary-fg-color: #0a6de6;               /* --fds-blue-70 (main FICO identity color) */
  --md-primary-fg-color--dark: #2056c3;         /* --fds-blue-80 */
  --md-primary-fg-color--light: #79a7ff;        /* --fds-blue-50 */
  --md-accent-fg-color--transparent: #0a6de626; /* --fds-blue-70 at 15% opacity */
  
  /* primary typesetting and UI color (base gray scale) */
  --md-default-fg-color: #16252f;               /* --fds-slate-110 (--color-fg-bold) */
  --md-default-fg-color--light: #304552;        /* --fds-slate-90  (--color-fg) */
  --md-default-fg-color--lighter: #5E707A;      /* --fds-slate-80  (--color-fg-soft) */
  --md-default-fg-color--lightest: #E7EAEC;     /* --fds-slate-40  (--color-bd) */
  --md-default-bg-color--light: #F8F8F8;        /* --fds-slate-20  (--color-bg-bold) */
  --md-default-bg-color: #fff;                  /*                 (--color-bg) */
  
  /* typeset */
  --md-typeset-color: var(--md-default-fg-color--light);
  --md-typeset-kbd-border-color: #16252f;       /* fds-slate-110 */

  /* code */
  --md-code-bg-color: #f8f8f8;                  /* fds-slate-20 */

  /* footer */
  --md-footer-bg-color: #101b22;                /* fds-slate-120 */
  --md-footer-bg-color--dark: #0c1013;          /* fds-slate-130 */

   /* links */
  --md-typeset-a-color: var(--md-primary-fg-color) !important;
  --typeset-a-hover-color: var(--md-primary-fg-color--dark) !important; /* --fds-blue-60 */

  /* navigation */
  --side-nav-active-bg-color: #e9f0feff; /* --fds-blue-20 */
}

/* dark theme overrides (of global FICO overrides above) */
[data-md-color-scheme=slate] {
  /* accent */
  --md-primary-fg-color--dark: #aac5fb;         /* --fds-blue-40 */
  --md-primary-fg-color--light: #173f90;        /* --fds-blue-90  */
  --md-accent-fg-color--transparent: #0a6de638; /* --fds-blue-70 at 22% opacity */
  
  /* gray scale */
  --md-default-fg-color: #fff;                  /*                 (--color-fg-bold) */
  --md-default-fg-color--light: #f0f2f2;        /* --fds-slate-30  (--color-fg) */
  --md-default-fg-color--lighter: #b9c2c8;      /* --fds-slate-60  (--color-fg-soft) */
  --md-default-fg-color--lightest: #304552;     /* --fds-slate-90  (--color-bd) */
  --md-default-bg-color--light: #1f323f;        /* --fds-slate-100 (--color-bg-bold) */
  --md-default-bg-color: #16252f;               /* --fds-slate-110 (--color-bg) */

  /* typeset */
  --md-typeset-color: var(--md-default-fg-color--light);
  --md-typeset-kbd-border-color: #16252f;       /* fds-slate-110 */
  
  /* code */
  --md-code-bg-color: #101b22;                  /* fds-slate-120 */

  /* footer */
  --md-footer-bg-color: #101b22;                /* fds-slate-120 */
  --md-footer-bg-color--dark: #0c1013;          /* fds-slate-130 */

  /* links */
  --md-typeset-a-color: var(--md-primary-fg-color--dark) !important;
  --typeset-a-hover-color: #6395f8 !important;  /* --fds-blue-60 */

  /* navigation */
  --side-nav-active-bg-color: #173f90;          /* --fds-blue-90  */
}

/* RESET vars for pre code to use Zensical defaults */

pre code, pre code * {
  /* base code colors */
  --md-code-fg-color:             #36464e;
  --md-code-bg-color--light:      #f5f5f5b3;
  --md-code-bg-color--lighter:    #f5f5f54d;

  /* highlight line / selection */
  --md-code-hl-color:             #4287ff;
  --md-code-hl-color--light:      #4287ff1a;

  /* token colors */
  --md-code-hl-number-color:      #d52a2a;
  --md-code-hl-special-color:     #db1457;
  --md-code-hl-function-color:    #a846b9;
  --md-code-hl-constant-color:    #6e59d9;
  --md-code-hl-keyword-color:     #3f6ec6;
  --md-code-hl-string-color:      #1c7d4d;
  --md-code-hl-name-color:        #36464e;   /* was var(--md-code-fg-color) */
  --md-code-hl-operator-color:    #0000008a; /* was var(--md-default-fg-color--light) */
  --md-code-hl-punctuation-color: #0000008a; /* was var(--md-default-fg-color--light) */
  --md-code-hl-comment-color:     #0000008a; /* was var(--md-default-fg-color--light) */
  --md-code-hl-generic-color:     #0000008a; /* was var(--md-default-fg-color--light) */
  --md-code-hl-variable-color:    #0000008a; /* was var(--md-default-fg-color--light) */
}  
[data-md-color-scheme="slate"] {
  pre code, pre code * {
    /* base code colors */
    --md-code-fg-color:             hsla(225deg, 18%, 86%, 0.82);
    --md-code-bg-color--light:      hsla(225deg, 15%, 18%, 0.9);
    --md-code-bg-color--lighter:    hsla(225deg, 15%, 18%, 0.54);

    /* highlight line / selection */
    --md-code-hl-color:             #2977ff;
    --md-code-hl-color--light:      #2977ff1a;

    /* token colors */
    --md-code-hl-number-color:      #e6695b;
    --md-code-hl-special-color:     #f06090;
    --md-code-hl-function-color:    #c973d9;
    --md-code-hl-constant-color:    #9383e2;
    --md-code-hl-keyword-color:     #6791e0;
    --md-code-hl-string-color:      #2fb170;
    --md-code-hl-name-color:        hsla(225deg, 18%, 86%, 0.82); /* was var(--md-code-fg-color) */
    --md-code-hl-operator-color:    hsla(225deg, 15%, 90%, 0.56); /* was var(--md-default-fg-color--light) */
    --md-code-hl-punctuation-color: hsla(225deg, 15%, 90%, 0.56); /* was var(--md-default-fg-color--light) */
    --md-code-hl-comment-color:     hsla(225deg, 15%, 90%, 0.56); /* was var(--md-default-fg-color--light) */
    --md-code-hl-generic-color:     hsla(225deg, 15%, 90%, 0.56); /* was var(--md-default-fg-color--light) */
    --md-code-hl-variable-color:    hsla(225deg, 15%, 90%, 0.56); /* was var(--md-default-fg-color--light) */
  }
}

/*
  increase alpha channel for default admonition values (these are hard-coded
  in Zensical’s default theme)
*/
.md-typeset .admonition.note     { background-color: #448aff22; }
.md-typeset .admonition.abstract { background-color: #00b0ff22; }
.md-typeset .admonition.info     { background-color: #00b8d422; }
.md-typeset .admonition.tip      { background-color: #00bfa522; }
.md-typeset .admonition.success  { background-color: #00c85322; }
.md-typeset .admonition.question { background-color: #64dd1722; }
.md-typeset .admonition.warning  { background-color: #ff910022; }
.md-typeset .admonition.failure  { background-color: #ff525222; }
.md-typeset .admonition.danger   { background-color: #ff174422; }
.md-typeset .admonition.bug      { background-color: #f5005722; }
.md-typeset .admonition.example  { background-color: #7c4dff22; }
.md-typeset .admonition.quote    { background-color: #9e9e9e22; }

/*
  The following variables are defined in Zensical's theme CSS files, but no 
  override values are defined. They are referenced here for convenience in 
  case we ever need to override them.

  [unchanged (i.e. light/dark have same value)]
  --md-accent-bg-color
  --md-accent-bg-color--light
  --md-primary-bg-color
  --md-primary-bg-color--light

  --md-typeset-del-color
  --md-typeset-ins-color
  --md-warning-fg-color
  --md-warning-bg-color

  [light]
  --md-default-bg-color--lighter
  --md-default-bg-color--lightest
  --md-typeset-kbd-color
  --md-typeset-kbd-accent-color
  --md-typeset-mark-color
  --md-typeset-table-color
  --md-typeset-table-color--light

  [dark]
  --md-default-bg-color--lighter
  --md-default-bg-color--lightest
  --md-typeset-kbd-color
  --md-typeset-kbd-accent-color
  --md-typeset-mark-color
  --md-typeset-table-color
  --md-typeset-table-color--light
*/

/* LAYOUT */

/* header */
.md-header .md-header__inner.md-grid {
  margin-left: 16px;
  max-width: none;
}
.md-header .md-header__inner {
  padding-right: 16px;
}
.md-header .md-tabs .md-grid {
  margin-left: 16px;
  max-width: none;
}

/* main */

.md-main .md-main__inner.md-grid {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  max-width: 1520px;
}

/* turn off sidebar bounce animation */
.md-sidebar--primary {
  transition: none !important;
}

/*
  override sticky position of sidebar to have it anchor at the top when the header
  is hidden (there is an inline style that sets the sticky position at the bottom
  of the header no matter if it's hidden or shown)
*/
.md-header[hidden] + .md-container > .md-main > .md-main__inner > .md-sidebar.md-sidebar--primary {
  top: 0 !important;
  transition: top 250ms ease-out;
}
.md-sidebar.md-sidebar--primary {
  margin-top: 0;
  transition: top 250ms ease-out;
}

/* scrollable area of main sidebar */
.md-sidebar.md-sidebar--primary > .md-sidebar__scrollwrap {
  margin-top: -8px;
  margin-right: -1px;
  border-right: 1px solid var(--md-default-fg-color--lightest);
}

/* main page content */
.md-main__inner .md-content {
  border-left: 1px solid var(--md-default-fg-color--lightest);
}

/* footer */
.md-footer-meta {
  border-top: .05rem solid var(--md-default-fg-color--lightest);
  background-color: var(--md-default-bg-color--light);
}

/* ON-PAGE LINKS */

a {
  color: var(--md-typeset-a-color) !important;
  transition: none !important;
}
a:visited {
  color: var(--md-typeset-a-color) !important;
}
a:hover,
a:focus,
a:active {
  color: var(--typeset-a-hover-color) !important;
}

/* HEADER */

/* logo */
.md-header__button.md-logo {
  margin: 0 0 8px 0;
  padding: 0;
  width: 100px;
  height: auto;
  aspect-ratio: 2.30769231;
  transform: translate(-8px, 12px);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0;
  background-image: url("data:image/svg+xml,%3csvg width='436' height='188' viewBox='0 0 436 188' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath d='M350.312 49.4014C363.904 49.4015 374.923 60.4201 374.923 74.0117V109.981H357.885V74.0117C357.885 69.8298 354.494 66.4396 350.312 66.4395C346.139 66.4395 342.753 69.8168 342.739 73.9873V109.981H325.701V74.0117C325.701 69.8299 322.311 66.4397 318.129 66.4395C313.947 66.4395 310.556 69.8297 310.556 74.0117V109.981H293.519V74.0127C293.519 60.4204 304.537 49.4024 318.129 49.4023C324.281 49.4023 329.907 51.6589 334.221 55.3906C338.535 51.659 344.16 49.4014 350.312 49.4014ZM403.43 94.5635L418.913 49.4014H435.503L412.83 109.981H393.809L371.136 49.4014H387.836L403.43 94.5635Z' fill='%23008393'/%3e %3cpath d='M227.822 68.3672L239.462 49.1523H256.48L236.058 80.0068L257.249 109.982H239.901L226.065 90.4375L214.427 109.982H197.407L217.501 78.25L196.968 49.1523H214.317L227.822 68.3672ZM274.924 49.1523H288.539V62.2178H274.924V88.79C274.924 91.7176 275.51 93.7673 276.681 94.9385C277.852 96.11 279.829 96.6953 282.61 96.6953H288.649V109.982H280.524C273.717 109.982 268.482 108.335 264.822 105.041C261.236 101.747 259.442 96.2565 259.442 88.5703V34.1094H274.924V49.1523ZM111.777 49.4014C125.37 49.4014 136.388 60.42 136.389 74.0117V109.981H119.351V74.0117C119.35 69.8297 115.959 66.4395 111.777 66.4395C107.596 66.4397 104.205 69.8299 104.205 74.0117V109.981H87.167V74.0117C87.1672 60.4202 98.1858 49.4016 111.777 49.4014ZM172.358 49.4014C189.087 49.4016 202.648 62.9628 202.648 79.6914C202.648 80.9738 202.568 82.2372 202.414 83.4775H155.742C157.464 91.0653 164.249 96.7295 172.358 96.7295C177.404 96.7295 181.937 94.5365 185.058 91.0508H200.446C195.953 102.151 185.07 109.981 172.358 109.981C155.63 109.981 142.068 96.4202 142.068 79.6914C142.068 62.9627 155.63 49.4014 172.358 49.4014ZM172.358 62.6533C165.669 62.6534 159.879 66.5091 157.091 72.1191H187.625C184.837 66.5091 179.048 62.6533 172.358 62.6533Z' fill='%23003541'/%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.97983 0C5.97983 0 26.8246 18.476 35.352 50.6904C41.2887 73.1181 40.0894 109.908 40.0894 109.908H26.8246C26.8246 109.908 5.5171 80.3655 1.24251 58.2705C-3.27517 34.9185 5.97983 0 5.97983 0ZM18.0882 28.6823C18.0882 28.6823 9.58462 36.3496 14.2871 58.4015C18.9895 80.4535 34.8417 105.371 34.8417 105.371C34.8417 105.371 34.0589 90.1941 31.2202 66.3494C28.3816 42.5052 18.0882 28.6823 18.0882 28.6823Z' fill='%23003541'/%3e %3cpath d='M44.3533 60.639C42.4762 49.2027 38.1946 36.9519 38.1946 36.9519C38.1946 36.9519 41.7112 26.5296 47.1957 16.581C52.68 6.63241 58.5655 0 58.5655 0C58.5655 0 71.3569 27.0034 69.9353 53.5332C68.8742 73.3391 60.9483 94.9931 56.9985 104.697H45.9533C45.9533 104.697 46.7204 75.0619 44.3533 60.639Z' fill='%23008393'/%3e %3cpath d='M193.428 156.022C195.421 156.023 197.215 156.543 198.81 157.586C200.435 158.598 201.708 159.979 202.628 161.727C203.578 163.444 204.054 165.391 204.054 167.568C204.054 169.715 203.578 171.662 202.628 173.41C201.708 175.127 200.435 176.492 198.81 177.504C197.215 178.516 195.421 179.022 193.428 179.022C191.741 179.022 190.239 178.669 188.92 177.964C188.047 177.477 187.296 176.875 186.665 176.16V187.763H181.605V156.482H186.665V158.94C187.305 158.209 188.072 157.604 188.966 157.126C190.284 156.39 191.772 156.022 193.428 156.022ZM122.456 156.022C124.633 156.022 126.596 156.528 128.344 157.54C130.092 158.552 131.472 159.933 132.484 161.681C133.527 163.398 134.048 165.33 134.048 167.477C134.048 169.623 133.527 171.57 132.484 173.318C131.472 175.066 130.092 176.461 128.344 177.504C126.596 178.516 124.633 179.022 122.456 179.022C120.309 179.022 118.362 178.516 116.614 177.504C114.866 176.461 113.47 175.066 112.428 173.318C111.416 171.57 110.91 169.623 110.91 167.477C110.91 165.33 111.416 163.398 112.428 161.681C113.47 159.963 114.866 158.598 116.614 157.586C118.362 156.543 120.31 156.022 122.456 156.022ZM217.535 156.022C219.222 156.022 220.709 156.39 221.997 157.126C222.891 157.604 223.657 158.209 224.297 158.94V156.482H229.357V178.562H224.297V176.138C223.676 176.863 222.925 177.472 222.043 177.964C220.724 178.669 219.222 179.022 217.535 179.022C215.542 179.022 213.733 178.516 212.107 177.504C210.513 176.492 209.24 175.127 208.289 173.41C207.369 171.662 206.909 169.715 206.909 167.568C206.909 165.391 207.369 163.444 208.289 161.727C209.24 159.979 210.513 158.598 212.107 157.586C213.733 156.543 215.542 156.022 217.535 156.022ZM290.509 156.022C292.686 156.022 294.649 156.528 296.396 157.54C298.144 158.552 299.525 159.933 300.537 161.681C301.58 163.398 302.101 165.33 302.101 167.477C302.101 169.623 301.58 171.57 300.537 173.318C299.525 175.066 298.144 176.461 296.396 177.504C294.649 178.516 292.686 179.022 290.509 179.022C288.362 179.022 286.415 178.516 284.667 177.504C282.919 176.461 281.523 175.066 280.48 173.318C279.469 171.57 278.963 169.623 278.963 167.477C278.963 165.33 279.469 163.398 280.48 161.681C281.523 159.963 282.919 158.598 284.667 157.586C286.415 156.543 288.362 156.022 290.509 156.022ZM409.925 147.776C411.958 147.776 413.971 148.174 415.85 148.948C417.728 149.722 419.436 150.857 420.874 152.288C422.312 153.719 423.452 155.418 424.23 157.288C425.009 159.158 425.409 161.162 425.409 163.186C425.41 166.234 424.502 169.214 422.801 171.749C421.1 174.284 418.682 176.26 415.853 177.427C413.023 178.594 409.909 178.9 406.905 178.306C403.901 177.711 401.142 176.243 398.977 174.088C396.811 171.933 395.335 169.187 394.737 166.197C394.14 163.208 394.446 160.108 395.618 157.292C396.79 154.476 398.775 152.068 401.321 150.374C403.868 148.68 406.862 147.776 409.925 147.776ZM379.515 149.339C382.125 148.063 385.042 147.544 387.935 147.842C390.827 148.14 393.576 149.243 395.868 151.023C394.474 152.639 393.371 154.483 392.609 156.473C391.297 155.257 389.656 154.45 387.889 154.151C386.121 153.853 384.305 154.075 382.663 154.791C381.021 155.507 379.625 156.685 378.647 158.181C377.67 159.676 377.153 161.425 377.161 163.209C377.169 164.993 377.702 166.736 378.692 168.223C379.683 169.71 381.09 170.876 382.738 171.577C384.387 172.278 386.206 172.485 387.971 172.17C389.735 171.855 391.369 171.033 392.67 169.806C393.456 171.789 394.579 173.623 395.989 175.228C393.715 177.031 390.976 178.16 388.087 178.486C385.198 178.813 382.275 178.323 379.652 177.073C377.03 175.823 374.815 173.864 373.259 171.419C371.703 168.974 370.87 166.143 370.855 163.249C370.841 160.355 371.645 157.516 373.177 155.056C374.708 152.596 376.905 150.615 379.515 149.339ZM98.6377 156.022C100.294 156.022 101.766 156.452 103.054 157.311C104.342 158.139 105.354 159.227 106.09 160.576C106.826 161.895 107.194 163.275 107.194 164.717V178.562H102.134V165.82C102.134 164.348 101.659 163.137 100.708 162.187C99.788 161.236 98.5921 160.761 97.1201 160.761C96.1388 160.761 95.2647 160.975 94.498 161.404C93.7314 161.834 93.1334 162.432 92.7041 163.198C92.2748 163.965 92.0596 164.839 92.0596 165.82V178.562H87V156.482H92.0596V158.979C92.6639 158.254 93.3838 157.651 94.2217 157.172C95.5403 156.405 97.0125 156.023 98.6377 156.022ZM145.719 170.431L150.781 156.482H153.725L158.786 170.432L163.982 156.482H169.227L160.349 178.562H157.405L152.253 165.404L147.101 178.562H144.157L135.279 156.482H140.522L145.719 170.431ZM245.782 156.022C246.886 156.022 247.883 156.222 248.772 156.62C249.662 157.019 250.49 157.663 251.257 158.553L247.944 161.956C247.546 161.527 247.101 161.22 246.61 161.036C246.12 160.852 245.552 160.761 244.908 160.761C243.498 160.761 242.333 161.206 241.413 162.095C240.493 162.984 240.032 164.379 240.032 166.28V178.562H234.973V156.482H240.032V158.78C240.063 158.735 240.093 158.689 240.125 158.645C241.382 156.897 243.268 156.023 245.782 156.022ZM262.213 156.482H267.503V161.082H262.213V178.562H257.153V161.082H251.863V156.482H257.153V147.282H262.213V156.482ZM317.594 144.982C318.943 144.982 320.093 145.212 321.044 145.672C321.995 146.132 322.884 146.792 323.712 147.65L320.445 150.916C320.077 150.548 319.679 150.257 319.25 150.042C318.821 149.827 318.268 149.721 317.594 149.721C316.367 149.721 315.416 150.058 314.741 150.732C314.097 151.376 313.775 152.312 313.775 153.538V156.482H320.445V161.082H313.775V178.562H308.716V161.082H303.426V156.482H308.716V153.584C308.716 151.897 309.083 150.41 309.819 149.122C310.586 147.834 311.629 146.822 312.947 146.086C314.297 145.35 315.846 144.982 317.594 144.982ZM423.119 174.155C423.392 174.119 423.67 174.138 423.936 174.212C424.108 174.261 424.273 174.332 424.426 174.424C424.579 174.515 424.718 174.628 424.841 174.757C424.968 174.887 425.077 175.033 425.165 175.191C425.256 175.355 425.326 175.53 425.374 175.711C425.474 176.095 425.474 176.498 425.374 176.882C425.326 177.063 425.256 177.238 425.165 177.401C425.078 177.562 424.968 177.709 424.841 177.84C424.716 177.968 424.577 178.081 424.426 178.176C424.273 178.268 424.108 178.34 423.936 178.389C423.578 178.492 423.198 178.492 422.841 178.389C422.667 178.341 422.501 178.268 422.347 178.176C422.195 178.08 422.054 177.967 421.928 177.84C421.802 177.708 421.694 177.561 421.607 177.401C421.516 177.238 421.446 177.063 421.398 176.882C421.348 176.69 421.322 176.493 421.323 176.295C421.323 176.098 421.348 175.901 421.398 175.711C421.446 175.53 421.516 175.355 421.607 175.191C421.695 175.034 421.803 174.888 421.928 174.757C422.053 174.629 422.193 174.516 422.347 174.424C422.583 174.283 422.846 174.192 423.119 174.155ZM360.141 154.839H345.143V161.24H357.998V167.638H345.143V178.301H338.712V148.441H360.141V154.839ZM368.572 178.301H362.145V148.441H368.572V178.301ZM423.374 174.491C423.143 174.491 422.914 174.538 422.702 174.629C422.495 174.718 422.307 174.848 422.151 175.011C421.998 175.179 421.877 175.375 421.796 175.588C421.703 175.812 421.656 176.052 421.657 176.295C421.657 176.537 421.704 176.777 421.796 177.002C421.877 177.216 421.997 177.413 422.151 177.582C422.308 177.745 422.495 177.876 422.702 177.968C422.914 178.059 423.143 178.105 423.374 178.105C423.605 178.105 423.833 178.059 424.045 177.968C424.25 177.875 424.437 177.744 424.593 177.582C424.747 177.413 424.867 177.216 424.948 177.002C425.04 176.777 425.087 176.537 425.087 176.295C425.088 176.052 425.041 175.812 424.948 175.588C424.867 175.375 424.747 175.179 424.593 175.011C424.438 174.849 424.251 174.719 424.045 174.629C423.833 174.538 423.605 174.491 423.374 174.491ZM423.353 175.021C423.483 175.019 423.614 175.035 423.74 175.067C423.846 175.094 423.946 175.141 424.034 175.205C424.116 175.265 424.18 175.344 424.223 175.436C424.267 175.538 424.289 175.649 424.287 175.761C424.289 175.874 424.257 175.985 424.194 176.079C424.122 176.176 424.026 176.254 423.917 176.306C423.978 176.331 424.034 176.365 424.084 176.408C424.127 176.447 424.165 176.492 424.194 176.542C424.222 176.596 424.242 176.653 424.255 176.712C424.266 176.775 424.272 176.839 424.272 176.903V177.268C424.278 177.323 424.292 177.378 424.312 177.43V177.476H423.893C423.881 177.445 423.873 177.413 423.868 177.381V176.906C423.877 176.795 423.842 176.685 423.771 176.599C423.679 176.524 423.56 176.489 423.441 176.5L422.962 176.514V177.49H422.55V175.021H423.353ZM422.962 176.143H423.413C423.473 176.142 423.533 176.134 423.591 176.118C423.643 176.103 423.694 176.08 423.74 176.051C423.782 176.023 423.816 175.985 423.839 175.941C423.867 175.896 423.881 175.842 423.878 175.789C423.878 175.72 423.865 175.652 423.839 175.588C423.822 175.54 423.791 175.497 423.75 175.467C423.703 175.433 423.648 175.411 423.591 175.403C423.509 175.388 423.425 175.381 423.342 175.383H422.951L422.962 176.143ZM192.6 160.807C191.373 160.807 190.284 161.098 189.333 161.681C188.383 162.233 187.646 163.015 187.125 164.026C186.604 165.038 186.344 166.204 186.344 167.522C186.344 168.841 186.604 170.007 187.125 171.019C187.646 172.03 188.383 172.828 189.333 173.41C190.284 173.962 191.373 174.238 192.6 174.238C193.826 174.238 194.899 173.962 195.819 173.41C196.77 172.828 197.506 172.03 198.027 171.019C198.579 170.007 198.855 168.841 198.855 167.522C198.855 166.204 198.579 165.038 198.027 164.026C197.506 163.014 196.77 162.233 195.819 161.681C194.899 161.098 193.826 160.807 192.6 160.807ZM218.363 160.807C217.137 160.807 216.047 161.098 215.097 161.681C214.177 162.233 213.441 163.015 212.889 164.026C212.367 165.038 212.107 166.204 212.107 167.522C212.107 168.841 212.367 170.007 212.889 171.019C213.441 172.03 214.177 172.828 215.097 173.41C216.047 173.962 217.137 174.238 218.363 174.238C220.234 174.238 221.736 173.61 222.871 172.353C224.036 171.095 224.619 169.485 224.619 167.522C224.619 166.204 224.358 165.038 223.837 164.026C223.316 163.014 222.58 162.233 221.629 161.681C220.709 161.098 219.621 160.807 218.363 160.807ZM122.456 160.898C121.229 160.898 120.125 161.19 119.144 161.772C118.193 162.324 117.442 163.091 116.89 164.072C116.368 165.054 116.108 166.189 116.108 167.477C116.108 168.764 116.368 169.915 116.89 170.927C117.442 171.939 118.193 172.736 119.144 173.318C120.125 173.87 121.229 174.146 122.456 174.146C123.713 174.146 124.817 173.87 125.768 173.318C126.749 172.736 127.5 171.939 128.021 170.927C128.573 169.915 128.85 168.764 128.85 167.477C128.85 166.189 128.573 165.054 128.021 164.072C127.469 163.091 126.718 162.324 125.768 161.772C124.817 161.19 123.713 160.898 122.456 160.898ZM290.509 160.898C289.282 160.898 288.178 161.19 287.196 161.772C286.246 162.324 285.494 163.091 284.942 164.072C284.421 165.054 284.161 166.189 284.161 167.477C284.161 168.764 284.421 169.915 284.942 170.927C285.494 171.939 286.246 172.736 287.196 173.318C288.178 173.87 289.282 174.146 290.509 174.146C291.766 174.146 292.87 173.87 293.82 173.318C294.801 172.736 295.553 171.939 296.074 170.927C296.626 169.915 296.902 168.764 296.902 167.477C296.902 166.189 296.626 165.054 296.074 164.072C295.522 163.091 294.771 162.324 293.82 161.772C292.87 161.19 291.766 160.898 290.509 160.898ZM413.438 154.729C411.758 154.037 409.909 153.856 408.125 154.209C406.341 154.562 404.703 155.435 403.417 156.715C402.131 157.995 401.256 159.627 400.901 161.402C400.547 163.178 400.729 165.018 401.426 166.69C402.122 168.363 403.302 169.792 404.814 170.797C406.327 171.802 408.106 172.339 409.925 172.338C412.363 172.337 414.7 171.372 416.424 169.656C418.148 167.94 419.116 165.612 419.116 163.186C419.116 161.375 418.577 159.605 417.566 158.1C416.556 156.594 415.119 155.422 413.438 154.729Z' fill='%230A6DE6'/%3e %3c/svg%3e");
  background-size: 100px auto;
}
/* dark version of logo */
[data-md-color-scheme=slate] {
  .md-header__button.md-logo {
    background-image: url("data:image/svg+xml,%3csvg width='436' height='188' viewBox='0 0 436 188' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath d='M350.312 49.4014C363.904 49.4015 374.923 60.4201 374.923 74.0117V109.981H357.885V74.0117C357.885 69.8298 354.494 66.4396 350.312 66.4395C346.139 66.4395 342.753 69.8168 342.739 73.9873V109.981H325.701V74.0117C325.701 69.8299 322.311 66.4397 318.129 66.4395C313.947 66.4395 310.556 69.8297 310.556 74.0117V109.981H293.519V74.0127C293.519 60.4204 304.537 49.4024 318.129 49.4023C324.281 49.4023 329.907 51.6589 334.221 55.3906C338.535 51.659 344.16 49.4014 350.312 49.4014ZM403.43 94.5635L418.913 49.4014H435.503L412.83 109.981H393.809L371.136 49.4014H387.836L403.43 94.5635Z' fill='white'/%3e %3cpath d='M227.822 68.3672L239.462 49.1523H256.48L236.058 80.0068L257.249 109.982H239.901L226.065 90.4375L214.427 109.982H197.407L217.501 78.25L196.968 49.1523H214.317L227.822 68.3672ZM274.924 49.1523H288.539V62.2178H274.924V88.79C274.924 91.7176 275.51 93.7673 276.681 94.9385C277.852 96.11 279.829 96.6953 282.61 96.6953H288.649V109.982H280.524C273.717 109.982 268.482 108.335 264.822 105.041C261.236 101.747 259.442 96.2565 259.442 88.5703V34.1094H274.924V49.1523ZM111.777 49.4014C125.37 49.4014 136.388 60.42 136.389 74.0117V109.981H119.351V74.0117C119.35 69.8297 115.959 66.4395 111.777 66.4395C107.596 66.4397 104.205 69.8299 104.205 74.0117V109.981H87.167V74.0117C87.1672 60.4202 98.1858 49.4016 111.777 49.4014ZM172.358 49.4014C189.087 49.4016 202.648 62.9628 202.648 79.6914C202.648 80.9738 202.568 82.2372 202.414 83.4775H155.742C157.464 91.0653 164.249 96.7295 172.358 96.7295C177.404 96.7295 181.937 94.5365 185.058 91.0508H200.446C195.953 102.151 185.07 109.981 172.358 109.981C155.63 109.981 142.068 96.4202 142.068 79.6914C142.068 62.9627 155.63 49.4014 172.358 49.4014ZM172.358 62.6533C165.669 62.6534 159.879 66.5091 157.091 72.1191H187.625C184.837 66.5091 179.048 62.6533 172.358 62.6533Z' fill='white'/%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.97983 0C5.97983 0 26.8246 18.476 35.352 50.6904C41.2887 73.1181 40.0894 109.908 40.0894 109.908H26.8246C26.8246 109.908 5.5171 80.3655 1.24251 58.2705C-3.27517 34.9185 5.97983 0 5.97983 0ZM18.0882 28.6823C18.0882 28.6823 9.58462 36.3496 14.2871 58.4015C18.9895 80.4535 34.8417 105.371 34.8417 105.371C34.8417 105.371 34.0589 90.1941 31.2202 66.3494C28.3816 42.5052 18.0882 28.6823 18.0882 28.6823Z' fill='white'/%3e %3cpath d='M44.3533 60.639C42.4762 49.2027 38.1946 36.9519 38.1946 36.9519C38.1946 36.9519 41.7112 26.5296 47.1957 16.581C52.68 6.63241 58.5655 0 58.5655 0C58.5655 0 71.3569 27.0034 69.9353 53.5332C68.8742 73.3391 60.9483 94.9931 56.9985 104.697H45.9533C45.9533 104.697 46.7204 75.0619 44.3533 60.639Z' fill='white'/%3e %3cpath d='M193.428 156.022C195.421 156.023 197.215 156.543 198.81 157.586C200.435 158.598 201.708 159.979 202.628 161.727C203.578 163.444 204.054 165.391 204.054 167.568C204.054 169.715 203.578 171.662 202.628 173.41C201.708 175.127 200.435 176.492 198.81 177.504C197.215 178.516 195.421 179.022 193.428 179.022C191.741 179.022 190.239 178.669 188.92 177.964C188.047 177.477 187.296 176.875 186.665 176.16V187.763H181.605V156.482H186.665V158.94C187.305 158.209 188.072 157.604 188.966 157.126C190.284 156.39 191.772 156.022 193.428 156.022ZM122.456 156.022C124.633 156.022 126.596 156.528 128.344 157.54C130.092 158.552 131.472 159.933 132.484 161.681C133.527 163.398 134.048 165.33 134.048 167.477C134.048 169.623 133.527 171.57 132.484 173.318C131.472 175.066 130.092 176.461 128.344 177.504C126.596 178.516 124.633 179.022 122.456 179.022C120.309 179.022 118.362 178.516 116.614 177.504C114.866 176.461 113.47 175.066 112.428 173.318C111.416 171.57 110.91 169.623 110.91 167.477C110.91 165.33 111.416 163.398 112.428 161.681C113.47 159.963 114.866 158.598 116.614 157.586C118.362 156.543 120.31 156.022 122.456 156.022ZM217.535 156.022C219.222 156.022 220.709 156.39 221.997 157.126C222.891 157.604 223.657 158.209 224.297 158.94V156.482H229.357V178.562H224.297V176.138C223.676 176.863 222.925 177.472 222.043 177.964C220.724 178.669 219.222 179.022 217.535 179.022C215.542 179.022 213.733 178.516 212.107 177.504C210.513 176.492 209.24 175.127 208.289 173.41C207.369 171.662 206.909 169.715 206.909 167.568C206.909 165.391 207.369 163.444 208.289 161.727C209.24 159.979 210.513 158.598 212.107 157.586C213.733 156.543 215.542 156.022 217.535 156.022ZM290.509 156.022C292.686 156.022 294.649 156.528 296.396 157.54C298.144 158.552 299.525 159.933 300.537 161.681C301.58 163.398 302.101 165.33 302.101 167.477C302.101 169.623 301.58 171.57 300.537 173.318C299.525 175.066 298.144 176.461 296.396 177.504C294.649 178.516 292.686 179.022 290.509 179.022C288.362 179.022 286.415 178.516 284.667 177.504C282.919 176.461 281.523 175.066 280.48 173.318C279.469 171.57 278.963 169.623 278.963 167.477C278.963 165.33 279.469 163.398 280.48 161.681C281.523 159.963 282.919 158.598 284.667 157.586C286.415 156.543 288.362 156.022 290.509 156.022ZM409.925 147.776C411.958 147.776 413.971 148.174 415.85 148.948C417.728 149.722 419.436 150.857 420.874 152.288C422.312 153.719 423.452 155.418 424.23 157.288C425.009 159.158 425.409 161.162 425.409 163.186C425.41 166.234 424.502 169.214 422.801 171.749C421.1 174.284 418.682 176.26 415.853 177.427C413.023 178.594 409.909 178.9 406.905 178.306C403.901 177.711 401.142 176.243 398.977 174.088C396.811 171.933 395.335 169.187 394.737 166.197C394.14 163.208 394.446 160.108 395.618 157.292C396.79 154.476 398.775 152.068 401.321 150.374C403.868 148.68 406.862 147.776 409.925 147.776ZM379.515 149.339C382.125 148.063 385.042 147.544 387.935 147.842C390.827 148.14 393.576 149.243 395.868 151.023C394.474 152.639 393.371 154.483 392.609 156.473C391.297 155.257 389.656 154.45 387.889 154.151C386.121 153.853 384.305 154.075 382.663 154.791C381.021 155.507 379.625 156.685 378.647 158.181C377.67 159.676 377.153 161.425 377.161 163.209C377.169 164.993 377.702 166.736 378.692 168.223C379.683 169.71 381.09 170.876 382.738 171.577C384.387 172.278 386.206 172.485 387.971 172.17C389.735 171.855 391.369 171.033 392.67 169.806C393.456 171.789 394.579 173.623 395.989 175.228C393.715 177.031 390.976 178.16 388.087 178.486C385.198 178.813 382.275 178.323 379.652 177.073C377.03 175.823 374.815 173.864 373.259 171.419C371.703 168.974 370.87 166.143 370.855 163.249C370.841 160.355 371.645 157.516 373.177 155.056C374.708 152.596 376.905 150.615 379.515 149.339ZM98.6377 156.022C100.294 156.022 101.766 156.452 103.054 157.311C104.342 158.139 105.354 159.227 106.09 160.576C106.826 161.895 107.194 163.275 107.194 164.717V178.562H102.134V165.82C102.134 164.348 101.659 163.137 100.708 162.187C99.788 161.236 98.5921 160.761 97.1201 160.761C96.1388 160.761 95.2647 160.975 94.498 161.404C93.7314 161.834 93.1334 162.432 92.7041 163.198C92.2748 163.965 92.0596 164.839 92.0596 165.82V178.562H87V156.482H92.0596V158.979C92.6639 158.254 93.3838 157.651 94.2217 157.172C95.5403 156.405 97.0125 156.023 98.6377 156.022ZM145.719 170.431L150.781 156.482H153.725L158.786 170.432L163.982 156.482H169.227L160.349 178.562H157.405L152.253 165.404L147.101 178.562H144.157L135.279 156.482H140.522L145.719 170.431ZM245.782 156.022C246.886 156.022 247.883 156.222 248.772 156.62C249.662 157.019 250.49 157.663 251.257 158.553L247.944 161.956C247.546 161.527 247.101 161.22 246.61 161.036C246.12 160.852 245.552 160.761 244.908 160.761C243.498 160.761 242.333 161.206 241.413 162.095C240.493 162.984 240.032 164.379 240.032 166.28V178.562H234.973V156.482H240.032V158.78C240.063 158.735 240.093 158.689 240.125 158.645C241.382 156.897 243.268 156.023 245.782 156.022ZM262.213 156.482H267.503V161.082H262.213V178.562H257.153V161.082H251.863V156.482H257.153V147.282H262.213V156.482ZM317.594 144.982C318.943 144.982 320.093 145.212 321.044 145.672C321.995 146.132 322.884 146.792 323.712 147.65L320.445 150.916C320.077 150.548 319.679 150.257 319.25 150.042C318.821 149.827 318.268 149.721 317.594 149.721C316.367 149.721 315.416 150.058 314.741 150.732C314.097 151.376 313.775 152.312 313.775 153.538V156.482H320.445V161.082H313.775V178.562H308.716V161.082H303.426V156.482H308.716V153.584C308.716 151.897 309.083 150.41 309.819 149.122C310.586 147.834 311.629 146.822 312.947 146.086C314.297 145.35 315.846 144.982 317.594 144.982ZM423.119 174.155C423.392 174.119 423.67 174.138 423.936 174.212C424.108 174.261 424.273 174.332 424.426 174.424C424.579 174.515 424.718 174.628 424.841 174.757C424.968 174.887 425.077 175.033 425.165 175.191C425.256 175.355 425.326 175.53 425.374 175.711C425.474 176.095 425.474 176.498 425.374 176.882C425.326 177.063 425.256 177.238 425.165 177.401C425.078 177.562 424.968 177.709 424.841 177.84C424.716 177.968 424.577 178.081 424.426 178.176C424.273 178.268 424.108 178.34 423.936 178.389C423.578 178.492 423.198 178.492 422.841 178.389C422.667 178.341 422.501 178.268 422.347 178.176C422.195 178.08 422.054 177.967 421.928 177.84C421.802 177.708 421.694 177.561 421.607 177.401C421.516 177.238 421.446 177.063 421.398 176.882C421.348 176.69 421.322 176.493 421.323 176.295C421.323 176.098 421.348 175.901 421.398 175.711C421.446 175.53 421.516 175.355 421.607 175.191C421.695 175.034 421.803 174.888 421.928 174.757C422.053 174.629 422.193 174.516 422.347 174.424C422.583 174.283 422.846 174.192 423.119 174.155ZM360.141 154.839H345.143V161.24H357.998V167.638H345.143V178.301H338.712V148.441H360.141V154.839ZM368.572 178.301H362.145V148.441H368.572V178.301ZM423.374 174.491C423.143 174.491 422.914 174.538 422.702 174.629C422.495 174.718 422.307 174.848 422.151 175.011C421.998 175.179 421.877 175.375 421.796 175.588C421.703 175.812 421.656 176.052 421.657 176.295C421.657 176.537 421.704 176.777 421.796 177.002C421.877 177.216 421.997 177.413 422.151 177.582C422.308 177.745 422.495 177.876 422.702 177.968C422.914 178.059 423.143 178.105 423.374 178.105C423.605 178.105 423.833 178.059 424.045 177.968C424.25 177.875 424.437 177.744 424.593 177.582C424.747 177.413 424.867 177.216 424.948 177.002C425.04 176.777 425.087 176.537 425.087 176.295C425.088 176.052 425.041 175.812 424.948 175.588C424.867 175.375 424.747 175.179 424.593 175.011C424.438 174.849 424.251 174.719 424.045 174.629C423.833 174.538 423.605 174.491 423.374 174.491ZM423.353 175.021C423.483 175.019 423.614 175.035 423.74 175.067C423.846 175.094 423.946 175.141 424.034 175.205C424.116 175.265 424.18 175.344 424.223 175.436C424.267 175.538 424.289 175.649 424.287 175.761C424.289 175.874 424.257 175.985 424.194 176.079C424.122 176.176 424.026 176.254 423.917 176.306C423.978 176.331 424.034 176.365 424.084 176.408C424.127 176.447 424.165 176.492 424.194 176.542C424.222 176.596 424.242 176.653 424.255 176.712C424.266 176.775 424.272 176.839 424.272 176.903V177.268C424.278 177.323 424.292 177.378 424.312 177.43V177.476H423.893C423.881 177.445 423.873 177.413 423.868 177.381V176.906C423.877 176.795 423.842 176.685 423.771 176.599C423.679 176.524 423.56 176.489 423.441 176.5L422.962 176.514V177.49H422.55V175.021H423.353ZM422.962 176.143H423.413C423.473 176.142 423.533 176.134 423.591 176.118C423.643 176.103 423.694 176.08 423.74 176.051C423.782 176.023 423.816 175.985 423.839 175.941C423.867 175.896 423.881 175.842 423.878 175.789C423.878 175.72 423.865 175.652 423.839 175.588C423.822 175.54 423.791 175.497 423.75 175.467C423.703 175.433 423.648 175.411 423.591 175.403C423.509 175.388 423.425 175.381 423.342 175.383H422.951L422.962 176.143ZM192.6 160.807C191.373 160.807 190.284 161.098 189.333 161.681C188.383 162.233 187.646 163.015 187.125 164.026C186.604 165.038 186.344 166.204 186.344 167.522C186.344 168.841 186.604 170.007 187.125 171.019C187.646 172.03 188.383 172.828 189.333 173.41C190.284 173.962 191.373 174.238 192.6 174.238C193.826 174.238 194.899 173.962 195.819 173.41C196.77 172.828 197.506 172.03 198.027 171.019C198.579 170.007 198.855 168.841 198.855 167.522C198.855 166.204 198.579 165.038 198.027 164.026C197.506 163.014 196.77 162.233 195.819 161.681C194.899 161.098 193.826 160.807 192.6 160.807ZM218.363 160.807C217.137 160.807 216.047 161.098 215.097 161.681C214.177 162.233 213.441 163.015 212.889 164.026C212.367 165.038 212.107 166.204 212.107 167.522C212.107 168.841 212.367 170.007 212.889 171.019C213.441 172.03 214.177 172.828 215.097 173.41C216.047 173.962 217.137 174.238 218.363 174.238C220.234 174.238 221.736 173.61 222.871 172.353C224.036 171.095 224.619 169.485 224.619 167.522C224.619 166.204 224.358 165.038 223.837 164.026C223.316 163.014 222.58 162.233 221.629 161.681C220.709 161.098 219.621 160.807 218.363 160.807ZM122.456 160.898C121.229 160.898 120.125 161.19 119.144 161.772C118.193 162.324 117.442 163.091 116.89 164.072C116.368 165.054 116.108 166.189 116.108 167.477C116.108 168.764 116.368 169.915 116.89 170.927C117.442 171.939 118.193 172.736 119.144 173.318C120.125 173.87 121.229 174.146 122.456 174.146C123.713 174.146 124.817 173.87 125.768 173.318C126.749 172.736 127.5 171.939 128.021 170.927C128.573 169.915 128.85 168.764 128.85 167.477C128.85 166.189 128.573 165.054 128.021 164.072C127.469 163.091 126.718 162.324 125.768 161.772C124.817 161.19 123.713 160.898 122.456 160.898ZM290.509 160.898C289.282 160.898 288.178 161.19 287.196 161.772C286.246 162.324 285.494 163.091 284.942 164.072C284.421 165.054 284.161 166.189 284.161 167.477C284.161 168.764 284.421 169.915 284.942 170.927C285.494 171.939 286.246 172.736 287.196 173.318C288.178 173.87 289.282 174.146 290.509 174.146C291.766 174.146 292.87 173.87 293.82 173.318C294.801 172.736 295.553 171.939 296.074 170.927C296.626 169.915 296.902 168.764 296.902 167.477C296.902 166.189 296.626 165.054 296.074 164.072C295.522 163.091 294.771 162.324 293.82 161.772C292.87 161.19 291.766 160.898 290.509 160.898ZM413.438 154.729C411.758 154.037 409.909 153.856 408.125 154.209C406.341 154.562 404.703 155.435 403.417 156.715C402.131 157.995 401.256 159.627 400.901 161.402C400.547 163.178 400.729 165.018 401.426 166.69C402.122 168.363 403.302 169.792 404.814 170.797C406.327 171.802 408.106 172.339 409.925 172.338C412.363 172.337 414.7 171.372 416.424 169.656C418.148 167.94 419.116 165.612 419.116 163.186C419.116 161.375 418.577 159.605 417.566 158.1C416.556 156.594 415.119 155.422 413.438 154.729Z' fill='white'/%3e %3c/svg%3e");
  }
}

/*
  hide logo img tag (logo implemented with background image above for
  light/dark theme swap)
*/
.md-header__button.md-logo img {
  display: none;
}

/* hide site name inserted next to logo */
.md-header__title {
  display: none;
}

/* logo for mobile nav */
.md-sidebar.md-sidebar--primary .md-nav__title {
  margin: 8px;
  padding: 0;
  width: 120px;
  height: 52px;
  overflow: hidden;
  text-indent: -10000px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0;
  background-image: url("data:image/svg+xml,%3csvg width='436' height='188' viewBox='0 0 436 188' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath d='M350.312 49.4014C363.904 49.4015 374.923 60.4201 374.923 74.0117V109.981H357.885V74.0117C357.885 69.8298 354.494 66.4396 350.312 66.4395C346.139 66.4395 342.753 69.8168 342.739 73.9873V109.981H325.701V74.0117C325.701 69.8299 322.311 66.4397 318.129 66.4395C313.947 66.4395 310.556 69.8297 310.556 74.0117V109.981H293.519V74.0127C293.519 60.4204 304.537 49.4024 318.129 49.4023C324.281 49.4023 329.907 51.6589 334.221 55.3906C338.535 51.659 344.16 49.4014 350.312 49.4014ZM403.43 94.5635L418.913 49.4014H435.503L412.83 109.981H393.809L371.136 49.4014H387.836L403.43 94.5635Z' fill='%23008393'/%3e %3cpath d='M227.822 68.3672L239.462 49.1523H256.48L236.058 80.0068L257.249 109.982H239.901L226.065 90.4375L214.427 109.982H197.407L217.501 78.25L196.968 49.1523H214.317L227.822 68.3672ZM274.924 49.1523H288.539V62.2178H274.924V88.79C274.924 91.7176 275.51 93.7673 276.681 94.9385C277.852 96.11 279.829 96.6953 282.61 96.6953H288.649V109.982H280.524C273.717 109.982 268.482 108.335 264.822 105.041C261.236 101.747 259.442 96.2565 259.442 88.5703V34.1094H274.924V49.1523ZM111.777 49.4014C125.37 49.4014 136.388 60.42 136.389 74.0117V109.981H119.351V74.0117C119.35 69.8297 115.959 66.4395 111.777 66.4395C107.596 66.4397 104.205 69.8299 104.205 74.0117V109.981H87.167V74.0117C87.1672 60.4202 98.1858 49.4016 111.777 49.4014ZM172.358 49.4014C189.087 49.4016 202.648 62.9628 202.648 79.6914C202.648 80.9738 202.568 82.2372 202.414 83.4775H155.742C157.464 91.0653 164.249 96.7295 172.358 96.7295C177.404 96.7295 181.937 94.5365 185.058 91.0508H200.446C195.953 102.151 185.07 109.981 172.358 109.981C155.63 109.981 142.068 96.4202 142.068 79.6914C142.068 62.9627 155.63 49.4014 172.358 49.4014ZM172.358 62.6533C165.669 62.6534 159.879 66.5091 157.091 72.1191H187.625C184.837 66.5091 179.048 62.6533 172.358 62.6533Z' fill='%23003541'/%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.97983 0C5.97983 0 26.8246 18.476 35.352 50.6904C41.2887 73.1181 40.0894 109.908 40.0894 109.908H26.8246C26.8246 109.908 5.5171 80.3655 1.24251 58.2705C-3.27517 34.9185 5.97983 0 5.97983 0ZM18.0882 28.6823C18.0882 28.6823 9.58462 36.3496 14.2871 58.4015C18.9895 80.4535 34.8417 105.371 34.8417 105.371C34.8417 105.371 34.0589 90.1941 31.2202 66.3494C28.3816 42.5052 18.0882 28.6823 18.0882 28.6823Z' fill='%23003541'/%3e %3cpath d='M44.3533 60.639C42.4762 49.2027 38.1946 36.9519 38.1946 36.9519C38.1946 36.9519 41.7112 26.5296 47.1957 16.581C52.68 6.63241 58.5655 0 58.5655 0C58.5655 0 71.3569 27.0034 69.9353 53.5332C68.8742 73.3391 60.9483 94.9931 56.9985 104.697H45.9533C45.9533 104.697 46.7204 75.0619 44.3533 60.639Z' fill='%23008393'/%3e %3cpath d='M193.428 156.022C195.421 156.023 197.215 156.543 198.81 157.586C200.435 158.598 201.708 159.979 202.628 161.727C203.578 163.444 204.054 165.391 204.054 167.568C204.054 169.715 203.578 171.662 202.628 173.41C201.708 175.127 200.435 176.492 198.81 177.504C197.215 178.516 195.421 179.022 193.428 179.022C191.741 179.022 190.239 178.669 188.92 177.964C188.047 177.477 187.296 176.875 186.665 176.16V187.763H181.605V156.482H186.665V158.94C187.305 158.209 188.072 157.604 188.966 157.126C190.284 156.39 191.772 156.022 193.428 156.022ZM122.456 156.022C124.633 156.022 126.596 156.528 128.344 157.54C130.092 158.552 131.472 159.933 132.484 161.681C133.527 163.398 134.048 165.33 134.048 167.477C134.048 169.623 133.527 171.57 132.484 173.318C131.472 175.066 130.092 176.461 128.344 177.504C126.596 178.516 124.633 179.022 122.456 179.022C120.309 179.022 118.362 178.516 116.614 177.504C114.866 176.461 113.47 175.066 112.428 173.318C111.416 171.57 110.91 169.623 110.91 167.477C110.91 165.33 111.416 163.398 112.428 161.681C113.47 159.963 114.866 158.598 116.614 157.586C118.362 156.543 120.31 156.022 122.456 156.022ZM217.535 156.022C219.222 156.022 220.709 156.39 221.997 157.126C222.891 157.604 223.657 158.209 224.297 158.94V156.482H229.357V178.562H224.297V176.138C223.676 176.863 222.925 177.472 222.043 177.964C220.724 178.669 219.222 179.022 217.535 179.022C215.542 179.022 213.733 178.516 212.107 177.504C210.513 176.492 209.24 175.127 208.289 173.41C207.369 171.662 206.909 169.715 206.909 167.568C206.909 165.391 207.369 163.444 208.289 161.727C209.24 159.979 210.513 158.598 212.107 157.586C213.733 156.543 215.542 156.022 217.535 156.022ZM290.509 156.022C292.686 156.022 294.649 156.528 296.396 157.54C298.144 158.552 299.525 159.933 300.537 161.681C301.58 163.398 302.101 165.33 302.101 167.477C302.101 169.623 301.58 171.57 300.537 173.318C299.525 175.066 298.144 176.461 296.396 177.504C294.649 178.516 292.686 179.022 290.509 179.022C288.362 179.022 286.415 178.516 284.667 177.504C282.919 176.461 281.523 175.066 280.48 173.318C279.469 171.57 278.963 169.623 278.963 167.477C278.963 165.33 279.469 163.398 280.48 161.681C281.523 159.963 282.919 158.598 284.667 157.586C286.415 156.543 288.362 156.022 290.509 156.022ZM409.925 147.776C411.958 147.776 413.971 148.174 415.85 148.948C417.728 149.722 419.436 150.857 420.874 152.288C422.312 153.719 423.452 155.418 424.23 157.288C425.009 159.158 425.409 161.162 425.409 163.186C425.41 166.234 424.502 169.214 422.801 171.749C421.1 174.284 418.682 176.26 415.853 177.427C413.023 178.594 409.909 178.9 406.905 178.306C403.901 177.711 401.142 176.243 398.977 174.088C396.811 171.933 395.335 169.187 394.737 166.197C394.14 163.208 394.446 160.108 395.618 157.292C396.79 154.476 398.775 152.068 401.321 150.374C403.868 148.68 406.862 147.776 409.925 147.776ZM379.515 149.339C382.125 148.063 385.042 147.544 387.935 147.842C390.827 148.14 393.576 149.243 395.868 151.023C394.474 152.639 393.371 154.483 392.609 156.473C391.297 155.257 389.656 154.45 387.889 154.151C386.121 153.853 384.305 154.075 382.663 154.791C381.021 155.507 379.625 156.685 378.647 158.181C377.67 159.676 377.153 161.425 377.161 163.209C377.169 164.993 377.702 166.736 378.692 168.223C379.683 169.71 381.09 170.876 382.738 171.577C384.387 172.278 386.206 172.485 387.971 172.17C389.735 171.855 391.369 171.033 392.67 169.806C393.456 171.789 394.579 173.623 395.989 175.228C393.715 177.031 390.976 178.16 388.087 178.486C385.198 178.813 382.275 178.323 379.652 177.073C377.03 175.823 374.815 173.864 373.259 171.419C371.703 168.974 370.87 166.143 370.855 163.249C370.841 160.355 371.645 157.516 373.177 155.056C374.708 152.596 376.905 150.615 379.515 149.339ZM98.6377 156.022C100.294 156.022 101.766 156.452 103.054 157.311C104.342 158.139 105.354 159.227 106.09 160.576C106.826 161.895 107.194 163.275 107.194 164.717V178.562H102.134V165.82C102.134 164.348 101.659 163.137 100.708 162.187C99.788 161.236 98.5921 160.761 97.1201 160.761C96.1388 160.761 95.2647 160.975 94.498 161.404C93.7314 161.834 93.1334 162.432 92.7041 163.198C92.2748 163.965 92.0596 164.839 92.0596 165.82V178.562H87V156.482H92.0596V158.979C92.6639 158.254 93.3838 157.651 94.2217 157.172C95.5403 156.405 97.0125 156.023 98.6377 156.022ZM145.719 170.431L150.781 156.482H153.725L158.786 170.432L163.982 156.482H169.227L160.349 178.562H157.405L152.253 165.404L147.101 178.562H144.157L135.279 156.482H140.522L145.719 170.431ZM245.782 156.022C246.886 156.022 247.883 156.222 248.772 156.62C249.662 157.019 250.49 157.663 251.257 158.553L247.944 161.956C247.546 161.527 247.101 161.22 246.61 161.036C246.12 160.852 245.552 160.761 244.908 160.761C243.498 160.761 242.333 161.206 241.413 162.095C240.493 162.984 240.032 164.379 240.032 166.28V178.562H234.973V156.482H240.032V158.78C240.063 158.735 240.093 158.689 240.125 158.645C241.382 156.897 243.268 156.023 245.782 156.022ZM262.213 156.482H267.503V161.082H262.213V178.562H257.153V161.082H251.863V156.482H257.153V147.282H262.213V156.482ZM317.594 144.982C318.943 144.982 320.093 145.212 321.044 145.672C321.995 146.132 322.884 146.792 323.712 147.65L320.445 150.916C320.077 150.548 319.679 150.257 319.25 150.042C318.821 149.827 318.268 149.721 317.594 149.721C316.367 149.721 315.416 150.058 314.741 150.732C314.097 151.376 313.775 152.312 313.775 153.538V156.482H320.445V161.082H313.775V178.562H308.716V161.082H303.426V156.482H308.716V153.584C308.716 151.897 309.083 150.41 309.819 149.122C310.586 147.834 311.629 146.822 312.947 146.086C314.297 145.35 315.846 144.982 317.594 144.982ZM423.119 174.155C423.392 174.119 423.67 174.138 423.936 174.212C424.108 174.261 424.273 174.332 424.426 174.424C424.579 174.515 424.718 174.628 424.841 174.757C424.968 174.887 425.077 175.033 425.165 175.191C425.256 175.355 425.326 175.53 425.374 175.711C425.474 176.095 425.474 176.498 425.374 176.882C425.326 177.063 425.256 177.238 425.165 177.401C425.078 177.562 424.968 177.709 424.841 177.84C424.716 177.968 424.577 178.081 424.426 178.176C424.273 178.268 424.108 178.34 423.936 178.389C423.578 178.492 423.198 178.492 422.841 178.389C422.667 178.341 422.501 178.268 422.347 178.176C422.195 178.08 422.054 177.967 421.928 177.84C421.802 177.708 421.694 177.561 421.607 177.401C421.516 177.238 421.446 177.063 421.398 176.882C421.348 176.69 421.322 176.493 421.323 176.295C421.323 176.098 421.348 175.901 421.398 175.711C421.446 175.53 421.516 175.355 421.607 175.191C421.695 175.034 421.803 174.888 421.928 174.757C422.053 174.629 422.193 174.516 422.347 174.424C422.583 174.283 422.846 174.192 423.119 174.155ZM360.141 154.839H345.143V161.24H357.998V167.638H345.143V178.301H338.712V148.441H360.141V154.839ZM368.572 178.301H362.145V148.441H368.572V178.301ZM423.374 174.491C423.143 174.491 422.914 174.538 422.702 174.629C422.495 174.718 422.307 174.848 422.151 175.011C421.998 175.179 421.877 175.375 421.796 175.588C421.703 175.812 421.656 176.052 421.657 176.295C421.657 176.537 421.704 176.777 421.796 177.002C421.877 177.216 421.997 177.413 422.151 177.582C422.308 177.745 422.495 177.876 422.702 177.968C422.914 178.059 423.143 178.105 423.374 178.105C423.605 178.105 423.833 178.059 424.045 177.968C424.25 177.875 424.437 177.744 424.593 177.582C424.747 177.413 424.867 177.216 424.948 177.002C425.04 176.777 425.087 176.537 425.087 176.295C425.088 176.052 425.041 175.812 424.948 175.588C424.867 175.375 424.747 175.179 424.593 175.011C424.438 174.849 424.251 174.719 424.045 174.629C423.833 174.538 423.605 174.491 423.374 174.491ZM423.353 175.021C423.483 175.019 423.614 175.035 423.74 175.067C423.846 175.094 423.946 175.141 424.034 175.205C424.116 175.265 424.18 175.344 424.223 175.436C424.267 175.538 424.289 175.649 424.287 175.761C424.289 175.874 424.257 175.985 424.194 176.079C424.122 176.176 424.026 176.254 423.917 176.306C423.978 176.331 424.034 176.365 424.084 176.408C424.127 176.447 424.165 176.492 424.194 176.542C424.222 176.596 424.242 176.653 424.255 176.712C424.266 176.775 424.272 176.839 424.272 176.903V177.268C424.278 177.323 424.292 177.378 424.312 177.43V177.476H423.893C423.881 177.445 423.873 177.413 423.868 177.381V176.906C423.877 176.795 423.842 176.685 423.771 176.599C423.679 176.524 423.56 176.489 423.441 176.5L422.962 176.514V177.49H422.55V175.021H423.353ZM422.962 176.143H423.413C423.473 176.142 423.533 176.134 423.591 176.118C423.643 176.103 423.694 176.08 423.74 176.051C423.782 176.023 423.816 175.985 423.839 175.941C423.867 175.896 423.881 175.842 423.878 175.789C423.878 175.72 423.865 175.652 423.839 175.588C423.822 175.54 423.791 175.497 423.75 175.467C423.703 175.433 423.648 175.411 423.591 175.403C423.509 175.388 423.425 175.381 423.342 175.383H422.951L422.962 176.143ZM192.6 160.807C191.373 160.807 190.284 161.098 189.333 161.681C188.383 162.233 187.646 163.015 187.125 164.026C186.604 165.038 186.344 166.204 186.344 167.522C186.344 168.841 186.604 170.007 187.125 171.019C187.646 172.03 188.383 172.828 189.333 173.41C190.284 173.962 191.373 174.238 192.6 174.238C193.826 174.238 194.899 173.962 195.819 173.41C196.77 172.828 197.506 172.03 198.027 171.019C198.579 170.007 198.855 168.841 198.855 167.522C198.855 166.204 198.579 165.038 198.027 164.026C197.506 163.014 196.77 162.233 195.819 161.681C194.899 161.098 193.826 160.807 192.6 160.807ZM218.363 160.807C217.137 160.807 216.047 161.098 215.097 161.681C214.177 162.233 213.441 163.015 212.889 164.026C212.367 165.038 212.107 166.204 212.107 167.522C212.107 168.841 212.367 170.007 212.889 171.019C213.441 172.03 214.177 172.828 215.097 173.41C216.047 173.962 217.137 174.238 218.363 174.238C220.234 174.238 221.736 173.61 222.871 172.353C224.036 171.095 224.619 169.485 224.619 167.522C224.619 166.204 224.358 165.038 223.837 164.026C223.316 163.014 222.58 162.233 221.629 161.681C220.709 161.098 219.621 160.807 218.363 160.807ZM122.456 160.898C121.229 160.898 120.125 161.19 119.144 161.772C118.193 162.324 117.442 163.091 116.89 164.072C116.368 165.054 116.108 166.189 116.108 167.477C116.108 168.764 116.368 169.915 116.89 170.927C117.442 171.939 118.193 172.736 119.144 173.318C120.125 173.87 121.229 174.146 122.456 174.146C123.713 174.146 124.817 173.87 125.768 173.318C126.749 172.736 127.5 171.939 128.021 170.927C128.573 169.915 128.85 168.764 128.85 167.477C128.85 166.189 128.573 165.054 128.021 164.072C127.469 163.091 126.718 162.324 125.768 161.772C124.817 161.19 123.713 160.898 122.456 160.898ZM290.509 160.898C289.282 160.898 288.178 161.19 287.196 161.772C286.246 162.324 285.494 163.091 284.942 164.072C284.421 165.054 284.161 166.189 284.161 167.477C284.161 168.764 284.421 169.915 284.942 170.927C285.494 171.939 286.246 172.736 287.196 173.318C288.178 173.87 289.282 174.146 290.509 174.146C291.766 174.146 292.87 173.87 293.82 173.318C294.801 172.736 295.553 171.939 296.074 170.927C296.626 169.915 296.902 168.764 296.902 167.477C296.902 166.189 296.626 165.054 296.074 164.072C295.522 163.091 294.771 162.324 293.82 161.772C292.87 161.19 291.766 160.898 290.509 160.898ZM413.438 154.729C411.758 154.037 409.909 153.856 408.125 154.209C406.341 154.562 404.703 155.435 403.417 156.715C402.131 157.995 401.256 159.627 400.901 161.402C400.547 163.178 400.729 165.018 401.426 166.69C402.122 168.363 403.302 169.792 404.814 170.797C406.327 171.802 408.106 172.339 409.925 172.338C412.363 172.337 414.7 171.372 416.424 169.656C418.148 167.94 419.116 165.612 419.116 163.186C419.116 161.375 418.577 159.605 417.566 158.1C416.556 156.594 415.119 155.422 413.438 154.729Z' fill='%230A6DE6'/%3e %3c/svg%3e");
  background-size: 120px auto;
}
/* dark version of logo */
[data-md-color-scheme=slate] {
  .md-sidebar.md-sidebar--primary .md-nav__title {
    background-image: url("data:image/svg+xml,%3csvg width='436' height='188' viewBox='0 0 436 188' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath d='M350.312 49.4014C363.904 49.4015 374.923 60.4201 374.923 74.0117V109.981H357.885V74.0117C357.885 69.8298 354.494 66.4396 350.312 66.4395C346.139 66.4395 342.753 69.8168 342.739 73.9873V109.981H325.701V74.0117C325.701 69.8299 322.311 66.4397 318.129 66.4395C313.947 66.4395 310.556 69.8297 310.556 74.0117V109.981H293.519V74.0127C293.519 60.4204 304.537 49.4024 318.129 49.4023C324.281 49.4023 329.907 51.6589 334.221 55.3906C338.535 51.659 344.16 49.4014 350.312 49.4014ZM403.43 94.5635L418.913 49.4014H435.503L412.83 109.981H393.809L371.136 49.4014H387.836L403.43 94.5635Z' fill='white'/%3e %3cpath d='M227.822 68.3672L239.462 49.1523H256.48L236.058 80.0068L257.249 109.982H239.901L226.065 90.4375L214.427 109.982H197.407L217.501 78.25L196.968 49.1523H214.317L227.822 68.3672ZM274.924 49.1523H288.539V62.2178H274.924V88.79C274.924 91.7176 275.51 93.7673 276.681 94.9385C277.852 96.11 279.829 96.6953 282.61 96.6953H288.649V109.982H280.524C273.717 109.982 268.482 108.335 264.822 105.041C261.236 101.747 259.442 96.2565 259.442 88.5703V34.1094H274.924V49.1523ZM111.777 49.4014C125.37 49.4014 136.388 60.42 136.389 74.0117V109.981H119.351V74.0117C119.35 69.8297 115.959 66.4395 111.777 66.4395C107.596 66.4397 104.205 69.8299 104.205 74.0117V109.981H87.167V74.0117C87.1672 60.4202 98.1858 49.4016 111.777 49.4014ZM172.358 49.4014C189.087 49.4016 202.648 62.9628 202.648 79.6914C202.648 80.9738 202.568 82.2372 202.414 83.4775H155.742C157.464 91.0653 164.249 96.7295 172.358 96.7295C177.404 96.7295 181.937 94.5365 185.058 91.0508H200.446C195.953 102.151 185.07 109.981 172.358 109.981C155.63 109.981 142.068 96.4202 142.068 79.6914C142.068 62.9627 155.63 49.4014 172.358 49.4014ZM172.358 62.6533C165.669 62.6534 159.879 66.5091 157.091 72.1191H187.625C184.837 66.5091 179.048 62.6533 172.358 62.6533Z' fill='white'/%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.97983 0C5.97983 0 26.8246 18.476 35.352 50.6904C41.2887 73.1181 40.0894 109.908 40.0894 109.908H26.8246C26.8246 109.908 5.5171 80.3655 1.24251 58.2705C-3.27517 34.9185 5.97983 0 5.97983 0ZM18.0882 28.6823C18.0882 28.6823 9.58462 36.3496 14.2871 58.4015C18.9895 80.4535 34.8417 105.371 34.8417 105.371C34.8417 105.371 34.0589 90.1941 31.2202 66.3494C28.3816 42.5052 18.0882 28.6823 18.0882 28.6823Z' fill='white'/%3e %3cpath d='M44.3533 60.639C42.4762 49.2027 38.1946 36.9519 38.1946 36.9519C38.1946 36.9519 41.7112 26.5296 47.1957 16.581C52.68 6.63241 58.5655 0 58.5655 0C58.5655 0 71.3569 27.0034 69.9353 53.5332C68.8742 73.3391 60.9483 94.9931 56.9985 104.697H45.9533C45.9533 104.697 46.7204 75.0619 44.3533 60.639Z' fill='white'/%3e %3cpath d='M193.428 156.022C195.421 156.023 197.215 156.543 198.81 157.586C200.435 158.598 201.708 159.979 202.628 161.727C203.578 163.444 204.054 165.391 204.054 167.568C204.054 169.715 203.578 171.662 202.628 173.41C201.708 175.127 200.435 176.492 198.81 177.504C197.215 178.516 195.421 179.022 193.428 179.022C191.741 179.022 190.239 178.669 188.92 177.964C188.047 177.477 187.296 176.875 186.665 176.16V187.763H181.605V156.482H186.665V158.94C187.305 158.209 188.072 157.604 188.966 157.126C190.284 156.39 191.772 156.022 193.428 156.022ZM122.456 156.022C124.633 156.022 126.596 156.528 128.344 157.54C130.092 158.552 131.472 159.933 132.484 161.681C133.527 163.398 134.048 165.33 134.048 167.477C134.048 169.623 133.527 171.57 132.484 173.318C131.472 175.066 130.092 176.461 128.344 177.504C126.596 178.516 124.633 179.022 122.456 179.022C120.309 179.022 118.362 178.516 116.614 177.504C114.866 176.461 113.47 175.066 112.428 173.318C111.416 171.57 110.91 169.623 110.91 167.477C110.91 165.33 111.416 163.398 112.428 161.681C113.47 159.963 114.866 158.598 116.614 157.586C118.362 156.543 120.31 156.022 122.456 156.022ZM217.535 156.022C219.222 156.022 220.709 156.39 221.997 157.126C222.891 157.604 223.657 158.209 224.297 158.94V156.482H229.357V178.562H224.297V176.138C223.676 176.863 222.925 177.472 222.043 177.964C220.724 178.669 219.222 179.022 217.535 179.022C215.542 179.022 213.733 178.516 212.107 177.504C210.513 176.492 209.24 175.127 208.289 173.41C207.369 171.662 206.909 169.715 206.909 167.568C206.909 165.391 207.369 163.444 208.289 161.727C209.24 159.979 210.513 158.598 212.107 157.586C213.733 156.543 215.542 156.022 217.535 156.022ZM290.509 156.022C292.686 156.022 294.649 156.528 296.396 157.54C298.144 158.552 299.525 159.933 300.537 161.681C301.58 163.398 302.101 165.33 302.101 167.477C302.101 169.623 301.58 171.57 300.537 173.318C299.525 175.066 298.144 176.461 296.396 177.504C294.649 178.516 292.686 179.022 290.509 179.022C288.362 179.022 286.415 178.516 284.667 177.504C282.919 176.461 281.523 175.066 280.48 173.318C279.469 171.57 278.963 169.623 278.963 167.477C278.963 165.33 279.469 163.398 280.48 161.681C281.523 159.963 282.919 158.598 284.667 157.586C286.415 156.543 288.362 156.022 290.509 156.022ZM409.925 147.776C411.958 147.776 413.971 148.174 415.85 148.948C417.728 149.722 419.436 150.857 420.874 152.288C422.312 153.719 423.452 155.418 424.23 157.288C425.009 159.158 425.409 161.162 425.409 163.186C425.41 166.234 424.502 169.214 422.801 171.749C421.1 174.284 418.682 176.26 415.853 177.427C413.023 178.594 409.909 178.9 406.905 178.306C403.901 177.711 401.142 176.243 398.977 174.088C396.811 171.933 395.335 169.187 394.737 166.197C394.14 163.208 394.446 160.108 395.618 157.292C396.79 154.476 398.775 152.068 401.321 150.374C403.868 148.68 406.862 147.776 409.925 147.776ZM379.515 149.339C382.125 148.063 385.042 147.544 387.935 147.842C390.827 148.14 393.576 149.243 395.868 151.023C394.474 152.639 393.371 154.483 392.609 156.473C391.297 155.257 389.656 154.45 387.889 154.151C386.121 153.853 384.305 154.075 382.663 154.791C381.021 155.507 379.625 156.685 378.647 158.181C377.67 159.676 377.153 161.425 377.161 163.209C377.169 164.993 377.702 166.736 378.692 168.223C379.683 169.71 381.09 170.876 382.738 171.577C384.387 172.278 386.206 172.485 387.971 172.17C389.735 171.855 391.369 171.033 392.67 169.806C393.456 171.789 394.579 173.623 395.989 175.228C393.715 177.031 390.976 178.16 388.087 178.486C385.198 178.813 382.275 178.323 379.652 177.073C377.03 175.823 374.815 173.864 373.259 171.419C371.703 168.974 370.87 166.143 370.855 163.249C370.841 160.355 371.645 157.516 373.177 155.056C374.708 152.596 376.905 150.615 379.515 149.339ZM98.6377 156.022C100.294 156.022 101.766 156.452 103.054 157.311C104.342 158.139 105.354 159.227 106.09 160.576C106.826 161.895 107.194 163.275 107.194 164.717V178.562H102.134V165.82C102.134 164.348 101.659 163.137 100.708 162.187C99.788 161.236 98.5921 160.761 97.1201 160.761C96.1388 160.761 95.2647 160.975 94.498 161.404C93.7314 161.834 93.1334 162.432 92.7041 163.198C92.2748 163.965 92.0596 164.839 92.0596 165.82V178.562H87V156.482H92.0596V158.979C92.6639 158.254 93.3838 157.651 94.2217 157.172C95.5403 156.405 97.0125 156.023 98.6377 156.022ZM145.719 170.431L150.781 156.482H153.725L158.786 170.432L163.982 156.482H169.227L160.349 178.562H157.405L152.253 165.404L147.101 178.562H144.157L135.279 156.482H140.522L145.719 170.431ZM245.782 156.022C246.886 156.022 247.883 156.222 248.772 156.62C249.662 157.019 250.49 157.663 251.257 158.553L247.944 161.956C247.546 161.527 247.101 161.22 246.61 161.036C246.12 160.852 245.552 160.761 244.908 160.761C243.498 160.761 242.333 161.206 241.413 162.095C240.493 162.984 240.032 164.379 240.032 166.28V178.562H234.973V156.482H240.032V158.78C240.063 158.735 240.093 158.689 240.125 158.645C241.382 156.897 243.268 156.023 245.782 156.022ZM262.213 156.482H267.503V161.082H262.213V178.562H257.153V161.082H251.863V156.482H257.153V147.282H262.213V156.482ZM317.594 144.982C318.943 144.982 320.093 145.212 321.044 145.672C321.995 146.132 322.884 146.792 323.712 147.65L320.445 150.916C320.077 150.548 319.679 150.257 319.25 150.042C318.821 149.827 318.268 149.721 317.594 149.721C316.367 149.721 315.416 150.058 314.741 150.732C314.097 151.376 313.775 152.312 313.775 153.538V156.482H320.445V161.082H313.775V178.562H308.716V161.082H303.426V156.482H308.716V153.584C308.716 151.897 309.083 150.41 309.819 149.122C310.586 147.834 311.629 146.822 312.947 146.086C314.297 145.35 315.846 144.982 317.594 144.982ZM423.119 174.155C423.392 174.119 423.67 174.138 423.936 174.212C424.108 174.261 424.273 174.332 424.426 174.424C424.579 174.515 424.718 174.628 424.841 174.757C424.968 174.887 425.077 175.033 425.165 175.191C425.256 175.355 425.326 175.53 425.374 175.711C425.474 176.095 425.474 176.498 425.374 176.882C425.326 177.063 425.256 177.238 425.165 177.401C425.078 177.562 424.968 177.709 424.841 177.84C424.716 177.968 424.577 178.081 424.426 178.176C424.273 178.268 424.108 178.34 423.936 178.389C423.578 178.492 423.198 178.492 422.841 178.389C422.667 178.341 422.501 178.268 422.347 178.176C422.195 178.08 422.054 177.967 421.928 177.84C421.802 177.708 421.694 177.561 421.607 177.401C421.516 177.238 421.446 177.063 421.398 176.882C421.348 176.69 421.322 176.493 421.323 176.295C421.323 176.098 421.348 175.901 421.398 175.711C421.446 175.53 421.516 175.355 421.607 175.191C421.695 175.034 421.803 174.888 421.928 174.757C422.053 174.629 422.193 174.516 422.347 174.424C422.583 174.283 422.846 174.192 423.119 174.155ZM360.141 154.839H345.143V161.24H357.998V167.638H345.143V178.301H338.712V148.441H360.141V154.839ZM368.572 178.301H362.145V148.441H368.572V178.301ZM423.374 174.491C423.143 174.491 422.914 174.538 422.702 174.629C422.495 174.718 422.307 174.848 422.151 175.011C421.998 175.179 421.877 175.375 421.796 175.588C421.703 175.812 421.656 176.052 421.657 176.295C421.657 176.537 421.704 176.777 421.796 177.002C421.877 177.216 421.997 177.413 422.151 177.582C422.308 177.745 422.495 177.876 422.702 177.968C422.914 178.059 423.143 178.105 423.374 178.105C423.605 178.105 423.833 178.059 424.045 177.968C424.25 177.875 424.437 177.744 424.593 177.582C424.747 177.413 424.867 177.216 424.948 177.002C425.04 176.777 425.087 176.537 425.087 176.295C425.088 176.052 425.041 175.812 424.948 175.588C424.867 175.375 424.747 175.179 424.593 175.011C424.438 174.849 424.251 174.719 424.045 174.629C423.833 174.538 423.605 174.491 423.374 174.491ZM423.353 175.021C423.483 175.019 423.614 175.035 423.74 175.067C423.846 175.094 423.946 175.141 424.034 175.205C424.116 175.265 424.18 175.344 424.223 175.436C424.267 175.538 424.289 175.649 424.287 175.761C424.289 175.874 424.257 175.985 424.194 176.079C424.122 176.176 424.026 176.254 423.917 176.306C423.978 176.331 424.034 176.365 424.084 176.408C424.127 176.447 424.165 176.492 424.194 176.542C424.222 176.596 424.242 176.653 424.255 176.712C424.266 176.775 424.272 176.839 424.272 176.903V177.268C424.278 177.323 424.292 177.378 424.312 177.43V177.476H423.893C423.881 177.445 423.873 177.413 423.868 177.381V176.906C423.877 176.795 423.842 176.685 423.771 176.599C423.679 176.524 423.56 176.489 423.441 176.5L422.962 176.514V177.49H422.55V175.021H423.353ZM422.962 176.143H423.413C423.473 176.142 423.533 176.134 423.591 176.118C423.643 176.103 423.694 176.08 423.74 176.051C423.782 176.023 423.816 175.985 423.839 175.941C423.867 175.896 423.881 175.842 423.878 175.789C423.878 175.72 423.865 175.652 423.839 175.588C423.822 175.54 423.791 175.497 423.75 175.467C423.703 175.433 423.648 175.411 423.591 175.403C423.509 175.388 423.425 175.381 423.342 175.383H422.951L422.962 176.143ZM192.6 160.807C191.373 160.807 190.284 161.098 189.333 161.681C188.383 162.233 187.646 163.015 187.125 164.026C186.604 165.038 186.344 166.204 186.344 167.522C186.344 168.841 186.604 170.007 187.125 171.019C187.646 172.03 188.383 172.828 189.333 173.41C190.284 173.962 191.373 174.238 192.6 174.238C193.826 174.238 194.899 173.962 195.819 173.41C196.77 172.828 197.506 172.03 198.027 171.019C198.579 170.007 198.855 168.841 198.855 167.522C198.855 166.204 198.579 165.038 198.027 164.026C197.506 163.014 196.77 162.233 195.819 161.681C194.899 161.098 193.826 160.807 192.6 160.807ZM218.363 160.807C217.137 160.807 216.047 161.098 215.097 161.681C214.177 162.233 213.441 163.015 212.889 164.026C212.367 165.038 212.107 166.204 212.107 167.522C212.107 168.841 212.367 170.007 212.889 171.019C213.441 172.03 214.177 172.828 215.097 173.41C216.047 173.962 217.137 174.238 218.363 174.238C220.234 174.238 221.736 173.61 222.871 172.353C224.036 171.095 224.619 169.485 224.619 167.522C224.619 166.204 224.358 165.038 223.837 164.026C223.316 163.014 222.58 162.233 221.629 161.681C220.709 161.098 219.621 160.807 218.363 160.807ZM122.456 160.898C121.229 160.898 120.125 161.19 119.144 161.772C118.193 162.324 117.442 163.091 116.89 164.072C116.368 165.054 116.108 166.189 116.108 167.477C116.108 168.764 116.368 169.915 116.89 170.927C117.442 171.939 118.193 172.736 119.144 173.318C120.125 173.87 121.229 174.146 122.456 174.146C123.713 174.146 124.817 173.87 125.768 173.318C126.749 172.736 127.5 171.939 128.021 170.927C128.573 169.915 128.85 168.764 128.85 167.477C128.85 166.189 128.573 165.054 128.021 164.072C127.469 163.091 126.718 162.324 125.768 161.772C124.817 161.19 123.713 160.898 122.456 160.898ZM290.509 160.898C289.282 160.898 288.178 161.19 287.196 161.772C286.246 162.324 285.494 163.091 284.942 164.072C284.421 165.054 284.161 166.189 284.161 167.477C284.161 168.764 284.421 169.915 284.942 170.927C285.494 171.939 286.246 172.736 287.196 173.318C288.178 173.87 289.282 174.146 290.509 174.146C291.766 174.146 292.87 173.87 293.82 173.318C294.801 172.736 295.553 171.939 296.074 170.927C296.626 169.915 296.902 168.764 296.902 167.477C296.902 166.189 296.626 165.054 296.074 164.072C295.522 163.091 294.771 162.324 293.82 161.772C292.87 161.19 291.766 160.898 290.509 160.898ZM413.438 154.729C411.758 154.037 409.909 153.856 408.125 154.209C406.341 154.562 404.703 155.435 403.417 156.715C402.131 157.995 401.256 159.627 400.901 161.402C400.547 163.178 400.729 165.018 401.426 166.69C402.122 168.363 403.302 169.792 404.814 170.797C406.327 171.802 408.106 172.339 409.925 172.338C412.363 172.337 414.7 171.372 416.424 169.656C418.148 167.94 419.116 165.612 419.116 163.186C419.116 161.375 418.577 159.605 417.566 158.1C416.556 156.594 415.119 155.422 413.438 154.729Z' fill='white'/%3e %3c/svg%3e");
  }
}
.md-nav__title img {
  display: none !important;
}

/* light/dark switcher */
.md-header__option {
  margin-left: auto;
}
.md-header .md-icon svg {
  width: 16px;
  height: 16px;
}

/* search button */
.md-search__button::before {
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.md-search__button:after{
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}

/* search bar */
.md-search__button {
  border: 1px solid transparent;
  transition: none;
}
.md-search__button:focus, .md-search__button:hover {
  background-color: transparent;
  border-color: var(--md-default-fg-color--lighter);
  color: var(--md-default-fg-color);
  transition: none;
}

/* hide empty space where GitHub repository link usually is */
.md-header__source {
  display: none;
}

/* MAIN NAV */

.md-tabs__link {
  font-size: 14px;
  color: var(--md-default-fg-color) !important;
}
.md-tabs__link:visited,
.md-tabs__link:hover,
.md-tabs__link:focus,
.md-tabs__link:active,
.md-tabs__item--active .md-tabs__link {
  color: var(--md-default-fg-color) !important;
}

.md-tabs__item--active .md-tabs__link {
  font-weight: 500 !important;
}

.md-tabs__item {
  padding: 4px 20px 0 20px;
}
.md-tabs__item--active {
  border-bottom: 2.5px solid var(--md-accent-fg-color) !important;
  transition: none !important;
}
/* hide active border when header is hidden so it doesn't peek out from bottom */
.md-header[hidden] .md-tabs__item--active {
  border-color: transparent !important;
}

/* PRIMARY SIDEBAR NAV */

.md-nav--primary .md-nav__list {
  gap: 0;
}
.md-nav--primary .md-nav__item .md-nav__link {
  margin-right: 0;
  margin-left: 0;
  padding-left: 16px;
  font-size: 14px !important;
  color: var(--md-default-fg-color--light) !important;
  border-radius: 0;
}
.md-nav--primary .md-nav__item .md-nav__link--active {
  color: var(--md-default-fg-color) !important;
  background: var(--side-nav-active-bg-color) !important;
}
.md-nav--primary .md-nav__item .md-nav__link:hover {
  background-color: var(--md-default-bg-color--light) !important;
}
.md-nav--primary .md-nav__item .md-nav__link--active:hover {
  background-color: var(--md-primary-fg-color--light) !important;
}

/* nav block labels (text only) */
.md-nav__item--section>.md-nav__link:not(.md-nav__container) {
  font-size: 13px !important;
  color: var(--md-default-fg-color--lighter) !important;
}

/* adjust color of primary sidebar nav scrollbar */
.md-sidebar__scrollwrap,
.md-sidebar__scrollwrap:hover,
.md-sidebar__scrollwrap:focus-within {
  scrollbar-color: var(--md-default-fg-color--lightest) #0000;
}
.md-sidebar__scrollwrap::-webkit-scrollbar-thumb,
.md-sidebar__scrollwrap:hover::-webkit-scrollbar-thumb,
.md-sidebar__scrollwrap:hover::-webkit-scrollbar-thumb:hover {
  background-color: var(--md-default-fg-color--lightest);
}

/* MAIN CONTENT AREA */

.md-content {
  padding-top: 20px;
  margin-bottom: 0 !important;
}

/* page title area */

.md-content__inner {
  padding-top: 0 !important;
}
.md-content__inner:before {
  display: none !important;
}

.md-content__inner h1 {
  margin-bottom: 8px !important;
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
}
.md-content__inner h1 .headerlink {
  position: relative;
  top: -1px;
  font-size: 18px;
}

/* breadcrumb nav */
.md-path {
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 12px !important;
}
.md-path .md-path__link {
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  color: var(--md-default-fg-color--lighter) !important;
}
.md-path .md-path__link:hover {
  color: var(--md-default-fg-color--light) !important;
  text-decoration: underline;
}

/* ON-PAGE SECTION NAV */

.md-nav.md-nav--secondary .md-nav__item,
.md-nav.md-nav--secondary .md-nav__item a,
.md-nav.md-nav--secondary .md-nav__item a .md-typeset {
  font-size: 14px;
}

/* TOAST */

.md-dialog__inner {
  color: var(--color-white);
  font-size: .7rem;
}

/* TYPESET */

.md-typeset h2 {
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 500;
  line-height: 33px;
}
.md-typeset h3 {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.md-typeset table td {
  line-height: 1.4;
}

.md-typeset code {
  font-weight: 700;
}

/* manage inline code styling (exclude block code inside <pre>, e.g. fenced
   code blocks nested in list items, so they keep the normal code-block
   background/font-size instead of the inline-code treatment) */
.md-typeset p code,
.md-typeset h1 code,
.md-typeset h2 code,
.md-typeset h3 code,
.md-typeset h4 code,
.md-typeset h5 code,
.md-typeset h6 code,
.md-typeset li code:not(pre code),
.md-typeset td code:not(pre code),
.md-typeset th code:not(pre code),
.md-sidebar__inner li span code {
  font-weight: 600;
}
.md-typeset p code,
.md-typeset li code:not(pre code),
.md-typeset td code:not(pre code),
.md-typeset th code:not(pre code) {
  color: var(--md-default-fg-color);
  background-color: var(--md-default-bg-color--light);
}
.md-typeset p:not(table p) code,
.md-typeset li code:not(pre code) {
  padding: 2px 6px;
  font-size: 15.5px;
}
.md-typeset table code {
  padding: 2px 6px;
  font-size: 13.5px;
}

/* disable above for onpage, inline code style tabs */
.md-typeset label code,
.md-typeset label:hover code,
.md-typeset label code:hover {
  font-size: 14px;
  color: var(--md-default-fg-color);
  background-color: transparent;
}

/* active tab label style */
.tabbed-set > input:nth-child(1):checked ~ .tabbed-labels > label:nth-child(1),
.tabbed-set > input:nth-child(2):checked ~ .tabbed-labels > label:nth-child(2),
.tabbed-set > input:nth-child(3):checked ~ .tabbed-labels > label:nth-child(3),
.tabbed-set > input:nth-child(4):checked ~ .tabbed-labels > label:nth-child(4) {
  color: var(--md-accent-fg-color) !important;
  font-weight: 700 !important;
}

/* on-page image special handling */

@media (min-width: 600px) {
  .integration-on-page-image {
    margin: 0 40px 56px 64px;
    float: right;
    box-shadow:
      0 0 0 40px var(--md-default-bg-color),
      0 0 0 42px var(--md-default-bg-color--light)
    ;
  }
}

/* FOOTER */

.md-footer__title {
  margin-bottom: 12px;
}
.md-footer__title .md-ellipsis {
  font-family: var(--font-headline);
  font-size: 24px;
}

.md-copyright__highlight {
  font-size: 14px;
  color: var(--md-default-fg-color--lighter);
}

.custom-footer-link {
  margin: auto 0;
  font-size: 12px;
  line-height: 16px;
  text-decoration: none !important;
}
.custom-footer-link:hover,
.custom-footer-link:focus,
.custom-footer-link:active {
  text-decoration: underline !important;
}

/* 404 PAGE */

.error-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  margin: 15vh auto;
  padding: 0 16px;
  text-align: center;
}

.error-404__code {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: var(--md-primary-fg-color--light);
}

.error-404__title {
  margin: 8px 0 0 !important;
  font-size: 28px !important;
}

.error-404__message {
  max-width: 360px;
  margin: 12px 0 0 !important;
  color: var(--md-default-fg-color--lighter);
  font-size: 16px;
  line-height: 25px;
}

.error-404__actions {
  margin-top: 28px;
}

.error-404__actions .md-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.error-404__actions .md-button svg {
  width: 16px;
  height: 16px;
  fill: currentcolor;
}

/* beat the global `a { color: ... !important }` on-page link rule above */
.error-404__actions .md-button--primary,
.error-404__actions .md-button--primary:hover,
.error-404__actions .md-button--primary:focus,
.error-404__actions .md-button--primary:active {
  color: var(--md-primary-bg-color) !important;
}

/* HOMEPAGE */

.homepage-section {
  margin-right: 56px !important;
  margin-left: 40px !important;
}

.homepage-intro {
  margin-top: 32px;
}
.homepage-intro h5 {
  margin: 0;
  letter-spacing: 0.02em;
  color: var(--md-accent-fg-color);
}
.homepage-intro h1 {
  margin-top: 4px !important;
  margin-bottom: 0 !important;
  font-size: 32px;
}
.homepage-intro p {
  max-width: 640px;
  margin-top: 0px !important;
  font-size: 16px;
  line-height: 25px;
}

.homepage-new-callout {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding: 16px 20px 20px 20px !important;
  border-radius: 12px;
  background-color: #342f66ff; /* --fds-purple-100 */
}
.homepage-new-callout p {
  margin: 0 !important;
  color: #cdc7ffff; /* --fds-purple-40 */
}
.homepage-new-callout p:first-child {
  font-size: 16px;
  line-height: 25px;
}
.homepage-new-callout p:nth-child(2) {
  margin-top: 4px !important;
  font-size: 14px;
  line-height: 23px;
}
.homepage-new-callout a {
  display: block;
  width: 128px;
  flex-shrink: 0;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 7px;
  background-color: rgba(0,0,0,0.4);
}

.homepage-section-lead h6 {
  margin-top: 32px;
  font-size: 15px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--md-default-bg-color--light);
}

.homepage-section.cards {
  gap: 12px;
}
.homepage-section.cards ul li {
  border: 0 !important;
  border-radius: 12px !important;
  background-color: var(--md-default-bg-color--light);
}
.homepage-section.cards ul li hr {
  display: none;
}
.homepage-section.cards ul li p:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.homepage-section.cards ul li strong {
  font-size: 16px;
  font-weight: 600 !important;
}
.homepage-section.cards ul li p {
  font-size: 14px;
  line-height: 22px;
}
.homepage-section.cards ul li a {
  text-decoration: none;
}
