/* 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: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Pangolin";
  src: url("../fonts/Pangolin-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
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;
  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;
  outline: 0;
  opacity: 1;
}
.fading-i18n.fade-out {
  opacity: 0 !important;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-feature-settings: "tnum";
}

html {
  box-sizing: border-box;
}

html, body {
  background-color: #000;
  width: 1920px;
  height: 1080px;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch;
  color: #FFFFFF;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  outline: 0;
}

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

strong {
  font-weight: bold;
}

#main {
  display: none;
  width: 1920px;
  height: 1080px;
}

.screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
  opacity: 0;
  overflow: hidden;
  z-index: 3;
}
.screen.hidden {
  visibility: hidden;
  pointer-events: none;
}
.screen:not(.current) {
  pointer-events: none !important;
}
.screen:not(.current) * {
  pointer-events: none !important;
}

#burning-protect {
  position: fixed;
  left: -100px;
  top: 0;
  width: 100px;
  height: 1080px;
  opacity: 1;
  z-index: 10000;
  pointer-events: none;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 25%, rgb(255, 255, 255) 75%, rgba(255, 255, 255, 0) 100%);
}

#error {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  padding: 20px;
  position: fixed;
  font-weight: bold;
  z-index: 1000;
  width: 600px;
  background: #e6d7d7;
  top: 635px;
  left: 488px;
  border: solid #c3a4a4 1px;
  color: #000;
}

#game-trigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#triggers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row;
  flex-wrap: wrap;
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  margin: 50px;
}
#triggers .trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
  width: 250px;
  height: 250px;
  line-height: 200px;
  padding: 0px 25px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  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 .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: #1a1a1a;
}
#triggers .trigger:active {
  background-color: #1a1a1a;
  color: solid #888 1px;
}
#triggers .trigger:active .text {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

#screen-onstart-identification {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  background: white;
  z-index: 100;
}
#screen-onstart-identification .inner {
  position: absolute;
  top: 320px;
  left: 510px;
  width: 900px;
  text-align: center;
}
#screen-onstart-identification .inner .line-1 {
  color: #333;
  font-size: 46px;
}
#screen-onstart-identification .inner .line-2 {
  display: inline-flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #333;
  font-size: 36px;
  margin-top: 50px;
}
#screen-onstart-identification .inner .line-2 span {
  padding-left: 10px;
}
#screen-onstart-identification .inner .line-3 {
  color: #333;
  font-size: 24px;
  margin-top: 250px;
}
#screen-onstart-identification .spinning-loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 5px solid rgba(29, 161, 242, 0.2);
  border-left-color: rgb(29, 161, 242);
  border-radius: 50%;
  background: transparent;
  animation-name: rotate-s-loader;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  animation-timing-function: linear;
  position: relative;
}
@keyframes rotate-s-loader {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.simulator {
  position: absolute;
  top: 50px;
  right: 0;
  width: 300px;
  height: 840px;
  z-index: 100;
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.simulator .wrapper {
  position: absolute;
  width: 100%;
  height: 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;
  left: 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 {
  right: -300px;
}
.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.side-by-side:first-child,
.simulator .simulator-dropdown.side-by-side:first-child {
  margin-right: 5px;
}
.simulator .simulator-btn.side-by-side:last-child,
.simulator .simulator-dropdown.side-by-side:last-child {
  margin-left: 5px;
}
.simulator .simulator-btn.simulator-dropdown label,
.simulator .simulator-dropdown.simulator-dropdown label {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  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-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
}
.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;
}

.avatar {
  position: absolute;
  font-size: 22px;
  top: 880px;
  left: 200px;
  will-change: opacity, transform, visibility;
}
.avatar .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.avatar .wrapper .base-element {
  position: absolute;
  top: 0;
  left: 0;
}
.avatar .wrapper .background {
  filter: drop-shadow(0px 14px 14px rgba(0, 0, 0, 0.25));
  width: 480px;
  height: 480px;
  border-radius: 50%;
}
.avatar .wrapper .element {
  position: absolute;
}
.avatar .wrapper .avatar-reflection .default, .avatar .wrapper .avatar-reflection .theme-blue, .avatar .wrapper .avatar-reflection .theme-green, .avatar .wrapper .avatar-reflection .theme-red {
  position: absolute;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  opacity: 0;
  will-change: opacity, visibility;
  -webkit-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.avatar .wrapper .avatar-reflection .default {
  box-shadow: inset 17.1428571429px 17.1428571429px 34.2857142857px #0041A3;
}
.avatar .wrapper .avatar-reflection .theme-blue {
  box-shadow: inset 17.1428571429px 17.1428571429px 34.2857142857px #3EB89B;
}
.avatar .wrapper .avatar-reflection .theme-red {
  box-shadow: inset 17.1428571429px 17.1428571429px 34.2857142857px #AF67DB;
}
.avatar .wrapper .avatar-reflection .theme-green {
  box-shadow: inset 17.1428571429px 17.1428571429px 34.2857142857px #8DC546;
}
.avatar .wrapper .avatar-reflection:not(.theme-blue):not(.theme-red):not(.theme-green) .default {
  opacity: 1;
}
.avatar .wrapper .avatar-reflection.theme-blue .theme-blue {
  opacity: 1;
}
.avatar .wrapper .avatar-reflection.theme-red .theme-red {
  opacity: 1;
}
.avatar .wrapper .avatar-reflection.theme-green .theme-green {
  opacity: 1;
}
.avatar .wrapper .avatar-type {
  will-change: opacity, visibility;
}
.avatar .wrapper .avatar-type.happy .happy-eye-left {
  left: 75px;
  top: 162px;
}
.avatar .wrapper .avatar-type.happy .happy-eye-right {
  left: 265px;
  top: 162px;
}
.avatar .wrapper .avatar-type.happy .eclat {
  border-radius: 50%;
  width: 22px;
  height: 22px;
  background: white;
}
.avatar .wrapper .avatar-type.happy .eclat.big {
  width: 36px;
  height: 36px;
}
.avatar .wrapper .avatar-type.happy .happy-eye-left-eclat-1 {
  left: 130px;
  top: 195px;
}
.avatar .wrapper .avatar-type.happy .happy-eye-left-eclat-2 {
  left: 164px;
  top: 224px;
}
.avatar .wrapper .avatar-type.happy .happy-eye-right-eclat-1 {
  left: 323px;
  top: 195px;
}
.avatar .wrapper .avatar-type.happy .happy-eye-right-eclat-2 {
  left: 358px;
  top: 224px;
}
.avatar .wrapper .avatar-type.surprised .surprised-eye-left {
  left: 130px;
  top: 214px;
}
.avatar .wrapper .avatar-type.surprised .surprised-eyebrow-left {
  left: 85px;
  top: 91px;
}
.avatar .wrapper .avatar-type.surprised .surprised-eye-right {
  left: 315px;
  top: 214px;
}
.avatar .wrapper .avatar-type.surprised .surprised-eyebrow-right {
  left: 318px;
  top: 91px;
}
.avatar .wrapper .avatar-type.surprised .surprised-mouth {
  left: 210px;
  top: 318px;
}

#wallpaper {
  position: absolute;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  background: transparent;
}
#wallpaper .theme-blue, #wallpaper .theme-red, #wallpaper .theme-green {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
  opacity: 0;
  -webkit-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#wallpaper.theme-blue .theme-blue {
  opacity: 1;
}
#wallpaper.theme-red .theme-red {
  opacity: 1;
}
#wallpaper.theme-green .theme-green {
  opacity: 1;
}
#wallpaper .theme-blue {
  background: url("../images/wallpapers-32in-screens/turquoise.jpg");
}
#wallpaper .theme-red {
  background: url("../images/wallpapers-32in-screens/magenta.jpg");
}
#wallpaper .theme-green {
  background: url("../images/wallpapers-32in-screens/vert.jpg");
}
#wallpaper.large {
  height: 2160px;
}
#wallpaper.large .theme-blue, #wallpaper.large .theme-red, #wallpaper.large .theme-green {
  top: -1080px;
  height: 2160px;
}
#wallpaper.large .theme-blue {
  background: url("../images/wallpapers-32in-screens/turquoise-large.jpg");
}
#wallpaper.large .theme-red {
  background: url("../images/wallpapers-32in-screens/magenta-large.jpg");
}
#wallpaper.large .theme-green {
  background: url("../images/wallpapers-32in-screens/vert-large.jpg");
}

.screen-15in #wallpaper .theme-blue {
  background: url("../images/wallpapers-15in-screens/turquoise.jpg");
}
.screen-15in #wallpaper .theme-red {
  background: url("../images/wallpapers-15in-screens/magenta.jpg");
}
.screen-15in #wallpaper .theme-green {
  background: url("../images/wallpapers-15in-screens/vert.jpg");
}

.screen-15in #wallpaper.large .theme-blue {
  background: url("../images/wallpapers-15in-screens/turquoise-large.jpg");
}
.screen-15in #wallpaper.large .theme-red {
  background: url("../images/wallpapers-15in-screens/magenta-large.jpg");
}
.screen-15in #wallpaper.large .theme-green {
  background: url("../images/wallpapers-15in-screens/vert-large.jpg");
}

#main.logbook .rfid-cta {
  position: absolute;
  width: 519px;
  height: 400px;
}
#main.logbook .rfid-cta .animation-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#main.logbook .rfid-cta .animation-wrapper .rfid-cta-top,
#main.logbook .rfid-cta .animation-wrapper .rfid-cta-bottom {
  position: absolute;
  top: 0;
  left: 0;
}
#main.logbook .rfid-cta .animation-wrapper .rfid-cta-top {
  will-change: transform;
  animation: float 6s ease-in-out infinite;
}
#main.logbook .rfid-cta .animation-wrapper.clip-register {
  clip-path: path("M519 400C519 400 310.457 400 200 400C89.5431 400 0 310.457 0 200C0 89.5433 89.5431 0.000209808 200 0.000209808C254.733 0.000209808 519 0 519 0V400Z");
}
#main.logbook .rfid-cta .default, #main.logbook .rfid-cta .theme-blue, #main.logbook .rfid-cta .theme-green, #main.logbook .rfid-cta .theme-red {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#main.logbook .rfid-cta .glow {
  animation: glowing 2s ease-in-out infinite;
  will-change: opacity;
}
#main.logbook .rfid-cta .default .glow svg {
  filter: drop-shadow(0 0 50px #0041A3);
}
#main.logbook .rfid-cta .theme-blue .glow svg {
  filter: drop-shadow(0 0 50px #3EB89B);
}
#main.logbook .rfid-cta .theme-red .glow svg {
  filter: drop-shadow(0 0 50px #AF67DB);
}
#main.logbook .rfid-cta .theme-green .glow svg {
  filter: drop-shadow(0 0 50px #8DC546);
}
#main.logbook .rfid-cta:not(.theme-blue):not(.theme-red):not(.theme-green) .default {
  opacity: 1;
}
#main.logbook .rfid-cta.theme-blue .theme-blue {
  opacity: 1;
}
#main.logbook .rfid-cta.theme-red .theme-red {
  opacity: 1;
}
#main.logbook .rfid-cta.theme-green .theme-green {
  opacity: 1;
}
@keyframes float {
  0% {
    transform: translatey(10px);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(10px);
  }
}
@keyframes glowing {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
#main.logbook {
  position: absolute;
  overflow: hidden;
  color: #FCF8FF;
}
#main.logbook a {
  color: #FCF8FF;
}
#main.logbook a:hover, #main.logbook a:active, #main.logbook a:focus {
  color: #FFFFFF;
}
#main.logbook .screen, #main.logbook #wallpaper {
  left: 155px;
  top: 28px;
  width: 1584px;
  height: 1052px;
  pointer-events: none;
}
#main.logbook #wallpaper {
  background: url("../images/wallpapers-32in-screens/bleu.jpg") 0 0;
}
#main.logbook #avatar {
  top: 700px;
  left: 1617px;
  transform: scale(0.3);
  opacity: 0;
  visibility: hidden;
}
#main.logbook #screen-1 #intro-wrapper {
  position: absolute;
  top: 682px;
  width: 1584px;
  height: 370px;
  background: rgba(0, 15, 36, 0.9);
}
#main.logbook #screen-1 #intro-wrapper .intro-cta {
  display: flex;
  position: absolute;
  top: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 350px;
  height: 370px;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 36px;
  line-height: 54px;
}
#main.logbook #screen-1 #intro-wrapper .intro-cta#intro-cta-fr {
  left: 80px;
  text-align: right;
}
#main.logbook #screen-1 #intro-wrapper .intro-cta#intro-cta-en {
  left: 1160px;
}
#main.logbook #screen-1 .rfid-cta {
  position: absolute;
  left: 538px;
  top: 553px;
  height: 500px;
}
#main.logbook #screen-4 .final-wrapper, #main.logbook #screen-5 .final-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 1584px;
  height: 877px;
}
#main.logbook #screen-4 .final-wrapper .inner, #main.logbook #screen-5 .final-wrapper .inner {
  width: 700px;
}
#main.logbook #screen-4 .final-wrapper .title, #main.logbook #screen-5 .final-wrapper .title {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  line-height: 50px;
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
}
#main.logbook #screen-4 .final-wrapper .text, #main.logbook #screen-5 .final-wrapper .text {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  line-height: 44px;
  line-height: normal;
  text-align: center;
}
#main.logbook #screen-4 .rfid-cta, #main.logbook #screen-5 .rfid-cta {
  position: absolute;
  left: 538px;
  top: 553px;
  height: 500px;
  transform: scale(0.75);
  transform-origin: 50% 100%;
}
#main.logbook #screen-5 .final-wrapper .inner {
  width: 730px;
}
#main.logbook #screen-5 .rfid-cta {
  left: 238px;
}
#main.logbook #screen-5 #cta-arrow {
  position: absolute;
  top: 845px;
  left: 710px;
  width: 158px;
  height: auto;
}
#main.logbook #screen-5 #outro-cta {
  position: relative;
}
#main.logbook #screen-5 #outro-cta .rfid-cta {
  left: 838px;
}
#main.logbook #screen-5 #outro-cta .rfid-cta .animation-wrapper {
  display: none;
}
#main.logbook #screen-5 #outro-cta #station-outro-icon {
  position: absolute;
  top: 770px;
  left: 978px;
}
#main.logbook #logbook-wrapper {
  position: absolute;
  top: 28px;
  left: 155px;
  width: 1584px;
  height: 1052px;
  overflow: hidden;
}
#main.logbook #logbook {
  position: absolute;
  top: 45px;
  left: 162px;
}
#main.logbook #logbook .tab {
  position: absolute;
  top: 0;
  left: -5px;
  width: 1283px;
  height: 934px;
  z-index: 0;
}
#main.logbook #logbook .tab .label {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  position: absolute;
  top: 55px;
  height: 50px;
  width: 180px;
  font-size: 22px;
  line-height: 24px;
  color: #000;
  opacity: 0.4;
}
#main.logbook #logbook .tab .label .icon {
  position: relative;
  width: 25px;
  height: 25px;
  margin-right: 20px;
  will-change: transform;
}
#main.logbook #logbook .tab .label .icon > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#main.logbook #logbook .tab .label .icon > div.active {
  opacity: 1;
}
#main.logbook #logbook .tab .label .icon .locked {
  background: url("../images/logbook/tab/icon-locked.png") center center no-repeat;
  background-size: contain;
}
#main.logbook #logbook .tab .label .icon .in-progress {
  background: url("../images/logbook/tab/icon-in-progress.png") center center no-repeat;
  background-size: contain;
}
#main.logbook #logbook .tab .label .icon .in-progress.active {
  -webkit-animation: rotating 2s linear infinite;
}
#main.logbook #logbook .tab .label .icon .completed {
  background: url("../images/logbook/tab/icon-completed.png") center center no-repeat;
  background-size: contain;
}
#main.logbook #logbook .tab#tab-1 {
  background: url("../images/logbook/tab/tab-1.png");
}
#main.logbook #logbook .tab#tab-1 .label {
  left: 270px;
}
#main.logbook #logbook .tab#tab-2 {
  background: url("../images/logbook/tab/tab-2.png");
}
#main.logbook #logbook .tab#tab-2 .label {
  left: 510px;
}
#main.logbook #logbook .tab#tab-3 {
  background: url("../images/logbook/tab/tab-3.png");
}
#main.logbook #logbook .tab#tab-3 .label {
  left: 750px;
}
#main.logbook #logbook .tab#tab-4 {
  background: url("../images/logbook/tab/tab-4.png");
}
#main.logbook #logbook .tab#tab-4 .label {
  left: 990px;
}
#main.logbook #logbook .logbook-page {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
#main.logbook #logbook .logbook-page .inner-wrapper {
  position: absolute;
  left: 350px;
  top: 40px;
  width: 805px;
  height: 780px;
}
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
#main.logbook #logbook #logbook-page-1 {
  top: 77px;
  left: 0;
  width: 1260px;
  height: 840px;
  background: url("../images/logbook/folder-top.png");
  z-index: 3;
}
#main.logbook #logbook #logbook-page-1 .title {
  position: absolute;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  text-align: center;
  color: #270E04;
  opacity: 0.9;
}
#main.logbook #logbook #logbook-page-1 .title.fr {
  top: 240px;
}
#main.logbook #logbook #logbook-page-1 .title.en {
  top: 345px;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
}
#main.logbook #logbook #logbook-page-2 {
  top: 70px;
  left: -3px;
  width: 1260px;
  height: 840px;
  z-index: 2;
}
#main.logbook #logbook #logbook-page-2 .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#main.logbook #logbook #logbook-page-2 .background.theme-blue {
  background: url("../images/logbook/page-background/blue.png");
}
#main.logbook #logbook #logbook-page-2 .background.theme-green {
  background: url("../images/logbook/page-background/green.png");
}
#main.logbook #logbook #logbook-page-2 .background.theme-red {
  background: url("../images/logbook/page-background/red.png");
}
#main.logbook #logbook #logbook-page-2 .oops, #main.logbook #logbook #logbook-page-2 .zone-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}
#main.logbook #logbook #logbook-page-2 .oops {
  justify-content: center;
  text-align: center;
  color: #270E04;
  margin-left: -50px;
}
#main.logbook #logbook #logbook-page-2 .oops .title {
  font-family: "Pangolin", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 64px;
  margin-bottom: 40px;
}
#main.logbook #logbook #logbook-page-2 .oops .subtitle {
  font-family: "Pangolin", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 40px;
  margin-bottom: 40px;
}
#main.logbook #logbook #logbook-page-2 .oops .help {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  line-height: 44px;
  text-align: left;
}
#main.logbook #logbook #logbook-page-2 .zone-selector .title {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 24px;
  width: 100%;
  color: #270E04;
  margin-top: 50px;
  margin-bottom: 35px;
  text-transform: uppercase;
}
#main.logbook #logbook #logbook-page-2 .zone-selector .title:after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #993DD1;
  height: 4px;
  bottom: -10px;
}
#main.logbook #logbook #logbook-page-2 .zone-selector .title.theme-blue {
  color: #2D8670;
}
#main.logbook #logbook #logbook-page-2 .zone-selector .title.theme-blue:after {
  background-color: #2D8670;
}
#main.logbook #logbook #logbook-page-2 .zone-selector .title.theme-green {
  color: #67942E;
}
#main.logbook #logbook #logbook-page-2 .zone-selector .title.theme-green:after {
  background-color: #67942E;
}
#main.logbook #logbook #logbook-page-2 .zone-selector .title.theme-red {
  color: #993DD1;
}
#main.logbook #logbook #logbook-page-2 .zone-selector .title.theme-red:after {
  background-color: #993DD1;
}
#main.logbook #logbook #logbook-page-2 .zone-selector #zone-selector-help,
#main.logbook #logbook #logbook-page-2 .zone-selector #zone-selector-zone1,
#main.logbook #logbook #logbook-page-2 .zone-selector #zone-selector-zone2,
#main.logbook #logbook #logbook-page-2 .zone-selector #zone-selector-zone3,
#main.logbook #logbook #logbook-page-2 .zone-selector #zone-selector-zone4 {
  width: 100%;
  height: 150px;
}
#main.logbook #logbook #logbook-page-2 .zone-selector .text {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  text-align: left;
  color: #270E04;
  width: 100%;
}
#main.logbook #logbook #logbook-page-2 .quit-button {
  position: absolute;
  right: -2px;
  bottom: 26px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  padding: 20px 58px;
  box-sizing: border-box;
  border: #0041A3 8px solid;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FCF8FF;
  -webkit-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  line-height: normal;
  border-width: 4px;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 15px;
  pointer-events: all;
  display: none;
}
#main.logbook #logbook #logbook-page-2 .quit-button:active {
  transform: scale(0.95, 0.95);
}
#main.logbook #logbook #logbook-page-2 .quit-button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#main.logbook #logbook #logbook-page-2 .quit-button.themeable.theme-red {
  border-color: #AF67DB;
}
#main.logbook #logbook #logbook-page-2 .quit-button.themeable.theme-green {
  border-color: #8DC546;
}
#main.logbook #logbook #logbook-page-2 .quit-button.themeable.theme-blue {
  border-color: #3EB89B;
}
#main.logbook #logbook #logbook-page-2 .quit-button.themeable.theme-red {
  color: #993DD1;
  border-color: #993DD1;
}
#main.logbook #logbook #logbook-page-2 .quit-button.themeable.theme-green {
  color: #67942E;
  border-color: #67942E;
}
#main.logbook #logbook #logbook-page-2 .quit-button.themeable.theme-blue {
  color: #2D8670;
  border-color: #2D8670;
}
#main.logbook #logbook #logbook-page-2 .quit-button.clicked {
  opacity: 0;
  pointer-events: none;
}
#main.logbook #logbook #logbook-page-2:not(.first-time-to-bassin) .quit-button {
  display: inline-block;
}
#main.logbook #logbook #logbook-page-2 .bassin {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  margin-top: 20px;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper {
  position: relative;
  width: 600px;
  height: 453px;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-line {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  pointer-events: none;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-line.theme-blue circle, #main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-line.theme-blue line, #main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-line.theme-blue path, #main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-line.theme-blue rect {
  fill: #2D8670;
  stroke: #2D8670;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-line.theme-green circle, #main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-line.theme-green line, #main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-line.theme-green path, #main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-line.theme-green rect {
  fill: #67942E;
  stroke: #67942E;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-line.theme-red circle, #main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-line.theme-red line, #main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-line.theme-red path, #main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-line.theme-red rect {
  fill: #993DD1;
  stroke: #993DD1;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-line.bassin-line.ready:not(.completed) {
  visibility: visible;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .completed-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 72px;
  margin-left: -24px;
  margin-top: -72px;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .completed-tooltip .label {
  position: absolute;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 80px;
  color: #270E04;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  border-radius: 12px;
  padding: 10px;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .completed-tooltip[data-zone-id="1"] .label {
  top: -70px;
  left: 55px;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .completed-tooltip[data-zone-id="2"] .label {
  top: -40px;
  left: -266px;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .completed-tooltip[data-zone-id="3"] .label {
  top: -60px;
  left: 60px;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .completed-tooltip[data-zone-id="4"] .label {
  top: 60px;
  left: 50px;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .completed-tooltip.active {
  visibility: visible;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;
  height: 453px;
  visibility: hidden;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-layer#bassin-initial {
  background: url("../images/logbook/bassin/bassin-initial.png") 0 0 no-repeat;
  visibility: visible;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-layer#bassin-stroke {
  background: url("../images/logbook/bassin/bassin-stroke.png") 0 0 no-repeat;
  visibility: visible;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-layer#bassin-complet {
  background: url("../images/logbook/bassin/bassin-complet.png") 0 0 no-repeat;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-layer[data-zone-id="1"] {
  background: url("../images/logbook/bassin/bassin-zone1.png") 0 0 no-repeat;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-layer[data-zone-id="2"] {
  background: url("../images/logbook/bassin/bassin-zone2.png") 0 0 no-repeat;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-layer[data-zone-id="3"] {
  background: url("../images/logbook/bassin/bassin-zone3.png") 0 0 no-repeat;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-layer[data-zone-id="4"] {
  background: url("../images/logbook/bassin/bassin-zone4.png") 0 0 no-repeat;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-layer.completed {
  visibility: visible;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-lock {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  background: #270E04;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-lock.theme-blue {
  background: #3EB89B;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-lock.theme-green {
  background: #8DC546;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-lock.theme-red {
  background: #993DD1;
}
#main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-lock.completed, #main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-lock.started, #main.logbook #logbook #logbook-page-2 .bassin #bassin-image-wrapper .bassin-lock.ready {
  visibility: hidden;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger {
  position: absolute;
  width: 250px;
  height: 80px;
  pointer-events: none;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger:not(.ready) .button {
  display: none;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger.ready:not(.started) .continue {
  display: none;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger.ready.started .start {
  display: none;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger.ready.completed {
  display: none;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  padding: 20px 58px;
  box-sizing: border-box;
  border: #0041A3 8px solid;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FCF8FF;
  -webkit-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  line-height: normal;
  border-width: 4px;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 15px;
  width: 100%;
  pointer-events: all;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger .button:active {
  transform: scale(0.95, 0.95);
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger .button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger .button.themeable.theme-red {
  border-color: #AF67DB;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger .button.themeable.theme-green {
  border-color: #8DC546;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger .button.themeable.theme-blue {
  border-color: #3EB89B;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger .button.themeable.theme-red {
  color: #993DD1;
  border-color: #993DD1;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger .button.themeable.theme-green {
  color: #67942E;
  border-color: #67942E;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger .button.themeable.theme-blue {
  color: #2D8670;
  border-color: #2D8670;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger .button.clicked {
  opacity: 0;
  pointer-events: none;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger .button.theme-blue {
  background: #cff2df;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger .button.theme-green {
  background: #e0f2b3;
}
#main.logbook #logbook #logbook-page-2 .bassin .zone-trigger .button.theme-red {
  background: #efdfe9;
}
#main.logbook #logbook #logbook-page-2.completed-bassin .bassin #bassin-image-wrapper .bassin-layer#bassin-complet {
  visibility: visible;
}
#main.logbook #logbook #logbook-page-3 {
  top: 70px;
  width: 1260px;
  height: 840px;
  z-index: 1;
}
#main.logbook #logbook #logbook-page-3 .inner-wrapper {
  top: 50px;
  height: 755px;
}
#main.logbook #logbook #logbook-page-3 #quiz {
  position: relative;
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #000;
  font-size: 40px;
}
#main.logbook #logbook #logbook-page-3 #quiz .title {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 24px;
  width: 100%;
  color: #270E04;
  margin-top: 50px;
  margin-bottom: 35px;
  text-transform: uppercase;
}
#main.logbook #logbook #logbook-page-3 #quiz .title:after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #993DD1;
  height: 4px;
  bottom: -10px;
}
#main.logbook #logbook #logbook-page-3 #quiz .title.theme-blue {
  color: #2D8670;
}
#main.logbook #logbook #logbook-page-3 #quiz .title.theme-blue:after {
  background-color: #2D8670;
}
#main.logbook #logbook #logbook-page-3 #quiz .title.theme-green {
  color: #67942E;
}
#main.logbook #logbook #logbook-page-3 #quiz .title.theme-green:after {
  background-color: #67942E;
}
#main.logbook #logbook #logbook-page-3 #quiz .title.theme-red {
  color: #993DD1;
}
#main.logbook #logbook #logbook-page-3 #quiz .title.theme-red:after {
  background-color: #993DD1;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component:not(.active) {
  visibility: hidden;
  pointer-events: none;
}
#main.logbook #logbook #logbook-page-3 #quiz .content {
  display: inline-flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}
#main.logbook #logbook #logbook-page-3 #quiz .footer {
  min-height: 90px;
}
#main.logbook #logbook #logbook-page-3 #quiz [data-layout=true-or-false] .footer {
  min-height: 260px;
}
#main.logbook #logbook #logbook-page-3 #quiz [data-layout=textual-choices] .footer {
  min-height: 170px;
}
#main.logbook #logbook #logbook-page-3 #quiz .image.themeable {
  overflow: hidden;
}
#main.logbook #logbook #logbook-page-3 #quiz .image.themeable img {
  transform: translateY(-500px);
}
#main.logbook #logbook #logbook-page-3 #quiz .image.themeable.theme-blue img {
  filter: drop-shadow(0px 500px #2D8670);
}
#main.logbook #logbook #logbook-page-3 #quiz .image.themeable.theme-green img {
  filter: drop-shadow(0px 500px #67942E);
}
#main.logbook #logbook #logbook-page-3 #quiz .image.themeable.theme-red img {
  filter: drop-shadow(0px 500px #993DD1);
}
#main.logbook #logbook #logbook-page-3 #quiz .button {
  position: absolute;
  bottom: 10px;
  right: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  padding: 20px 58px;
  box-sizing: border-box;
  border: #0041A3 8px solid;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FCF8FF;
  -webkit-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  line-height: normal;
  border-width: 4px;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 15px;
}
#main.logbook #logbook #logbook-page-3 #quiz .button:active {
  transform: scale(0.95, 0.95);
}
#main.logbook #logbook #logbook-page-3 #quiz .button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#main.logbook #logbook #logbook-page-3 #quiz .button.themeable.theme-red {
  border-color: #AF67DB;
}
#main.logbook #logbook #logbook-page-3 #quiz .button.themeable.theme-green {
  border-color: #8DC546;
}
#main.logbook #logbook #logbook-page-3 #quiz .button.themeable.theme-blue {
  border-color: #3EB89B;
}
#main.logbook #logbook #logbook-page-3 #quiz .button.themeable.theme-red {
  color: #993DD1;
  border-color: #993DD1;
}
#main.logbook #logbook #logbook-page-3 #quiz .button.themeable.theme-green {
  color: #67942E;
  border-color: #67942E;
}
#main.logbook #logbook #logbook-page-3 #quiz .button.themeable.theme-blue {
  color: #2D8670;
  border-color: #2D8670;
}
#main.logbook #logbook #logbook-page-3 #quiz .button.clicked {
  opacity: 0;
  pointer-events: none;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=summary] .summary-columns {
  display: flex;
  flex-direction: row;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=summary] .summary-columns .left, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=summary] .summary-columns .right {
  width: calc(50% - 10px);
  color: rgba(39, 14, 4, 0.9);
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=summary] .summary-columns .left.left, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=summary] .summary-columns .right.left {
  margin-right: 20px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=summary] .summary-columns .left h2, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=summary] .summary-columns .right h2 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 20px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=summary] .summary-columns .left p, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=summary] .summary-columns .left ul, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=summary] .summary-columns .left ol, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=summary] .summary-columns .right p, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=summary] .summary-columns .right ul, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=summary] .summary-columns .right ol {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=summary] .summary-columns .left ul, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=summary] .summary-columns .right ul {
  list-style: disc;
  padding-inline-start: 40px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection] .title {
  flex-grow: 0;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection] .text {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  width: 100%;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection] .content {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection] .content .left {
  flex-grow: 1;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-centered-option=true] .content {
  align-items: center;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection] .footer {
  position: relative;
  display: inline-block;
  width: 100%;
  flex-grow: 1;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection] .options:not(.active) {
  pointer-events: none;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-gap: 30px 20px;
  margin: 0 40px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option {
  position: relative;
  width: 192px;
  height: 148px;
  color: #FCF8FF;
  z-index: 1;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option .name {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  color: #270E04;
  position: relative;
  z-index: 2;
  margin: 0 15px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option .image {
  position: relative;
  left: 5px;
  top: 19px;
  width: 180px;
  height: 120px;
  display: flex;
  align-content: center;
  justify-content: center;
  margin-bottom: 20px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option .image .image-wrapper {
  position: relative;
  display: inline-flex;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option .image .image-wrapper img {
  border: 6px solid #FFFFFF;
  box-shadow: 2px 2px 5px rgba(39, 14, 4, 0.25);
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option .image .image-wrapper:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background-color: rgba(153, 61, 209, 0.4);
  opacity: 0;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option .name {
  position: absolute;
  white-space: nowrap;
  font-size: 22px;
  line-height: 24px;
  display: inline-block;
  width: auto;
  padding: 12px;
  right: -60px;
  top: 104.28px;
  background: #FFFFFF;
  box-shadow: 2px 2px 5px rgba(39, 14, 4, 0.25);
  z-index: 2;
  transform: rotate(-5deg);
  min-width: 80px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option .feedback {
  top: 5px;
  left: 15px;
  width: 157.5px;
  height: 108px;
  z-index: 3;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option:nth-child(6n+1) {
  transform: rotate(-4deg);
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option:nth-child(6n+2) {
  transform: rotate(-5deg);
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option:nth-child(6n+5) {
  transform: rotate(4deg);
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option:nth-child(6n+6) {
  transform: rotate(-2deg);
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option .feedback[data-feedback-index="1"],
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option .feedback[data-feedback-index="5"] {
  background: url("../images/logbook/polaroid/entoure-1 1.png") 0 0 no-repeat;
  background-size: contain;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option .feedback[data-feedback-index="2"],
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option .feedback[data-feedback-index="6"] {
  background: url("../images/logbook/polaroid/entoure-1 2.png") 0 0 no-repeat;
  background-size: contain;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option .feedback[data-feedback-index="3"] {
  background: url("../images/logbook/polaroid/entoure-1 3.png") 0 0 no-repeat;
  background-size: contain;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option .feedback[data-feedback-index="4"] {
  background: url("../images/logbook/polaroid/entoure-1 4.png") 0 0 no-repeat;
  background-size: contain;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option:after {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 90px;
  height: 31px;
  background: url("../images/logbook/polaroid/polaroid-sticker.png") center bottom no-repeat;
  background-size: contain;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option.selected .image-wrapper:after {
  opacity: 1;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option.themeable.theme-blue.selected img {
  border-color: #2D8670;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option.themeable.theme-blue .image-wrapper:after {
  background-color: rgba(45, 134, 112, 0.4);
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option.themeable.theme-red.selected img {
  border-color: #993DD1;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option.themeable.theme-red .image-wrapper:after {
  background-color: rgba(153, 61, 209, 0.4);
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option.themeable.theme-green.selected img {
  border-color: #67942E;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .options .option.themeable.theme-green .image-wrapper:after {
  background-color: rgba(103, 148, 46, 0.4);
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=image-grid] .footer {
  height: 160px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  padding: 20px 58px;
  box-sizing: border-box;
  border: #FCF8FF 8px solid;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FCF8FF;
  -webkit-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  line-height: normal;
  border-width: 4px;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #270E04;
  background: #FCF8FF;
  border-color: #FCF8FF;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option:active, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option:active {
  transform: scale(0.95, 0.95);
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option.disabled, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option.themeable.theme-red, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option.themeable.theme-red {
  border-color: #AF67DB;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option.themeable.theme-green, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option.themeable.theme-green {
  border-color: #8DC546;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option.themeable.theme-blue, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option.themeable.theme-blue {
  border-color: #3EB89B;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option.themeable.theme-red, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option.themeable.theme-red {
  color: #993DD1;
  border-color: #993DD1;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option.themeable.theme-green, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option.themeable.theme-green {
  color: #67942E;
  border-color: #67942E;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option.themeable.theme-blue, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option.themeable.theme-blue {
  color: #2D8670;
  border-color: #2D8670;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option.clicked, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option.clicked {
  opacity: 0;
  pointer-events: none;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option.themeable.theme-red, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option.themeable.theme-red {
  color: #270E04;
  border-color: #FCF8FF;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option.themeable.theme-green, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option.themeable.theme-green {
  color: #270E04;
  border-color: #FCF8FF;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option.themeable.theme-blue, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option.themeable.theme-blue {
  color: #270E04;
  border-color: #FCF8FF;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option.selected, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option.selected {
  color: #FCF8FF;
  background: #0041A3;
  border-color: #0041A3;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option.selected.themeable.theme-red, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option.selected.themeable.theme-red {
  background-color: #993DD1;
  border-color: #993DD1;
  color: #FCF8FF;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option.selected.themeable.theme-green, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option.selected.themeable.theme-green {
  background-color: #8DC546;
  border-color: #8DC546;
  color: #FCF8FF;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option.selected.themeable.theme-blue, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option.selected.themeable.theme-blue {
  background-color: #3EB89B;
  border-color: #3EB89B;
  color: #FCF8FF;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .options .option .feedback, #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option .feedback {
  width: 129px;
  height: 88px;
  margin-left: -16px;
  margin-top: -14px;
  background: url("../images/logbook/feedbacks/true-false-entoure.png") 0 0 no-repeat;
  background-size: contain;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=true-or-false] .text {
  font-size: 32px;
  line-height: 44px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options {
  flex-direction: column;
  justify-content: left;
  gap: 12px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option {
  justify-content: flex-start;
  padding: 5px 20px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option .name {
  font-size: 24px;
  line-height: 32px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option .feedback {
  width: 129px;
  height: 88px;
  margin-left: -140px;
  margin-top: -8px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option .feedback[data-feedback-index="1"], #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option .feedback[data-feedback-index="4"] {
  background: url("../images/logbook/feedbacks/evaluation-connaissances-choix-reponses-fleche-1.png") 0 0 no-repeat;
  background-size: contain;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option .feedback[data-feedback-index="2"], #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option .feedback[data-feedback-index="5"] {
  background: url("../images/logbook/feedbacks/evaluation-connaissances-choix-reponses-fleche-2.png") 0 0 no-repeat;
  background-size: contain;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option .feedback[data-feedback-index="3"], #main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection][data-layout=textual-choices] .options .option .feedback[data-feedback-index="6"] {
  background: url("../images/logbook/feedbacks/evaluation-connaissances-choix-reponses-fleche-3.png") 0 0 no-repeat;
  background-size: contain;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection] .feedback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection] .feedback:not(.active) {
  visibility: hidden;
  pointer-events: none;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection] .feedback-block {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection] .feedback-block .inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 610px;
  margin-left: -20px;
  gap: 30px;
  pointer-events: none;
  min-height: 100%;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection] .feedback-block .text {
  font-family: "Pangolin", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 27px;
  line-height: 35px;
  color: #C93112;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection] .feedback-block .image {
  width: 100%;
  max-width: 100px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection] .feedback-block .image img {
  width: 100%;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=selection] .feedback-block:not(.active) {
  visibility: hidden;
  pointer-events: none;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=info] .content {
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=info] .text {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  line-height: 44px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=info] .text p {
  margin: 30px 0;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=info] .text p.gros-script {
  font-family: "Pangolin", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 64px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=info] .text p.smaller {
  text-align: left;
  font-size: 24px;
  line-height: 32px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=info] .text2 {
  text-align: center;
  font-family: "Pangolin", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 64px;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=info] .text2.themeable.theme-blue {
  color: #2D8670;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=info] .text2.themeable.theme-green {
  color: #67942E;
}
#main.logbook #logbook #logbook-page-3 #quiz .quiz-component[data-type=info] .text2.themeable.theme-red {
  color: #993DD1;
}
#main.logbook #still-there {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
}
#main.logbook #still-there .overlay {
  position: absolute;
  width: 1920px;
  height: 1080px;
  background-color: rgba(0, 15, 36, 0.8);
}
#main.logbook #still-there .modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 64px 64px;
  gap: 24px;
  width: 736px;
  height: 344px;
  background-color: #0041A3;
  box-shadow: 0px 0px 100px #000F24;
  color: #000;
  border-radius: 16px;
}
#main.logbook #still-there .modal .description {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}
#main.logbook #still-there .modal .description p {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 64px;
  margin: 0;
  color: #FCF8FF;
}
#main.logbook #still-there .modal .still-there-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}
#main.logbook #still-there .modal .still-there-buttons .still-there-button .inner {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  padding: 20px 58px;
  box-sizing: border-box;
  border: #0041A3 8px solid;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FCF8FF;
  -webkit-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 12px 26px;
  color: #000;
  background: #FCF8FF;
  border: 0;
  border-radius: 14px;
  box-shadow: 0px 4px 4px rgba(233, 212, 173, 0.25);
}
#main.logbook #still-there .modal .still-there-buttons .still-there-button .inner:active {
  transform: scale(0.95, 0.95);
}
#main.logbook #still-there .modal .still-there-buttons .still-there-button .inner.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#main.logbook #still-there .modal .still-there-buttons .still-there-button .inner.themeable.theme-red {
  border-color: #AF67DB;
}
#main.logbook #still-there .modal .still-there-buttons .still-there-button .inner.themeable.theme-green {
  border-color: #8DC546;
}
#main.logbook #still-there .modal .still-there-buttons .still-there-button .inner.themeable.theme-blue {
  border-color: #3EB89B;
}
#main.logbook #still-there .modal .still-there-buttons .still-there-button:active .inner, #main.logbook #still-there .modal .still-there-buttons .still-there-button:focus .inner {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

#main.register .rfid-cta {
  position: absolute;
  width: 519px;
  height: 400px;
}
#main.register .rfid-cta .animation-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#main.register .rfid-cta .animation-wrapper .rfid-cta-top,
#main.register .rfid-cta .animation-wrapper .rfid-cta-bottom {
  position: absolute;
  top: 0;
  left: 0;
}
#main.register .rfid-cta .animation-wrapper .rfid-cta-top {
  will-change: transform;
  animation: float 6s ease-in-out infinite;
}
#main.register .rfid-cta .animation-wrapper.clip-register {
  clip-path: path("M519 400C519 400 310.457 400 200 400C89.5431 400 0 310.457 0 200C0 89.5433 89.5431 0.000209808 200 0.000209808C254.733 0.000209808 519 0 519 0V400Z");
}
#main.register .rfid-cta .default, #main.register .rfid-cta .theme-blue, #main.register .rfid-cta .theme-green, #main.register .rfid-cta .theme-red {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#main.register .rfid-cta .glow {
  animation: glowing 2s ease-in-out infinite;
  will-change: opacity;
}
#main.register .rfid-cta .default .glow svg {
  filter: drop-shadow(0 0 50px #45269C);
}
#main.register .rfid-cta .theme-blue .glow svg {
  filter: drop-shadow(0 0 50px #47C5A8);
}
#main.register .rfid-cta .theme-red .glow svg {
  filter: drop-shadow(0 0 50px #CA5FDC);
}
#main.register .rfid-cta .theme-green .glow svg {
  filter: drop-shadow(0 0 50px #97DA43);
}
#main.register .rfid-cta:not(.theme-blue):not(.theme-red):not(.theme-green) .default {
  opacity: 1;
}
#main.register .rfid-cta.theme-blue .theme-blue {
  opacity: 1;
}
#main.register .rfid-cta.theme-red .theme-red {
  opacity: 1;
}
#main.register .rfid-cta.theme-green .theme-green {
  opacity: 1;
}
@keyframes float {
  0% {
    transform: translatey(10px);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(10px);
  }
}
@keyframes glowing {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
#main.register {
  background: url("../images/wallpapers-15in-screens/bleu.jpg");
  color: #FFFFFF;
}
#main.register a {
  color: #FFFFFF;
}
#main.register a:hover, #main.register a:active, #main.register a:focus {
  color: #FFFFFF;
}
#main.register #avatar {
  top: 522px;
  left: 960px;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  visibility: hidden;
}
#main.register #screen-1 #intro-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  left: 160px;
  top: 0;
  width: 1200px;
  height: 1080px;
}
#main.register #screen-1 #intro-wrapper > .inner {
  display: flex;
  justify-content: space-between;
  width: 1200px;
}
#main.register #screen-1 #intro-wrapper > .inner > .intro-cta {
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  width: 47%;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#main.register #screen-1 #intro-wrapper > .inner > .intro-cta .caption {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FFFFFF;
  text-align: left;
  margin-top: 0;
  margin-bottom: 25px;
}
#main.register #screen-1 #intro-wrapper > .inner > .intro-cta .title {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FFFFFF;
  text-align: left;
}
#main.register #screen-1 .rfid-cta {
  position: absolute;
  right: 0;
  top: 570px;
}
#main.register #screen-2 #language-selectors {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 160px;
  top: 0;
  width: 1580px;
  height: 1080px;
}
#main.register #screen-2 #language-selectors > .language {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 540px;
  height: 100%;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#main.register #screen-2 #language-selectors > .language .caption {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FFFFFF;
  text-align: left;
  margin-top: 0;
  margin-bottom: 25px;
}
#main.register #screen-2 #language-selectors > .language .title {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FFFFFF;
  text-align: left;
}
#main.register #screen-2 #language-selectors > .language .button-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 50px;
}
#main.register #screen-2 #language-selectors > .language .button-wrapper .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  padding: 20px 58px;
  box-sizing: border-box;
  border: #45269C 8px solid;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FCF8FF;
  -webkit-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#main.register #screen-2 #language-selectors > .language .button-wrapper .button:active {
  transform: scale(0.95, 0.95);
}
#main.register #screen-2 #language-selectors > .language .button-wrapper .button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#main.register #screen-2 #language-selectors > .language .button-wrapper .button.themeable.theme-red {
  border-color: #AF67DB;
}
#main.register #screen-2 #language-selectors > .language .button-wrapper .button.themeable.theme-green {
  border-color: #8DC546;
}
#main.register #screen-2 #language-selectors > .language .button-wrapper .button.themeable.theme-blue {
  border-color: #3EB89B;
}
#main.register #screen-3 #age-selectors {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 960px;
  top: 0;
  width: 750px;
  height: 1080px;
}
#main.register #screen-3 #age-selectors .caption {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 20px;
}
#main.register #screen-3 #age-selectors .title {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 64px;
  line-height: 90px;
  color: #FFFFFF;
  margin-bottom: 30px;
}
#main.register #screen-3 #age-selectors .options {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#main.register #screen-3 #age-selectors .options > .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  padding: 20px 58px;
  box-sizing: border-box;
  border: #45269C 8px solid;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FCF8FF;
  -webkit-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 25px;
}
#main.register #screen-3 #age-selectors .options > .button:active {
  transform: scale(0.95, 0.95);
}
#main.register #screen-3 #age-selectors .options > .button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#main.register #screen-3 #age-selectors .options > .button.themeable.theme-red {
  border-color: #AF67DB;
}
#main.register #screen-3 #age-selectors .options > .button.themeable.theme-green {
  border-color: #8DC546;
}
#main.register #screen-3 #age-selectors .options > .button.themeable.theme-blue {
  border-color: #3EB89B;
}
#main.register #screen-4 #themes-selectors, #main.logbook.register #screen-5 #themes-selectors {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 960px;
  top: 0;
  width: 680px;
  height: 1080px;
}
#main.register #screen-4 #themes-selectors .inner, #main.logbook.register #screen-5 #themes-selectors .inner {
  width: 100%;
}
#main.register #screen-4 #themes-selectors .caption, #main.logbook.register #screen-5 #themes-selectors .caption {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  margin-bottom: 30px;
}
#main.register #screen-4 #themes-selectors .title, #main.logbook.register #screen-5 #themes-selectors .title {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 64px;
  line-height: 90px;
  margin-bottom: 30px;
}
#main.register #screen-4 #themes-selectors .options, #main.logbook.register #screen-5 #themes-selectors .options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#main.register #screen-4 #themes-selectors .options > .theme, #main.logbook.register #screen-5 #themes-selectors .options > .theme {
  display: inline;
  border-radius: 24px;
  width: 200px;
  height: 200px;
  border: 8px solid transparent;
}
#main.register #screen-4 #themes-selectors .options > .theme .inner, #main.logbook.register #screen-5 #themes-selectors .options > .theme .inner {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
#main.register #screen-4 #themes-selectors .options > .theme.theme[data-action-arg=blue] .inner, #main.logbook.register #screen-5 #themes-selectors .options > .theme.theme[data-action-arg=blue] .inner {
  background: #47C5A8;
  box-shadow: inset 0px 0px 50px 30px #2D8670;
}
#main.register #screen-4 #themes-selectors .options > .theme.theme[data-action-arg=red] .inner, #main.logbook.register #screen-5 #themes-selectors .options > .theme.theme[data-action-arg=red] .inner {
  background: #CA5FDC;
  box-shadow: inset 0px 0px 50px 30px #993DD1;
}
#main.register #screen-4 #themes-selectors .options > .theme.theme[data-action-arg=green] .inner, #main.logbook.register #screen-5 #themes-selectors .options > .theme.theme[data-action-arg=green] .inner {
  background: #97DA43;
  box-shadow: inset 0px 0px 50px 30px #67942E;
}
#main.register #screen-4 #themes-selectors .options > .theme.active, #main.logbook.register #screen-5 #themes-selectors .options > .theme.active {
  border-color: #FFFFFF;
}
#main.register #screen-4 #themes-selectors .actions, #main.logbook.register #screen-5 #themes-selectors .actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
#main.register #screen-4 #themes-selectors .actions .button, #main.logbook.register #screen-5 #themes-selectors .actions .button {
  margin-top: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  padding: 20px 58px;
  box-sizing: border-box;
  border: #45269C 8px solid;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FCF8FF;
  -webkit-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#main.register #screen-4 #themes-selectors .actions .button:active, #main.logbook.register #screen-5 #themes-selectors .actions .button:active {
  transform: scale(0.95, 0.95);
}
#main.register #screen-4 #themes-selectors .actions .button.disabled, #main.logbook.register #screen-5 #themes-selectors .actions .button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#main.register #screen-4 #themes-selectors .actions .button.themeable.theme-red, #main.logbook.register #screen-5 #themes-selectors .actions .button.themeable.theme-red {
  border-color: #CA5FDC;
}
#main.register #screen-4 #themes-selectors .actions .button.themeable.theme-green, #main.logbook.register #screen-5 #themes-selectors .actions .button.themeable.theme-green {
  border-color: #97DA43;
}
#main.register #screen-4 #themes-selectors .actions .button.themeable.theme-blue, #main.logbook.register #screen-5 #themes-selectors .actions .button.themeable.theme-blue {
  border-color: #47C5A8;
}
#main.register #screen-5 #emotions-selectors {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 960px;
  top: 0;
  width: 680px;
  height: 1080px;
}
#main.register #screen-5 #emotions-selectors .inner {
  width: 100%;
}
#main.register #screen-5 #emotions-selectors .caption {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  margin-bottom: 20px;
}
#main.register #screen-5 #emotions-selectors .title {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 64px;
  line-height: 90px;
  margin-bottom: 60px;
}
#main.register #screen-5 #emotions-selectors .options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#main.register #screen-5 #emotions-selectors .options > .emotion {
  display: inline;
  border-radius: 24px;
  opacity: 0.7;
  width: 184px;
  height: 184px;
  -webkit-transition: opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
#main.register #screen-5 #emotions-selectors .options > .emotion.active {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#main.register #screen-5 #emotions-selectors .actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
#main.register #screen-5 #emotions-selectors .actions .button {
  margin-top: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  padding: 20px 58px;
  box-sizing: border-box;
  border: #45269C 8px solid;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FCF8FF;
  -webkit-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#main.register #screen-5 #emotions-selectors .actions .button:active {
  transform: scale(0.95, 0.95);
}
#main.register #screen-5 #emotions-selectors .actions .button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#main.register #screen-5 #emotions-selectors .actions .button.themeable.theme-red {
  border-color: #CA5FDC;
}
#main.register #screen-5 #emotions-selectors .actions .button.themeable.theme-green {
  border-color: #97DA43;
}
#main.register #screen-5 #emotions-selectors .actions .button.themeable.theme-blue {
  border-color: #47C5A8;
}
#main.register #screen-6 #finale {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: absolute;
  left: 160px;
  top: 115px;
  width: 1040px;
  height: 850px;
}
#main.register #screen-6 #finale .inner {
  width: 100%;
}
#main.register #screen-6 #finale .caption {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  margin-bottom: 30px;
}
#main.register #screen-6 #finale .title {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 64px;
  line-height: 90px;
  line-height: 105px;
  margin-bottom: 80px;
}
#main.register #screen-6 #finale .actions {
  position: absolute;
  top: 568px;
  display: inline-block;
  width: 100%;
}
#main.register #screen-6 #finale .actions .cta {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  margin-top: 55px;
  margin-left: 345px;
}
#main.register #screen-6 #finale .actions .cta .inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 46px;
  left: 20px;
  width: 340px;
  text-align: center;
  color: #000;
}
#main.register #screen-6 #finale .actions .cta .arrow svg path,
#main.register #screen-6 #finale .actions .cta .arrow svg rect {
  -webkit-transition: fill 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: fill 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: fill 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: fill 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: fill 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#main.register #screen-6 #finale .actions .cta.themeable.theme-red svg path, #main.register #screen-6 #finale .actions .cta.themeable.theme-red svg rect {
  fill: #CA5FDC;
}
#main.register #screen-6 #finale .actions .cta.themeable.theme-green svg path, #main.register #screen-6 #finale .actions .cta.themeable.theme-green svg rect {
  fill: #97DA43;
}
#main.register #screen-6 #finale .actions .cta.themeable.theme-blue svg path, #main.register #screen-6 #finale .actions .cta.themeable.theme-blue svg rect {
  fill: #47C5A8;
}
#main.register #screen-6 .rfid-cta {
  position: absolute;
  right: 0;
  top: 570px;
}
#main.register #still-there {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
}
#main.register #still-there .overlay {
  position: absolute;
  width: 1920px;
  height: 1080px;
  background-color: rgba(0, 15, 36, 0.8);
}
#main.register #still-there .modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 64px 64px;
  gap: 24px;
  width: 736px;
  height: 344px;
  background-color: #45269C;
  box-shadow: 0px 0px 100px #000F24;
  color: #000;
  border-radius: 16px;
}
#main.register #still-there .modal .description {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}
#main.register #still-there .modal .description p {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 64px;
  margin: 0;
  color: #FFFFFF;
}
#main.register #still-there .modal .still-there-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}
#main.register #still-there .modal .still-there-buttons .still-there-button .inner {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  padding: 20px 58px;
  box-sizing: border-box;
  border: #0041A3 8px solid;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FCF8FF;
  -webkit-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 12px 26px;
  color: #000;
  background: #FFFFFF;
  border: 0;
  border-radius: 14px;
  box-shadow: 0px 4px 4px rgba(233, 212, 173, 0.25);
}
#main.register #still-there .modal .still-there-buttons .still-there-button .inner:active {
  transform: scale(0.95, 0.95);
}
#main.register #still-there .modal .still-there-buttons .still-there-button .inner.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#main.register #still-there .modal .still-there-buttons .still-there-button .inner.themeable.theme-red {
  border-color: #AF67DB;
}
#main.register #still-there .modal .still-there-buttons .still-there-button .inner.themeable.theme-green {
  border-color: #8DC546;
}
#main.register #still-there .modal .still-there-buttons .still-there-button .inner.themeable.theme-blue {
  border-color: #3EB89B;
}
#main.register #still-there .modal .still-there-buttons .still-there-button:active .inner, #main.register #still-there .modal .still-there-buttons .still-there-button:focus .inner {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

#main.outro .rfid-cta {
  position: absolute;
  width: 519px;
  height: 400px;
}
#main.outro .rfid-cta .animation-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#main.outro .rfid-cta .animation-wrapper .rfid-cta-top,
#main.outro .rfid-cta .animation-wrapper .rfid-cta-bottom {
  position: absolute;
  top: 0;
  left: 0;
}
#main.outro .rfid-cta .animation-wrapper .rfid-cta-top {
  will-change: transform;
  animation: float 6s ease-in-out infinite;
}
#main.outro .rfid-cta .animation-wrapper.clip-register {
  clip-path: path("M519 400C519 400 310.457 400 200 400C89.5431 400 0 310.457 0 200C0 89.5433 89.5431 0.000209808 200 0.000209808C254.733 0.000209808 519 0 519 0V400Z");
}
#main.outro .rfid-cta .default, #main.outro .rfid-cta .theme-blue, #main.outro .rfid-cta .theme-green, #main.outro .rfid-cta .theme-red {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#main.outro .rfid-cta .glow {
  animation: glowing 2s ease-in-out infinite;
  will-change: opacity;
}
#main.outro .rfid-cta .default .glow svg {
  filter: drop-shadow(0 0 50px #45269C);
}
#main.outro .rfid-cta .theme-blue .glow svg {
  filter: drop-shadow(0 0 50px #47C5A8);
}
#main.outro .rfid-cta .theme-red .glow svg {
  filter: drop-shadow(0 0 50px #CA5FDC);
}
#main.outro .rfid-cta .theme-green .glow svg {
  filter: drop-shadow(0 0 50px #97DA43);
}
#main.outro .rfid-cta:not(.theme-blue):not(.theme-red):not(.theme-green) .default {
  opacity: 1;
}
#main.outro .rfid-cta.theme-blue .theme-blue {
  opacity: 1;
}
#main.outro .rfid-cta.theme-red .theme-red {
  opacity: 1;
}
#main.outro .rfid-cta.theme-green .theme-green {
  opacity: 1;
}
@keyframes float {
  0% {
    transform: translatey(10px);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(10px);
  }
}
@keyframes glowing {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
#main.outro {
  background: url("../images/wallpapers-15in-screens/bleu.jpg");
  color: #FFFFFF;
}
#main.outro a {
  color: #FFFFFF;
}
#main.outro a:hover, #main.outro a:active, #main.outro a:focus {
  color: #FFFFFF;
}
#main.outro #avatar {
  top: 522px;
  left: 480px;
  transform: scale(0.6);
  opacity: 0;
  visibility: hidden;
}
#main.outro #wallpaper {
  overflow: visible;
}
#main.outro #screen-1 #intro-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  left: 960px;
  top: 0;
  width: 860px;
  height: 1080px;
}
#main.outro #screen-1 #intro-wrapper > .intro-cta {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#main.outro #screen-1 #intro-wrapper > .intro-cta .caption {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 64px;
  line-height: 90px;
  color: #FFFFFF;
  text-align: left;
}
#main.outro #screen-1 #intro-wrapper > .intro-cta .caption:not(:last-child) {
  margin-bottom: 25px;
}
#main.outro #screen-1 .rfid-cta {
  position: absolute;
  left: 0;
  top: 0;
}
#main.outro #screen-2 #cloud {
  position: absolute;
  display: inline-block;
  width: 700px;
  height: 450px;
  top: 168px;
  left: 130px;
  will-change: transform;
}
#main.outro #screen-2 #cloud .inner-wrapper {
  will-change: transform;
}
#main.outro #screen-2 #cloud .cloud-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 701px;
  height: 450px;
}
#main.outro #screen-2 #cloud #cloud-avatar {
  position: absolute;
  top: 270px;
  left: 480px;
  transform: scale(0.3);
}
#main.outro #screen-2 #cloud #cloud-avatar .background, #main.outro #screen-2 #cloud #cloud-avatar .avatar-reflection {
  display: none;
}
#main.outro #screen-2 #cloud.theme-blue .cloud-back {
  background: transparent url("../images/outro/nuage/nuage-blue.png") no-repeat 0 0;
}
#main.outro #screen-2 #cloud.theme-green .cloud-back {
  background: transparent url("../images/outro/nuage/nuage-green.png") no-repeat 0 0;
}
#main.outro #screen-2 #cloud.theme-red .cloud-back {
  background: transparent url("../images/outro/nuage/nuage-red.png") no-repeat 0 0;
}
#main.outro #screen-2 #rising-drop {
  position: absolute;
  display: inline-block;
  width: 140px;
  height: 140px;
  top: 200px;
  left: 410px;
}
#main.outro #screen-2 #rising-drop.theme-blue {
  background: transparent url("../images/outro/rising-drop/rising-drop-blue.png") no-repeat 0 0;
}
#main.outro #screen-2 #rising-drop.theme-green {
  background: transparent url("../images/outro/rising-drop/rising-drop-green.png") no-repeat 0 0;
}
#main.outro #screen-2 #rising-drop.theme-red {
  background: transparent url("../images/outro/rising-drop/rising-drop-red.png") no-repeat 0 0;
}
#main.outro #screen-2 .infos {
  position: absolute;
  top: 0;
  left: 960px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 960px;
  height: 1080px;
}
#main.outro #screen-2 .infos.theme-blue {
  opacity: 1;
  background: rgba(45, 134, 112, 0.5);
}
#main.outro #screen-2 .infos.theme-red {
  background: rgba(153, 61, 209, 0.5);
}
#main.outro #screen-2 .infos.theme-green {
  background: rgba(103, 148, 46, 0.5);
}
#main.outro #screen-2 .infos .inner {
  padding: 100px;
}
#main.outro #screen-2 .infos .paragraph:not(:last-child) {
  margin-bottom: 30px;
}
#main.outro #screen-2 .infos .paragraph:nth-child(1) {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 64px;
  line-height: 90px;
}
#main.outro #screen-2 .infos .paragraph:nth-child(2) {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
}
#main.outro #screen-2 .infos .paragraph:nth-child(3) {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
}
#main.outro #screen-2 #countdown {
  position: absolute;
  text-align: center;
  top: 670px;
  left: 405px;
  width: 160px;
  height: 160px;
}
#main.outro #screen-2 #countdown .glow, #main.outro #screen-2 #countdown .background, #main.outro #screen-2 #countdown #countdown-text {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
#main.outro #screen-2 #countdown #countdown-text {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 64px;
}
#main.outro #screen-2 #countdown .background, #main.outro #screen-2 #countdown .glow {
  background: black;
}
#main.outro #screen-2 #countdown .glow {
  position: absolute;
  animation: glowing 2s ease-in-out infinite;
  will-change: opacity;
  -webkit-transform: scale(99%);
  -ms-transform: scale(99%);
  transform: scale(99%);
}
#main.outro #screen-2 #countdown.theme-blue .glow {
  filter: drop-shadow(0 0 50px #31A084);
}
#main.outro #screen-2 #countdown.theme-green .glow {
  filter: drop-shadow(0 0 50px #97DA43);
}
#main.outro #screen-2 #countdown.theme-red .glow {
  filter: drop-shadow(0 0 50px #CA5FDC);
}
#main.outro #screen-2 #countdown-arrow {
  position: absolute;
  top: 780px;
  left: 100px;
}
#main.outro #screen-2 #countdown-arrow.theme-blue path, #main.outro #screen-2 #countdown-arrow.theme-blue rect {
  fill: #31A084;
}
#main.outro #screen-2 #countdown-arrow.theme-green path, #main.outro #screen-2 #countdown-arrow.theme-green rect {
  fill: #97DA43;
}
#main.outro #screen-2 #countdown-arrow.theme-red path, #main.outro #screen-2 #countdown-arrow.theme-red rect {
  fill: #CA5FDC;
}
#main.outro #screen-2 #countdown-arrow .wrapper {
  -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#main.outro #screen-2 #countdown-arrow.disabled .wrapper {
  opacity: 0.4;
}
#main.outro #screen-2 #countdown-arrow .text {
  position: absolute;
  top: 0;
  left: 100px;
  width: calc(100% - 100px);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #000;
}
@keyframes glowing {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
#main.outro #still-there {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
}
#main.outro #still-there .overlay {
  position: absolute;
  width: 1920px;
  height: 1080px;
  background-color: rgba(0, 15, 36, 0.8);
}
#main.outro #still-there .modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 64px 64px;
  gap: 24px;
  width: 736px;
  height: 344px;
  background-color: #45269C;
  box-shadow: 0px 0px 100px #000F24;
  color: #000;
  border-radius: 16px;
}
#main.outro #still-there .modal .description {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}
#main.outro #still-there .modal .description p {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 64px;
  margin: 0;
  color: #FFFFFF;
}
#main.outro #still-there .modal .still-there-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}
#main.outro #still-there .modal .still-there-buttons .still-there-button .inner {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  padding: 20px 58px;
  box-sizing: border-box;
  border: #0041A3 8px solid;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 72px;
  color: #FCF8FF;
  -webkit-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 12px 26px;
  color: #000;
  background: #FFFFFF;
  border: 0;
  border-radius: 14px;
  box-shadow: 0px 4px 4px rgba(233, 212, 173, 0.25);
}
#main.outro #still-there .modal .still-there-buttons .still-there-button .inner:active {
  transform: scale(0.95, 0.95);
}
#main.outro #still-there .modal .still-there-buttons .still-there-button .inner.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#main.outro #still-there .modal .still-there-buttons .still-there-button .inner.themeable.theme-red {
  border-color: #AF67DB;
}
#main.outro #still-there .modal .still-there-buttons .still-there-button .inner.themeable.theme-green {
  border-color: #8DC546;
}
#main.outro #still-there .modal .still-there-buttons .still-there-button .inner.themeable.theme-blue {
  border-color: #3EB89B;
}
#main.outro #still-there .modal .still-there-buttons .still-there-button:active .inner, #main.outro #still-there .modal .still-there-buttons .still-there-button:focus .inner {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

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