@import url(../fonts/source-sans-pro/source-sans-pro.css);

.reveal .key {
    display: block;
    padding: 10px 15px;

    font-size: 1.5em;
    text-align: left;

    border-radius: 2px;
    background-color: #E0A64855;
    border-left: 10px solid #E0A648;
}

.reveal .key p {
    padding: 0;
    margin: 0;
}

body.yoko::before {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url("../../img/yokanda.png");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
}

.mt-3 {
    margin-top: 30px;
}

.code-show {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.reveal pre.mermaid {
    text-align: center;
    align-self: center;
}

.mark {
    background-color: #E0A648;
    color: #000000;
    box-shadow: 3px 3px 8px #000000;
    border: 2px solid #000000;
    border-radius: 5px;
    width: 15px;
    height: 15px;
    text-align: center;
    align-self: center;
    display: inline-block;
}

.shadow {
    text-shadow: 3px 3px 8px #000000 !important;
}

.container {
    display: flex;
}

.container.flex-column {
    flex-direction: column;
}

.container.gap-1 {
    gap: 10px;
}

.col {
    flex: 1;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-40 {
    width: 40%;
}

i {
    font-style: italic;
}

b, strong {
    font-weight: 900;
    text-decoration: underline;
}

.question, pre > code {
    background-color: rgba(0, 0, 0, 0.15);
    border: #4b3815 3px solid;
    text-align: start;
    padding: 3px 15px;
    font-size: 0.9em;
    border-radius: 5px;
}

pre > code::-webkit-scrollbar {
    height: 10px;
    background-color: #5c5342;
}

pre > code::-webkit-scrollbar-corner {
    background-color: #615949;
}

pre > code::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

pre > code::-webkit-scrollbar-thumb {
    background-color: #8b7b5b;
    border-radius: 5px;
}


/*********************************************
 * GLOBAL STYLES
 *********************************************/
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: #303030;
}

:root {
    --background-color: #303030;
    --main-font: Source Sans Pro, Helvetica, sans-serif;
    --main-font-size: 42px;
    --main-color: #fff;
    --block-margin: 20px;
    --heading-margin: 0 0 20px 0;
    --heading-font: Source Sans Pro, Helvetica, sans-serif;
    --heading-color: #fff;
    --heading-line-height: 1.2;
    --heading-letter-spacing: normal;
    --heading-text-transform: uppercase;
    --heading-text-shadow: none;
    --heading-font-weight: 600;
    --heading1-text-shadow: none;
    --heading1-size: 2.5em;
    --heading2-size: 1.6em;
    --heading3-size: 1.3em;
    --heading4-size: 1em;
    --code-font: monospace;
    --link-color: #E0A648;
    --link-color-hover: #FFBF46;
    --selection-background-color: #bee4fd;
    --selection-color: #fff;
}

.reveal-viewport {
    background: #191919;
    background-color: #191919;
}

.reveal {
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-size: 42px;
    font-weight: normal;
    color: #fff;
}

.reveal ::selection {
    color: #fff;
    background: #a17938;
    text-shadow: none;
}

.reveal ::-moz-selection {
    color: #fff;
    background: #a17938;
    text-shadow: none;
}

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

.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
    margin: 0 0 20px 0;
    color: #fff;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: normal;
    text-transform: uppercase;
    text-shadow: none;
    word-wrap: break-word;
}

.reveal h1 {
    font-size: 2.5em;
}

.reveal h2 {
    font-size: 1.6em;
}

.reveal h3 {
    font-size: 1.3em;
}

.reveal h4 {
    font-size: 1em;
}

.reveal h1 {
    text-shadow: none;
}

.reveal p {
    margin: 20px 0;
    line-height: 1.3;
}

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

.reveal img {
    max-width: 95%;
    max-height: 95%;
}

/* .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: 20px 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: 20px auto;
    text-align: left;
    font-size: 0.55em;
    font-family: monospace;
    line-height: 1.2em;
    word-wrap: break-word;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.reveal *:not(pre) > code {
    font-family: monospace;
    text-transform: none;

    background-color: #3a3a3a;
    border-radius: 10px;
    padding: 5px 13px;
    margin: 0 2px;
    line-height: 1.6em;
    white-space: pre;
}

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

.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: 20px 0;
}

.reveal a {
    color: #FFBF46;
    text-decoration: none;
    transition: color .15s ease;
}

.reveal a:hover {
    color: #FFBF46;
    text-shadow: none;
    border: none;
}

.reveal .roll span:after {
    color: #fff;
    background: #FFBF46;
}

.reveal .r-frame {
    border: 4px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

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

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

.reveal .controls {
    color: #ffbe46;
    box-shadow: 3px 3px black;

    transform: translateY(-25px);
}

.reveal .controls .controls-arrow {
    filter: drop-shadow(0px 0px 4px #00000055);
}

.reveal .progress {
    height: 10px;

    background: #131313;

    background-image: url("../img/pattern-arrow-transparent-mono.png");
    background-size: 24px;
    background-position: center center;
    color: #FFBF46;
}

.reveal .progress span {
    opacity: 0.9;
}

.logo {
    bottom: 15px;
    left: 5px;
    width: 75px;
    height: 75px;
    background-image: url("../img/icon-transparent-orange.png");
    background-size: cover;
    position: absolute;
    z-index: 9999;
}

.reveal .slide-number {
    background-color: #131313 !important;
    bottom: 10px !important;
    right: 0px !important;
    font-size: 14px !important;
    padding: 5px 10px;

    border-top-left-radius: 5px;

    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-weight: bold;
}

.reveal .slide-number .slide-number-delimiter {
    margin: 0 7px;
}