

/* ============== vars.css ============== */

/* Some of the colors are nabbed from Infima (Docusaurus). */

html[data-theme='dark'] {
    --color-gray-0: #fff;
    --color-gray-100: #f5f6f7;
    --color-gray-200: #ebedf0;
    --color-gray-300: #dadde1;
    --color-gray-400: #ccd0d5;
    --color-gray-500: #bec3c9;
    --color-gray-600: #8d949e;
    --color-gray-700: #4e535a;
    --color-gray-800: #34383d;
    --color-gray-900: #1c1e21;
    --color-gray-1000: #000;

    --color-primary: #33b5e5;
    --color-primary-dark: #2792b9;
    --color-primary-darker: #1a627c;
    --color-primary-darkest: #13475b;
    --color-primary-light: #6dc9eb;
    --color-primary-lighter: #ace9ff;
    --color-primary-lightest: #c9f1ff;
    --color-primary-contrast-background: #ebf2fc;
    --color-primary-contrast-foreground: #102445;

    --alert-success-background-color: var(--color-success-darkest);
    --alert-success-border-color: var(--color-success);
    --alert-success-a-color: var(--color-success);
    --alert-info-background-color: var(--color-primary-darkest);
    --alert-info-border-color: var(--color-primary);
    --alert-warning-background-color: var(--color-warning-darkest);
    --alert-warning-border-color: var(--color-warning);
    --alert-error-background-color: var(--color-danger-darkest);
    --alert-error-border-color: var(--color-danger);
    --alert-color: var(--gray-1000);

    --hero-background-color: #193858;
    --hero-color: #fff;
    --hero-light: #e9f1f1;

    --background-surface-color: var(--color-gray-800);
    --shadow-color: var(--color-gray-1000);
    --dotnav-color: var(--color-gray-300);
    --default-border-color: var(--color-gray-700);
}

html[data-theme='light'] {
    --color-gray-1000: #fff;
    --color-gray-900: #f5f6f7;
    --color-gray-800: #ebedf0;
    --color-gray-700: #dadde1;
    --color-gray-600: #ccd0d5;
    --color-gray-500: #bec3c9;
    --color-gray-400: #8d949e;
    --color-gray-300: #4e535a;
    --color-gray-200: #34383d;
    --color-gray-100: #1c1e21;
    --color-gray-0: #000;

    --color-primary: #185cc2;
    --color-primary-dark: #134897;
    --color-primary-darker: #0d3167;
    --color-primary-darkest: #09234a;
    --color-primary-light: #4a8ae0;
    --color-primary-lighter: #8cb4e8;
    --color-primary-lightest: #b0ccf2;
    --color-primary-contrast-background: #eef3fc;
    --color-primary-contrast-foreground: #0a1c38;

    --alert-success-background-color: var(--color-success-lightest);
    --alert-success-border-color: var(--color-success);
    --alert-success-a-color: var(--color-success-darkest);
    --alert-info-background-color: var(--color-primary-lightest);
    --alert-info-border-color: var(--color-primary);
    --alert-warning-background-color: var(--color-warning-lightest);
    --alert-warning-border-color: var(--color-warning);
    --alert-error-background-color: var(--color-danger-lightest);
    --alert-error-border-color: var(--color-danger);
    --alert-color: var(--gray-1000);

    --hero-background-color: #d0def2;
    --hero-color: #000;
    --hero-light: #52719c;

    --background-surface-color: var(--color-gray-700);
    --shadow-color: var(--color-gray-300);
    --dotnav-color: var(--color-gray-400);
    --default-border-color: var(--color-gray-600);
}

:root {
    /* Shared colors - alert / notification boxes */
/*
    --color-secondary: #ebedf0;
    --color-secondary-dark: #d4d5d8;
    --color-secondary-darker: #c8c9cc;
    --color-secondary-darkest: #a4a6a8;
    --color-secondary-light: #eef0f2;
    --color-secondary-lighter: #f1f2f5;
    --color-secondary-lightest: #f5f6f8;
    --color-secondary-contrast-background: #fdfdfe;
    --color-secondary-contrast-foreground: #474748;
*/

    --color-success: #00a400;
    --color-success-dark: #009400;
    --color-success-darker: #008b00;
    --color-success-darkest: #015f01;
    --color-success-light: #26b226;
    --color-success-lighter: #4dbf4d;
    --color-success-lightest: #80d280;
    --color-success-contrast-background: #e6f6e6;
    --color-success-contrast-foreground: #003100;

/*
    --color-info: #54c7ec;
    --color-info-dark: #4cb3d4;
    --color-info-darker: #47a9c9;
    --color-info-darkest: #3b8ba5;
    --color-info-light: #6ecfef;
    --color-info-lighter: #87d8f2;
    --color-info-lightest: #aae3f6;
    --color-info-contrast-background: #eef9fd;
    --color-info-contrast-foreground: #193c47;
*/

    --color-warning: #b78600;
    --color-warning-dark: #dba100;
    --color-warning-darker: #b98700;
    --color-warning-darkest: #694d00;
    --color-warning-light: #ffc426;
    --color-warning-lighter: #ffcf4d;
    --color-warning-lightest: #ffdd80;
    --color-warning-contrast-background: #fff8e6;
    --color-warning-contrast-foreground: #4d3800;

    --color-danger: #fa383e;
    --color-danger-dark: #e13238;
    --color-danger-darker: #d53035;
    --color-danger-darkest: #8c1f22;
    --color-danger-light: #fb565b;
    --color-danger-lighter: #fb7478;
    --color-danger-lightest: #fd9c9f;
    --color-danger-contrast-background: #ffebec;
    --color-danger-contrast-foreground: #4b1113;

    /* Shared colors - buttons */
    --gold-background-color: #b48700;
    --gold-background-color-hover: #efb400;
    --gold-border-color: #ffc800;
    --gold-border-color-hover: #fff5d0;
    --gold-color: #000;

    --button-background-color-active: #555;
    --button-color-active: #fff;

    /* Derived colors */
    --color-contents-background: var(--color-gray-900);
    --color-card-background: var(--background-surface-color);

    --color-text: var(--color-gray-100);
    --color-text-inverse: var(--color-gray-900);

    --color-a: var(--color-primary);
    --color-a-hover: var(--color-a);

    --color-table-bg: var(--color-gray-800);
    --color-table-border: var(--color-gray-600);

    --color-header-footer-a: var(--color-gray-0);
    --color-header-footer-background: var(--color-gray-1000);

    --button-background-color: var(--color-primary);
    --button-background-color-hover: var(--color-primary-light);
    --button-border-color: var(--button-background-color);
    --button-color: var(--color-text-inverse);

    /* Other UI properties */
    --button-border-width: 2px;
    --button-font-weight: bold;
    --button-padding-horizontal: 1rem;
    --button-padding-vertical: .8rem;
    --button-transition-duration: var(--transition-fast);
    --button-border-radius: 5px;
    --button-group-spacing: 2px;

    --default-border-radius: 5px;
    --card-border-radius: 15px;

    --doc-sidebar-width: 250px;
}

/* ============== reset.css ============== */

/* RESET from https://www.joshwcomeau.com/css/custom-css-reset/ */

:root {
  /*Breaks fast-spring popup background*/
  /*color-scheme: dark;*/
}

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
    2. Remove default margin
  */
* {
  margin: 0;
}

/*
    Typographic tweaks!
    3. Add accessible line-height
    4. Improve text rendering
  */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
    5. Improve media defaults
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}
  */

/*
    6. Remove built-in form typography styles
  */
input,
button,
textarea,
select {
  font: inherit;
}

/*
    7. Avoid text overflows
  */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
    8. Create a root stacking context
  */
#root,
#__next {
  isolation: isolate;
}

/* ============== grid.css ============== */

/**
*** SIMPLE GRID
*** (C) ZACH COLE 2016
**/

/* ==== RESPONSIVE GRID SYSTEM ====

With the addition of a special doc-container for docs with sidebars.

*/

.container {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
}

.row {
    position: relative;
    width: 100%;
}

.row [class^="col"] {
    float: left;
    margin: 0.5em 1%;
    min-height: 1em;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    width: 96%;
}

.col-1-sm {
    width: 4.33%;
}

.col-2-sm {
    width: 12.66%;
}

.col-3-sm {
    width: 21%;
}

.col-4-sm {
    width: 29.33%;
}

.col-5-sm {
    width: 37.66%;
}

.col-6-sm {
    width: 46%;
}

.col-7-sm {
    width: 54.33%;
}

.col-8-sm {
    width: 62.66%;
}

.col-9-sm {
    width: 71%;
}

.col-10-sm {
    width: 79.33%;
}

.col-11-sm {
    width: 87.66%;
}

.col-12-sm {
    width: 96%;
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

.hidden-sm {
    display: none;
}

/* The squeezy phase, before we hit max width */
@media only screen and (min-width: 45em) {

    /* 720px */
    .col-1 {
        width: 4.33%;
    }

    .col-2 {
        width: 12.66%;
    }

    .col-3 {
        width: 21%;
    }

    .col-4 {
        width: 30.8%;
    }

    .col-5 {
        width: 37.66%;
    }

    .col-6 {
        width: 46%;
    }

    .col-7 {
        width: 54.33%;
    }

    .col-8 {
        width: 62.66%;
    }

    .col-9 {
        width: 71%;
    }

    .col-10 {
        width: 79.33%;
    }

    .col-11 {
        width: 87.66%;
    }

    .col-12 {
        width: 96%;
    }

    .hidden-sm {
        display: block;
    }
}

/* Max-width phase */
@media only screen and (min-width: 60em) {

    /* 960px */
    .container {
        width: 95%;
        max-width: 60em;
    }
}

.doc-container {
    height: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: table;
}

.doc-sidebar {
    display: none;
    z-index: 100;
    overflow-x: hidden;
    min-width: var(--doc-sidebar-width);
    height: 100%;
    border-right: 2px solid var(--background-surface-color);
    padding-bottom: 12px;
    margin-right: 4px;
}

.doc-contents {
    width: 95%;
    padding-left: 12px;
    padding-right: 8px;
    display: table-cell;
}

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

.doc-contents pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* The squeezy phase, before we hit max width */
@media only screen and (min-width: 45em) {
    .doc-container {
        width: 100%;
    }

    .doc-sidebar {
        display: table-cell;
    }

    .doc-contents {
        margin-left: var(--doc-sidebar-width);
    }
}


/* Max-width phase */
@media only screen and (min-width: 60em) {
    .doc-container {
        width: 100%;
        max-width: 60em;
    }

    .doc-sidebar {
        display: table-cell;
    }

    .doc-contents {
        margin-left: var(--doc-sidebar-width);
    }
}

/* ============== style.css ============== */

/*
@font-face {
  font-family: 'DroidSans';
  src: url('/static/fonts/droid_sans.woff2') format('woff2');
}

@font-face {
  font-family: 'DroidSans';
  src: url('/static/fonts/droid_sans_bold.woff2') format('woff2');
  font-weight: bold;
}
  */

/* Basic elements */
html,
body {
  font-family: DroidSans, sans-serif;
  padding: 0;
  margin: 0;
  height: 100%;
  box-sizing: border-box;
  color: var(--color-text);
  background-color: var(--color-contents-background);
}

p,
li,
pre {
  line-height: 1.6;
  font-size: 12pt;
}

p,
pre {
  padding-bottom: 12px;
}

li {
  padding-bottom: 2px;
}

h1,
h2,
h3,
h4 {
  padding: 12px 0 9px 0;
}

h1 { font-size: 23pt; }
h2 { font-size: 18pt; }
h3 { font-size: 16pt; }
h4 { font-size: 14pt; }

.small-headers h1 { font-size: 18pt; }
.small-headers h2 { font-size: 16pt; }
.small-headers h3 { font-size: 14pt; }
.small-headers h4 { font-size: 13pt; }

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

a:hover {
  text-decoration: underline;
  color: var(--color-a-hover);
}

/* Page wrapping classes */
.page-wrapper {
  box-sizing: border-box;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.contents {
  flex-grow: 1;
  background-color: var(--color-contents-background);
  color: var(--color-text)
}

/* Utility classes */
.center-vertical {
  /* Utility for images followed by text. */
  display: flex;
  flex-direction: row;
  align-items: center;
}

.sp-left {
  margin-left:  0.5ch;
}

.sp-right {
  margin-right: 0.5ch;
}

.float-left {
    float: left;
    margin-right: 8px;
}

.float-right {
    float: right;
    margin-left: 8px;
}

.clean-list {
  padding-inline-start: 0px;
  list-style: none;
}

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

/* Footer navigation */
footer a {
  color: var(--color-text);
}

footer a:hover {
  color: var(--color-a-hover);
}

footer h2 {
  text-transform: uppercase;
  font-size: 12pt;
  padding-bottom: 12px;
}

.footer-bottom-text {
  padding: 10px;
}

.footer-bottom-text a {
  color: var(--color-a);
}

footer {
  flex-grow: 0;
  flex-shrink: 0;
  background-color: var(--color-header-footer-background);
  color: var(--color-text)
}

/* ============== top-nav.css ============== */

/* Top navigation bar container */
.top-nav-logo {
    font-weight: bold;
}

.top-nav-logo img {
    margin-left: 0;
    margin-right: 1ch;
}

.top-nav {
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-header-footer-background);
    color: var(--color-text);
    height: 60px;
    padding: 1em;
    border-style: none none solid;
    border-color: var(--color-primary);
    border-width: 0 0 3px;
    font-size: 12pt;
}

.top-nav a {
    color: var(--color-header-footer-a);
}

.top-nav a:hover {
    color: var(--color-a-hover);
}

.top-nav button {
    color: var(--color-header-footer-a);
    background: transparent;
    border: none;
    cursor: pointer;
}

.top-nav button:hover {
    color: var(--color-a-hover);
    text-decoration: underline;
}

/* Menu items of top navigation bar */
.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu>li {
    margin: 0 0.45rem;
    overflow: hidden;
    padding-bottom: 0px;
    font-size: 12pt;
}

.menu>li .selected {
    border-bottom: 3px solid var(--color-primary);
}

.menu>li.external {
    /* Hide external list items */
    display: none;
}

@media (min-width: 850px) {
    /* Only show external list items if screen is wide */
    .menu>li.external {
        display: flex;
    }
}

/* Hamburger menu toggle button */
.menu-button {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    /* hackety hack */
    margin-left: -12px;
}

/* Draw the hamburger icon using CSS and pseudo-elements */
.menu-icon,
.menu-icon::before,
.menu-icon::after {
    display: block;
    background-color: var(--color-header-footer-a);
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
    pointer-events: none;
}

.menu-icon::before {
    content: '';
    margin-top: -8px;
}

.menu-icon::after {
    content: '';
    margin-top: 8px;
}

.menu-button:hover .menu-icon,
.menu-button:hover .menu-icon::before,
.menu-button:hover .menu-icon::after {
   background-color: var(--color-a-hover);
}

/* Login item of top navigation bar */
#loginCorner i.icon-ui {
    font-size: 24px;
}

/* Narrow screens */
@media (max-width: 699px) {
    /* Hide the login corner */
    #loginCorner {
        display: none;
    }

    /* Show the hamburger button */
    .menu-button {
        display: flex;
    }

    /* Hide the menu items */
    .menu {
        display: none;
    }
}

/* ============== ui.css ============== */

/* Special behaviour */
.logged-in-only {
    display: none;
}

.logged-in-only-inline {
    display: none;
}

.gold-only {
    display: none;
}

.gold-only-inline {
    display: none;
}

/* Links and buttons */
.button-block {
    display: block;
    width: 100%;
}

.download-button {
    display: block;
    background-color: var(--button-background-color);
    border: var(--button-border-width) solid var(--button-border-color);
    border-radius: var(--button-border-radius);
    color: var(--button-color);
    cursor: pointer;
    font-size: calc(.875rem*var(--button-size-multiplier));
    font-weight: var(--button-font-weight);
    line-height: 1.5;
    padding: var(--button-padding-vertical) var(--button-padding-horizontal);
    margin: 8px 0px;
    text-align: center;
    -webkit-user-select: none;
    user-select: none;
    overflow: hidden;
}

.download-button .button-contents {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.button-contents img {
    margin-right: 1ch;
}

.mini-button {
    background-color: var(--button-background-color);
    border: var(--button-border-width) solid var(--button-border-color);
    border-radius: var(--button-border-radius);
    color: var(--button-color);
    font-weight: var(--button-font-weight);
    padding: 4px;
    margin: 0 0.5ch;
    -webkit-user-select: none;
    user-select: none;
}

.download-button.button-gold,
.mini-button.button-gold {
    background-color: var(--gold-background-color);
    border-color: var(--gold-border-color);
    color: var(--gold-color);
}

.download-button:hover,
.mini-button:hover {
    color: var(--button-color);
    background-color: var(--button-background-color-hover);
    text-decoration: none;
}

.download-button.button-gold:hover,
.mini-button.button-gold:hover {
    background-color: var(--gold-background-color-hover);
    border-color: var(--gold-border-color-hover);
    color: var(--gold-color);
}

/* Alert / notification boxes */
.alert {
    display: block;
    box-shadow: 0 3px 5px var(--shadow-color);
    border-radius: var(--default-border-radius);
    border-left-style: solid;
    border-width: 5px;
    padding: 14px;
    margin: 12px 0px;
    background-color: #00000040;
    color: var(--alert-color);
}

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

.alert.alert-error {
    background-color: var(--alert-error-background-color);
    border-color: var(--alert-error-border-color);
}

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

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

.alert.alert-gold {
    background-color: var(--gold-background-color-hover);
    border-color: var(--gold-border-color);
    color: var(--gold-color);
}

.alert.alert-hidden {
    display: none;
}

.alert a {
    font-weight: var(--button-font-weight);
}

/* Collapsible button */
summary {
    cursor: pointer;
}

.collapsible {
    background-color: var(--button-background-color);
    color: var(--button-color);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    -webkit-user-select: none;
    user-select: none;
}

.collapsible:hover {
    background-color: var(--button-background-color-hover);
}

details[open] .collapsible {
    color: var(--button-color-active);
    background-color: var(--button-background-color-active);
}

/* Formatted table */
.nice-table {
    width: 100%;
    display: table;
    border-spacing: 0;
    margin-bottom: 1rem;
    background-color: var(--color-table-bg);
    padding: 0;
}

.nice-table thead {
    background-color: var(--color-table-bg);
    text-align: left;
}

.nice-table td,
.nice-table th {
    background-color: var(--color-table-bg);
    padding: 0.5rem 0.4rem;
    border-bottom: 3px solid var(--color-table-border);
}

.nice-table th {
    font-weight: bold;
    border-bottom: 4px solid var(--color-table-border);
}

/* Product cards */
.card {
    width: 100%;
    height: auto;
    margin: 0.2rem 0;
    padding: 0;
    background-color: var(--color-card-background);
    border-radius: var(--card-border-radius);
    padding: 1rem;
    box-shadow: 0 3px 5px var(--shadow-color);
}

.card .card-title {
    margin: 0;
    padding-bottom: 0.7rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.card .card-title h2 {
    font-size: 16pt;
    margin: 2px 0px 0px 10px;
    padding: 0;
}

.card .card-title h2.no-icon {
    margin: 2px 0px 0px 0px;
    padding: 0;
}

.card .card-contents h3 {
    font-size: 14pt;
    margin: 0;
    padding: 0;
}

.card .card-contents {
    margin: 0;
    padding-bottom: 0;
}

.card .card-section {
    border-bottom: 2px solid var(--color-table-border);
    padding: 1rem;
}

/* Forms */
form input {
    width: 100%;
    margin: 3px 0px 13px 0px;
    height: 35px;
    border: solid 2px var(--default-border-color);
    background-color: var(--color-contents-background);
    color: var(--color-text);
}

form label {
    font-size: 12pt;
    font-weight: bold;
}

form textarea {
    width: 100%;
    border: solid 2px var(--default-border-color);
    background-color: var(--color-contents-background);
    color: var(--color-text);
}

form button {
    display: block;
    background-color: var(--button-background-color);
    border: var(--button-border-width) solid var(--button-border-color);
    border-radius: var(--button-border-radius);
    color: var(--button-color);
    cursor: pointer;
    font-size: calc(.875rem*var(--button-size-multiplier));
    font-weight: var(--button-font-weight);
    line-height: 1.5;
    width: 100%;
    padding: var(--button-padding-vertical) var(--button-padding-horizontal);
    margin: 8px 0px;
    text-align: center;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
}

form button:hover {
    color: var(--button-color);
    background-color: var(--button-background-color-hover);
    text-decoration: none;
}

/* Misc stuff */
.video {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--default-border-radius);
}

.forgot-password {
    margin-top: 20px;
}

code {
  /* These values work well for both inline code and blocks.
   Highlight script changes them for code blocks where necessary.
   */
  font-family: monospace;
  font-size: 95%;
  display: inline-block;
  border-radius: 6px;
  padding: .2em .4em;
  margin: 0;
  color: var(--color-text);
  background-color: var(--background-surface-color);
  word-break: break-word;
  text-align: left;
}

.inapp {
    display: inline-block;
    font-family: Roboto, DroidSans, sans-serif;
    font-size: 110%;
    font-weight: bold;
}

/* ============== article.css ============== */

/* Article / doc stuff */
.feed-links {
    margin-top: 12px;
}

.article {
    display: block;
}

ul.article-infos {
    list-style: none;
    margin: 0 0 12px 0;
    padding: 0;
}

.article-infos li {
    display: inline-block;
    font-size: 14px;
    margin: 0 1rem 0 0;
    padding: 0;
}

.article-infos li a {
    color: var(--color-text);
}

/* Pagination */
a.next {
    text-align: right;
}

.nav-link-container {
    display: table;
    width: 100%;
    border-spacing: 3px;
    table-layout: fixed;
}

a.nav-link {
    display: table-cell;
    border-width: 2px;
    border-color: var(--default-border-color);
    border-radius: 10px;
    border-style: solid;
    margin: 20px 0px 10px 0px;
    padding: 10px;
    width: 48%;
}

a.nav-link:hover {
    border-color: var(--color-a-hover);
}

a.nav-link .direction {
    margin: 3px;
    color: var(--color-text);
}

a.nav-link:hover {
    text-decoration: none;
}

a.nav-link .title {
    margin: 3px;
    text-decoration: none;
    font-weight: bold;
}

/* Style the category list */
ul.breadcrumb {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 10px;
    list-style: none;
    margin-top: 12px;
    margin-left: -5px;
    background-color: var(--background-surface-color);
}

/* Display list items side by side */
.breadcrumb li {
    display: inline;
    font-size: 14pt;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Add a slash symbol (/) before/behind each list item */
.breadcrumb li+li:before {
    padding: 8px;
    color: var(--color-text);
    content: "/\00a0";
}

/* Add a color to all links inside the list */
.breadcrumb li a {
    text-decoration: none;
}

/* Add a color on mouse-over */
.breadcrumb li a:hover {
    text-decoration: underline;
}

/* Style the tag list */
ul.tag-list {
    display: inline-block;
    padding: 4px 0px;
    list-style: none;
    margin-top: 12px;
}

.tag-list li {
    display: inline;
    font-size: 14pt;
    padding-top: 5px;
    padding-bottom: 5px;
}

.tag-list li a {
    border-radius: 7px;
    background-color: var(--background-surface-color);
    padding: 8px;
    box-shadow: 0 3px 5px var(--shadow-color);
    color: var(--color-text);
    text-decoration: none;
}

.tag-list li a:hover {
    color: var(--color-a-hover);
    text-decoration: underline;
}

.tag-list li.selected a {
    color: var(--color-a);
    background-color: var(--default-border-color);
    text-decoration: none;
}

/* Navigation links on sidebar */
.doc-sidebar a {
    float: none;
    display: block;
    color: var(--color-text);
}

.doc-sidebar a.selected {
    color: var(--color-a);
}

.doc-sidebar a:hover {
    color: var(--color-a-hover);
}

ul.nav-tree-items {
    list-style: none;
    padding: 0px;
    margin-right: 0px;
    margin-bottom: 7px;
}

ul.nav-tree-items .level-1,
ul.nav-tree-items .level-2,
ul.nav-tree-items .level-3 {
    padding-left: 15px;
}

a.nav-tree-category {
    display: block;
    font-weight: bold;
    padding-left: 5px;
    margin-bottom: 5px;
}

a.nav-tree-item {
    display: block;
    padding-left: 5px;
    margin-bottom: 0px;
}

a.nav-tree-category.selected,
a.nav-tree-item.selected {
    background-color: var(--background-surface-color);
}

@media (pointer: coarse) {
    /* Extra padding for touchscreen */
    a.nav-tree-category,
    a.nav-tree-item {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

/* Table of contents */
.toc {
    border: 2px solid var(--default-border-color);
    border-radius: 10px;
    margin: 10px 0px;
    padding: 0px 20px 10px;
}

.toc h2 {
    /* small-headers combined with center-vertical */
    font-size: 16pt;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.toc ul {
    list-style: none;
}

.toc > ul {
    /* Remove indentation for first-level list */
    padding-inline-start: 0px;
}

@media (pointer: coarse) {
    /* Extra padding for touchscreen */
    .toc a {
        display: inline-block;
        padding: 5px 0px;
    }
}

/* ============== icons.css ============== */

/* App service badges */
img.badge {
    vertical-align: middle;
    min-height: 40px; /* App Store badge minimum */
    max-height: 60px; /* Google Play badge requires equal height */
}

a.download-button>img.badge {
    /* extra space inside vertical download button */
    margin-top: var(--button-padding-vertical);
}

/* Common PNG and SVG icons */
img.icon {
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    pointer-events: none;
    user-select: none;
}

img.pfp {
    border-radius: 50%;
}

/* UI glyphs */
i.icon-ui {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    height: 1em;
    width: 1em;
    background-color: var(--color-text);
    --icon-path: none;
    -webkit-mask-image: var(--icon-path);
    mask-image: var(--icon-path);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

a:hover i.icon-ui,
button:hover i.icon-ui {
   background-color: var(--color-a-hover);
}

i.icon-ui-24 {
    font-size: 24px;
}

i.icon-ui-external {
    --icon-path: url(/static/img/icons/ui/external-link.svg);
    vertical-align: top;
    margin-left: 0.5ch;
}

i.icon-ui-clock {
    --icon-path: url(/static/img/icons/ui/clock.svg);
}

i.icon-ui-folder {
    --icon-path: url(/static/img/icons/ui/folder.svg);
}

i.icon-ui-link {
    --icon-path: url(/static/img/icons/ui/hyperlink.svg);
}

i.icon-ui-list {
    --icon-path: url(/static/img/icons/ui/list.svg);
}

i.icon-ui-moon {
    --icon-path: url(/static/img/icons/ui/moon.svg);
}

i.icon-ui-user {
    --icon-path: url(/static/img/icons/ui/fas-circle-user.svg);
}

i.icon-ui-discord {
    --icon-path: url(/static/img/icons/ui/fab-discord.svg);
}

i.icon-ui-github {
    --icon-path: url(/static/img/icons/ui/fab-github.svg);
}

i.icon-ui-github-alt {
    --icon-path: url(/static/img/icons/ui/fab-github-alt.svg);
}

i.icon-ui-x-twitter {
    --icon-path: url(/static/img/icons/ui/fab-x-twitter.svg);
}

i.icon-ui-youtube {
    --icon-path: url(/static/img/icons/ui/fab-youtube.svg);
}

/* ============== hamburger.css ============== */

/* Hamburger menu container */
.burger-sidebar {
    background-color: var(--color-gray-900);
    display: block;
    position: absolute;
    width: 50%;
    z-index: 800;
    border: 2px solid var(--color-gray-800);
    border-bottom: none;
    box-shadow: 0 5px 8px var(--shadow-color);
}

.burger-sidebar.hidden {
    display: none;
}

.burger-sidebar img {
    margin-right: 1ch;
}

/* Hamburger menu items */
.burger-menu {
    list-style: none;
    padding: 0;
}

.burger-menu>li {
    border-bottom: 2px solid var(--color-gray-800);
    padding: 0px;
    font-size: 14pt;
}

.burger-menu>li:hover {
    background-color: var(--color-gray-700);
}

.burger-menu>li:hover i.icon-ui {
    background-color: var(--color-text);
}

.burger-menu>li a,
.burger-menu>li button {
    display: block;
    text-align: left;
    padding: 11px;
    color: var(--color-text);
}

.burger-menu>li button {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
}

.burger-menu>li button:hover {
    text-decoration: underline;
}

/* ============== gallery.css ============== */

/* Slideshow container */
.slideshow-container {
    display: flex;
    position: relative;
    aspect-ratio: 1920 / 1088;
}

.slideshow-container img {
    max-width: 100%;
    max-height: 100%;
}

/* Hide the images by default */
.slideshow-container .mySlides {
    display: none;
}

.invisible-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

/* Next & previous buttons */
.slideshow-container .prev,
.slideshow-container .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.2s ease;
    background: transparent;
    border: 0;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.slideshow-container .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.slideshow-container .prev:hover,
.slideshow-container .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.slideshow-container .slide-text {
    color: #f2f2f2;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 16px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.slideshow-container .slide-numbers {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    bottom: 16px;
    right: 0;
}

/* The quick navigation dots/bullets */
.slideshow-quicknav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.slideshow-dot {
    height: 18px;
    width: 18px;
    margin: 0.5ch;
    background-color: var(--dotnav-color);
    border: none;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.slideshow-dot:hover {
    background-color: var(--button-background-color);
}

.slideshow-dot.active {
    background-color: var(--button-background-color-active);
    transform: translateY(-2px);
}

@media (pointer: coarse) {
    /* Extra size for touchscreen */
    .slideshow-dot {
        height: 24px;
        width: 24px;
        margin: 1ch;
    }
}

/* Fading animation */
.slideshow-container .fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* ============== hero.css ============== */

.hero-banner {
  background: #193858;
  color: #fff;
  overflow: hidden;
  padding: 3rem 0;
  position: relative;
  text-align: left;
}

img.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  z-index: auto;
  object-fit: contain;
  object-position: center right;
  pointer-events: none;
  user-select: none;
}

.hero-title {
  font-size: 42pt;
  padding: 0px;
  margin: 0px;
}

.hero-subtitle {
  font-size: 20pt;
  padding-bottom: 5px;
}

.hero-button {
    box-shadow: 0 0 10px var(--shadow-color);
    margin: 14px 0px;
    font-size: 14pt;
}

ul.feature-list li {
  list-style-type: square;
  position: relative;
  /* positioning context for bullet */
}

/* All of the below is for the moving background animation. */
.light {
  position: absolute;
  width: 0px;
  opacity: .75;
  background-color: white;
  box-shadow: #e9f1f1 0px 0px 20px 2px;
  opacity: 0;
  top: 100vh;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.x1 {
  -webkit-animation: floatUp 4s infinite linear;
  -moz-animation: floatUp 4s infinite linear;
  -o-animation: floatUp 4s infinite linear;
  animation: floatUp 4s infinite linear;
  -webkit-transform: scale(1.0);
  -moz-transform: scale(1.0);
  -o-transform: scale(1.0);
  transform: scale(1.0);
}

.x2 {
  -webkit-animation: floatUp 7s infinite linear;
  -moz-animation: floatUp 7s infinite linear;
  -o-animation: floatUp 7s infinite linear;
  animation: floatUp 7s infinite linear;
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  transform: scale(1.6);
  left: 15%;
}

.x3 {
  -webkit-animation: floatUp 2.5s infinite linear;
  -moz-animation: floatUp 2.5s infinite linear;
  -o-animation: floatUp 2.5s infinite linear;
  animation: floatUp 2.5s infinite linear;
  -webkit-transform: scale(.5);
  -moz-transform: scale(.5);
  -o-transform: scale(.5);
  transform: scale(.5);
  left: -15%;
}

.x4 {
  -webkit-animation: floatUp 4.5s infinite linear;
  -moz-animation: floatUp 4.5s infinite linear;
  -o-animation: floatUp 4.5s infinite linear;
  animation: floatUp 4.5s infinite linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  left: -34%;
}

.x5 {
  -webkit-animation: floatUp 8s infinite linear;
  -moz-animation: floatUp 8s infinite linear;
  -o-animation: floatUp 8s infinite linear;
  animation: floatUp 8s infinite linear;
  -webkit-transform: scale(2.2);
  -moz-transform: scale(2.2);
  -o-transform: scale(2.2);
  transform: scale(2.2);
  left: -57%;
}

.x6 {
  -webkit-animation: floatUp 3s infinite linear;
  -moz-animation: floatUp 3s infinite linear;
  -o-animation: floatUp 3s infinite linear;
  animation: floatUp 3s infinite linear;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
  -o-transform: scale(.8);
  transform: scale(.8);
  left: -81%;
}

.x7 {
  -webkit-animation: floatUp 5.3s infinite linear;
  -moz-animation: floatUp 5.3s infinite linear;
  -o-animation: floatUp 5.3s infinite linear;
  animation: floatUp 5.3s infinite linear;
  -webkit-transform: scale(3.2);
  -moz-transform: scale(3.2);
  -o-transform: scale(3.2);
  transform: scale(3.2);
  left: 37%;
}

.x8 {
  -webkit-animation: floatUp 4.7s infinite linear;
  -moz-animation: floatUp 4.7s infinite linear;
  -o-animation: floatUp 4.7s infinite linear;
  animation: floatUp 4.7s infinite linear;
  -webkit-transform: scale(1.7);
  -moz-transform: scale(1.7);
  -o-transform: scale(1.7);
  transform: scale(1.7);
  left: 62%;
}

.x9 {
  -webkit-animation: floatUp 4.1s infinite linear;
  -moz-animation: floatUp 4.1s infinite linear;
  -o-animation: floatUp 4.1s infinite linear;
  animation: floatUp 4.1s infinite linear;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  left: 85%;
}

@-webkit-keyframes floatUp {
  0% {
    top: 100vh;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    top: 0vh;
    opacity: .8;
  }

  75% {
    opacity: 1;
  }

  100% {
    top: -100vh;
    opacity: 0;
  }
}

@-moz-keyframes floatUp {
  0% {
    top: 100vh;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    top: 0vh;
    opacity: .8;
  }

  75% {
    opacity: 1;
  }

  100% {
    top: -100vh;
    opacity: 0;
  }
}

@-o-keyframes floatUp {
  0% {
    top: 100vh;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    top: 0vh;
    opacity: .8;
  }

  75% {
    opacity: 1;
  }

  100% {
    top: -100vh;
    opacity: 0;
  }
}

@keyframes floatUp {
  0% {
    top: 100vh;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    top: 0vh;
    opacity: .8;
  }

  75% {
    opacity: 1;
  }

  100% {
    top: -100vh;
    opacity: 0;
  }
}

/* ============== highlight-dark.min.css ============== */

pre code.hljs{display:block;overflow-x:auto;padding:1em;font-family:monospace;}code.hljs{padding:3px 5px}/*!
  Theme: Tokyo-night-Dark
  origin: https://github.com/enkia/tokyo-night-vscode-theme
  Description: Original highlight.js style
  Author: (c) Henri Vandersleyen <hvandersleyen@gmail.com>
  License: see project LICENSE
  Touched: 2022
*/.hljs-comment,.hljs-meta{color:#565f89}.hljs-deletion,.hljs-doctag,.hljs-regexp,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-selector-pseudo,.hljs-tag,.hljs-template-tag,.hljs-variable.language_{color:#f7768e}.hljs-link,.hljs-literal,.hljs-number,.hljs-params,.hljs-template-variable,.hljs-type,.hljs-variable{color:#ff9e64}.hljs-attribute,.hljs-built_in{color:#e0af68}.hljs-keyword,.hljs-property,.hljs-subst,.hljs-title,.hljs-title.class_,.hljs-title.class_.inherited__,.hljs-title.function_{color:#7dcfff}.hljs-selector-tag{color:#73daca}.hljs-addition,.hljs-bullet,.hljs-quote,.hljs-string,.hljs-symbol{color:#9ece6a}.hljs-code,.hljs-formula,.hljs-section{color:#7aa2f7}.hljs-attr,.hljs-char.escape_,.hljs-keyword,.hljs-name,.hljs-operator{color:#bb9af7}.hljs-punctuation{color:#c0caf5}.hljs{background:#1a1b26;color:#9aa5ce}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}