

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

/* The colors are nabbed from infima (docusaurus) mainly. */

html[data-theme='dark'] {
    --default-border-radius: 5px;
    --card-border-radius: 15px;

    --doc-sidebar-width: 250px;

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

    --background-surface-color: var(--color-gray-800);
    --shadow-color: var(--color-gray-1000);
}

html[data-theme='light'] {
    --default-border-radius: 5px;
    --card-border-radius: 15px;

    --doc-sidebar-width: 250px;

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

    --background-surface-color: var(--color-gray-700);
    --shadow-color: var(--color-gray-300);
}

:root {
    /* Shared colors */

    --color-primary: #33b5e5;
    --color-secondary: #ebedf0;
    --color-success: #00a400;
    --color-info: #54c7ec;
    --color-warning: #b78600;
    --color-danger: #fa383e;

    --color-gold: #b48700;
    --color-gold-hover: #efb400;
    --color-gold-border: #ffc800;
    --color-gold-border-hover: #fff5d0;

    --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: rgb(235, 242, 252);
    --color-primary-contrast-foreground: rgb(16, 36, 69);
    --color-secondary-dark: rgb(212, 213, 216);
    --color-secondary-darker: rgb(200, 201, 204);
    --color-secondary-darkest: rgb(164, 166, 168);
    --color-secondary-light: rgb(238, 240, 242);
    --color-secondary-lighter: rgb(241, 242, 245);
    --color-secondary-lightest: rgb(245, 246, 248);
    --color-secondary-contrast-background: rgb(253, 253, 254);
    --color-secondary-contrast-foreground: rgb(71, 71, 72);
    --color-success-dark: rgb(0, 148, 0);
    --color-success-darker: rgb(0, 139, 0);
    --color-success-darkest: rgb(1, 95, 1);
    --color-success-light: rgb(38, 178, 38);
    --color-success-lighter: rgb(77, 191, 77);
    --color-success-lightest: rgb(128, 210, 128);
    --color-success-contrast-background: rgb(230, 246, 230);
    --color-success-contrast-foreground: rgb(0, 49, 0);
    --color-info-dark: rgb(76, 179, 212);
    --color-info-darker: rgb(71, 169, 201);
    --color-info-darkest: rgb(59, 139, 165);
    --color-info-light: rgb(110, 207, 239);
    --color-info-lighter: rgb(135, 216, 242);
    --color-info-lightest: rgb(170, 227, 246);
    --color-info-contrast-background: rgb(238, 249, 253);
    --color-info-contrast-foreground: rgb(25, 60, 71);
    --color-warning-dark: rgb(219, 161, 0);
    --color-warning-darker: rgb(185, 135, 0);
    --color-warning-darkest: rgb(105, 77, 0);
    --color-warning-light: rgb(255, 196, 38);
    --color-warning-lighter: rgb(255, 207, 77);
    --color-warning-lightest: rgb(255, 221, 128);
    --color-warning-contrast-background: rgb(255, 248, 230);
    --color-warning-contrast-foreground: rgb(77, 56, 0);
    --color-danger-dark: rgb(225, 50, 56);
    --color-danger-darker: rgb(213, 48, 53);
    --color-danger-darkest: rgb(140, 31, 34);
    --color-danger-light: rgb(251, 86, 91);
    --color-danger-lighter: rgb(251, 116, 120);
    --color-danger-lightest: rgb(253, 156, 159);
    --color-danger-contrast-background: rgb(255, 235, 236);
    --color-danger-contrast-foreground: rgb(75, 17, 19);

}

:root {
    /* UI parts, derived colors */
    --color-header-footer: var(--color-gray-1000);
    --color-contents-background: var(--color-gray-900);
    --color-text: var(--color-gray-100);
    --color-text-inverse: var(--color-gray-900);

    --color-table-border: var(--color-gray-600);
    --color-a-hover: var(--color-primary);
    --color-table-bg: var(--color-gray-800);
    --color-card-background: var(--background-surface-color);

    --button-background-color: var(--color-primary);
    --button-background-color-hover: var(--color-primary-light);
    --button-border-color: var(--button-background-color);
    --button-border-width: 2px;
    --button-color: var(--color-text-inverse);
    --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;
}

/* ============== 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(--color-gray-800);
    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;
    text-align: justify;
}

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

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

a {
  text-decoration: none;
}

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

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

li {
  padding-bottom: 2px;
}

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

h1 {
  font-size: 26pt;
}

h2 {
  font-size: 18pt;
}

h3 {
  font-size: 16pt;
}

h4 {
  font-size: 14pt;
}

a {
  color: var(--color-primary);
}

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

.page-wrapper {
  box-sizing: border-box;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

footer h2 {
  font-size: 14pt;
  padding-bottom: 12px;
}

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

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

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

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

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

.top-nav-logo {
    font-weight: bold;
}

.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);
    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-gray-0);
}

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

.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-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    /* hackety hack */
    margin-left: -12px;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: var(--color-gray-0);
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
    pointer-events: none;
}

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

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

.menu .external {
    display: none;
}

@media (min-width: 800px) {
    .menu .external {
        display: flex;
    }
}

#loginCorner {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media (max-width: 600px) {

    /* Hide the login corner */
    #loginCorner {
        display: none;
    }

    .menu-button-container {
        display: flex;
    }

    .menu .external {
        display: flex;
    }

    .menu {
        z-index: 289;
        position: absolute;
        top: 0;
        margin-top: 50px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: left;
        align-items: top;
    }

    .menu>li {
        display: none;
        text-align: left;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
        background-color: #222;
    }

    .menu>li a {
        display: block;
    }

    .menu>li:not(:last-child) {
        border-bottom: 1px solid #444;
    }
}

.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 ul {
    list-style: none;
    padding-left: 0px;
}

.burger-sidebar li {
    border-bottom: 2px solid var(--color-gray-800);
    padding: 0px;
}

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

.burger-sidebar li a {
    padding: 8px 8px;
    display: block;
    color: var(--color-text);
}

.burger-sidebar li #loginItem a {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.burger-sidebar li #darkItem a {
    display: flex;
    flex-direction: row;
    align-items: center;
}

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

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

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

.gold-only {
    display: none;
}

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

.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(--color-text-inverse);
    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;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
}

.gold-link {
    color: #FFC800FF;
}

.icon-container-36,
.icon-container-24,
.icon-container-288,
.icon-container-144,
.icon-container-72 {
    display: flex;
    justify-content: center;
    align-items: center;
    /*border: 1px solid;*/
}

.icon-container-36 {
    height: 36px;
    width: 36px;
}

.icon-container-24 {
    height: 24px;
    width: 24px;
}

.icon-container-288 {
    height: 288px;
    width: 288px;
}

.icon-container-144 {
    height: 144px;
    width: 144px;
}

.icon-container-72 {
    height: 72px;
    width: 72px;
}

.icon-container-36 img,
.icon-container-24 img,
.icon-container-288,
img,
.icon-container-144 img,
.icon-container-72 img {
    max-width: 100%;
    max-height: 100%;
}

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

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

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

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

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

/* Article / doc stuff */

.feed-links {
    margin-top: 12px;
}

.article {
    /* General */
    display: block;
}

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

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

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

.article .article-infos i {
    color: var(--color-gray-300);
}

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(--color-gray-700);
    border-radius: 10px;
    border-style: solid;
    margin: 20px 0px 10px 0px;
    padding: 10px;
    width: 48%;
}

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

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 list */
ul.breadcrumb {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 10px;
    list-style: none;
    margin-top: 12px;
    margin-left: -5px;
    background-color: var(--color-gray-800);
}

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

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

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

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

ul.tag-list {
    display: inline-block;
    padding: 4px 0px;
    list-style: none;
    margin-top: 12px;
    margin-left: -5px;
    margin-bottom: 12px;
}

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

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

ul.tag-list li a:hover {
    color: var(--color-primary);
    background-color: var(--color-gray-700);
    text-decoration: none;
}

ul.tag-list li.selected a {
    color: var(--color-primary);
    background-color: var(--color-gray-700);
    text-decoration: none;
}

.doc-sidebar a {
    float: none;
    display: block;
    color: var(--color-text);
}

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

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

/* */
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(--color-gray-800);
}

.alert {
    display: block;
    box-shadow: 0 3px 5px var(--shadow-color);
    border-radius: 5px;
    border-left-style: solid;
    border-width: 5px;
    padding: 14px;
    margin: 12px 0px;
    color: #fff;
    /* on both dark and light modes */
}

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

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

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

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

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

code {
    font-family: monospace;
}

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

.active,
.collapsible:hover {
    background-color: #555;
}

.collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.collapsible-content {
    display: none;
    overflow: hidden;
}

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

.card {
    /* General */
    width: 100%;
    height: auto;
    /* Margin */
    margin: 0.2rem 0;
    padding: 0;
    /* Color */
    background-color: var(--color-card-background);
    /* Border */
    border-radius: var(--card-border-radius);
    /* Margin */
    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;
}

.video {
    aspect-ratio: 16 / 9;
    width: 100%;
}

form input {
    width: 100%;
    margin: 3px 0px 13px 0px;
    height: 35px;
    border: solid 2px var(--color-gray-600);
    background-color: var(--color-gray-900);
    color: var(--color-text);
}

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

form textarea {
    width: 100%;
    border: solid 2px var(--color-gray-600);
    background-color: var(--color-gray-900);
    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(--color-text-inverse);
    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;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
}

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

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

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

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



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

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

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

/* 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;
    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 .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 .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.slideshow-dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.slideshow-dot.active,
.slideshow-dot:hover {
    background-color: #717171;
    text-decoration: none;
}

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

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

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

/* Silly moving background CSS from https://alvarotrigo.com/blog/animated-backgrounds-css/ */

.hero {
  background: #193858;
  background-image: url("/static/img/front/gameroll.jpg");
  /* This was made in photopea */
  background-position: center right;
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: contain;
}

.hero-banner {
  color: #fff;
  /* light up the hero title slightly */
  overflow: hidden;
  padding: 3rem 0;
  position: relative;
  text-align: left;
}

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

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

ul.feature-list li {
  /* set font size of list item and bullet here */
  list-style-type: square;
  /* removes default bullet */
  position: relative;
  /* positioning context for bullet */
}

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