@charset "UTF-8";
/*!
 * reveal.js
 * http://revealjs.com
 * MIT licensed
 *
 * Copyright (C) 2020 Hakim El Hattab, http://hakim.se
 */
/*********************************************
 * GLOBAL STYLES
 *********************************************/
html {
  width: 100%;
  height: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

body {
  height: 100%;
  overflow: hidden;
  position: relative;
  line-height: 1;
  margin: 0;
  background-color: #fff;
  color: #000;
}

/*********************************************
 * VIEW FRAGMENTS
 *********************************************/
.reveal .slides section .fragment {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.reveal .slides section .fragment.visible {
  opacity: 1;
  visibility: inherit;
}

.reveal .slides section .fragment.grow {
  opacity: 1;
  visibility: inherit;
}
.reveal .slides section .fragment.grow.visible {
  transform: scale(1.3);
}

.reveal .slides section .fragment.shrink {
  opacity: 1;
  visibility: inherit;
}
.reveal .slides section .fragment.shrink.visible {
  transform: scale(0.7);
}

.reveal .slides section .fragment.zoom-in {
  transform: scale(0.1);
}
.reveal .slides section .fragment.zoom-in.visible {
  transform: none;
}

.reveal .slides section .fragment.fade-out {
  opacity: 1;
  visibility: inherit;
}
.reveal .slides section .fragment.fade-out.visible {
  opacity: 0;
  visibility: hidden;
}

.reveal .slides section .fragment.semi-fade-out {
  opacity: 1;
  visibility: inherit;
}
.reveal .slides section .fragment.semi-fade-out.visible {
  opacity: 0.5;
  visibility: inherit;
}

.reveal .slides section .fragment.strike {
  opacity: 1;
  visibility: inherit;
}
.reveal .slides section .fragment.strike.visible {
  text-decoration: line-through;
}

.reveal .slides section .fragment.fade-up {
  transform: translate(0, 40px);
}
.reveal .slides section .fragment.fade-up.visible {
  transform: translate(0, 0);
}

.reveal .slides section .fragment.fade-down {
  transform: translate(0, -40px);
}
.reveal .slides section .fragment.fade-down.visible {
  transform: translate(0, 0);
}

.reveal .slides section .fragment.fade-right {
  transform: translate(-40px, 0);
}
.reveal .slides section .fragment.fade-right.visible {
  transform: translate(0, 0);
}

.reveal .slides section .fragment.fade-left {
  transform: translate(40px, 0);
}
.reveal .slides section .fragment.fade-left.visible {
  transform: translate(0, 0);
}

.reveal .slides section .fragment.fade-in-then-out,
.reveal .slides section .fragment.current-visible {
  opacity: 0;
  visibility: hidden;
}
.reveal .slides section .fragment.fade-in-then-out.current-fragment,
.reveal .slides section .fragment.current-visible.current-fragment {
  opacity: 1;
  visibility: inherit;
}

.reveal .slides section .fragment.fade-in-then-semi-out {
  opacity: 0;
  visibility: hidden;
}
.reveal .slides section .fragment.fade-in-then-semi-out.visible {
  opacity: 0.5;
  visibility: inherit;
}
.reveal .slides section .fragment.fade-in-then-semi-out.current-fragment {
  opacity: 1;
  visibility: inherit;
}

.reveal .slides section .fragment.highlight-red,
.reveal .slides section .fragment.highlight-current-red,
.reveal .slides section .fragment.highlight-green,
.reveal .slides section .fragment.highlight-current-green,
.reveal .slides section .fragment.highlight-blue,
.reveal .slides section .fragment.highlight-current-blue {
  opacity: 1;
  visibility: inherit;
}

.reveal .slides section .fragment.highlight-red.visible {
  color: #ff2c2d;
}

.reveal .slides section .fragment.highlight-green.visible {
  color: #17ff2e;
}

.reveal .slides section .fragment.highlight-blue.visible {
  color: #1b91ff;
}

.reveal .slides section .fragment.highlight-current-red.current-fragment {
  color: #ff2c2d;
}

.reveal .slides section .fragment.highlight-current-green.current-fragment {
  color: #17ff2e;
}

.reveal .slides section .fragment.highlight-current-blue.current-fragment {
  color: #1b91ff;
}

/*********************************************
 * DEFAULT ELEMENT STYLES
 *********************************************/
/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */
.reveal:after {
  content: "";
  font-style: italic;
}

.reveal iframe {
  z-index: 1;
}

/** Prevents layering issues in certain browser/transition combinations */
.reveal a {
  position: relative;
}

.reveal .stretch {
  max-width: none;
  max-height: none;
}

.reveal pre.stretch code {
  height: 100%;
  max-height: 100%;
  box-sizing: border-box;
}

/*********************************************
 * CONTROLS
 *********************************************/
@keyframes bounce-right {
  0%, 10%, 25%, 40%, 50% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(10px);
  }
  30% {
    transform: translateX(-5px);
  }
}
@keyframes bounce-down {
  0%, 10%, 25%, 40%, 50% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(10px);
  }
  30% {
    transform: translateY(-5px);
  }
}
.reveal .controls {
  display: none;
  position: absolute;
  top: auto;
  bottom: 12px;
  right: 12px;
  left: auto;
  z-index: 11;
  color: #000;
  pointer-events: none;
  font-size: 10px;
}
.reveal .controls button {
  position: absolute;
  padding: 0;
  background-color: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  color: currentColor;
  transform: scale(0.9999);
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  z-index: 2;
  pointer-events: auto;
  font-size: inherit;
  visibility: hidden;
  opacity: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.reveal .controls .controls-arrow:before,
.reveal .controls .controls-arrow:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.6em;
  height: 0.5em;
  border-radius: 0.25em;
  background-color: currentColor;
  transition: all 0.15s ease, background-color 0.8s ease;
  transform-origin: 0.2em 50%;
  will-change: transform;
}
.reveal .controls .controls-arrow {
  position: relative;
  width: 3.6em;
  height: 3.6em;
}
.reveal .controls .controls-arrow:before {
  transform: translateX(0.5em) translateY(1.55em) rotate(45deg);
}
.reveal .controls .controls-arrow:after {
  transform: translateX(0.5em) translateY(1.55em) rotate(-45deg);
}
.reveal .controls .controls-arrow:hover:before {
  transform: translateX(0.5em) translateY(1.55em) rotate(40deg);
}
.reveal .controls .controls-arrow:hover:after {
  transform: translateX(0.5em) translateY(1.55em) rotate(-40deg);
}
.reveal .controls .controls-arrow:active:before {
  transform: translateX(0.5em) translateY(1.55em) rotate(36deg);
}
.reveal .controls .controls-arrow:active:after {
  transform: translateX(0.5em) translateY(1.55em) rotate(-36deg);
}
.reveal .controls .navigate-left {
  right: 6.4em;
  bottom: 3.2em;
  transform: translateX(-10px);
}
.reveal .controls .navigate-right {
  right: 0;
  bottom: 3.2em;
  transform: translateX(10px);
}
.reveal .controls .navigate-right .controls-arrow {
  transform: rotate(180deg);
}
.reveal .controls .navigate-right.highlight {
  animation: bounce-right 2s 50 both ease-out;
}
.reveal .controls .navigate-up {
  right: 3.2em;
  bottom: 6.4em;
  transform: translateY(-10px);
}
.reveal .controls .navigate-up .controls-arrow {
  transform: rotate(90deg);
}
.reveal .controls .navigate-down {
  right: 3.2em;
  bottom: -1.4em;
  padding-bottom: 1.4em;
  transform: translateY(10px);
}
.reveal .controls .navigate-down .controls-arrow {
  transform: rotate(-90deg);
}
.reveal .controls .navigate-down.highlight {
  animation: bounce-down 2s 50 both ease-out;
}
.reveal .controls[data-controls-back-arrows=faded] .navigate-left.enabled, .reveal .controls[data-controls-back-arrows=faded] .navigate-up.enabled {
  opacity: 0.3;
}
.reveal .controls[data-controls-back-arrows=faded] .navigate-left.enabled:hover, .reveal .controls[data-controls-back-arrows=faded] .navigate-up.enabled:hover {
  opacity: 1;
}
.reveal .controls[data-controls-back-arrows=hidden] .navigate-left.enabled, .reveal .controls[data-controls-back-arrows=hidden] .navigate-up.enabled {
  opacity: 0;
  visibility: hidden;
}
.reveal .controls .enabled {
  visibility: visible;
  opacity: 0.9;
  cursor: pointer;
  transform: none;
}
.reveal .controls .enabled.fragmented {
  opacity: 0.5;
}
.reveal .controls .enabled:hover,
.reveal .controls .enabled.fragmented:hover {
  opacity: 1;
}

.reveal[data-navigation-mode=linear].has-horizontal-slides .navigate-up,
.reveal[data-navigation-mode=linear].has-horizontal-slides .navigate-down {
  display: none;
}

.reveal[data-navigation-mode=linear].has-horizontal-slides .navigate-left,
.reveal:not(.has-vertical-slides) .controls .navigate-left {
  bottom: 1.4em;
  right: 5.5em;
}

.reveal[data-navigation-mode=linear].has-horizontal-slides .navigate-right,
.reveal:not(.has-vertical-slides) .controls .navigate-right {
  bottom: 1.4em;
  right: 0.5em;
}

.reveal:not(.has-horizontal-slides) .controls .navigate-up {
  right: 1.4em;
  bottom: 5em;
}

.reveal:not(.has-horizontal-slides) .controls .navigate-down {
  right: 1.4em;
  bottom: 0.5em;
}

.reveal.has-dark-background .controls {
  color: #fff;
}

.reveal.has-light-background .controls {
  color: #000;
}

.reveal.no-hover .controls .controls-arrow:hover:before,
.reveal.no-hover .controls .controls-arrow:active:before {
  transform: translateX(0.5em) translateY(1.55em) rotate(45deg);
}
.reveal.no-hover .controls .controls-arrow:hover:after,
.reveal.no-hover .controls .controls-arrow:active:after {
  transform: translateX(0.5em) translateY(1.55em) rotate(-45deg);
}

@media screen and (min-width: 500px) {
  .reveal .controls[data-controls-layout=edges] {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .reveal .controls[data-controls-layout=edges] .navigate-left,
  .reveal .controls[data-controls-layout=edges] .navigate-right,
  .reveal .controls[data-controls-layout=edges] .navigate-up,
  .reveal .controls[data-controls-layout=edges] .navigate-down {
    bottom: auto;
    right: auto;
  }
  .reveal .controls[data-controls-layout=edges] .navigate-left {
    top: 50%;
    left: 0.8em;
    margin-top: -1.8em;
  }
  .reveal .controls[data-controls-layout=edges] .navigate-right {
    top: 50%;
    right: 0.8em;
    margin-top: -1.8em;
  }
  .reveal .controls[data-controls-layout=edges] .navigate-up {
    top: 0.8em;
    left: 50%;
    margin-left: -1.8em;
  }
  .reveal .controls[data-controls-layout=edges] .navigate-down {
    bottom: -0.3em;
    left: 50%;
    margin-left: -1.8em;
  }
}
/*********************************************
 * PROGRESS BAR
 *********************************************/
.reveal .progress {
  position: absolute;
  display: none;
  height: 3px;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.reveal .progress:after {
  content: "";
  display: block;
  position: absolute;
  height: 10px;
  width: 100%;
  top: -10px;
}

.reveal .progress span {
  display: block;
  height: 100%;
  width: 0px;
  background-color: currentColor;
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
}

/*********************************************
 * SLIDE NUMBER
 *********************************************/
.reveal .slide-number {
  position: absolute;
  display: block;
  right: 8px;
  bottom: 8px;
  z-index: 31;
  font-family: Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 5px;
}

.reveal .slide-number a {
  color: currentColor;
}

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

/*********************************************
 * SLIDES
 *********************************************/
.reveal {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -ms-touch-action: pinch-zoom;
      touch-action: pinch-zoom;
}

.reveal .slides {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
  text-align: center;
  perspective: 600px;
  perspective-origin: 50% 40%;
}

.reveal .slides > section {
  perspective: 600px;
}

.reveal .slides > section,
.reveal .slides > section > section {
  display: none;
  position: absolute;
  width: 100%;
  padding: 20px 0px;
  pointer-events: auto;
  z-index: 10;
  transform-style: flat;
  transition: transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
}

/* Global transition speed settings */
.reveal[data-transition-speed=fast] .slides section {
  transition-duration: 400ms;
}

.reveal[data-transition-speed=slow] .slides section {
  transition-duration: 1200ms;
}

/* Slide-specific transition speed overrides */
.reveal .slides section[data-transition-speed=fast] {
  transition-duration: 400ms;
}

.reveal .slides section[data-transition-speed=slow] {
  transition-duration: 1200ms;
}

.reveal .slides > section.stack {
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
  height: 100%;
}

.reveal .slides > section.present,
.reveal .slides > section > section.present {
  display: block;
  z-index: 11;
  opacity: 1;
}

.reveal .slides > section:empty,
.reveal .slides > section > section:empty,
.reveal .slides > section[data-background-interactive],
.reveal .slides > section > section[data-background-interactive] {
  pointer-events: none;
}

.reveal.center,
.reveal.center .slides,
.reveal.center .slides section {
  min-height: 0 !important;
}

/* Don't allow interaction with invisible slides */
.reveal .slides > section.future,
.reveal .slides > section > section.future,
.reveal .slides > section.past,
.reveal .slides > section > section.past {
  pointer-events: none;
}

.reveal.overview .slides > section,
.reveal.overview .slides > section > section {
  pointer-events: auto;
}

.reveal .slides > section.past,
.reveal .slides > section.future,
.reveal .slides > section > section.past,
.reveal .slides > section > section.future {
  opacity: 0;
}

/*********************************************
 * Mixins for readability of transitions
 *********************************************/
/*********************************************
 * SLIDE TRANSITION
 * Aliased 'linear' for backwards compatibility
 *********************************************/
.reveal.slide section {
  backface-visibility: hidden;
}

.reveal .slides > section[data-transition=slide].past,
.reveal .slides > section[data-transition~=slide-out].past,
.reveal.slide .slides > section:not([data-transition]).past {
  transform: translate(-150%, 0);
}

.reveal .slides > section[data-transition=slide].future,
.reveal .slides > section[data-transition~=slide-in].future,
.reveal.slide .slides > section:not([data-transition]).future {
  transform: translate(150%, 0);
}

.reveal .slides > section > section[data-transition=slide].past,
.reveal .slides > section > section[data-transition~=slide-out].past,
.reveal.slide .slides > section > section:not([data-transition]).past {
  transform: translate(0, -150%);
}

.reveal .slides > section > section[data-transition=slide].future,
.reveal .slides > section > section[data-transition~=slide-in].future,
.reveal.slide .slides > section > section:not([data-transition]).future {
  transform: translate(0, 150%);
}

.reveal.linear section {
  backface-visibility: hidden;
}

.reveal .slides > section[data-transition=linear].past,
.reveal .slides > section[data-transition~=linear-out].past,
.reveal.linear .slides > section:not([data-transition]).past {
  transform: translate(-150%, 0);
}

.reveal .slides > section[data-transition=linear].future,
.reveal .slides > section[data-transition~=linear-in].future,
.reveal.linear .slides > section:not([data-transition]).future {
  transform: translate(150%, 0);
}

.reveal .slides > section > section[data-transition=linear].past,
.reveal .slides > section > section[data-transition~=linear-out].past,
.reveal.linear .slides > section > section:not([data-transition]).past {
  transform: translate(0, -150%);
}

.reveal .slides > section > section[data-transition=linear].future,
.reveal .slides > section > section[data-transition~=linear-in].future,
.reveal.linear .slides > section > section:not([data-transition]).future {
  transform: translate(0, 150%);
}

/*********************************************
 * CONVEX TRANSITION
 * Aliased 'default' for backwards compatibility
 *********************************************/
.reveal .slides section[data-transition=default].stack,
.reveal.default .slides section.stack {
  transform-style: preserve-3d;
}

.reveal .slides > section[data-transition=default].past,
.reveal .slides > section[data-transition~=default-out].past,
.reveal.default .slides > section:not([data-transition]).past {
  transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
}

.reveal .slides > section[data-transition=default].future,
.reveal .slides > section[data-transition~=default-in].future,
.reveal.default .slides > section:not([data-transition]).future {
  transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
}

.reveal .slides > section > section[data-transition=default].past,
.reveal .slides > section > section[data-transition~=default-out].past,
.reveal.default .slides > section > section:not([data-transition]).past {
  transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);
}

.reveal .slides > section > section[data-transition=default].future,
.reveal .slides > section > section[data-transition~=default-in].future,
.reveal.default .slides > section > section:not([data-transition]).future {
  transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);
}

.reveal .slides section[data-transition=convex].stack,
.reveal.convex .slides section.stack {
  transform-style: preserve-3d;
}

.reveal .slides > section[data-transition=convex].past,
.reveal .slides > section[data-transition~=convex-out].past,
.reveal.convex .slides > section:not([data-transition]).past {
  transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
}

.reveal .slides > section[data-transition=convex].future,
.reveal .slides > section[data-transition~=convex-in].future,
.reveal.convex .slides > section:not([data-transition]).future {
  transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
}

.reveal .slides > section > section[data-transition=convex].past,
.reveal .slides > section > section[data-transition~=convex-out].past,
.reveal.convex .slides > section > section:not([data-transition]).past {
  transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);
}

.reveal .slides > section > section[data-transition=convex].future,
.reveal .slides > section > section[data-transition~=convex-in].future,
.reveal.convex .slides > section > section:not([data-transition]).future {
  transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);
}

/*********************************************
 * CONCAVE TRANSITION
 *********************************************/
.reveal .slides section[data-transition=concave].stack,
.reveal.concave .slides section.stack {
  transform-style: preserve-3d;
}

.reveal .slides > section[data-transition=concave].past,
.reveal .slides > section[data-transition~=concave-out].past,
.reveal.concave .slides > section:not([data-transition]).past {
  transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
}

.reveal .slides > section[data-transition=concave].future,
.reveal .slides > section[data-transition~=concave-in].future,
.reveal.concave .slides > section:not([data-transition]).future {
  transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
}

.reveal .slides > section > section[data-transition=concave].past,
.reveal .slides > section > section[data-transition~=concave-out].past,
.reveal.concave .slides > section > section:not([data-transition]).past {
  transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);
}

.reveal .slides > section > section[data-transition=concave].future,
.reveal .slides > section > section[data-transition~=concave-in].future,
.reveal.concave .slides > section > section:not([data-transition]).future {
  transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);
}

/*********************************************
 * ZOOM TRANSITION
 *********************************************/
.reveal .slides section[data-transition=zoom],
.reveal.zoom .slides section:not([data-transition]) {
  transition-timing-function: ease;
}

.reveal .slides > section[data-transition=zoom].past,
.reveal .slides > section[data-transition~=zoom-out].past,
.reveal.zoom .slides > section:not([data-transition]).past {
  visibility: hidden;
  transform: scale(16);
}

.reveal .slides > section[data-transition=zoom].future,
.reveal .slides > section[data-transition~=zoom-in].future,
.reveal.zoom .slides > section:not([data-transition]).future {
  visibility: hidden;
  transform: scale(0.2);
}

.reveal .slides > section > section[data-transition=zoom].past,
.reveal .slides > section > section[data-transition~=zoom-out].past,
.reveal.zoom .slides > section > section:not([data-transition]).past {
  transform: scale(16);
}

.reveal .slides > section > section[data-transition=zoom].future,
.reveal .slides > section > section[data-transition~=zoom-in].future,
.reveal.zoom .slides > section > section:not([data-transition]).future {
  transform: scale(0.2);
}

/*********************************************
 * CUBE TRANSITION
 *
 * WARNING:
 * this is deprecated and will be removed in a
 * future version.
 *********************************************/
.reveal.cube .slides {
  perspective: 1300px;
}

.reveal.cube .slides section {
  padding: 30px;
  min-height: 700px;
  backface-visibility: hidden;
  box-sizing: border-box;
  transform-style: preserve-3d;
}

.reveal.center.cube .slides section {
  min-height: 0;
}

.reveal.cube .slides section:not(.stack):before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transform: translateZ(-20px);
}

.reveal.cube .slides section:not(.stack):after {
  content: "";
  position: absolute;
  display: block;
  width: 90%;
  height: 30px;
  left: 5%;
  bottom: 0;
  background: none;
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);
  transform: translateZ(-90px) rotateX(65deg);
}

.reveal.cube .slides > section.stack {
  padding: 0;
  background: none;
}

.reveal.cube .slides > section.past {
  transform-origin: 100% 0%;
  transform: translate3d(-100%, 0, 0) rotateY(-90deg);
}

.reveal.cube .slides > section.future {
  transform-origin: 0% 0%;
  transform: translate3d(100%, 0, 0) rotateY(90deg);
}

.reveal.cube .slides > section > section.past {
  transform-origin: 0% 100%;
  transform: translate3d(0, -100%, 0) rotateX(90deg);
}

.reveal.cube .slides > section > section.future {
  transform-origin: 0% 0%;
  transform: translate3d(0, 100%, 0) rotateX(-90deg);
}

/*********************************************
 * PAGE TRANSITION
 *
 * WARNING:
 * this is deprecated and will be removed in a
 * future version.
 *********************************************/
.reveal.page .slides {
  perspective-origin: 0% 50%;
  perspective: 3000px;
}

.reveal.page .slides section {
  padding: 30px;
  min-height: 700px;
  box-sizing: border-box;
  transform-style: preserve-3d;
}

.reveal.page .slides section.past {
  z-index: 12;
}

.reveal.page .slides section:not(.stack):before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.1);
  transform: translateZ(-20px);
}

.reveal.page .slides section:not(.stack):after {
  content: "";
  position: absolute;
  display: block;
  width: 90%;
  height: 30px;
  left: 5%;
  bottom: 0;
  background: none;
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateZ(-90px) rotateX(65deg);
}

.reveal.page .slides > section.stack {
  padding: 0;
  background: none;
}

.reveal.page .slides > section.past {
  transform-origin: 0% 0%;
  transform: translate3d(-40%, 0, 0) rotateY(-80deg);
}

.reveal.page .slides > section.future {
  transform-origin: 100% 0%;
  transform: translate3d(0, 0, 0);
}

.reveal.page .slides > section > section.past {
  transform-origin: 0% 0%;
  transform: translate3d(0, -40%, 0) rotateX(80deg);
}

.reveal.page .slides > section > section.future {
  transform-origin: 0% 100%;
  transform: translate3d(0, 0, 0);
}

/*********************************************
 * FADE TRANSITION
 *********************************************/
.reveal .slides section[data-transition=fade],
.reveal.fade .slides section:not([data-transition]),
.reveal.fade .slides > section > section:not([data-transition]) {
  transform: none;
  transition: opacity 0.5s;
}

.reveal.fade.overview .slides section,
.reveal.fade.overview .slides > section > section {
  transition: none;
}

/*********************************************
 * NO TRANSITION
 *********************************************/
.reveal .slides section[data-transition=none],
.reveal.none .slides section:not([data-transition]) {
  transform: none;
  transition: none;
}

/*********************************************
 * PAUSED MODE
 *********************************************/
.reveal .pause-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  transition: all 1s ease;
}

.reveal .pause-overlay .resume-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #ccc;
  border-radius: 2px;
  padding: 6px 14px;
  border: 2px solid #ccc;
  font-size: 16px;
  background: transparent;
  cursor: pointer;
}
.reveal .pause-overlay .resume-button:hover {
  color: #fff;
  border-color: #fff;
}

.reveal.paused .pause-overlay {
  visibility: visible;
  opacity: 1;
}

/*********************************************
 * FALLBACK
 *********************************************/
.no-transforms {
  overflow-y: auto;
}

.no-transforms .reveal {
  overflow: visible;
}

.no-transforms .reveal .slides {
  position: relative;
  width: 80%;
  max-width: 1280px;
  height: auto;
  top: 0;
  margin: 0 auto;
  text-align: center;
}

.no-transforms .reveal .controls,
.no-transforms .reveal .progress {
  display: none;
}

.no-transforms .reveal .slides section {
  display: block;
  opacity: 1;
  position: relative;
  height: auto;
  min-height: 0;
  top: 0;
  left: 0;
  margin: 10vh 0;
  margin: 70px 0;
  transform: none;
}

.reveal .no-transition,
.reveal .no-transition * {
  transition: none !important;
}

/*********************************************
 * PER-SLIDE BACKGROUNDS
 *********************************************/
.reveal .backgrounds {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  perspective: 600px;
}

.reveal .slide-background {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0);
  transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
}

.reveal .slide-background-content {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.reveal .slide-background.stack {
  display: block;
}

.reveal .slide-background.present {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.print-pdf .reveal .slide-background {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Video backgrounds */
.reveal .slide-background video {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.reveal .slide-background[data-background-size=contain] video {
  -o-object-fit: contain;
     object-fit: contain;
}

/* Immediate transition style */
.reveal[data-background-transition=none] > .backgrounds .slide-background,
.reveal > .backgrounds .slide-background[data-background-transition=none] {
  transition: none;
}

/* Slide */
.reveal[data-background-transition=slide] > .backgrounds .slide-background,
.reveal > .backgrounds .slide-background[data-background-transition=slide] {
  opacity: 1;
  backface-visibility: hidden;
}

.reveal[data-background-transition=slide] > .backgrounds .slide-background.past,
.reveal > .backgrounds .slide-background.past[data-background-transition=slide] {
  transform: translate(-100%, 0);
}

.reveal[data-background-transition=slide] > .backgrounds .slide-background.future,
.reveal > .backgrounds .slide-background.future[data-background-transition=slide] {
  transform: translate(100%, 0);
}

.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.past,
.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=slide] {
  transform: translate(0, -100%);
}

.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.future,
.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=slide] {
  transform: translate(0, 100%);
}

/* Convex */
.reveal[data-background-transition=convex] > .backgrounds .slide-background.past,
.reveal > .backgrounds .slide-background.past[data-background-transition=convex] {
  opacity: 0;
  transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
}

.reveal[data-background-transition=convex] > .backgrounds .slide-background.future,
.reveal > .backgrounds .slide-background.future[data-background-transition=convex] {
  opacity: 0;
  transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
}

.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.past,
.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=convex] {
  opacity: 0;
  transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);
}

.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.future,
.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=convex] {
  opacity: 0;
  transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);
}

/* Concave */
.reveal[data-background-transition=concave] > .backgrounds .slide-background.past,
.reveal > .backgrounds .slide-background.past[data-background-transition=concave] {
  opacity: 0;
  transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
}

.reveal[data-background-transition=concave] > .backgrounds .slide-background.future,
.reveal > .backgrounds .slide-background.future[data-background-transition=concave] {
  opacity: 0;
  transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
}

.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.past,
.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=concave] {
  opacity: 0;
  transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);
}

.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.future,
.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=concave] {
  opacity: 0;
  transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);
}

/* Zoom */
.reveal[data-background-transition=zoom] > .backgrounds .slide-background,
.reveal > .backgrounds .slide-background[data-background-transition=zoom] {
  transition-timing-function: ease;
}

.reveal[data-background-transition=zoom] > .backgrounds .slide-background.past,
.reveal > .backgrounds .slide-background.past[data-background-transition=zoom] {
  opacity: 0;
  visibility: hidden;
  transform: scale(16);
}

.reveal[data-background-transition=zoom] > .backgrounds .slide-background.future,
.reveal > .backgrounds .slide-background.future[data-background-transition=zoom] {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.2);
}

.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.past,
.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=zoom] {
  opacity: 0;
  visibility: hidden;
  transform: scale(16);
}

.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.future,
.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=zoom] {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.2);
}

/* Global transition speed settings */
.reveal[data-transition-speed=fast] > .backgrounds .slide-background {
  transition-duration: 400ms;
}

.reveal[data-transition-speed=slow] > .backgrounds .slide-background {
  transition-duration: 1200ms;
}

/*********************************************
 * OVERVIEW
 *********************************************/
.reveal.overview {
  perspective-origin: 50% 50%;
  perspective: 700px;
}
.reveal.overview .slides {
  -moz-transform-style: preserve-3d;
}
.reveal.overview .slides section {
  height: 100%;
  top: 0 !important;
  opacity: 1 !important;
  overflow: hidden;
  visibility: visible !important;
  cursor: pointer;
  box-sizing: border-box;
}
.reveal.overview .slides section:hover,
.reveal.overview .slides section.present {
  outline: 10px solid rgba(150, 150, 150, 0.4);
  outline-offset: 10px;
}
.reveal.overview .slides section .fragment {
  opacity: 1;
  transition: none;
}
.reveal.overview .slides section:after,
.reveal.overview .slides section:before {
  display: none !important;
}
.reveal.overview .slides > section.stack {
  padding: 0;
  top: 0 !important;
  background: none;
  outline: none;
  overflow: visible;
}
.reveal.overview .backgrounds {
  perspective: inherit;
  -moz-transform-style: preserve-3d;
}
.reveal.overview .backgrounds .slide-background {
  opacity: 1;
  visibility: visible;
  outline: 10px solid rgba(150, 150, 150, 0.1);
  outline-offset: 10px;
}
.reveal.overview .backgrounds .slide-background.stack {
  overflow: visible;
}

.reveal.overview .slides section,
.reveal.overview-deactivating .slides section {
  transition: none;
}

.reveal.overview .backgrounds .slide-background,
.reveal.overview-deactivating .backgrounds .slide-background {
  transition: none;
}

/*********************************************
 * RTL SUPPORT
 *********************************************/
.reveal.rtl .slides,
.reveal.rtl .slides h1,
.reveal.rtl .slides h2,
.reveal.rtl .slides h3,
.reveal.rtl .slides h4,
.reveal.rtl .slides h5,
.reveal.rtl .slides h6 {
  direction: rtl;
  font-family: sans-serif;
}

.reveal.rtl pre,
.reveal.rtl code {
  direction: ltr;
}

.reveal.rtl ol,
.reveal.rtl ul {
  text-align: right;
}

.reveal.rtl .progress span {
  float: right;
}

/*********************************************
 * PARALLAX BACKGROUND
 *********************************************/
.reveal.has-parallax-background .backgrounds {
  transition: all 0.8s ease;
}

/* Global transition speed settings */
.reveal.has-parallax-background[data-transition-speed=fast] .backgrounds {
  transition-duration: 400ms;
}

.reveal.has-parallax-background[data-transition-speed=slow] .backgrounds {
  transition-duration: 1200ms;
}

/*********************************************
 * OVERLAY FOR LINK PREVIEWS AND HELP
 *********************************************/
.reveal > .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.reveal > .overlay.visible {
  opacity: 1;
  visibility: visible;
}

.reveal > .overlay .spinner {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  z-index: 10;
  background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);
  visibility: visible;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.reveal > .overlay header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 40px;
  z-index: 2;
  border-bottom: 1px solid #222;
}

.reveal > .overlay header a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 36px;
  padding: 0 10px;
  float: right;
  opacity: 0.6;
  box-sizing: border-box;
}

.reveal > .overlay header a:hover {
  opacity: 1;
}

.reveal > .overlay header a .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-position: 50% 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.reveal > .overlay header a.close .icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC);
}

.reveal > .overlay header a.external .icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==);
}

.reveal > .overlay .viewport {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  top: 40px;
  right: 0;
  bottom: 0;
  left: 0;
}

.reveal > .overlay.overlay-preview .viewport iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.reveal > .overlay.overlay-preview.loaded .viewport iframe {
  opacity: 1;
  visibility: visible;
}

.reveal > .overlay.overlay-preview.loaded .viewport-inner {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 45%;
  width: 100%;
  text-align: center;
  letter-spacing: normal;
}

.reveal > .overlay.overlay-preview .x-frame-error {
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}

.reveal > .overlay.overlay-preview.loaded .x-frame-error {
  opacity: 1;
}

.reveal > .overlay.overlay-preview.loaded .spinner {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.2);
}

.reveal > .overlay.overlay-help .viewport {
  overflow: auto;
  color: #fff;
}

.reveal > .overlay.overlay-help .viewport .viewport-inner {
  width: 600px;
  margin: auto;
  padding: 20px 20px 80px 20px;
  text-align: center;
  letter-spacing: normal;
}

.reveal > .overlay.overlay-help .viewport .viewport-inner .title {
  font-size: 20px;
}

.reveal > .overlay.overlay-help .viewport .viewport-inner table {
  border: 1px solid #fff;
  border-collapse: collapse;
  font-size: 16px;
}

.reveal > .overlay.overlay-help .viewport .viewport-inner table th,
.reveal > .overlay.overlay-help .viewport .viewport-inner table td {
  width: 200px;
  padding: 14px;
  border: 1px solid #fff;
  vertical-align: middle;
}

.reveal > .overlay.overlay-help .viewport .viewport-inner table th {
  padding-top: 20px;
  padding-bottom: 20px;
}

/*********************************************
 * PLAYBACK COMPONENT
 *********************************************/
.reveal .playback {
  position: absolute;
  left: 15px;
  bottom: 20px;
  z-index: 30;
  cursor: pointer;
  transition: all 400ms ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.reveal.overview .playback {
  opacity: 0;
  visibility: hidden;
}

/*********************************************
 * CODE HIGHLGIHTING
 *********************************************/
.reveal .hljs table {
  margin: initial;
}

.reveal .hljs-ln-code,
.reveal .hljs-ln-numbers {
  padding: 0;
  border: 0;
}

.reveal .hljs-ln-numbers {
  opacity: 0.6;
  padding-right: 0.75em;
  text-align: right;
  vertical-align: top;
}

.reveal .hljs.has-highlights tr:not(.highlight-line) {
  opacity: 0.4;
}

.reveal .hljs:not(:first-child).fragment {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
}

/*********************************************
 * ROLLING LINKS
 *********************************************/
.reveal .roll {
  display: inline-block;
  line-height: 1.2;
  overflow: hidden;
  vertical-align: top;
  perspective: 400px;
  perspective-origin: 50% 50%;
}

.reveal .roll:hover {
  background: none;
  text-shadow: none;
}

.reveal .roll span {
  display: block;
  position: relative;
  padding: 0 2px;
  pointer-events: none;
  transition: all 400ms ease;
  transform-origin: 50% 0%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.reveal .roll:hover span {
  background: rgba(0, 0, 0, 0.5);
  transform: translate3d(0px, 0px, -45px) rotateX(90deg);
}

.reveal .roll span:after {
  content: attr(data-title);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 2px;
  backface-visibility: hidden;
  transform-origin: 50% 0%;
  transform: translate3d(0px, 110%, 0px) rotateX(-90deg);
}

/*********************************************
 * SPEAKER NOTES
 *********************************************/
.reveal aside.notes {
  display: none;
}

.reveal .speaker-notes {
  display: none;
  position: absolute;
  width: 33.3333333333%;
  height: 100%;
  top: 0;
  left: 100%;
  padding: 14px 18px 14px 18px;
  z-index: 1;
  font-size: 18px;
  line-height: 1.4;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #222;
  background-color: #f5f5f5;
  overflow: auto;
  box-sizing: border-box;
  text-align: left;
  font-family: Helvetica, sans-serif;
  -webkit-overflow-scrolling: touch;
}
.reveal .speaker-notes .notes-placeholder {
  color: #ccc;
  font-style: italic;
}
.reveal .speaker-notes:focus {
  outline: none;
}
.reveal .speaker-notes:before {
  content: "Speaker notes";
  display: block;
  margin-bottom: 10px;
  opacity: 0.5;
}

.reveal.show-notes {
  max-width: 75%;
  overflow: visible;
}

.reveal.show-notes .speaker-notes {
  display: block;
}

@media screen and (min-width: 1600px) {
  .reveal .speaker-notes {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .reveal.show-notes {
    border-left: 0;
    max-width: none;
    max-height: 70%;
    max-height: 70vh;
    overflow: visible;
  }
  .reveal.show-notes .speaker-notes {
    top: 100%;
    left: 0;
    width: 100%;
    height: 42.8571428571%;
    height: 30vh;
    border: 0;
  }
}
@media screen and (max-width: 600px) {
  .reveal.show-notes {
    max-height: 60%;
    max-height: 60vh;
  }
  .reveal.show-notes .speaker-notes {
    top: 100%;
    height: 66.6666666667%;
    height: 40vh;
  }
  .reveal .speaker-notes {
    font-size: 14px;
  }
}
/*********************************************
 * ZOOM PLUGIN
 *********************************************/
.zoomed .reveal *,
.zoomed .reveal *:before,
.zoomed .reveal *:after {
  backface-visibility: visible !important;
}

.zoomed .reveal .progress,
.zoomed .reveal .controls {
  opacity: 0;
}

.zoomed .reveal .roll span {
  background: none;
}

.zoomed .reveal .roll span:after {
  visibility: hidden;
}

/*********************************************
 * SURVEY STYLES
 *********************************************/
.survey {
  --base-unit: 0.2em;
  /*!
   * surveyjs - Survey JavaScript library v1.8.46
   * Copyright (c) 2015-2021 Devsoft Baltic OÜ  - http://surveyjs.io/
   * License: MIT (http://www.opensource.org/licenses/mit-license.php)
   */
  /* Adding additional styling for survey */

}
.survey .sv-dropdown__value input {
  border: none;
  box-shadow: none;
  background: transparent;
}
.survey .sv-dropdown {
  width: 40%;
}
.survey .sv-dropdown_clean-button {
  position: relative;
}
.survey .sv-dropdown_clean-button-svg {
  width: 20px;
  position: absolute;
  left: 90%;
  top: -110px;
  cursor: pointer;
}
.survey .sv-visuallyhidden {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
.survey .sv-hidden {
  display: none !important;
}
.survey sv-popup {
  display: block;
  position: absolute;
  z-index: -1;
}
.survey .sv-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.survey .sv-popup__container {
  position: absolute;
  z-index: 1000;
  filter: drop-shadow(0px calc(1 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)) rgba(0, 0, 0, 0.1));
  padding: calc(1 * var(--base-unit, 8px)) 0;
  background: white;
  border-radius: 4px;
}
.survey .sv-popup__scrolling-content {
  max-width: 90vh;
  max-height: 90vh;
  overflow: auto;
}
.survey .sv-popup__scrolling-content::-webkit-scrollbar {
  height: 6px;
  width: 6px;
  background-color: var(--background-dim, #f3f3f3);
}
.survey .sv-popup__scrolling-content::-webkit-scrollbar-thumb {
  background: var(--primary-light, rgba(25, 179, 148, 0.1));
}
.survey .sv-popup__content {
  min-width: 100%;
}
.survey .sv-popup--show-pointer.sv-popup--top {
  transform: translateY(calc(-1 * var(--base-unit, 8px)));
}
.survey .sv-popup--show-pointer.sv-popup--top .sv-popup__pointer {
  transform: translate(calc(-1 * var(--base-unit, 8px))) rotate(180deg);
}
.survey .sv-popup--show-pointer.sv-popup--bottom {
  transform: translateY(calc(1 * var(--base-unit, 8px)));
}
.survey .sv-popup--show-pointer.sv-popup--bottom .sv-popup__pointer {
  transform: translate(calc(-1 * var(--base-unit, 8px)), calc(-1 * var(--base-unit, 8px)));
}
.survey .sv-popup--show-pointer.sv-popup--right {
  transform: translate(calc(1 * var(--base-unit, 8px)));
}
.survey .sv-popup--show-pointer.sv-popup--right .sv-popup__pointer {
  transform: translate(-12px, -4px) rotate(-90deg);
}
.survey .sv-popup--show-pointer.sv-popup--left {
  transform: translate(calc(-1 * var(--base-unit, 8px)));
}
.survey .sv-popup--show-pointer.sv-popup--left .sv-popup__pointer {
  transform: translate(-4px, -4px) rotate(90deg);
}
.survey .sv-popup__pointer {
  display: block;
  position: absolute;
}
.survey .sv-popup__pointer:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-left: calc(1 * var(--base-unit, 8px)) solid transparent;
  border-right: calc(1 * var(--base-unit, 8px)) solid transparent;
  border-bottom: calc(1 * var(--base-unit, 8px)) solid white;
  -ms-flex-item-align: center;
      align-self: center;
}
.survey .sv-popup--modal .sv-popup__container {
  filter: none;
  padding: calc(4 * var(--base-unit, 8px));
}
.survey .sv-popup__footer {
  display: -ms-flexbox;
  display: flex;
  margin-top: calc(4 * var(--base-unit, 8px));
}
.survey .sv-popup__footer-item:first-child {
  margin-left: auto;
}
.survey .sv-popup__footer-item + .sv-popup__footer-item {
  margin-left: calc(1 * var(--base-unit, 8px));
}
.survey .sv-popup__button {
  padding: calc(2 * var(--base-unit, 8px)) calc(6 * var(--base-unit, 8px));
  background: var(--background, #fff);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  cursor: pointer;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  text-align: center;
  color: var(--primary, #19b394);
  border: none;
  outline: none;
}
.survey .sv-popup__button:hover {
  box-shadow: 0 0 0 2px var(--primary, #19b394);
}
.survey .sv-popup__button:disabled {
  color: var(--foreground-disabled, rgba(22, 22, 22, 0.16));
  cursor: default;
}
.survey .sv-popup__button:disabled:hover {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
}
.survey .sv-popup__button--apply {
  background-color: var(--primary, #19b394);
  color: var(--primary-foreground, #fff);
}
.survey .sv-popup__button--apply:disabled {
  background-color: var(--background-dim, #f3f3f3);
}
.survey .sv-container-modern {
  color: #404040;
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.survey .sv-container-modern__title {
  padding-left: 0.55em;
  color: #1ab394;
  padding-top: 5em;
  padding-bottom: 0.9375em;
}
@media only screen and (min-width: 1000px) {
  .survey .sv-container-modern__title {
    margin-right: 5%;
    margin-left: 5%;
  }
}
@media only screen and (max-width: 1000px) {
  .survey .sv-container-modern__title {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.survey .sv-container-modern__title h3 {
  margin: 0;
  font-size: 1.875em;
}
.survey .sv-container-modern__title h5 {
  margin: 0;
}
.survey .sv-container-modern fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.survey .sv-container-modern legend {
  border: none;
  padding: 0;
  margin: 0;
}
.survey .sv-body__page,
.survey .sv-body__footer {
  margin-top: 2em;
}
@media only screen and (min-width: 1000px) {
  .survey .sv-body__page,
  .survey .sv-body__footer {
    margin-right: 5%;
    margin-left: 5%;
  }
}
@media only screen and (max-width: 1000px) {
  .survey .sv-body__page,
  .survey .sv-body__footer {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.survey .sv-body__progress {
  margin-bottom: 4.5em;
}
.survey .sv-body__progress:not(:first-child) {
  margin-top: 2.5em;
}
.survey .sv-page__title {
  margin: 0;
  margin-bottom: 1.333em;
  font-size: 1.875em;
  padding-left: 0.293em;
}
.survey .sv-page__description {
  min-height: 2.8em;
  font-size: 1em;
  padding-left: 0.55em;
}
.survey .sv-page__title + .sv-page__description {
  /*margin-top: -2.8em;*/
  margin-top: 0em !important;
  color: black !important;
}
.survey .sv-panel {
  box-sizing: border-box;
  min-width: 300px;
}
.survey .sv-panel__title {
  font-size: 1.25em;
  margin: 0;
  padding: 0;
  padding-bottom: 0.1em;
  padding-left: 0.44em;
}
.survey .sv-panel__footer {
  margin: 0;
  padding: 1em 0.44em 1em 0;
}
.survey .sv-panel__description {
  padding-left: 0.55em;
}
.survey .sv-panel__title--expandable {
  cursor: pointer;
}
.survey .sv-panel__icon {
  outline: none;
}
.survey .sv-panel__icon:before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 10 10' style='enable-background:new 0 0 10 10;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23404040;%7D%0A%3C/style%3E%3Cpolygon class='st0' points='2,2 0,4 5,9 10,4 8,2 5,5 '/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  height: 0.5em;
  width: 0.6em;
  margin-left: 1.5em;
  vertical-align: middle;
}
.survey .sv-panel__icon--expanded:before {
  transform: rotate(180deg);
}
.survey .sv-panel .sv-question__title {
  font-size: 1em;
  padding-left: 0.55em;
}
.survey .sv-panel__content:not(:first-child) {
  margin-top: 0.75em;
}
.survey .sv-panel .sv-row:not(:last-child) {
  padding-bottom: 1.875em;
}
.survey .sv-panel__title--error {
  background-color: rgba(213, 41, 1, 0.2);
}
.survey .sv-paneldynamic__progress-container {
  position: relative;
  margin-left: 0.75em;
  margin-right: 250px;
  margin-top: 20px;
}
.survey .sv-paneldynamic__add-btn {
  background-color: #1948b3;
  float: right;
  margin-top: -18px;
}
.survey [dir=rtl] .sv-paneldynamic__add-btn,
.survey [style*="direction:rtl"] .sv-paneldynamic__add-btn {
  float: left;
}
.survey .sv-paneldynamic__add-btn--list-mode {
  float: none;
  margin-top: 1em;
}
.survey .sv-paneldynamic__remove-btn {
  background-color: #ff1800;
  margin-top: 1.25em;
}
.survey .sv-paneldynamic__remove-btn--right {
  margin-top: 0;
  margin-left: 1.25em;
}
.survey .sv-paneldynamic__prev-btn,
.survey .sv-paneldynamic__next-btn {
  box-sizing: border-box;
  display: inline-block;
  fill: #404040;
  cursor: pointer;
  width: 0.7em;
  top: -0.28em;
  position: absolute;
}
.survey .sv-paneldynamic__prev-btn {
  left: -1.3em;
  transform: rotate(90deg);
}
.survey .sv-paneldynamic__next-btn {
  right: -1.3em;
  transform: rotate(270deg);
}
.survey .sv-paneldynamic__prev-btn--disabled,
.survey .sv-paneldynamic__next-btn--disabled {
  fill: #dbdbdb;
  cursor: auto;
}
.survey .sv-paneldynamic__progress-text {
  color: #9d9d9d;
  font-weight: bold;
  font-size: 0.87em;
  margin-top: 0.69em;
  margin-left: 1em;
}
.survey .sv-paneldynamic__separator {
  border: none;
  margin: 0;
}
.survey .sv-paneldynamic__progress--top {
  margin-bottom: 1em;
}
.survey .sv-paneldynamic__progress--bottom {
  margin-top: 1em;
}
.survey .sv-paneldynamic__panel-wrapper ~ .sv-paneldynamic__panel-wrapper {
  padding-top: 2.5em;
}
.survey .sv-paneldynamic__panel-wrapper--in-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
}
@supports ((display: -ms-flexbox) or (display: flex)) {
  .survey .sv-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .survey .sv-vue-row-additional-div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .survey .sv-row > .sv-row__panel,
  .survey .sv-row__question:not(:last-child) {
    float: left;
  }
}
@media only screen and (-ms-high-contrast: active) and (max-width: 600px), only screen and (-ms-high-contrast: none) and (max-width: 600px) {
  .survey .sv-row > .sv-row__panel,
  .survey .sv-row__question:not(:last-child) {
    padding-bottom: 2.5em;
    float: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .survey [dir=rtl] .sv-row__question:not(:last-child),
  .survey [style*="direction:rtl"] .sv-row__question:not(:last-child) {
    float: right;
  }
}
@media only screen and (-ms-high-contrast: active) and (max-width: 6000px), only screen and (-ms-high-contrast: none) and (max-width: 6000px) {
  .survey .sv-row__question--small:only-child {
    max-width: 3000px;
  }
}
@media only screen and (-ms-high-contrast: active) and (max-width: 3000px), only screen and (-ms-high-contrast: none) and (max-width: 3000px) {
  .survey .sv-row__question--small:only-child {
    max-width: 1200px;
  }
}
@media only screen and (-ms-high-contrast: active) and (max-width: 2000px), only screen and (-ms-high-contrast: none) and (max-width: 2000px) {
  .survey .sv-row__question--small:only-child {
    max-width: 700px;
  }
}
@media only screen and (-ms-high-contrast: active) and (max-width: 1000px), only screen and (-ms-high-contrast: none) and (max-width: 1000px) {
  .survey .sv-row__question--small:only-child {
    max-width: 500px;
  }
}
@media only screen and (-ms-high-contrast: active) and (max-width: 500px), only screen and (-ms-high-contrast: none) and (max-width: 500px) {
  .survey .sv-row__question--small:only-child {
    max-width: 300px;
  }
}
@media only screen and (-ms-high-contrast: active) and (max-width: 600px), only screen and (-ms-high-contrast: none) and (max-width: 600px) {
  .survey .sv-row > .sv-row__panel,
  .survey .sv-row__question {
    width: 100% !important;
    padding-right: 0 !important;
  }
}
.survey .sv-row > .sv-row__panel,
.survey .sv-row__question {
  vertical-align: top;
  white-space: normal;
  min-width: 300px;
}
.survey .sv-row__question:first-child:last-child {
  -ms-flex: none !important;
      flex: none !important;
}
.survey .sv-row:not(:last-child) {
  padding-bottom: 2.5em;
}
.survey .sv-question {
  overflow: auto;
  box-sizing: border-box;
  font-family: inherit;
}
.survey .sv-question__title {
  position: relative;
  box-sizing: border-box;
  margin: 0;
  padding: 0.25em 0.44em;
  cursor: default;
  font-size: 1.25em;
  word-break: break-word;
}
.survey .sv-question__required-text {
  line-height: 0.8em;
  font-size: 1.4em;
}
.survey .sv-question__description {
  margin: 0;
  padding-left: 0.55em;
  font-size: 1em;
  word-break: break-word;
}
.survey .sv-question__input {
  width: 100%;
  height: 1.81em;
}
.survey .sv-question__content {
  margin-left: 0.55em;
}
.survey .sv-question__erbox {
  color: #d52901;
  font-size: 0.74em;
  font-weight: bold;
}
.survey .sv-question__erbox--location--top {
  margin-bottom: 0.4375em;
}
.survey .sv-question__erbox--location--bottom {
  margin-top: 0.4375em;
}
.survey .sv-question__footer {
  padding: 0.87em 0;
}
.survey .sv-question__title--answer {
  background-color: rgba(26, 179, 148, 0.2);
}
.survey .sv-question__title--error {
  background-color: rgba(213, 41, 1, 0.2);
}
.survey .sv-question__header--location--top {
  margin-bottom: 0.65em;
}
.survey .sv-question__header--location--left {
  float: left;
  width: 27%;
  margin-right: 0.875em;
}
.survey [dir=rtl] .sv-question__header--location--left,
.survey [style*="direction:rtl"] .sv-question__header--location--left {
  float: right;
}
.survey .sv-question__header--location--bottom {
  margin-top: 0.8em;
}
.survey .sv-question__content--left {
  overflow: hidden;
}
.survey .sv-question__other {
  margin-top: 0.5em;
}
.survey .sv-question__form-group {
  margin-top: 0.5em;
}
.survey .sv-question--disabled .sv-question__header {
  color: rgba(64, 64, 64, 0.5);
}
.survey .sv-image {
  display: inline-block;
}
.survey .sv-question__title--expandable {
  cursor: pointer;
}
.survey .sv-question__icon {
  outline: none;
}
.survey .sv-question__icon:before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 10 10' style='enable-background:new 0 0 10 10;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23404040;%7D%0A%3C/style%3E%3Cpolygon class='st0' points='2,2 0,4 5,9 10,4 8,2 5,5 '/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  height: 0.5em;
  width: 0.6em;
  margin-left: 1.5em;
  vertical-align: middle;
}
.survey .sv-question__icon--expanded:before {
  transform: rotate(180deg);
}
.survey .sv-progress {
  height: 0.19em;
  background-color: #e7e7e7;
}
.survey .sv-progress__bar {
  position: relative;
  height: 100%;
  background-color: #1ab394;
}
.survey .sv-progress__text {
  position: absolute;
  margin-top: 0.69em;
  color: #9d9d9d;
  font-size: 0.87em;
  font-weight: bold;
  padding-left: 0.6321em;
}
@media only screen and (min-width: 1000px) {
  .survey .sv-progress__text {
    margin-left: 5%;
  }
}
@media only screen and (max-width: 1000px) {
  .survey .sv-progress__text {
    margin-left: 10px;
  }
}
.survey .sv-title {
  font-family: "Raleway";
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
}
.survey .sv-description {
  color: rgba(64, 64, 64, 0.5);
}
.survey .sv-question .sv-selectbase {
  margin-bottom: 4px;
}
.survey .sv-selectbase__item {
  margin-bottom: 0.425em;
  vertical-align: top;
}
.survey .sv-selectbase__item--inline {
  display: inline-block;
  padding-right: 5%;
}
.survey .sv-selectbase__column {
  min-width: 140px;
  vertical-align: top;
}
.survey .sv-selectbase__label {
  display: block;
  box-sizing: border-box;
  width: 100%;
  cursor: inherit;
}
.survey .sv-selectbase__clear-btn {
  margin-top: 0.9em;
  background-color: #1948b3;
}
.survey .sv-selectbase .sv-selectbase__item.sv-q-col-1 {
  padding-right: 0;
}
.survey .sv-multipletext__row:not(:last-child) {
  margin-bottom: 1em;
}
.survey .sv-multipletext__cell:not(:first-child) {
  padding-left: 0.5em;
}
.survey .sv-multipletext__cell:not(:last-child) {
  padding-right: 0.5em;
}
.survey .sv-matrix {
  overflow-x: auto;
}
.survey .sv-matrix .sv-table__cell--header {
  text-align: center;
}
.survey .sv-matrix__label {
  display: inline-block;
  margin: 0;
}
.survey .sv-matrix__cell {
  min-width: 2em;
  text-align: center;
}
.survey .sv-matrix__cell:first-child {
  text-align: left;
}
.survey .sv-matrix__text {
  cursor: pointer;
}
.survey .sv-matrix__text--checked {
  color: #ffffff;
  background-color: #1ab394;
}
.survey .sv-matrix__text--disabled {
  cursor: default;
}
.survey .sv-matrix__text--disabled.sv-matrix__text--checked {
  background-color: #dbdbdb;
}
.survey .sv-matrix__row--error {
  background-color: rgba(213, 41, 1, 0.2) !important;
}
.survey .sv-matrixdynamic__add-btn {
  background-color: #1948b3;
}
.survey .sv-matrixdynamic__remove-btn {
  background-color: #ff1800;
}
.survey .sv-detail-panel__icon {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  height: 13px;
  width: 24px;
  transform: translate(-50%, -50%) rotate(270deg);
}
.survey .sv-detail-panel__icon--expanded {
  transform: translate(-50%, -50%);
}
.survey .sv-detail-panel__icon:before {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%239A9A9A;%7D%0A%3C/style%3E%3Cpolygon class='st0' points='19,6 17,4 10,11 3,4 1,6 10,15 '/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  height: 18px;
  width: 24px;
}
.survey .sv-root-modern ::-webkit-scrollbar {
  height: 6px;
  width: 6px;
  background-color: #9f9f9f;
}
.survey .sv-root-modern ::-webkit-scrollbar-thumb {
  background: #1ab394;
}
.survey .sv-table {
  width: 100%;
  background-color: rgba(159, 159, 159, 0.1);
  border-collapse: separate;
  border-spacing: 0;
}
.survey .sv-table tbody tr:last-child .sv-table__cell {
  padding-bottom: 2.5em;
}
.survey .sv-table tr:first-child .sv-table__cell {
  padding-top: 1.875em;
}
.survey .sv-table td:first-child,
.survey .sv-table th:first-child {
  padding-left: 1.875em;
}
.survey .sv-table td:last-child,
.survey .sv-table th:last-child {
  padding-right: 1.875em;
}
.survey .sv-table__row--detail {
  background-color: #e7e7e7;
}
.survey .sv-table__row--detail td {
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  padding: 1em 0;
}
.survey .sv-table__cell {
  padding: 0.9375em 0;
  box-sizing: content-box;
  vertical-align: top;
}
.survey .sv-table__cell:not(:last-child) {
  padding-right: 1em;
}
.survey .sv-table__cell:not(:first-child) {
  padding-left: 1em;
}
.survey .sv-table__cell--header {
  font-family: Raleway;
  font-weight: bold;
  text-align: left;
}
.survey .sv-table__cell--rowText {
  vertical-align: middle;
}
.survey .sv-table__cell--detail {
  text-align: center;
  vertical-align: middle;
  width: 32px;
}
.survey .sv-table__cell--detail-rowtext {
  vertical-align: middle;
}
.survey .sv-table__cell--detail-panel {
  padding-left: 1em;
}
.survey .sv-table__cell--detail-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  border: 3px solid rgba(64, 64, 64, 0.5);
  border-radius: 50px;
  text-align: center;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  outline: none;
  cursor: pointer;
  background: transparent;
}
.survey .sv-table__empty--rows--section {
  text-align: center;
  vertical-align: middle;
}
.survey .sv-table__empty--rows--text {
  padding: 20px;
}
.survey .sv-table__cell--actions sv-action-bar,
.survey .sv-table__cell--actions .sv-action-bar {
  margin-left: 0;
  padding-left: 0;
}
.survey .sv-footer {
  min-height: 2em;
  padding: 2.5em 0 0.87em 0;
}
.survey .sv-footer__complete-btn {
  background-color: #1ab394;
  float: right;
}
.survey .sv-footer__next-btn {
  background-color: #1ab394;
  float: right;
}
.survey .sv-footer__prev-btn {
  background-color: #1ab394;
  float: left;
}
.survey .sv-footer__preview-btn {
  background-color: #1ab394;
  float: right;
}
.survey .sv-footer__edit-btn {
  background-color: #1ab394;
  float: left;
}
.survey .sv-footer__start-btn {
  background-color: #1ab394;
}
.survey [dir=rtl] .sv-footer__complete-btn,
.survey [style*="direction:rtl"] .sv-footer__complete-btn {
  float: left;
}
.survey [dir=rtl] .sv-footer__preview-btn,
.survey [style*="direction:rtl"] .sv-footer__preview-btn {
  float: left;
}
.survey [dir=rtl] .sv-footer__next-btn,
.survey [style*="direction:rtl"] .sv-footer__next-btn {
  float: left;
}
.survey [dir=rtl] .sv-footer__prev-btn,
.survey [style*="direction:rtl"] .sv-footer__prev-btn {
  float: right;
}
.survey [dir=rtl] .sv-footer__edit-btn,
.survey [style*="direction:rtl"] .sv-footer__edit-btn {
  float: right;
}
.survey .sv-btn.sv-action-bar-item,
.survey .sv-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 1.214em;
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875em;
  font-weight: bold;
  outline: none;
  padding: 0.5em 2.786em 0.6em;
  text-align: left;
}
.survey .sv-item {
  position: relative;
  cursor: pointer;
}
.survey .sv-item--disabled {
  cursor: default;
}
.survey .sv-item__decorator {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  border: solid 1px transparent;
  vertical-align: middle;
}
.survey .sv-item__svg {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.survey .sv-item__control:focus + .sv-item__decorator {
  border-color: #1ab394;
  outline: none;
}
.survey .sv-item__control-label {
  margin-left: 0.4125em;
  vertical-align: middle;
}
.survey .sv-checkbox__decorator {
  border-radius: 2px;
}
.survey .sv-checkbox__svg {
  border: 3px solid rgba(64, 64, 64, 0.5);
  border-radius: 2px;
  fill: transparent;
}
.survey .sv-checkbox--allowhover:hover .sv-checkbox__svg {
  border: none;
  background-color: #9f9f9f;
  fill: white;
}
.survey .sv-checkbox--checked .sv-checkbox__svg {
  border: none;
  background-color: #1ab394;
  fill: white;
}
.survey .sv-checkbox--checked.sv-checkbox--disabled .sv-checkbox__svg {
  border: none;
  background-color: #dbdbdb;
  fill: white;
}
.survey .sv-checkbox--disabled .sv-checkbox__svg {
  border: 3px solid #dbdbdb;
}
.survey .sv-radio__decorator {
  border-radius: 100%;
}
.survey .sv-radio__svg {
  border: 3px solid rgba(64, 64, 64, 0.5);
  border-radius: 100%;
  fill: transparent;
}
.survey .sv-radio--allowhover:hover .sv-radio__svg {
  fill: rgba(64, 64, 64, 0.5);
}
.survey .sv-radio--checked .sv-radio__svg {
  border-color: #404040;
  fill: #404040;
}
.survey .sv-radio--disabled .sv-radio__svg {
  border-color: #dbdbdb;
}
.survey .sv-radio--disabled.sv-radio--checked .sv-radio__svg {
  fill: #dbdbdb;
}
.survey .sv-boolean {
  display: block;
  position: relative;
  line-height: 1.5em;
}
.survey .sv-boolean__switch {
  float: left;
  box-sizing: border-box;
  width: 4em;
  height: 1.5em;
  margin-right: 1.0625em;
  margin-left: 1.3125em;
  padding: 0.125em 0.1875em;
  border-radius: 0.75em;
}
.survey [dir=rtl] .sv-boolean__switch,
.survey [style*="direction:rtl"] .sv-boolean__switch {
  float: right;
}
.survey .sv-boolean__slider {
  display: block;
  width: 1.25em;
  height: 1.25em;
  transition-duration: 0.1s;
  transition-property: margin-left;
  transition-timing-function: linear;
  border: none;
  border-radius: 100%;
}
.survey .sv-boolean--indeterminate .sv-boolean__slider {
  margin-left: calc(50% - 0.625em);
}
.survey .sv-boolean--checked .sv-boolean__slider {
  margin-left: calc(100% - 1.25em);
}
.survey .sv-boolean__label {
  cursor: pointer;
  float: left;
}
.survey [dir=rtl] .sv-boolean__label,
.survey [style*="direction:rtl"] .sv-boolean__label {
  float: right;
}
.survey [dir=rtl] .sv-boolean--indeterminate .sv-boolean__slider,
.survey [style*="direction:rtl"] .sv-boolean--indeterminate .sv-boolean__slider {
  margin-right: calc(50% - 0.625em);
}
.survey [dir=rtl] .sv-boolean--checked .sv-boolean__slider,
.survey [style*="direction:rtl"] .sv-boolean--checked .sv-boolean__slider {
  margin-right: calc(100% - 1.25em);
}
.survey .sv-imagepicker__item {
  border: none;
  padding: 0.24em;
}
.survey .sv-imagepicker__item--inline {
  display: inline-block;
}
.survey .sv-imagepicker__item--inline:not(:last-child) {
  margin-right: 4%;
}
.survey .sv-imagepicker__image {
  border: 0.24em solid transparent;
  display: block;
  pointer-events: none;
}
.survey .sv-imagepicker__label {
  cursor: inherit;
}
.survey .sv-imagepicker__text {
  font-size: 1.14em;
  padding-left: 0.24em;
}
.survey .sv-imagepicker__item--allowhover:hover .sv-imagepicker__image {
  background-color: #9f9f9f;
  border-color: #9f9f9f;
}
.survey .sv-imagepicker__item--checked .sv-imagepicker__image {
  background-color: #1ab394;
  border-color: #1ab394;
}
.survey .sv-imagepicker__item {
  cursor: pointer;
}
.survey .sv-imagepicker__item--disabled {
  cursor: default;
}
.survey .sv-imagepicker__item--disabled.sv-imagepicker__item--checked .sv-imagepicker__image {
  background-color: #dbdbdb;
  border-color: #dbdbdb;
}
.survey .sv-dropdown {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  background: transparent;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 10 10' style='enable-background:new 0 0 10 10;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23404040;%7D%0A%3C/style%3E%3Cpolygon class='st0' points='2,2 0,4 5,9 10,4 8,2 5,5 '/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.57em 100%;
  border: none;
  border-bottom: 0.06em solid #d4d4d4;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  padding: 0.25em 1.5em 0.25em 0.87em;
  height: 2.19em;
  width: 100%;
}
.survey .sv-dropdown:focus {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 10 10' style='enable-background:new 0 0 10 10;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%231AB394;%7D%0A%3C/style%3E%3Cpolygon class='st0' points='2,2 0,4 5,9 10,4 8,2 5,5 '/%3E%3C/svg%3E ");
  border-color: #d4d4d4;
  outline: none;
}
.survey .sv-dropdown::-ms-expand {
  display: none;
}
.survey .sv-dropdown--error {
  border-color: #d52901;
  color: #d52901;
}
.survey .sv-dropdown--error::-moz-placeholder {
  color: #d52901;
}
.survey .sv-dropdown--error:-ms-input-placeholder {
  color: #d52901;
}
.survey .sv-dropdown--error::placeholder {
  color: #d52901;
}
.survey .sv-dropdown option {
  color: #404040;
}
.survey .sv-text {
  box-sizing: border-box;
  width: 100%;
  height: 2.19em;
  padding: 0.25em 0 0.25em 0.87em;
  border: none;
  border-radius: 0;
  border-bottom: 0.07em solid #d4d4d4;
  box-shadow: none;
  background-color: transparent;
  font-family: inherit;
  font-size: 1em;
}
.survey .sv-text:focus {
  border-color: #1ab394;
  outline: none;
  box-shadow: none;
}
.survey .sv-text:invalid {
  box-shadow: none;
}
.survey .sv-text:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}
.survey .sv-text::-moz-placeholder {
  opacity: 1;
  color: #404040;
}
.survey .sv-text:-ms-input-placeholder {
  opacity: 1;
  color: #404040;
}
.survey .sv-text::placeholder {
  opacity: 1;
  color: #404040;
}
.survey .sv-text:-ms-input-placeholder {
  opacity: 1;
  color: #404040;
}
.survey .sv-text::-ms-input-placeholder {
  opacity: 1;
  color: #404040;
}
.survey .sv-text[type=date] {
  padding-right: 2px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 10 10' style='enable-background:new 0 0 10 10;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23404040;%7D%0A%3C/style%3E%3Cpolygon class='st0' points='2,2 0,4 5,9 10,4 8,2 5,5 '/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat, repeat;
  background-position: right 0.61em top 50%, 0 0;
  background-size: 0.57em auto, 100%;
}
.survey .sv-text[type=date]:focus {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 10 10' style='enable-background:new 0 0 10 10;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%231AB394;%7D%0A%3C/style%3E%3Cpolygon class='st0' points='2,2 0,4 5,9 10,4 8,2 5,5 '/%3E%3C/svg%3E ");
}
.survey .sv-text[type=date]::-webkit-calendar-picker-indicator {
  color: transparent;
  background: transparent;
}
.survey .sv-text[type=date]::-webkit-clear-button {
  display: none;
}
.survey .sv-text[type=date]::-webkit-inner-spin-button {
  display: none;
}
.survey .sv-text--error {
  color: #d52901;
  border-color: #d52901;
}
.survey .sv-text--error::-moz-placeholder {
  color: #d52901;
}
.survey .sv-text--error:-ms-input-placeholder {
  color: #d52901;
}
.survey .sv-text--error::placeholder {
  color: #d52901;
}
.survey .sv-text--error::-ms-input-placeholder {
  color: #d52901;
}
.survey .sv-text--error::-ms-input-placeholder {
  color: #d52901;
}
.survey .sv-rating {
  color: #404040;
  padding-bottom: 3px;
}
.survey .sv-rating input:focus + .sv-rating__min-text + .sv-rating__item-text,
.survey .sv-rating input:focus + .sv-rating__item-text {
  outline: 1px solid #1ab394;
  outline-offset: 2px;
}
.survey .sv-rating__item {
  position: relative;
  display: inline;
}
.survey .sv-rating__item-text {
  min-width: 2.3125em;
  height: 2.3125em;
  display: inline-block;
  color: #9f9f9f;
  padding: 0 0.3125em;
  border: solid 0.1875em #9f9f9f;
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.13;
  cursor: pointer;
  margin: 3px 0;
  margin-right: 0.26em;
  box-sizing: border-box;
}
.survey .sv-rating__item-text > span {
  margin-top: 0.44em;
  display: inline-block;
}
.survey .sv-rating__item-text:hover {
  background-color: #9f9f9f;
  color: white;
}
.survey .sv-rating__item--selected .sv-rating__item-text {
  background-color: #1ab394;
  color: white;
  border-color: #1ab394;
}
.survey .sv-rating__item--selected .sv-rating__item-text:hover {
  background-color: #1ab394;
}
.survey .sv-rating__min-text {
  font-size: 1em;
  margin-right: 1.25em;
  cursor: pointer;
}
.survey .sv-rating__max-text {
  font-size: 1em;
  margin-left: 0.87em;
  cursor: pointer;
}
.survey .sv-rating--disabled .sv-rating__item-text {
  cursor: default;
  color: #dbdbdb;
  border-color: #dbdbdb;
}
.survey .sv-rating--disabled .sv-rating__item-text:hover {
  background-color: transparent;
}
.survey .sv-rating--disabled .sv-rating__item--selected .sv-rating__item-text {
  background-color: #dbdbdb;
  color: white;
}
.survey .sv-rating--disabled .sv-rating__min-text {
  cursor: default;
}
.survey .sv-rating--disabled .sv-rating__max-text {
  cursor: default;
}
.survey .sv-comment {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0.06em solid #d4d4d4;
  border-radius: 0;
  box-sizing: border-box;
  padding: 0.25em 0.87em;
  font-family: inherit;
  font-size: 1em;
  outline: none;
  width: 100%;
}
.survey .sv-comment:focus {
  border-color: #1ab394;
}
.survey .sv-file {
  position: relative;
}
.survey .sv-file__decorator {
  background-color: #f5f5f5;
  padding: 1.68em 0;
}
.survey .sv-file__clean-btn {
  background-color: #ff1800;
  margin-top: 1.25em;
}
.survey .sv-file__choose-btn {
  background-color: #1948b3;
  display: inline-block;
}
.survey .sv-file__choose-btn--disabled {
  cursor: default;
  background-color: #dbdbdb;
  display: inline-block;
}
.survey .sv-file__no-file-chosen {
  display: inline-block;
  font-size: 0.87em;
  margin-left: 1em;
}
.survey .sv-file__preview {
  display: inline-block;
  padding-right: 23px;
  position: relative;
  margin-top: 1.25em;
  vertical-align: top;
}
.survey .sv-file__preview:not(:last-child) {
  margin-right: 31px;
}
.survey .sv-file__remove-svg {
  position: absolute;
  fill: #ff1800;
  cursor: pointer;
  height: 16px;
  top: 0;
  right: 0;
  width: 16px;
}
.survey .sv-file__sign a {
  color: #404040;
  text-align: left;
  text-decoration: none;
}
.survey .sv-file__wrapper {
  position: relative;
  display: inline-block;
  margin: 0;
  margin-left: 50%;
  transform: translate(-50%, 0);
  padding: 0;
}
.survey .sv-clearfix:after {
  content: "";
  display: table;
  clear: both;
}
.survey .sv-completedpage {
  font-family: Raleway;
  font-size: 1.875em;
  font-weight: bold;
  box-sizing: border-box;
  height: 14em;
  text-align: center;
  color: #404040;
  background-color: #f5f5f5;
}
.survey .sv-completedpage:before {
  display: none;
  width: 72px;
  height: 72px;
  margin-left: calc(50% - 36px);
  content: "";
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 23.0.6, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 72 72' style='enable-background:new 0 0 72 72;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%239A9A9A;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M11.9,72c-0.6-0.1-1.2-0.3-1.8-0.4C4.2,70.1,0,64.7,0,58.6c0-15.1,0-30.1,0-45.2C0,6,6,0,13.4,0 c12,0,24,0,36,0c2.4,0,4.4,1.7,4.6,4c0.2,2.4-1.3,4.4-3.6,4.9C50,9,49.7,9,49.4,9C37.6,9,25.8,9,14,9c-1.5,0-2.8,0.4-3.9,1.5 c-0.8,0.9-1.2,2-1.2,3.2c0,8.2,0,16.4,0,24.6C9,45,9,51.6,9,58.2c0,2.9,1.9,4.8,4.8,4.8c14.9,0,29.7,0,44.6,0c2.6,0,4.6-2,4.6-4.6 c0-5.9,0-11.8,0-17.7c0-2.4,1.6-4.3,3.9-4.6c2.3-0.3,4.3,1,5,3.4c0,0.1,0.1,0.2,0.1,0.2c0,6.8,0,13.6,0,20.4c0,0.1-0.1,0.3-0.1,0.4 c-0.8,5.4-4.7,9.8-10.1,11.2c-0.6,0.1-1.2,0.3-1.8,0.4C44,72,28,72,11.9,72z'/%3E%3Cpath class='st0' d='M35.9,38.8c0.4-0.4,0.5-0.7,0.7-0.9c8.4-8.4,16.8-16.8,25.2-25.2c1.9-1.9,4.5-2,6.3-0.4 c1.9,1.6,2.1,4.6,0.4,6.4c-0.2,0.2-0.3,0.3-0.5,0.5c-9.5,9.5-19.1,19.1-28.6,28.6c-2.2,2.2-4.8,2.2-7,0 c-5.1-5.1-10.2-10.2-15.4-15.4c-1.3-1.3-1.7-2.8-1.2-4.5c0.5-1.7,1.6-2.8,3.4-3.1c1.6-0.4,3.1,0.1,4.2,1.3c4,4,7.9,7.9,11.9,11.9 C35.6,38.2,35.7,38.5,35.9,38.8z'/%3E%3C/g%3E%3C/svg%3E%0A");
}
@media only screen and (min-width: 1000px) {
  .survey .sv-completedpage {
    margin-right: 5%;
    margin-left: calc(5% + 0.293em);
  }
}
@media only screen and (max-width: 1000px) {
  .survey .sv-completedpage {
    margin-left: calc(10px + 0.293em);
    margin-right: 10px;
  }
}
.survey .sv-header {
  white-space: nowrap;
}
.survey .sv-logo--left {
  display: inline-block;
  vertical-align: top;
  margin-right: 2em;
}
.survey .sv-logo--right {
  vertical-align: top;
  margin-left: 2em;
  float: right;
}
.survey .sv-logo--right + .sv-logo--right-tail {
  clear: both;
}
.survey .sv-logo--top {
  display: block;
  width: 100%;
  text-align: center;
}
.survey .sv-logo--bottom {
  display: block;
  width: 100%;
  text-align: center;
}
.survey .sv-header__text {
  display: inline-block;
  vertical-align: top;
}
.survey .sv-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 0;
  margin: 0;
  background: #ffffff;
  font-family: "Open Sans";
  list-style-type: none;
}
.survey .sv-list__item {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  box-sizing: border-box;
  padding: calc(1 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px));
  cursor: pointer;
}
.survey .sv-list__item-icon {
  float: left;
  width: calc(3 * var(--base-unit, 8px));
  height: calc(3 * var(--base-unit, 8px));
  margin-right: calc(2 * var(--base-unit, 8px));
}
.survey .sv-list__item-icon svg {
  display: block;
}
.survey .sv-list__item-icon use {
  fill: var(--foreground-light, #909090);
}
.survey .sv-list__item:hover {
  background-color: var(--background-dim, #f3f3f3);
}
.survey .sv-list__item--selected {
  background-color: var(--primary, #19b394);
  color: var(--background, #fff);
}
.survey .sv-list__item--selected:hover {
  background-color: var(--primary, #19b394);
}
.survey .sv-list__item--selected .sv-list__item-icon use {
  fill: var(--background, #fff);
}
.survey .sv-list__item--disabled {
  color: var(--foreground-disabled, rgba(22, 22, 22, 0.16));
  cursor: default;
  pointer-events: none;
}
.survey .sv-button-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: row;
      flex-direction: row;
  font-size: calc(2 * var(--base-unit, 8px));
  height: calc(6 * var(--base-unit, 8px));
  overflow: auto;
}
.survey .sv-button-group__item {
  display: -ms-flexbox;
  display: flex;
  box-sizing: border-box;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 11px calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  border: 1px solid var(--border, #d6d6d6);
  outline: none;
  font-size: calc(2 * var(--base-unit, 8px));
  font-weight: 400;
  background: var(--background, #fff);
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.survey .sv-button-group__item:not(:first-of-type) {
  margin-left: -1px;
}
.survey .sv-button-group__item:hover {
  background-color: var(--background-dim, #f3f3f3);
}
.survey .sv-button-group__item-icon {
  display: block;
  height: calc(3 * var(--base-unit, 8px));
}
.survey .sv-button-group__item-icon use {
  fill: var(--foreground-light, #909090);
}
.survey .sv-button-group__item--selected {
  font-weight: 600;
  color: var(--primary, #19b394);
}
.survey .sv-button-group__item--selected .sv-button-group__item-icon use {
  fill: var(--primary, #19b394);
}
.survey .sv-button-group__item--selected:hover {
  background-color: var(--background, #fff);
}
.survey .sv-button-group__item-decorator {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.survey .sv-button-group__item-icon + .sv-button-group__item-caption {
  margin-left: calc(1 * var(--base-unit, 8px));
}
.survey .sv-button-group__item--disabled {
  color: var(--foreground-disabled, rgba(22, 22, 22, 0.16));
  cursor: default;
}
.survey .sv-button-group__item--disabled .sv-button-group__item-icon use {
  fill: var(--foreground-disabled, rgba(22, 22, 22, 0.16));
}
.survey .sv-button-group__item--disabled:hover {
  background-color: var(--background, #fff);
}
.survey .sjs_sp_container {
  position: relative;
}
.survey .sjs_sp_controls {
  position: absolute;
  left: 0;
  bottom: 0;
}
.survey .sjs_sp_controls > button {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.survey .sjs_sp_container > div > canvas:focus {
  outline: none;
}
.survey .sv_window {
  position: fixed;
  bottom: 3px;
  right: 10px;
  background-color: cadetblue;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  line-break: auto;
  z-index: 100;
}
.survey .sv_window_title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.survey .sv_window_content {
  padding: 8px;
  margin: 0;
}
.survey .sv_window_title a,
.survey .sv_window_title a:link,
.survey .sv_window_title a:visited {
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  color: black;
}
.survey .sv-boolean__decorator {
  border-radius: 2px;
}
.survey .sv_main .sv-boolean__decorator + .sv-boolean__label {
  float: none;
  vertical-align: top;
  margin-left: 0.5em;
}
.survey .sv-boolean__svg {
  border: none;
  border-radius: 2px;
  background-color: #1ab394;
  fill: white;
  width: 24px;
  height: 24px;
}
.survey .sv-boolean--allowhover:hover .sv-boolean__checked-path {
  display: inline-block;
}
.survey .sv-boolean--allowhover:hover .sv-boolean__svg {
  background-color: #9f9f9f;
  fill: white;
}
.survey .sv-boolean--allowhover:hover .sv-boolean__unchecked-path,
.survey .sv-boolean--allowhover:hover .sv-boolean__indeterminate-path {
  display: none;
}
.survey .sv-boolean__checked-path,
.survey .sv-boolean__indeterminate-path {
  display: none;
}
.survey .sv-boolean--indeterminate .sv-boolean__svg {
  background-color: inherit;
  fill: #1ab394;
}
.survey .sv-boolean--indeterminate .sv-boolean__indeterminate-path {
  display: inline-block;
}
.survey .sv-boolean--indeterminate .sv-boolean__unchecked-path,
.survey .sv-boolean--checked .sv-boolean__unchecked-path {
  display: none;
}
.survey .sv-boolean--checked .sv-boolean__checked-path {
  display: inline-block;
}
.survey .sv-boolean--disabled.sv-boolean--indeterminate .sv-boolean__svg {
  background-color: inherit;
  fill: #dbdbdb;
}
.survey .sv-boolean--disabled .sv-boolean__svg {
  background-color: #dbdbdb;
}
.survey td.sv_matrix_cell .sv_qbln,
.survey td.td.sv_matrix_cell .sv_qbln {
  text-align: center;
}
.survey td.sv_matrix_cell .sv_qbln .sv-boolean,
.survey td.td.sv_matrix_cell .sv_qbln .sv-boolean {
  text-align: initial;
}
.survey .sv-action-bar {
  display: -ms-flexbox;
  display: flex;
  box-sizing: content-box;
  position: relative;
  -ms-flex-align: center;
      align-items: center;
  margin-left: auto;
  padding: 0 calc(2 * var(--base-unit, 8px));
  overflow: hidden;
  white-space: nowrap;
}
.survey .sv-action--first {
  -ms-flex: 1;
      flex: 1;
}
.survey .sv-action--first .sv-action-bar-item {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
.survey .sv-action--first .sv-action-bar-item__title {
  margin-left: 0;
  margin-right: calc(1 * var(--base-unit, 8px));
}
.survey .sv-action-bar-separator {
  display: inline-block;
  width: 1px;
  height: 24px;
  vertical-align: middle;
  margin-right: 16px;
  background-color: #d6d6d6;
}
.survey .sv-action-bar-item {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -ms-flexbox;
  display: flex;
  height: calc(5 * var(--base-unit, 8px));
  padding: calc(1 * var(--base-unit, 8px));
  box-sizing: border-box;
  border: none;
  border-radius: 2px;
  background-color: transparent;
  cursor: pointer;
  line-height: calc(3 * var(--base-unit, 8px));
  font-size: calc(2 * var(--base-unit, 8px));
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  white-space: nowrap;
}
.survey .sv-action-bar-item__icon svg {
  display: block;
}
.survey .sv-action-bar-item__icon use {
  fill: var(--foreground-light, #909090);
}
.survey .sv-action-bar-item:hover {
  background-color: var(--background-dim, #f3f3f3);
}
.survey .sv-action-bar-item:active {
  opacity: 0.5;
}
.survey .sv-action-bar-item:focus {
  outline: none;
}
.survey .sv-action-bar-item:disabled {
  opacity: 0.25;
  cursor: default;
  color: var(--foreground, #161616);
}
.survey .sv-action-bar-item:disabled .sv-action-bar-item__icon use {
  fill: var(--foreground, #161616);
}
.survey .sv-action-bar-item__title {
  vertical-align: middle;
  white-space: nowrap;
}
.survey .sv-action-bar-item--secondary .sv-action-bar-item__icon use {
  fill: var(--secondary, #ff9814);
}
.survey .sv-action-bar-item--active .sv-action-bar-item__icon use {
  fill: var(--primary, #19b394);
}
.survey .sv-action-bar-item-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -ms-flexbox;
  display: flex;
  height: calc(5 * var(--base-unit, 8px));
  padding: calc(1 * var(--base-unit, 8px));
  box-sizing: border-box;
  border: none;
  border-radius: 2px;
  background-color: transparent;
  cursor: pointer;
  line-height: calc(3 * var(--base-unit, 8px));
  font-size: calc(2 * var(--base-unit, 8px));
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.survey .sv-action-bar-item__title--with-icon {
  margin-left: calc(1 * var(--base-unit, 8px));
}
.survey .sv-action--last {
  -ms-flex: 1;
      flex: 1;
  -ms-flex-pack: end;
      justify-content: flex-end;
  display: -ms-flexbox;
  display: flex;
}
.survey .sv-expand-action:before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 10 10' style='enable-background:new 0 0 10 10;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23404040;%7D%0A%3C/style%3E%3Cpolygon class='st0' points='2,2 0,4 5,9 10,4 8,2 5,5 '/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  height: 10px;
  width: 12px;
  margin: auto 8px;
}
.survey .sv-expand-action--expanded:before {
  transform: rotate(180deg);
}
.survey .sv-dots {
  width: 48px;
}
.survey .sv-dots__item {
  width: 100%;
}
.survey .sv-dots__item:hover {
  background-color: inherit;
}
.survey .sv-dots__item .sv-action-bar-item__icon {
  margin: auto;
}
.survey .sv-action {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.survey .sv-action:not(:last-of-type) {
  box-sizing: content-box;
  padding-right: calc(2 * var(--base-unit, 8px));
}
.survey .sv-action--hidden {
  visibility: hidden;
}
.survey .sv-title-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.survey .sv-title-actions__title {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 90%;
  min-width: 50%;
}
.survey .sv-title-actions__bar {
  min-width: 56px;
}
@media (max-width: 600px) {
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-question,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-row__question {
    display: block;
    width: 100% !important;
  }
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-question .sv-question__header--location--left,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-row__question .sv-question__header--location--left {
    float: none;
  }
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-question .sv-selectbase__item--inline,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-question .sv-imagepicker__item--inline,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-row__question .sv-selectbase__item--inline,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-row__question .sv-imagepicker__item--inline {
    display: block;
  }
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-question table.sv-table,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-row__question table.sv-table {
    display: block;
  }
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-question table.sv-table thead,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-row__question table.sv-table thead {
    display: none;
  }
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-question table.sv-table td.sv-table__cell--choice,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-row__question table.sv-table td.sv-table__cell--choice {
    text-align: initial;
  }
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-question table.sv-table tbody,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-question table.sv-table tr,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-question table.sv-table td,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-row__question table.sv-table tbody,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-row__question table.sv-table tr,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-row__question table.sv-table td {
    display: block;
  }
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-question table.sv-matrixdropdown td:before,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-question table.sv-matrixdynamic td:before,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-row__question table.sv-matrixdropdown td:before,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-row__question table.sv-matrixdynamic td:before {
    content: attr(title);
  }
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-question table.sv-matrix-root td label.sv-matrix__label,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-row__question table.sv-matrix-root td label.sv-matrix__label {
    display: inline;
  }
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-question table.sv-matrix-root td:after,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-row__question table.sv-matrix-root td:after {
    content: attr(title);
  }
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-question table.sv-matrix-root .sv-matrix__cell,
  .survey .sv-root-modern .sv-container-modern .sv-body .sv-page .sv-row .sv-row__question table.sv-matrix-root .sv-matrix__cell {
    text-align: initial;
  }
}
.survey .sv-root-modern .sv-boolean__slider {
  background-color: white;
}
.survey .sv-root-modern .sv-boolean__switch {
  background-color: rgb(26, 179, 148);
}
.survey .sv-row.sv-clearfix {
  padding-bottom: 0px !important;
}
.survey .sv-footer.sv-body__footer.sv-clearfix {
  padding: 0px;
}
.survey .cw-gauge--wrapper {
  background-image: url("/assets/cw/cw_gauge_bg.svg");
  background-repeat: no-repeat;
  width: 400px;
  height: 300px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
}
.survey .cw-gauge--wrapper.happiness-meter {
  background-image: url("/assets/cw/happiness_meter.svg");
}
.survey .cw-gauge--wrapper > .cw-gauge--reading-container {
  position: relative;
}
.survey .cw-gauge--wrapper > .cw-gauge--reading-container > div.selected {
  top: 5px;
  font-size: 3rem;
}
.survey .cw-gauge--wrapper > .cw-gauge--reading-container > div {
  position: absolute;
  color: white;
  height: 150px;
  transform-origin: 50% 100%;
  text-align: center;
  padding-top: 45px;
  top: 10px;
  font-size: 2rem;
  left: -37px;
  width: 58px;
  cursor: pointer;
}
.survey .cw-gauge--wrapper .cw-gauge--needle {
  background-image: url("/assets/cw/cw_gauge_pointer.svg");
  background-repeat: no-repeat;
  position: absolute;
  transition: 0.5s cubic-bezier(1, -0.35, 0.3, 1.4);
  pointer-events: none;
  width: 120px;
  height: 30px;
  top: calc(50% - 0px);
  z-index: 999;
  left: calc(50% - 90px);
  transform: rotate(-45deg);
  transform-origin: 80px 15px;
}
.survey #surveyElement .cw-gauge--wrapper > .cw-gauge--reading-container > div {
  height: 105px;
}
.survey .cw-gauge--wrapper.happiness-meter {
  background-image: url("/assets/cw/happiness_meter.svg");
}
.survey .cw-gauge--wrapper.happiness-meter > .cw-gauge--reading-container > div {
  padding-top: 37px;
  top: 18px;
  left: -15px;
}
.survey .cw-gauge--wrapper.happiness-meter > .cw-gauge--needle {
  left: calc(50% - 70px);
  top: calc(50% + 10px);
}
.survey .quiz-question .quiz-choices {
  margin-bottom: 20px;
  width: 90%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.survey .quiz-question .quiz-choice {
  display: grid;
  place-items: center;
  min-height: 40px;
  width: 45%;
  text-align: center;
  font-size: 16px;
  padding: 10px;
  background: yellow;
  border: 2px solid red;
  border-radius: 8px;
  cursor: pointer;
}
.survey .quiz-question .quiz-choice img {
  width: 100%;
}
.survey .quiz-question .quiz-choice.image-choice {
  border: 0;
  background: transparent;
  padding: 0;
}
.survey .quiz-wrapper .sv-title-actions__title {
  width: 100%;
  height: 50px;
  padding: 10px;
}
.survey .quiz-choices.answer-selected .quiz-choice {
  opacity: 0.5;
}
.survey .quiz-choices.answer-selected .quiz-choice.selected-answer {
  opacity: 1;
}
.survey .quiz-wrapper .sv-question__header {
  width: 60%;
}
.survey .quiz-wrapper .correct-answer {
  color: green;
  border: 2px solid green;
  background: #d4edda;
}
.survey .quiz-wrapper .wrong-answer {
  color: red;
  border: 2px solid red;
  background: #f8d7da;
}
.survey .quiz-wrapper .answer-response {
  display: none;
  font-size: 20px;
  padding: 10px 20px;
  height: 50px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
}
.survey .quiz-wrapper.correct-response .correct-answer {
  display: block;
}
.survey .quiz-wrapper.wrong-response .wrong-answer {
  display: block;
}
.survey .modal_btn {
  background: #428bca;
  border: #357ebd solid 1px;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 8px 15px;
  text-decoration: none;
  text-align: center;
  min-width: 60px;
  position: relative;
  transition: color 0.1s ease;
}
.survey .modal_btn:hover {
  background: #357ebd;
}
.survey .modal_btn.modal_btn-big {
  font-size: 18px;
  padding: 15px 20px;
  min-width: 100px;
}
.survey .modal_btn-close {
  color: #aaaaaa;
  font-size: 30px;
  text-decoration: none;
  position: absolute;
  right: 5px;
  top: 0;
}
.survey .modal_btn-close:hover {
  color: #919191;
}
.survey .modal:target:before {
  display: none;
}
.survey .sv-question .modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
@media (min-width: 481px) and (max-width: 767px) {
  .survey .sv-question__content .modal {
    transform: translate3d(55%, 55%, 0);
  }
}
.survey .modal:before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.survey .modal .modal-dialog {
  background: #fefefe;
  border: #333333 solid 1px;
  border-radius: 5px;
  margin-left: -200px;
  position: fixed;
  left: 50%;
  z-index: 11;
  width: 360px;
  transform: translate(0, 0);
  transition: transform 0.3s ease-out;
  top: 20%;
}
.survey .modal:target .modal-dialog {
  top: -100%;
  transform: translate(0, -500%);
}
.survey .modal-body {
  padding: 20px;
}
.survey .modal-header, .survey .modal-footer {
  padding: 10px 20px;
}
.survey .modal-header {
  border-bottom: #eeeeee solid 1px;
}
.survey .modal-header h2 {
  font-size: 20px;
}
.survey .modal-footer {
  border-top: #eeeeee solid 1px;
  text-align: right;
}

/* latin-ext */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: local("Raleway"), local("Raleway-Regular"), url(./1Ptug8zYS_SKggPNyCMIT5lu.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: local("Raleway"), local("Raleway-Regular"), url(./1Ptug8zYS_SKggPNyC0ITw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  src: local("Raleway Bold"), local("Raleway-Bold"), url(./1Ptrg8zYS_SKggPNwJYtWqhPAMif.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  src: local("Raleway Bold"), local("Raleway-Bold"), url(./1Ptrg8zYS_SKggPNwJYtWqZPAA.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: local("Raleway"), local("Raleway-Regular"), url(./1Ptug8zYS_SKggPNyC0ISQ.woff) format("woff");
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  src: local("Raleway Bold"), local("Raleway-Bold"), url(./1Ptrg8zYS_SKggPNwJYtWqZPBg.woff) format("woff");
}