.reveal .controls {
  right: 2.5svw;
  bottom: 2.5svw;
}

.line {
  content: '';
  position: fixed;
  background: #0099ff;
  z-index: 105; }
  .line.top {
    left: 0;
    top: 0;
    width: 100%;
    height: 30px; }
    @media (max-width: 840px) {
      .line.top {
        height: 15px; } }
  .line.bottom {
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 30px; }
    @media (max-width: 840px) {
      .line.bottom {
        height: 15px; } }
  .line.left {
    left: 0;
    top: 0;
    width: 30px;
    height: 200%; }
    @media (max-width: 840px) {
      .line.left {
        width: 15px; } }
  .line.right {
    left: auto;
    right: 0;
    top: 0;
    width: 30px;
    height: 200%; }
    @media (max-width: 840px) {
      .line.right {
        width: 15px; } }

/*********************************************
 * GLOBAL STYLES
 *********************************************/
html,
body,
.reveal,
.reveal-viewport {
  font-family: Georgia, Palatino, serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: normal;
  color: #444444;
  background: #fafafa;
  background-color: #fafafa; }

::selection {
  color: #fafafa;
  background: #0099ff;
  text-shadow: none; }

::-moz-selection {
  color: #fafafa;
  background: #0099ff;
  text-shadow: none; }

.reveal .slides {
  text-align: left;
}

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

.reveal .slides > section [absolute="true"]{
  align-items: flex-start !important;
  padding-left: 20svw;
}

.reveal .slides > section [absolute="true"] > *{
  max-width: calc(100% - 30svw);
}

.reveal .slides > section [absolute="true"]::before {
  content: '';

  position: absolute;
  top: -100vh;
  bottom: -100vh;
  left: calc(20svw - 5svw);

  width: 2px;

  background: rgba(0, 153, 255, 0.25);
}

/*********************************************
 * HEADERS
 *********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
  color: #111111;
  font-family: Georgia, Palatino, serif;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: normal;
  text-shadow: none;
  word-wrap: break-word; }

.reveal h1 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 4rem; }

.reveal h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 3rem; }

.reveal h3 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 2rem; }

.reveal h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.75rem; }

.reveal h5 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem; }

.reveal h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem; }

/*********************************************
 * OTHER
 *********************************************/
.reveal p {
  margin: 20px 0;
  font-size: 1.35rem;
  line-height: 1.5;
  margin-top: 1rem; }

.reveal *.ibit {
  margin-left: 1.86rem;
}

.reveal *.ibit.fragment.visible:not(.current-fragment) {
  filter: contrast(25%) brightness(0.75);
}

.reveal p.ibit {
  position: relative;

  padding: 0.25rem 0.25rem 0.25rem 1rem;
  margin-left: 1.86rem;

  background: rgba(0, 153, 255, 0.03);
}

.reveal p.ibit::before {
  content: '';

  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;

  width: 3px;

  background: #0099ff;
}

.reveal img.ibit {
  width: 250px;
}

.reveal img.ibit.large {
  width: 500px;
}

/* 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: 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 0px 6px rgba(0, 0, 0, 0.3); }

.reveal code {
  font-family: monospace;
  text-transform: none; }

.reveal pre code {
  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; }

.reveal sub {
  vertical-align: sub; }

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

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

.reveal mark {
  padding-left: 0.5ex;
  padding-right: 0.5ex;
  color: inherit;
  background: rgba(0, 153, 255, 0.45);
  /*background: #0099ff;
  color: #fafafa;*/
}

/*********************************************
 * LINKS
 *********************************************/
.reveal a {
  color: #0099ff;
  text-decoration: none;
  -webkit-transition: color .15s ease;
  -moz-transition: color .15s ease;
  transition: color .15s ease; }

.reveal a:hover {
  color: #fcfcfc;
  text-shadow: none;
  border: none;
  background-color: #0099ff; }

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

/*********************************************
 * IMAGES
 *********************************************/
.reveal section img {
  margin: 15px 0px; }

/*********************************************
 * NAVIGATION CONTROLS
 *********************************************/
.reveal .controls {
  color: #0099ff; }

/*********************************************
 * PROGRESS BAR
 *********************************************/
.reveal .progress {
  background: rgba(0, 0, 0, 0.2);
  color: #0099ff; }

.reveal .progress span {
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }

.reveal .progress {
  z-index: 1000;
  color: #0099ff; }