/**
 * 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: #191919;
  --r-main-font: Source Sans Pro, Helvetica, sans-serif;
  --r-main-font-size: 42px;
  --r-main-color: #fff;
  --r-block-margin: 20px;
  --r-heading-margin: 0 0 20px 0;
  --r-heading-font: Source Sans Pro, Helvetica, sans-serif;
  --r-heading-color: #fff;
  --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: 600;
  --r-heading1-text-shadow: none;
  --r-heading1-size: 2rem;
  --r-heading2-size: 1.6rem;
  --r-heading3-size: 1.3rem;
  --r-heading4-size: 1rem;
  --r-code-font: monospace;
  --r-link-color: #42affa;
  --r-link-color-dark: #068de9;
  --r-link-color-hover: #8dcffc;
  --r-selection-background-color: #bee4fd;
  --r-selection-color: #fff;
}

.reveal-viewport {
  background: #191919;
  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);
  }
}
.progress {
  z-index: 999 !important;
}

.question-answer {
  text-align: left;
}
.question-answer legend {
  margin-bottom: 1rem;
}

.answer {
  font-size: 2rem;
  display: flex;
  margin-bottom: 1rem;
}
.answer label {
  margin-left: 1rem;
}

input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  margin: 0;
  font: inherit;
  color: currentColor;
  border: 4px solid #ffffff;
  border-radius: 50%;
  transform: translateY(-0.075em);
}

input[type=radio]:checked {
  background-color: #00b0f0;
}

input[type=text] {
  -webkit-appearance: none;
  font: inherit;
  appearance: none;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0;
  color: #ffffff;
  width: auto;
  height: 2rem;
  padding: 1rem;
  border: 2px solid #ffffff;
}

input[type=button] {
  background-color: #42affa;
  border: 1px solid #ffffff;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.75rem;
  text-transform: uppercase;
}
input[type=button]:hover {
  background-color: #8dcffc;
}

.backgrounds {
  z-index: 0;
}

.slides {
  z-index: 20;
}
.slides.questions {
  width: 70% !important;
  inset: 50% auto auto 0 !important;
  transform: translate(0, -50%) scale(0.9) !important;
}

.sidebar {
  background-color: rgba(0, 0, 0, 0.5);
  width: 30%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 20;
}
.sidebar.hidden {
  left: 1000vw;
}

.footer {
  background-color: #ffffff;
  width: 100%;
  position: absolute;
  z-index: 30;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem;
}
.footer .title {
  line-height: 100%;
}

section h1 {
  font-size: 2rem !important;
  margin-bottom: 1rem !important;
}
section h2 {
  font-size: 1.5rem !important;
  margin-bottom: 1rem !important;
}
section p, section li {
  font-size: 1.5rem !important;
  margin-top: 0 !important;
}

.start,
.intro,
.finish {
  background-color: rgba(0, 0, 0, 0.5);
}

.questionSet1 {
  background-image: url("/images/backgrounds/swamp.jpg") !important;
}

.questionSet2 {
  background-image: url("/images/backgrounds/forest.jpg") !important;
}

.questionSet3 {
  background-image: url("/images/backgrounds/river.jpg") !important;
}

.questionSet4, .intro-background {
  background-image: url("/images/backgrounds/mountains.jpg") !important;
}

.question-answer {
  background-color: rgba(0, 0, 0, 0.75);
  border: 3px solid #ffffff;
  border-radius: 1rem;
  padding: 2rem;
}

.title {
  color: #066bb3 !important;
  font-size: 66% !important;
  padding-top: 0.5rem;
  padding-left: 1rem;
}

.logo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: auto;
  height: calc(100% - 1rem);
  padding: 0.5rem 1rem;
}
.logo img {
  height: 100%;
  width: auto;
  margin: 0 !important;
}

.alt-logo {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: auto;
  height: calc(100% - 1rem);
  padding: 0.5rem 1rem;
}
.alt-logo img {
  height: 100%;
  width: auto;
  margin: 0 !important;
}

#progress-bar {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  transition: clip-path 1s;
}

.sidebar {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sidebar h6 {
  font-size: 1.25rem;
  text-align: center;
}

.sidebar-timeleft-icon {
  display: flex;
  justify-content: space-around;
  padding-bottom: 2rem;
}

.sidebar-timeleft {
  text-align: center;
}
.sidebar-timeleft .time {
  border: 3px #ffffff solid;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  width: auto;
  background-color: rgba(255, 255, 255, 0.3);
}
.sidebar-timeleft .time-container {
  width: auto;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-progress {
  padding-bottom: 2rem;
}

.icon {
  width: calc(8rem - 3px);
  height: calc(8rem - 3px);
  border: 3px #ffffff solid;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
}
.icon img {
  margin: 0;
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  max-width: 100% !important;
  max-height: 100% !important;
}

.icon-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  flex: 0 0 25%;
  margin-bottom: 1rem;
}
.icon-option .icon {
  margin-bottom: 1rem;
}

.icon-select {
  display: flex;
  flex-wrap: wrap;
}

.stage-breakdown {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-left: 4rem;
  padding-right: 4rem;
}
.stage-breakdown img {
  width: 25%;
  height: auto;
}

p.small {
  font-size: 2rem;
}

.field {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 1rem;
}
.field label {
  width: 25%;
  text-align: right;
  padding-right: 1rem;
  flex: 0 0 25%;
}
.field .error-msg[hidden] {
  opacity: 0;
  height: 0px;
  transform: scale(0);
}
.field .error-msg {
  color: #ff4400;
  display: block;
  font-size: 2rem;
  width: 100%;
  padding-left: 40%;
}

.scrollable {
  overflow-x: scroll;
  height: calc(100% - 8rem);
}

.content {
  text-align: left;
  padding: 2rem;
}
.content h1 {
  text-align: center;
}

.avatar-select {
  margin: 1rem;
  margin-bottom: 0;
}

.no-background {
  background: none !important;
}

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

.intro .intro-logo {
  width: 28%;
  height: auto;
}

.audio {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
}

.audio-icon {
  display: block;
  padding: 0.5rem;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.audio-icon svg {
  width: 2rem;
  height: 2rem;
  fill: #ffffff;
}

.loading-screen {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #42affa;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 1;
  transition: height 0ms 2s, opacity 2s 0ms;
}
.loading-screen.hidden {
  opacity: 0;
  height: 0;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Overwrite the default to keep the scrollbar always visible */
::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) and (orientation: portrait) {
  section h1 {
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
  }
  section h2 {
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
  }
  section p {
    font-size: 2.5rem !important;
    margin-top: 0 !important;
  }

  .footer {
    height: 2rem;
  }
  .footer .title {
    font-size: 1rem !important;
    line-height: 100%;
    padding-left: 3.5rem;
  }

  .slides.questions {
    width: 100% !important;
    inset: 35% auto auto 0 !important;
    transform: translate(0, -50%) scale(0.9) !important;
  }

  .sidebar {
    padding: 0;
    width: 100%;
    height: 11rem;
    flex-direction: row;
    top: auto;
    bottom: 3rem;
  }
  .sidebar h6 {
    font-size: 1rem;
  }

  .sidebar-timeleft-icon {
    width: 66.6666%;
  }

  .sidebar-progress {
    width: 33.3333%;
  }
  .sidebar-progress svg {
    height: calc(8rem - 6px);
  }

  .sidebar-timeleft,
.sidebar-icon,
.sidebar-progress {
    padding: 1.5rem;
  }

  .question-answer {
    font-size: 1.5rem !important;
  }
  .question-answer label {
    font-size: 1.5rem !important;
  }

  input[type=radio] {
    width: 2rem !important;
    height: 2rem !important;
  }

  .icon {
    width: calc(5rem - 3px);
    height: calc(5rem - 3px);
    margin-bottom: 1rem;
  }
  .icon img {
    width: 5rem;
    height: 5rem;
  }

  .sidebar-timeleft .time-container {
    height: calc(6rem + 3px);
  }
  .sidebar-timeleft .time-container .time {
    font-size: 2rem;
  }

  .sidebar-progress svg {
    height: calc(6rem - 6px);
  }

  .intro .question-answer {
    font-size: 2.5rem !important;
  }
  .intro .question-answer label {
    font-size: 2.5rem !important;
  }
  .intro .question-answer small {
    font-size: 1.75rem;
  }
  .intro input[type=radio] {
    width: 3rem !important;
    height: 3rem !important;
  }

  .finish-form .question-answer legend {
    font-size: 2.25rem !important;
  }
  .finish-form .question-answer label {
    font-size: 2.5rem !important;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .footer {
    height: 2.5rem;
  }
  .footer .title {
    font-size: 1.5rem !important;
    padding-left: 4rem;
  }

  input[type=radio] {
    width: 2rem !important;
    height: 2rem !important;
  }

  .slides.questions {
    width: 100% !important;
    inset: 35% auto auto 0 !important;
    transform: translate(0, -50%) scale(0.9) !important;
  }

  .sidebar {
    padding: 0;
    width: 100%;
    height: 11rem;
    flex-direction: row;
    top: auto;
    bottom: 3rem;
  }
  .sidebar h6 {
    font-size: 1rem;
  }

  .sidebar-timeleft-icon {
    width: 66.6666%;
  }

  .sidebar-progress {
    width: 33.3333%;
  }
  .sidebar-progress svg {
    height: calc(8rem - 6px);
  }

  .sidebar-timeleft,
.sidebar-icon,
.sidebar-progress {
    padding: 1.5rem;
  }

  .question-answer {
    font-size: 1.5rem !important;
  }
  .question-answer label {
    font-size: 1.5rem !important;
  }

  .icon {
    width: calc(5rem - 3px);
    height: calc(5rem - 3px);
    margin-bottom: 1rem;
  }
  .icon img {
    width: 5rem;
    height: 5rem;
  }

  .sidebar-timeleft .time-container {
    height: calc(6rem + 3px);
  }
  .sidebar-timeleft .time-container .time {
    font-size: 1.5rem;
  }

  .sidebar-progress svg {
    height: calc(6rem - 6px);
  }
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .footer {
    height: 3rem;
  }
  .footer .title {
    font-size: 2rem !important;
    padding-left: 4.5rem;
  }

  input[type=radio] {
    width: 2rem !important;
    height: 2rem !important;
  }

  .slides.questions {
    width: 75% !important;
    inset: 50% auto auto 0 !important;
    transform: translate(0, -50%) scale(0.9) !important;
  }

  .sidebar {
    flex-direction: column;
    width: 25%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 20;
  }
  .sidebar.hidden {
    left: 1000vw;
  }

  .sidebar-timeleft-icon {
    flex-direction: column;
    width: 100%;
  }

  .sidebar-progress {
    width: calc(100% - 1rem);
  }

  .icon {
    margin-left: auto;
    margin-right: auto;
    width: calc(6rem - 3px);
    height: calc(6rem - 3px);
  }
  .icon img {
    width: 6rem;
    height: 6rem;
  }

  .sidebar-timeleft,
.sidebar-icon,
.sidebar-progress {
    padding: 1rem;
  }

  .sidebar-progress svg {
    height: calc(8rem - 6px);
  }

  .sidebar-timeleft .time-container {
    height: calc(8rem + 3px);
  }
  .sidebar-timeleft .time-container .time {
    font-size: 3rem;
  }
}
@media only screen and (max-height: 378.5px) and (orientation: landscape) {
  .slides {
    transform: translate(-50%, -53%) scale(0.5) !important;
  }
  .slides.questions {
    width: 80% !important;
    inset: 50% auto auto 0 !important;
    transform: translate(0, -50%) scale(0.75) !important;
  }

  .sidebar {
    flex-direction: column;
    width: 20%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 20;
  }
  .sidebar.hidden {
    left: 1000vw;
  }
  .sidebar h6 {
    font-size: 0.75rem;
    margin-bottom: 0;
  }

  .sidebar-timeleft-icon {
    flex-direction: column;
    width: 100%;
    padding-bottom: 0 !important;
  }

  .sidebar-progress {
    width: calc(100% - 1rem);
  }

  .icon {
    margin-left: auto;
    margin-right: auto;
    width: calc(4rem - 3px);
    height: calc(4rem - 3px);
  }
  .icon img {
    width: 4rem;
    height: 4rem;
  }

  .sidebar-timeleft,
.sidebar-icon,
.sidebar-progress {
    padding: 0.5rem;
  }

  .sidebar-progress svg {
    height: calc(5rem - 6px);
  }

  .sidebar-timeleft .time-container {
    height: calc(5rem + 3px);
  }
  .sidebar-timeleft .time-container .time {
    font-size: 1.5rem;
  }

  .footer {
    height: 1.5rem !important;
  }
  .footer .alt-logo,
.footer .logo {
    padding: 0 0.75rem !important;
  }
  .footer .logo {
    right: 0.75rem !important;
  }
  .footer .alt-logo {
    margin-right: 1rem !important;
  }
  .footer .title {
    font-size: 1rem !important;
    padding-left: 3rem !important;
  }
  .footer.hidden {
    bottom: 1000vw !important;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */