/**
 * Wikodit theme for reveal.js.
 * Author: Jeremy Trufier <Wikodit>
 */
/*
 * Contrast should be respected between dark and light variants, meaning a light color should be
 * contrasted enough to be readable on a dark background, and vice versa.
 * Colors without dark or light modifier, should be readable over $darkBlue
 */
@import url(https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap);
@font-face {
  font-family: "JetBrainsMono";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url(/public/fonts/JetBrainsMono-VariableFont_wght.ttf) format("woff2");
}
@font-face {
  font-family: "ComicCode";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url(/public/fonts/ComicCodeLigaturesNerdFontComplete-Regular.woff2) format("woff2");
}
section.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 {
  color: #222;
}

/*********************************************
 * GLOBAL STYLES
 *********************************************/
:root {
  --r-background-color: #121f38;
  --r-main-font: Sora, sans-serif;
  --r-main-font-size: 24px;
  --r-main-color: #eee;
  --r-block-margin: 32px;
  --r-heading-margin: 0 0 32px 0;
  --r-heading-font: Sora, sans-serif;
  --r-heading-color: #eee;
  --r-heading-line-height: 1.2;
  --r-heading-letter-spacing: normal;
  --r-heading-text-transform: uppercase;
  --r-heading-text-shadow: none;
  --r-heading-font-weight: normal;
  --r-heading1-text-shadow: none;
  --r-heading1-size: 2.4em;
  --r-heading2-size: 2em;
  --r-heading3-size: 1.55em;
  --r-heading4-size: 1em;
  --r-code-font: JetBrainsMono, monospace;
  --r-link-color: #ffbe4b;
  --r-link-color-dark: #fea200;
  --r-link-color-hover: #ffe3b1;
  --r-selection-background-color: #d33682;
  --r-selection-color: #eee;
}

.reveal-viewport {
  background: #121f38;
  background-color: var(--r-background-color);
}

.reveal {
  font-family: var(--r-main-font);
  font-size: var(--r-main-font-size);
  font-weight: normal;
  color: var(--r-main-color);
}

.reveal ::selection {
  color: var(--r-selection-color);
  background: var(--r-selection-background-color);
  text-shadow: none;
}

.reveal ::-moz-selection {
  color: var(--r-selection-color);
  background: var(--r-selection-background-color);
  text-shadow: none;
}

.reveal .slides section,
.reveal .slides section > section {
  line-height: 1.3;
  font-weight: inherit;
}

/*********************************************
 * HEADERS
 *********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
  margin: var(--r-heading-margin);
  color: var(--r-heading-color);
  font-family: var(--r-heading-font);
  font-weight: var(--r-heading-font-weight);
  line-height: var(--r-heading-line-height);
  letter-spacing: var(--r-heading-letter-spacing);
  text-transform: var(--r-heading-text-transform);
  text-shadow: var(--r-heading-text-shadow);
  word-wrap: break-word;
}

.reveal h1 {
  font-size: var(--r-heading1-size);
}

.reveal h2 {
  font-size: var(--r-heading2-size);
}

.reveal h3 {
  font-size: var(--r-heading3-size);
}

.reveal h4 {
  font-size: var(--r-heading4-size);
}

.reveal h1 {
  text-shadow: var(--r-heading1-text-shadow);
}

/*********************************************
 * OTHER
 *********************************************/
.reveal p {
  margin: var(--r-block-margin) 0;
  line-height: 1.3;
}

/* Remove trailing margins after titles */
.reveal h1:last-child,
.reveal h2:last-child,
.reveal h3:last-child,
.reveal h4:last-child,
.reveal h5:last-child,
.reveal h6:last-child {
  margin-bottom: 0;
}

/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
  max-width: 95%;
  max-height: 95%;
}

.reveal strong,
.reveal b {
  font-weight: bold;
}

.reveal em {
  font-style: italic;
}

.reveal ol,
.reveal dl,
.reveal ul {
  display: inline-block;
  text-align: left;
  margin: 0 0 0 1em;
}

.reveal ol {
  list-style-type: decimal;
}

.reveal ul {
  list-style-type: disc;
}

.reveal ul ul {
  list-style-type: square;
}

.reveal ul ul ul {
  list-style-type: circle;
}

.reveal ul ul,
.reveal ul ol,
.reveal ol ol,
.reveal ol ul {
  display: block;
  margin-left: 40px;
}

.reveal dt {
  font-weight: bold;
}

.reveal dd {
  margin-left: 40px;
}

.reveal blockquote {
  display: block;
  position: relative;
  width: 70%;
  margin: var(--r-block-margin) auto;
  padding: 5px;
  font-style: italic;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}

.reveal blockquote p:first-child,
.reveal blockquote p:last-child {
  display: inline-block;
}

.reveal q {
  font-style: italic;
}

.reveal pre {
  display: block;
  position: relative;
  width: 90%;
  margin: var(--r-block-margin) auto;
  text-align: left;
  font-size: 0.55em;
  font-family: var(--r-code-font);
  line-height: 1.2em;
  word-wrap: break-word;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.reveal code {
  font-family: var(--r-code-font);
  text-transform: none;
  tab-size: 2;
}

.reveal pre code {
  display: block;
  padding: 5px;
  overflow: auto;
  max-height: 400px;
  word-wrap: normal;
}

.reveal .code-wrapper {
  white-space: normal;
}

.reveal .code-wrapper code {
  white-space: pre;
}

.reveal table {
  margin: auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.reveal table th {
  font-weight: bold;
}

.reveal table th,
.reveal table td {
  text-align: left;
  padding: 0.2em 0.5em 0.2em 0.5em;
  border-bottom: 1px solid;
}

.reveal table th[align=center],
.reveal table td[align=center] {
  text-align: center;
}

.reveal table th[align=right],
.reveal table td[align=right] {
  text-align: right;
}

.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
  border-bottom: none;
}

.reveal sup {
  vertical-align: super;
  font-size: smaller;
}

.reveal sub {
  vertical-align: sub;
  font-size: smaller;
}

.reveal small {
  display: inline-block;
  font-size: 0.6em;
  line-height: 1.2em;
  vertical-align: top;
}

.reveal small * {
  vertical-align: top;
}

.reveal img {
  margin: var(--r-block-margin) 0;
}

/*********************************************
 * LINKS
 *********************************************/
.reveal a {
  color: var(--r-link-color);
  text-decoration: none;
  transition: color 0.15s ease;
}

.reveal a:hover {
  color: var(--r-link-color-hover);
  text-shadow: none;
  border: none;
}

.reveal .roll span:after {
  color: #fff;
  background: var(--r-link-color-dark);
}

/*********************************************
 * Frame helper
 *********************************************/
.reveal .r-frame {
  border: 4px solid var(--r-main-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.reveal a .r-frame {
  transition: all 0.15s linear;
}

.reveal a:hover .r-frame {
  border-color: var(--r-link-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
}

/*********************************************
 * NAVIGATION CONTROLS
 *********************************************/
.reveal .controls {
  color: var(--r-link-color);
}

/*********************************************
 * PROGRESS BAR
 *********************************************/
.reveal .progress {
  background: rgba(0, 0, 0, 0.2);
  color: var(--r-link-color);
}

/*********************************************
 * PRINT BACKGROUND
 *********************************************/
@media print {
  .backgrounds {
    background-color: var(--r-background-color);
  }
}
:root {
  --r-heading1-font-weight: 600;
  --r-heading2-font-weight: 600;
  --r-heading3-font-weight: normal;
  --r-heading4-font-weight: normal;
  --r-heading1-margin: 0 0 32px 0;
  --r-heading2-margin: 0 0 40px 0;
  --r-heading3-margin: 0 0 40px 0;
  --r-heading4-margin: 0 0 32px 0;
  --r-heading1-text-align: center;
  --r-heading2-text-align: left;
  --r-heading3-text-align: center;
  --r-heading4-text-align: center;
  --r-heading1-text-transform: lowercase;
  --r-heading2-text-transform: lowercase;
  --r-heading3-text-transform: initial;
  --r-heading4-text-transform: uppercase;
  --r-heading1-color: #eee;
  --r-heading2-color: #ffbe4b;
  --r-heading3-color: #eee;
  --r-heading4-color: #eee;
  --r-link-font-weight: 400;
  --r-mc-column-gap: 1em;
}

.reveal {
  font-weight: 200;
}

.reveal p > img {
  margin: 0; /** already added by the p */
}

.reveal h1 {
  font-weight: var(--r-heading1-font-weight);
  margin: var(--r-heading1-margin);
  text-align: var(--r-heading1-text-align);
  text-transform: var(--r-heading1-text-transform);
  color: var(--r-heading1-color);
}

.reveal h2 {
  font-weight: var(--r-heading2-font-weight);
  margin: var(--r-heading2-margin);
  text-align: var(--r-heading2-text-align);
  text-transform: var(--r-heading2-text-transform);
  color: var(--r-heading2-color);
}

.reveal h3 {
  font-weight: var(--r-heading3-font-weight);
  margin: var(--r-heading3-margin);
  text-align: var(--r-heading3-text-align);
  text-transform: var(--r-heading3-text-transform);
  color: var(--r-heading3-color);
}

.reveal h4 {
  font-weight: var(--r-heading4-font-weight);
  margin: var(--r-heading4-margin);
  text-align: var(--r-heading4-text-align);
  text-transform: var(--r-heading4-text-transform);
  color: var(--r-heading4-color);
}

.reveal a {
  font-weight: var(--r-link-font-weight);
}

.reveal h1::after,
.reveal h2::after {
  content: "";
  display: block;
  background: #eee;
  margin-top: 20px;
  margin-bottom: 20px;
}

.reveal h1::after {
  width: 96px;
  height: 6px;
  margin-left: 50%;
  transform: translateX(-50%);
  background: var(--r-heading1-color);
}

.reveal h2::after {
  width: 148px;
  height: 6px;
  background: var(--r-heading2-color);
}

.reveal ol li,
.reveal dl li,
.reveal ul li {
  margin: 0 0 14px 0;
}

.reveal blockquote {
  width: 80%;
  font-size: 0.8em;
  border-radius: 8px;
  padding: 1em 1.4em;
  border: 1px solid #eb706e;
  color: #eb706e;
  background: transparent;
  box-shadow: none;
}
.reveal blockquote p:first-child {
  margin-top: 0;
}
.reveal blockquote p:last-child {
  margin-bottom: 0;
}

.reveal code:not(pre > code) {
  color: #ffbe4b;
  background: #222;
  font-size: 0.6em;
  padding: 0.4em 0.4em;
  border: 0.5px solid #ffbe4b;
  opacity: 0.9;
}

.reveal .multicol.mc-auto {
  column-count: auto;
  column-fill: balance;
  column-gap: var(--r-mc-column-gap);
}
.reveal .multicol.mc-auto ol, .reveal .multicol.mc-auto dl, .reveal .multicol.mc-auto ul {
  display: block;
}
.reveal .multicol.mc-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--r-mc-column-gap);
}

.reveal .mde-button {
  display: inline-block;
  padding: 0.6em 1.6em;
  color: #ffbe4b;
  border-radius: 4px;
  background: #121f38;
  border: 2px solid #ffbe4b;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.7em;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.reveal .mde-button:hover {
  background: #ffbe4b;
  color: #121f38;
  border: 2px solid #ffbe4b;
}
.reveal .mde-button:active {
  transform: scale(0.95);
}

.reveal .mde-separator {
  display: block;
  width: 24px;
  height: 24px;
  margin: var(--r-block-margin) 0;
  margin-left: 50%;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyODMuNDYgMjgzLjQ2IiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAyODMuNDYgMjgzLjQ2IiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJtOTcuMSA4My4wMmMtMi45MyAwLTUuMzEtMi4zOC01LjMxLTUuMzF2LTEwLjg1YzAtMi45MyAyLjM4LTUuMzEgNS4zMS01LjMxczUuMzEgMi4zOCA1LjMxIDUuMzF2MTAuODRjMCAyLjk0LTIuMzggNS4zMi01LjMxIDUuMzJ6Ii8+CjxwYXRoIGNsYXNzPSJzdDAiIGQ9Im0xMDIuNjcgMTQyLjI1czc5LjA5LTc4LjMyIDc5Ljc4LTc5LjAzYzEuMjctMS4zMSA0LjkyLTIuOTYgNy44NCAwczEuMjcgNi42NiAwIDcuOTJjLTAuNyAwLjY5LTg3LjYyIDg2Ljc3LTg3LjYyIDg2Ljc3djQ2LjQ0czE0MS4yMy0xMzkuODIgMTQyLjUtMTQxLjEzIDQuOTItMi45NiA3Ljg0IDAgMS4yNyA2LjY2IDAgNy45MmMtMC41NiAwLjU2LTYyLjg3IDYyLjI3LTYyLjg3IDYyLjI3bDYzLjMxIDc5LjQ2YzEuOTIgMi40MSAxLjUyIDUuOTItMC44OCA3LjgzLTEuMDIgMC44Mi0yLjI1IDEuMjItMy40NyAxLjIyLTEuNjMgMC0zLjI2LTAuNzItNC4zNi0yLjFsLTYyLjU2LTc4LjUyLTc5Ljc3IDc5Yy0xLjA0IDEuMDMtMi40NCAxLjYxLTMuOSAxLjYxaC0xLjM5LTAuMDJjLTEuNDggMC0yLjg5LTAuNTgtMy45My0xLjYyLTEuMDUtMS4wNS0xLjY0LTIuNDctMS42NC0zLjk1di00Ny4zOWwtNTEuODUgNTEuMzVjLTEuMDQgMS4wMy0yLjQ0IDEuNjEtMy45IDEuNjFoLTEuMzktMC4wMmMtMS40OCAwLTIuODktMC41OC0zLjkzLTEuNjItMS4wNS0xLjA1LTEuNjQtMi40Ny0xLjY0LTMuOTV2LTE0OS4yYzAtMy4wOCAyLjQ5LTUuNTcgNS41Ny01LjU3czUuNTcgMi40OSA1LjU3IDUuNTd2MTM3LjIybDUxLjU4LTUxLjA3di00NC4wNmMwLTMuMDggMi40OS01LjU3IDUuNTctNS41N3M1LjU3IDIuNDkgNS41NyA1LjU3bDAuMDEgMzMuMDJ6Ii8+Cjwvc3ZnPgo=");
}
.reveal .mde-separator::after, .reveal .mde-separator::before {
  content: "";
  display: block;
  position: absolute;
  background: #eee;
  width: 96px;
  height: 1px;
  background: var(--r-heading1-color);
  margin: 50% 10px 0 10px;
  transform: translateY(-50%);
}
.reveal .mde-separator::after {
  left: 100%;
}
.reveal .mde-separator::before {
  right: 100%;
}

.reveal #customcontrols ul {
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
}
.reveal #customcontrols ul > li {
  margin: 0 4px;
  padding: 0 4px;
  font-weight: 400;
  font-size: 0.8em;
}

/*
 * Contrast should be respected between dark and light variants, meaning a light color should be
 * contrasted enough to be readable on a dark background, and vice versa.
 * Colors without dark or light modifier, should be readable over $darkBlue
 */
.reveal .slide-menu-button i {
  font-size: 1.4em;
}

body > .slide-menu-wrapper > .slide-menu {
  background-color: #121f38;
}
body > .slide-menu-wrapper > .slide-menu .slide-menu-toolbar {
  border-bottom: solid 2px #ffbe4b;
}
body > .slide-menu-wrapper > .slide-menu .slide-menu-toolbar > li.active-toolbar-button {
  color: #ffbe4b;
}
body > .slide-menu-wrapper > .slide-menu .slide-menu-toolbar > li > span {
  display: none;
}
body > .slide-menu-wrapper > .slide-menu .slide-menu-toolbar > li .fa-images::before {
  content: "\f685";
}
body > .slide-menu-wrapper > .slide-menu .slide-menu-toolbar > li .fa-adjust::before {
  content: "\f53f";
}
body > .slide-menu-wrapper > .slide-menu .active-menu-panel li.past {
  color: #54b750;
}
body > .slide-menu-wrapper > .slide-menu .active-menu-panel li.active {
  color: #ffbe4b;
}
body > .slide-menu-wrapper > .slide-menu .active-menu-panel li.selected {
  background-color: transparent;
  color: #ffbe4b;
}

/*# sourceMappingURL=wikodit.css.map */
