/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

@font-face {
  font-family: "Sketchnote Dingbats";
  src: url("../../fonts/SketchnoteDingbats-Regular.woff2") format("woff2"), url("../../fonts/SketchnoteDingbats-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sketchnote Text";
  src: url("../../fonts/SketchnoteText-Italic.woff2") format("woff2"), url("../../fonts/SketchnoteText-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sketchnote Square";
  src: url("../../fonts/SketchnoteSquare-Regular.woff2") format("woff2"), url("../../fonts/SketchnoteSquare-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sketchnote Text";
  src: url("../../fonts/SketchnoteText-Bold.woff2") format("woff2"), url("../../fonts/SketchnoteText-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sketchnote Text";
  src: url("../../fonts/SketchnoteText-Regular.woff2") format("woff2"), url("../../fonts/SketchnoteText-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.circle-button {
  border-radius: 100%;
  width: 220px;
  height: 220px;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
}
.circle-button img, .circle-button svg {
  height: auto;
}
.circle-button .button-inner {
  will-change: transform;
  -webkit-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.circle-button.disabled, .circle-button:disabled {
  pointer-events: none;
}
.circle-button:active .button-inner {
  scale: 0.95 0.95;
}
.circle-button .button-inner {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12px;
  border-radius: 100%;
}
.circle-button.theme-darkgray {
  color: #e9e9e8;
}
.circle-button.theme-darkgray .button-inner {
  background-color: #262626;
}
.circle-button.theme-yellow {
  color: #00156B;
}
.circle-button.theme-yellow .button-inner {
  background-color: #FFEB5A;
}
.circle-button.theme-blue {
  color: #FFFFFF;
}
.circle-button.theme-blue .button-inner {
  background-color: #293AB7;
}
.circle-button.theme-red {
  color: #00156B;
}
.circle-button.theme-red .button-inner {
  background-color: #EFA3CC;
}
@keyframes up-down-animation {
  0% {
    -webkit-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
  50% {
    -webkit-transform: translate(0, 8px);
    -ms-transform: translate(0, 8px);
    transform: translate(0, 8px);
  }
  100% {
    -webkit-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}
.circle-button.up-down-animation img, .circle-button.up-down-animation svg {
  will-change: transform;
}
.circle-button.up-down-animation.play-animation img, .circle-button.up-down-animation.play-animation svg {
  animation: up-down-animation 1.5s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.circle-button.pulse-animation {
  transition: none !important;
}
@keyframes pulse-ring-animation {
  0% {
    opacity: 0;
    border-color: #6176af;
  }
  50% {
    opacity: 1;
    border-color: #293AB7;
  }
  100% {
    opacity: 0;
    border-color: #6176af;
  }
}
@keyframes pulse-inner {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.875);
    -ms-transform: scale(0.875);
    transform: scale(0.875);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse-outer {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background-color: #293AB7;
  }
  50% {
    -webkit-transform: scale(0.925);
    -ms-transform: scale(0.925);
    transform: scale(0.925);
    background-color: #6176af;
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background-color: #293AB7;
  }
}
.circle-button.pulse-animation .pulse-ring-1,
.circle-button.pulse-animation .pulse-ring-2 {
  position: absolute;
  border-radius: 100%;
  border: 3px solid #293AB7;
}
.circle-button.pulse-animation .pulse-ring-1 {
  width: 114%;
  height: 114%;
  opacity: 0.65;
}
.circle-button.pulse-animation .pulse-ring-2 {
  width: 128%;
  height: 128%;
  opacity: 0.45;
}
.circle-button.pulse-animation.play-animation {
  animation: pulse-outer 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation-delay: 1s;
}
.circle-button.pulse-animation.play-animation .pulse-ring-1 {
  animation: pulse-ring-animation 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.circle-button.pulse-animation.play-animation .pulse-ring-2 {
  animation: pulse-ring-animation 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation-delay: 0.15s;
}
.circle-button.pulse-animation.play-animation img {
  animation: pulse-inner 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation-delay: 1s;
}

.image-button {
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
  line-height: 0;
}
.image-button img, .image-button svg {
  height: auto;
}
.image-button .button-inner {
  will-change: transform;
  -webkit-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.image-button.disabled, .image-button:disabled {
  pointer-events: none;
}
.image-button:active .button-inner {
  scale: 0.95 0.95;
}

#map-button {
  width: 159px;
  height: 159px;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  border-radius: 25px;
}
#map-button img, #map-button svg {
  height: auto;
}
#map-button .button-inner {
  will-change: transform;
  -webkit-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#map-button.disabled, #map-button:disabled {
  pointer-events: none;
}
#map-button:active .button-inner {
  scale: 0.95 0.95;
}
#map-button .button-inner {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #77764D;
  border-radius: 25px;
}

#helper-button {
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#helper-close-button {
  width: 30px;
  height: 30px;
  font-size: 18px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #262626;
  border-radius: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
}
#helper-close-button img, #helper-close-button svg {
  height: auto;
}
#helper-close-button .button-inner {
  will-change: transform;
  -webkit-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#helper-close-button.disabled, #helper-close-button:disabled {
  pointer-events: none;
}
#helper-close-button:active .button-inner {
  scale: 0.95 0.95;
}

#helper-yes-button,
#helper-no-button {
  width: 100%;
  color: #00156B;
  font-size: 32px;
  font-family: "Sketchnote Text", sans-serif;
  font-weight: bold;
  border-radius: 15px;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
}
#helper-yes-button img, #helper-yes-button svg,
#helper-no-button img,
#helper-no-button svg {
  height: auto;
}
#helper-yes-button .button-inner,
#helper-no-button .button-inner {
  will-change: transform;
  -webkit-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#helper-yes-button.disabled, #helper-yes-button:disabled,
#helper-no-button.disabled,
#helper-no-button:disabled {
  pointer-events: none;
}
#helper-yes-button:active .button-inner,
#helper-no-button:active .button-inner {
  scale: 0.95 0.95;
}
#helper-yes-button .button-inner,
#helper-no-button .button-inner {
  padding: 31px;
  border-radius: 15px;
}

#helper-yes-button .button-inner {
  background-color: #FFEB5A;
}

#helper-no-button .button-inner {
  background-color: #EFA3CC;
}

body.i18n-fr .i18n .fr {
  opacity: 1;
}
body.i18n-fr .i18n .en {
  opacity: 0;
  display: none !important;
}

body.i18n-en .i18n .fr {
  opacity: 0;
  display: none !important;
}
body.i18n-en .i18n .en {
  opacity: 1;
}

.flipping-i18n {
  -webkit-transition: transform ease-in-out 0.25s, opacity 0.25s ease-in-out;
  -moz-transition: transform ease-in-out 0.25s, opacity 0.25s ease-in-out;
  -ms-transition: transform ease-in-out 0.25s, opacity 0.25s ease-in-out;
  -o-transition: transform ease-in-out 0.25s, opacity 0.25s ease-in-out;
  transition: transform ease-in-out 0.25s, opacity 0.25s ease-in-out;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  outline: 0;
}
.flipping-i18n.flip-out {
  backface-visibility: hidden;
  z-index: 2;
  /* for firefox 31 */
  transform: rotateX(90deg);
}

.fading-i18n {
  -webkit-transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -ms-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  outline: 0;
  opacity: 1;
}
.fading-i18n.fade-out {
  opacity: 0 !important;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-feature-settings: "tnum";
  box-sizing: border-box;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  outline: 0;
}

body {
  position: relative;
}

html, body {
  background-color: #f1f1e2;
  width: 2160px;
  height: 3840px;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch;
  font-family: "Sketchnote Text", sans-serif;
  color: #00156B;
}

#main {
  display: none;
  width: 2160px;
  height: 3840px;
}

a {
  color: #00156B;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: #00156B;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: normal;
}

h1 {
  font-family: "Sketchnote Square", sans-serif;
  letter-spacing: 0.01em;
  font-weight: bold;
  font-size: 60px;
}

h2 {
  font-family: "Sketchnote Square", sans-serif;
  letter-spacing: 0.01em;
  font-weight: bold;
  font-size: 54px;
  text-transform: uppercase;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 28px;
}

h6 {
  font-size: 26px;
}

p {
  font-size: 38px;
  line-height: 1.24;
}
p.small {
  font-size: 31px;
}

strong, b {
  font-weight: bold;
}

img, video {
  max-width: 100%;
  height: auto;
}

.screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 2160px;
  height: 3840px;
  opacity: 0;
  overflow: hidden;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.screen.hidden {
  visibility: hidden;
  pointer-events: none;
}
.screen.disabled {
  pointer-events: none !important;
}
.screen:not(.current) {
  pointer-events: none !important;
}
.screen:not(.current) * {
  pointer-events: none !important;
}
.screen:not(#screen-4) {
  z-index: 10;
}

#background-overlay,
.background-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

#background-overlay {
  z-index: 6;
  background-color: rgba(189, 190, 232, 0.64);
}

#game-night-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: hard-light;
}
#game-night-overlay img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#game-night-overlay .invert {
  opacity: 0;
}

#game-houses-glow-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: overlay;
}

.container {
  position: relative;
  width: 838px;
}
.container.smallest {
  width: 630px;
}
.container.small {
  width: 757px;
}
.container.large {
  width: 989px;
}
.container.popup-container {
  position: absolute;
  width: 1690px;
  padding: 242px 165px;
  background: #FFFFFF;
  border-radius: 90px;
  box-shadow: 0px 0px 90px 10px rgba(0, 0, 0, 0.28);
}
.container.popup-container .container-button {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  will-change: transform;
}
.container.popup-container .container-title {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
  color: #FFFFFF;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.container.popup-container .container-title .container-title-inner {
  position: relative;
  padding: 19px 84px 19px 84px;
  z-index: 1;
}
.container.popup-container .container-title:after {
  content: "";
  position: absolute;
  left: 0;
  width: var(--title-width);
  height: 148px;
  background-color: #00156B;
  border-radius: 74px;
  pointer-events: none;
}
.container.padded-container {
  background-color: #FFFFFF;
  padding: 92px 96px;
  border-radius: 25px;
  text-align: center;
}
.container.padded-container.animated-border {
  background-image: url("../../images/shapes/animated-borders/default/animated-border.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: transparent;
}
.container.padded-container.animated-border-small {
  background-image: url("../../images/shapes/animated-borders/small/animated-border.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: transparent;
}
.container.padded-container .container-button {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  will-change: transform;
}
.container.padded-container .container-title {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.container.padded-container .container-title .container-title-inner {
  position: relative;
  padding: 19px 97px 19px 90px;
  z-index: 1;
}
.container.padded-container .container-title:after {
  content: "";
  position: absolute;
  left: 0;
  width: var(--title-width);
  height: 62px;
  background-color: #FFEB5A;
  border-radius: 31px;
  pointer-events: none;
}
.container.padded-container .container-title img, .container.padded-container .container-title svg {
  position: absolute;
  top: 50%;
  right: 7px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.container.padded-container .container-title.character-tag {
  color: #FFFFFF;
  text-transform: none;
}
.container.padded-container .container-title.character-tag .container-title-inner {
  padding: 19px 40px 19px 80px;
  z-index: 1;
}
.container.padded-container .container-title.character-tag img, .container.padded-container .container-title.character-tag svg {
  position: absolute;
  top: 50%;
  left: 7px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.container.padded-container .container-title.character-tag:after {
  background-color: #293AB7;
}
.container.content-container, .container.padded-container {
  margin-left: auto;
  margin-right: 140px;
}
.container.centered-container {
  margin: auto auto;
}
.container .row {
  display: flex;
}
.container .row .columns.two,
.container .row .column.two {
  width: 50%;
}
.container .row .columns.three,
.container .row .column.three {
  width: 33.3333333333%;
}
.container .row .columns.four,
.container .row .column.four {
  width: 25%;
}

span.inu {
  color: #8F8B3B !important;
}

.double-language .language-separator {
  width: 100%;
  height: 105px;
  background: transparent url(../../images/shapes/language-separator.png) center center no-repeat;
}
.double-language .en {
  color: #354AA4;
}

#game-trigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#triggers {
  display: flex;
  flex-wrap: wrap;
  max-width: 1190px;
  width: 100%;
  margin: 50px;
}
#triggers .trigger {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  margin: 10px;
  width: 220px;
  height: 150px;
  line-height: 200px;
  padding: 0 25px;
  box-sizing: border-box;
  font-size: 19px;
  cursor: pointer;
  text-align: center;
  letter-spacing: 1px;
  color: #888;
  border: solid #888 1px;
  text-decoration: none;
  -webkit-transition: background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#triggers .trigger.debug-mode {
  display: none;
}
#triggers .trigger.debug-mode.shown {
  display: flex;
}
#triggers .trigger .text {
  -webkit-transition: transform 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: transform 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: transform 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: transform 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
#triggers .trigger .text span {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  width: 100%;
  word-wrap: break-word;
}
#triggers .trigger:hover {
  background-color: white;
}
#triggers .trigger:active {
  background-color: white;
  color: solid #888 1px;
}
#triggers .trigger:active .text {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.simulator {
  display: none;
  position: absolute;
  font-family: sans-serif;
  top: 60px;
  left: 0;
  width: 240px;
  z-index: 100;
  transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.simulator .wrapper {
  position: absolute;
  width: 100%;
  background: #f3f3f3;
  border: 1px solid #bebebe;
  border-radius: 0 4px 4px 4px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  padding: 10px;
}
.simulator .simulator-toggle-collapse {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e5e5;
  top: 0;
  right: calc(-40px + 1px);
  width: 40px;
  height: 40px;
  border: 1px solid #bebebe;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 998;
}
.simulator .simulator-toggle-collapse .icon {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 80%;
}
.simulator.collapsed {
  left: -240px;
}
.simulator.collapsed .wrapper {
  box-shadow: 0 0 25px 0 transparent;
}
.simulator.collapsed .simulator-toggle-collapse .icon {
  transform: rotate(45deg);
}
.simulator .row {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  width: 100%;
}
.simulator .simulator-btn,
.simulator .simulator-dropdown {
  color: #000;
  margin-bottom: 10px;
  font-size: 14px;
  flex-grow: 1;
}
.simulator .simulator-btn.hidden,
.simulator .simulator-dropdown.hidden {
  display: none !important;
}
.simulator .simulator-btn.side-by-side .row :first-child,
.simulator .simulator-dropdown.side-by-side .row :first-child {
  margin-right: 5px;
}
.simulator .simulator-btn.side-by-side .row :last-child,
.simulator .simulator-dropdown.side-by-side .row :last-child {
  margin-left: 5px;
}
.simulator .simulator-btn.simulator-dropdown label,
.simulator .simulator-dropdown.simulator-dropdown label {
  font-weight: bold;
  display: block;
  margin-bottom: 3px;
}
.simulator .simulator-btn.simulator-btn button, .simulator .simulator-btn.simulator-dropdown select,
.simulator .simulator-dropdown.simulator-btn button,
.simulator .simulator-dropdown.simulator-dropdown select {
  width: 100%;
  background: #dedede;
  border: 1px solid #bebebe;
  border-radius: 4px;
  font-weight: bold;
}
.simulator .simulator-btn.simulator-btn button,
.simulator .simulator-dropdown.simulator-btn button {
  text-align: center;
  cursor: pointer;
  padding: 10px 5px;
}
.simulator .simulator-btn.simulator-btn button:hover,
.simulator .simulator-dropdown.simulator-btn button:hover {
  background: #bebebe;
}
.simulator .simulator-btn.simulator-btn button:active,
.simulator .simulator-dropdown.simulator-btn button:active {
  background: #dedede;
}
.simulator .simulator-btn.simulator-dropdown select,
.simulator .simulator-dropdown.simulator-dropdown select {
  padding: 5px 5px;
}
.simulator hr {
  margin: 20px auto;
}

#main.myst-harpon .screen[data-type=idle] > .popup-container {
  top: 1000px;
  padding: 200px 144px;
}
#main.myst-harpon .screen[data-type=idle] > .popup-container .text-container {
  text-align: center;
}
#main.myst-harpon .screen[data-type=idle] > .popup-container .text-container h2 {
  margin: 0px;
  padding: 0px;
  font-size: 160px;
  line-height: 1.2em;
}

#main.myst-harpon .screen[data-type=warning] > .popup-container {
  top: 1120px;
  padding: 163px 144px;
}
#main.myst-harpon .screen[data-type=warning] .timer-progress {
  position: absolute;
  top: 70px;
  right: 70px;
  scale: 1.6;
}
#main.myst-harpon .screen[data-type=warning] .container-title {
  color: #00156B;
}
#main.myst-harpon .screen[data-type=warning] .container-title:after {
  background-color: #FFEB5A;
}
#main.myst-harpon .screen[data-type=warning] .container-content {
  text-align: center;
}
#main.myst-harpon .screen[data-type=warning] .container-content p {
  font-size: 92px;
}
#main.myst-harpon .screen[data-type=warning] .container-button {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  will-change: transform;
}
#main.myst-harpon .screen[data-type=warning] .container-button button {
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  color: #00156B;
  font-size: 80px;
  font-family: "Sketchnote Text", sans-serif;
  border-radius: 88px;
  text-transform: none;
}
#main.myst-harpon .screen[data-type=warning] .container-button button img, #main.myst-harpon .screen[data-type=warning] .container-button button svg {
  height: auto;
}
#main.myst-harpon .screen[data-type=warning] .container-button button .button-inner {
  will-change: transform;
  -webkit-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#main.myst-harpon .screen[data-type=warning] .container-button button.disabled, #main.myst-harpon .screen[data-type=warning] .container-button button:disabled {
  pointer-events: none;
}
#main.myst-harpon .screen[data-type=warning] .container-button button:active .button-inner {
  scale: 0.95 0.95;
}
#main.myst-harpon .screen[data-type=warning] .container-button img, #main.myst-harpon .screen[data-type=warning] .container-button svg {
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#main.myst-harpon .screen[data-type=warning] .container-button .button-inner {
  padding: 20px 200px 20px 98px;
  border-radius: 85px;
  background-color: #FFEB5A;
}

#main.myst-harpon .screen[data-type=tutorial] .page-number {
  position: absolute;
  top: 86px;
  right: 70px;
  font-size: 55px;
}
#main.myst-harpon .screen[data-type=tutorial] .container-content {
  text-align: center;
}
#main.myst-harpon .screen[data-type=tutorial] .container-content img {
  display: inline-block;
  margin-bottom: 80px;
}
#main.myst-harpon .screen[data-type=tutorial] .container-content p {
  font-size: 55px;
}
#main.myst-harpon .screen[data-type=tutorial] .container-button {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  will-change: transform;
}
#main.myst-harpon .screen[data-type=tutorial] .container-button button {
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  color: #00156B;
  font-size: 80px;
  font-family: "Sketchnote Text", sans-serif;
  border-radius: 88px;
  text-transform: none;
}
#main.myst-harpon .screen[data-type=tutorial] .container-button button img, #main.myst-harpon .screen[data-type=tutorial] .container-button button svg {
  height: auto;
}
#main.myst-harpon .screen[data-type=tutorial] .container-button button .button-inner {
  will-change: transform;
  -webkit-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#main.myst-harpon .screen[data-type=tutorial] .container-button button.disabled, #main.myst-harpon .screen[data-type=tutorial] .container-button button:disabled {
  pointer-events: none;
}
#main.myst-harpon .screen[data-type=tutorial] .container-button button:active .button-inner {
  scale: 0.95 0.95;
}
#main.myst-harpon .screen[data-type=tutorial] .container-button img, #main.myst-harpon .screen[data-type=tutorial] .container-button svg {
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#main.myst-harpon .screen[data-type=tutorial] .container-button .button-inner {
  padding: 20px 200px 20px 98px;
  border-radius: 85px;
  background-color: #FFEB5A;
}

#main.myst-harpon .screen[data-type=feedback] > .popup-container {
  width: 1420px;
  padding: 242px 75px 215px;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container.has-reminder {
  width: 1515px;
  padding-bottom: 75px;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .timer-progress {
  position: absolute;
  top: 70px;
  right: 70px;
  scale: 1.6;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-title {
  color: #FFFFFF;
  font-size: 45px;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-title .container-title-inner {
  padding: 19px 215px 19px 215px;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-content {
  text-align: center;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-content img {
  display: inline-block;
  margin: 80px 0px 100px;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-content p {
  font-size: 55px;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-content .reminder {
  width: 100%;
  margin-top: 140px;
  margin-bottom: 60px;
  padding: 135px 130px 110px;
  border-radius: 90px;
  color: #002A4C;
  background: rgba(158, 159, 216, 0.22);
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-content .reminder .reminder-title {
  margin-bottom: 115px;
  font-size: 65px;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-content .reminder .reminder-columns {
  display: flex;
  justify-content: space-between;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-content .reminder .reminder-columns .tag {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  white-space: nowrap;
  color: #FFFFFF;
  font-size: 43px;
  position: relative;
  margin-bottom: 50px;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-content .reminder .reminder-columns .tag .tag-inner {
  position: relative;
  padding: 19px 84px 19px 84px;
  z-index: 1;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-content .reminder .reminder-columns .tag:after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 475px;
  height: 86px;
  background-color: #002A4C;
  border-radius: 43px;
  pointer-events: none;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-content .reminder .reminder-columns .reminder-column-text {
  font-size: 43px;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-button.physical {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  will-change: transform;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-button.physical button {
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  color: #00156B;
  font-size: 80px;
  font-family: "Sketchnote Text", sans-serif;
  border-radius: 88px;
  text-transform: none;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-button.physical button img, #main.myst-harpon .screen[data-type=feedback] > .popup-container .container-button.physical button svg {
  height: auto;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-button.physical button .button-inner {
  will-change: transform;
  -webkit-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-button.physical button.disabled, #main.myst-harpon .screen[data-type=feedback] > .popup-container .container-button.physical button:disabled {
  pointer-events: none;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-button.physical button:active .button-inner {
  scale: 0.95 0.95;
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-button.physical img, #main.myst-harpon .screen[data-type=feedback] > .popup-container .container-button.physical svg {
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#main.myst-harpon .screen[data-type=feedback] > .popup-container .container-button.physical .button-inner {
  padding: 20px 200px 20px 98px;
  border-radius: 85px;
  background-color: #FFEB5A;
}
#main.myst-harpon .screen[data-type=feedback][data-feedback-type=success] .container-title:after {
  background-color: #008550;
}
#main.myst-harpon .screen[data-type=feedback][data-feedback-type=failure] .container-title:after {
  background-color: #DB2655;
}

#main.myst-harpon .screen[data-type=game] .game-container {
  width: 100%;
  height: 100%;
}
#main.myst-harpon .screen[data-type=game] .game-instructions {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../../images/tutorial/instruction-bg-drop.png") top left no-repeat;
  opacity: 0;
}
#main.myst-harpon .screen[data-type=game] .game-instructions-inner {
  position: absolute;
  top: 485px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 1275px;
  height: 480px;
  box-sizing: border-box;
  padding: 0;
  background: #FFFFFF;
  border-radius: 90px;
  box-shadow: 0px 0px 90px 10px rgba(0, 0, 0, 0.28);
  padding: 0px;
}
#main.myst-harpon .screen[data-type=game] .game-instructions-inner .container-title {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
  color: #002A4C;
  font-size: 52px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#main.myst-harpon .screen[data-type=game] .game-instructions-inner .container-title .container-title-inner {
  position: relative;
  padding: 45px 150px 45px 150px;
  z-index: 1;
}
#main.myst-harpon .screen[data-type=game] .game-instructions-inner .container-title:after {
  content: "";
  position: absolute;
  left: 0;
  width: var(--title-width);
  height: 130px;
  background-color: #FFEB5A;
  border-radius: 65px;
  pointer-events: none;
}
#main.myst-harpon .screen[data-type=game] .game-instructions-inner .instructions-content .instructions-step {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  opacity: 0;
}
#main.myst-harpon .screen[data-type=game] .game-instructions-inner .instructions-content .instructions-step:first-child {
  opacity: 1;
}
#main.myst-harpon .screen[data-type=game] .game-instructions-inner .instructions-content .instructions-step p {
  font-size: 55px;
}
#main.myst-harpon .screen[data-type=game] .game-instructions-inner .instructions-content .instructions-step img {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translate(50%, -50%);
  width: 400px;
}

[data-pixi-devtools=overlay] {
  z-index: 999999;
}

.language-switcher {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
}

.main-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 0;
}
.main-background.main .main-background-ciel {
  position: absolute;
  top: 0;
  z-index: 0;
}
.main-background.main .main-background-paysage {
  position: absolute;
  top: 0;
  z-index: 1;
}
.main-background.main .night {
  opacity: 0;
}
.main-background.idle {
  z-index: 1;
}
.main-background.idle .idle-background-ciel {
  position: absolute;
  top: 0;
  z-index: 0;
}
.main-background.idle .idle-background-paysage {
  position: absolute;
  top: 0;
  z-index: 1;
}

.timer-progress {
  width: 63px;
  height: 60px;
  mask-image: url("../../images/icons/timer-mask.svg");
  background-color: #7494C1;
}
.timer-progress .timer-inner {
  -webkit-transform: rotate(-85deg);
  -moz-transform: rotate(-85deg);
  -ms-transform: rotate(-85deg);
  -o-transform: rotate(-85deg);
}
.timer-progress .timer-inner circle {
  fill: none;
  stroke: #1E3757;
  stroke-width: 40px;
}

#screen-activity-check {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(0, 21, 107, 0.86);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#screen-activity-check.shown {
  opacity: 1;
  pointer-events: auto;
}
#screen-activity-check .timer-progress {
  position: absolute;
  top: 100px;
  right: 100px;
  scale: 1.61;
}
#screen-activity-check .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 1500px;
  padding: 320px 165px 300px;
  background-image: url("../../images/shapes/animated-borders/idle/animated-border.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
#screen-activity-check .inner h2 {
  font-size: 80px;
}
#screen-activity-check .inner .opacity-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#screen-activity-check .container-button {
  position: relative;
  margin-top: 85px;
}
#screen-activity-check .container-button #screen-activity-button {
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  color: #00156B;
  font-size: 80px;
  font-family: "Sketchnote Text", sans-serif;
  border-radius: 88px;
  text-transform: none;
}
#screen-activity-check .container-button #screen-activity-button img, #screen-activity-check .container-button #screen-activity-button svg {
  height: auto;
}
#screen-activity-check .container-button #screen-activity-button .button-inner {
  will-change: transform;
  -webkit-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#screen-activity-check .container-button #screen-activity-button.disabled, #screen-activity-check .container-button #screen-activity-button:disabled {
  pointer-events: none;
}
#screen-activity-check .container-button #screen-activity-button:active .button-inner {
  scale: 0.95 0.95;
}
#screen-activity-check .container-button img, #screen-activity-check .container-button svg {
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#screen-activity-check .container-button .button-inner {
  padding: 20px 200px 20px 98px;
  border-radius: 85px;
  background-color: #FFEB5A;
}

#mqtt-status {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  right: 40px;
  top: 40px;
  width: 300px;
  height: 100px;
  pointer-events: none;
  -webkit-transition: transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#mqtt-status svg {
  height: 100px;
}
#mqtt-status.connected {
  transform: translate(40px, 0);
  opacity: 0;
}

body.debug-mode .language-switcher {
  visibility: visible;
}
body.debug-mode .simulator {
  display: inline-block;
}

/*# sourceMappingURL=styles.css.map */