/**
 * Black theme for reveal.js. This is the opposite of the 'white' theme.
 *
 * By Hakim El Hattab, http://hakim.se
 */
@import url(./fonts/source-sans-pro/source-sans-pro.css);
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: #fff;
  --r-main-font: Source Sans Pro, Helvetica, sans-serif;
  --r-main-font-size: 4vh;
  --r-main-color: #191919;
  --r-block-margin: 4vh;
  --r-heading-margin: 0 0 4vh 0;
  --r-heading-font: Source Sans Pro, Helvetica, sans-serif;
  --r-heading-color: #191919;
  --r-heading-line-height: 1.2;
  --r-heading-letter-spacing: normal;
  --r-heading-text-transform: normal;
  --r-heading-text-shadow: none;
  --r-heading-font-weight: 600;
  --r-heading1-text-shadow: none;
  --r-heading1-size: 2.5em;
  --r-heading2-size: 1.6em;
  --r-heading3-size: 1.3em;
  --r-heading4-size: 1em;
  --r-code-font: monospace;
  --r-link-color: #c40d1e;
  --r-link-color-dark: #7c0813;
  --r-link-color-hover: #f12c3f;
  --r-selection-background-color: rgba(196, 13, 30, 0.75);
  --r-selection-color: #fff;
}

.reveal-viewport {
  background: #fff;
  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);
  }
}
body {
  cursor: url("../../assets/cursor-red.png") 30 30, auto;
}

.reveal h5 {
  font-size: 0.8em;
}

.fragment.red-box {
  outline: none;
}

.fragment.red-box.visible {
  outline: 0.5vh solid #c40d1e;
}

.overlay {
  position: absolute;
  z-index: 9000;
  background-color: white;
  box-shadow: 0.2vh 0.2vh 2vh rgba(0, 0, 0, 0.4);
  border: solid 0.6vh black;
  padding: 3vh;
}

.tiny {
  font-size: 0.5em;
}

.inbetween {
  font-size: 0.6em;
}

.small {
  font-size: 0.75em;
}

.normal {
  font-size: 1em;
}

.big {
  font-size: 1.25em;
}

.huge {
  font-size: 1.5em;
}

.blue-highlight, .red-highlight, .green-highlight {
  display: inline-block;
  position: relative;
}

.blue-highlight::before, .red-highlight::before, .green-highlight::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-0.25em) translateY(-0.25em);
  width: calc(100% + 0.5em);
  height: calc(100% + 0.5em);
  outline: 0.5vh solid #8e83f9;
  display: inline-block;
  z-index: -10;
  border-radius: 1vh;
}

.red-highlight::before {
  outline: 0.5vh solid #f97f7f;
}

.green-highlight::before {
  outline: 0.5vh solid #7fcf7f;
}

.green-highlight.custom::before {
  outline: none;
}

.green-highlight.custom.visible::before {
  outline: 0.5vh solid #7fcf7f;
}

.opaque {
  opacity: 0.85;
}

[data-position] {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently */
}

.backgrounds {
  display: flex;
  justify-content: center;
  align-items: center;
}

.background {
  position: relative;
  width: 177.777vh;
  height: 100vh;
}
.background footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 2vh 0;
  font-size: 0.45em;
  color: #666;
}
.background footer .logo {
  height: 7vh;
  width: auto;
  margin: 0;
}
.background footer .slide-numbers {
  position: absolute;
  left: 77%;
}

.controls {
  display: none;
}

.reveal .slides {
  position: relative;
  width: 168.891vh;
  height: 86.5vh;
  margin: 2.5vh auto 0 auto;
}
.reveal .slides section {
  width: 100%;
  height: 100%;
}
.reveal .slides section > div {
  width: 100%;
  height: 100%;
}

section.title > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section.default > div {
  display: flex;
  flex-direction: column;
}

.center-center {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.grid-center {
  align-self: center;
}

.grid-left {
  justify-self: left;
}

.grid-right {
  justify-self: right;
}

.grid-center {
  justify-self: center;
}

.grid-top {
  align-self: start;
}

.grid-bottom {
  align-self: end;
}

.hidden {
  visibility: hidden;
}

.grid {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: min-content;
  grid-gap: 2vh;
  width: 100%;
}
.grid.fill {
  grid-auto-rows: auto;
}
.grid > div {
  width: 100%;
}
.grid div[data-width="1/1"], .grid div[data-width="12/12"], .grid div[data-width="2/2"], .grid div[data-width="3/3"], .grid div[data-width="4/4"], .grid div[data-width="6/6"] {
  grid-column-start: span 12;
}
.grid div[data-width="11/12"] {
  grid-column-start: span 11;
}
.grid div[data-width="10/12"], .grid div[data-width="5/6"] {
  grid-column-start: span 10;
}
.grid div[data-width="3/4"], .grid div[data-width="9/12"] {
  grid-column-start: span 9;
}
.grid div[data-width="2/3"], .grid div[data-width="4/6"], .grid div[data-width="8/12"] {
  grid-column-start: span 8;
}
.grid div[data-width="7/12"] {
  grid-column-start: span 7;
}
.grid div[data-width="1/2"], .grid div[data-width="2/4"], .grid div[data-width="3/6"], .grid div[data-width="6/12"] {
  grid-column-start: span 6;
}
.grid div[data-width="5/12"] {
  grid-column-start: span 5;
}
.grid div[data-width="1/3"], .grid div[data-width="2/6"], .grid div[data-width="4/12"] {
  grid-column-start: span 4;
}
.grid div[data-width="1/4"], .grid div[data-width="3/12"] {
  grid-column-start: span 3;
}
.grid div[data-width="1/6"], .grid div[data-width="2/12"] {
  grid-column-start: span 2;
}
.grid div[data-width="1/12"] {
  grid-column-start: span 1;
}
.grid div[data-height="1"] {
  grid-row-start: span 1;
}
.grid div[data-height="2"] {
  grid-row-start: span 2;
}
.grid div[data-height="3"] {
  grid-row-start: span 3;
}
.grid div[data-height="4"] {
  grid-row-start: span 4;
}
.grid div[data-height="5"] {
  grid-row-start: span 5;
}
.grid div[data-height="6"] {
  grid-row-start: span 6;
}
.grid div[data-height="7"] {
  grid-row-start: span 7;
}

.reveal img,
.reveal video,
.reveal iframe {
  width: 100%;
  margin: 0;
  max-width: 100%;
  max-height: 100%;
}

.table.nomargin h1, .table.nomargin h2, .table.nomargin h3, .table.nomargin h4, .table.nomargin h5, .table.nomargin h6 {
  margin: 0;
}

.red-box {
  display: inline-block;
  outline: 0.5vh solid #c40d1e;
  padding: 0.5em 2em;
}

.halo {
  -webkit-text-stroke: 0.4vh white;
  -webkit-text-fill-color: black;
  color: white;
  paint-order: stroke fill;
}

.fillparent {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
}

.reveal svg .fragment {
  transition: opacity 0.2s ease;
}

.reveal .blink.current-fragment {
  animation: blink 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}