@font-face {
  font-family: "bebas_neueregular";
  src: url("bebasneue-regular-webfont.woff2") format("woff2"), url("bebasneue-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.blink {
  animation: blink 0.25s infinite alternate;
}

@keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.3;
  }
}
.rotateRad1 {
  animation: turnRad1 4s infinite linear;
}

@keyframes turnRad1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotateRad2 {
  animation: turnRad2 2s infinite linear;
}

@keyframes turnRad2 {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.white {
  color: #FFFFFF;
}

.bg-white {
  background-color: #FFFFFF;
}

.blue {
  color: #003781;
}

.bg-blue {
  background-color: #003781;
}

.dark-blue {
  color: #122B54;
}

.bg-dark-blue {
  background-color: #122B54;
}

.green {
  color: #7EAA2E;
}

.bg-green {
  background-color: #7EAA2E;
}

.orange {
  color: #F29053;
}

.bg-orange {
  background-color: #F29053;
}

.cyan {
  color: #07EAD3;
}

.bg-cyan {
  background-color: #07EAD3;
}

.bebas {
  font-family: "bebas_neueregular";
}

*, *::before, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  color: #122B54;
  height: 100vh;
  width: 100%;
  position: fixed;
  font-size: 16px;
  font-family: sans-serif;
}

#globalContainer {
  border-radius: 15px;
}

.trace-fond {
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  background: url(../images/traces-fond.png) no-repeat, radial-gradient(#003781, #122B54);
}

.logo-allianz {
  position: absolute;
  width: 155px;
  height: 40px;
  background: no-repeat url(../images/logo-allianz.png);
  top: 30px;
  left: 30px;
}

.logo-vedecom {
  position: absolute;
  width: 155px;
  height: 65px;
  background: no-repeat url(../images/logo-vedecom.png);
  bottom: 30px;
  left: 30px;
}

.spinner {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.spinner .double-bounce1, .spinner .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FFFFFF;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}
.spinner .double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
#fondEcran {
  position: absolute;
  width: 1070px;
  height: 610px;
  top: 10px;
  left: 200px;
  background-image: url(../images/circuit.png);
  background-position: 120px 130px;
  background-repeat: no-repeat;
  background-color: white;
  border-radius: 70px 10px 10px 70px;
}

#assetContainer iframe {
  background-color: initial !important;
}

.playerButton {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  color: white;
  font-size: inherit;
  overflow: visible;
  padding-top: 55px;
  white-space: nowrap;
}

#assetContainer iframe,
#helpBox iframe {
  position: absolute;
  width: 1070px !important;
  height: 610px !important;
  top: 10px !important;
  left: 200px !important;
  border-radius: 70px 10px 10px 70px;
  box-shadow: -15px 0px 10px -5px rgba(0, 0, 0, 0.74);
  background-color: white;
}

#assetContainer {
  width: inherit;
  height: inherit;
}

#screenName {
  font-size: 12px;
  width: 200px;
  bottom: 5px;
  text-align: center;
  left: 0;
  opacity: 0.5;
  color: white;
}

#buttonQuit, #homeBoxExitButton {
  background-image: url(../images/btn-quit.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  top: 80px;
  left: 70px;
}
#buttonQuit:hover, #homeBoxExitButton:hover {
  opacity: 0.5;
}

#buttonHome {
  background-image: url(../images/btn-home.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  top: 170px;
  left: 70px;
}
#buttonHome:hover {
  opacity: 0.5;
}

#buttonRomy, #buttonCloseRomy {
  position: absolute;
  background-image: url(../images/btn-romy.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  top: 170px;
  left: 70px;
}
#buttonRomy:hover, #buttonCloseRomy:hover {
  opacity: 0.5;
}

#buttonCloseRomy {
  display: none;
  background-image: url(../images/btn-exit.svg);
}

#buttonHelp {
  background-image: url(../images/btn-info.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  top: 260px;
  left: 70px;
}
#buttonHelp:hover {
  opacity: 0.5;
}

#buttonSubtitle {
  background-image: url(../images/btn-cc.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  top: 350px;
  left: 70px;
  opacity: 0.25;
}

#buttonSubtitle.subtitleActivated {
  opacity: 1;
}

#buttonPause {
  background-image: url(../images/btn-pauseOff.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  top: 440px;
  left: 70px;
}
#buttonPause:hover {
  opacity: 0.5;
}

#buttonPause.audioPaused {
  background-image: url(../images/btn-pauseOn.svg) !important;
  animation: blink 0.25s infinite alternate;
}

#firstConnectionBox .playerButton {
  width: 310px;
  height: 280px;
  right: 170px;
  top: 50px;
}

#secondConnectionBox .playerButton {
  width: 310px;
  height: 280px;
  right: 170px;
  top: 50px;
}

#helpBox .trace-fond {
  opacity: 0.85;
}

#helpBoxCloseButton {
  background-image: url(../images/btn-exit.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  top: 270px;
  left: 70px;
  animation: blink 0.25s infinite alternate;
}
#helpBoxCloseButton:hover {
  opacity: 0.5;
}

#exitBox {
  width: 190px !important;
  height: calc(100% - 170px) !important;
  top: 70px;
  left: -190px;
  background-color: #122B54;
}

#exitBoxYesButton, #exitBoxNoButton {
  width: 100%;
  height: 80px;
  font-size: 34px;
  color: white;
  text-align: center;
  left: 0;
  font-family: "bebas_neueregular";
}
#exitBoxYesButton:hover:hover, #exitBoxNoButton:hover:hover {
  opacity: 0.5;
}

#exitBoxYesButton {
  top: 180px;
}

#exitBoxNoButton {
  top: 270px;
}

#homeMask {
  position: absolute;
  top: 0;
  left: 190px;
  width: calc(100% - 190px);
  height: 100%;
  display: none;
}

#homeBoxChapters {
  top: 10px;
  left: 200px;
  width: 1070px;
}
#homeBoxChapters .homechapter {
  position: absolute;
  cursor: pointer;
}
#homeBoxChapters .homechapter .homechapternum {
  display: none;
}
#homeBoxChapters .homechapter .homechaptertitle {
  display: none;
}
#homeBoxChapters .homechapter .homechapterinfo {
  display: none;
}
#homeBoxChapters .homechapterseen::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
}

#homechapter0 {
  top: 55px;
  left: 195px;
  width: 100px;
  height: 100px;
}

#homechapter0.homechapterseen::after {
  top: -10px;
  left: 70px;
  background-image: url(../images/home-box-coche-verte-y.svg);
}

#homechapter1 {
  top: 10px;
  left: 385px;
  width: 100px;
  height: 170px;
}

#homechapter1.homechapterseen::after {
  top: 0;
  left: 70px;
  background-image: url(../images/home-box-coche-bleue-y.svg);
}

#homechapter2 {
  top: 20px;
  left: 600px;
  width: 100px;
  height: 110px;
}

#homechapter2.homechapterseen::after {
  top: 0;
  left: 80px;
  background-image: url(../images/home-box-coche-bleue-x.svg);
}

#homechapter3 {
  top: 0;
  left: 780px;
  width: 100px;
  height: 160px;
}

#homechapter3.homechapterseen::after {
  top: 60px;
  left: 70px;
  background-image: url(../images/home-box-coche-verte-x.svg);
}

#homechapter4 {
  top: 220px;
  left: 755px;
  width: 100px;
  height: 110px;
}

#homechapter4.homechapterseen::after {
  top: 0;
  left: 60px;
  background-image: url(../images/home-box-coche-verte-x.svg);
}

#homechapter5 {
  top: 176px;
  left: 900px;
  width: 100px;
  height: 160px;
}

#homechapter5.homechapterseen::after {
  top: -30px;
  left: 70px;
  background-image: url(../images/home-box-coche-bleue-y.svg);
}

#homechapter6 {
  top: 355px;
  left: 755px;
  width: 100px;
  height: 110px;
}

#homechapter6.homechapterseen::after {
  top: -20px;
  left: 70px;
  background-image: url(../images/home-box-coche-verte-y.svg);
}

#homechapter7 {
  top: 390px;
  left: 570px;
  width: 100px;
  height: 180px;
}

#homechapter7.homechapterseen::after {
  top: -20px;
  left: 70px;
  background-image: url(../images/home-box-coche-bleue-y.svg);
}

#homechapter8 {
  top: 390px;
  left: 420px;
  width: 100px;
  height: 180px;
}

#homechapter8.homechapterseen::after {
  top: 0;
  left: 60px;
  background-image: url(../images/home-box-coche-bleue-x.svg);
}

#homechapter9 {
  top: 350px;
  left: 225px;
  width: 100px;
  height: 170px;
}

#homechapter9.homechapterseen::after {
  top: 0;
  left: 60px;
  background-image: url(../images/home-box-coche-bleue-x.svg);
}

#homechapter10 {
  top: 165px;
  left: 135px;
  width: 100px;
  height: 170px;
}

#homechapter10.homechapterseen::after {
  top: 0;
  left: 0;
  background-image: url(../images/home-box-coche-bleue-y.svg);
}

#homechapter11 {
  top: 420px;
  left: 870px;
  width: 190px;
  height: 180px;
}
#homechapter11:hover .homechaptertitle {
  color: white;
}
#homechapter11 .homechaptertitle {
  display: block !important;
  font-family: "bebas_neueregular";
  font-size: 26px;
  margin: 30px 20px;
  color: #F29053;
  text-align: center;
}

#homechapter12 {
  top: 320px;
  left: 60px;
  width: 100px;
  height: 110px;
}

#homechapter12.homechapterseen::after {
  top: 0;
  left: 60px;
  background-image: url(../images/home-box-coche-verte-x.svg);
}

#buttonNextScreen, #buttonPrevScreen {
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  top: 270px;
  cursor: pointer;
}
#buttonNextScreen:hover, #buttonPrevScreen:hover {
  opacity: 0.5;
}

#buttonNextScreen {
  background-image: url(../images/btn-next-vert.svg);
  right: 20px;
}

#buttonPrevScreen {
  background-image: url(../images/btn-prev-vert.svg);
  left: 210px;
}

#screen-romy {
  position: absolute;
  top: 0;
  left: 400px;
  width: 675px;
  height: inherit;
  background-position: top left;
  background-repeat: no-repeat;
}

#screen-side {
  position: absolute;
  top: 0;
  left: -400px;
  width: 400px;
  height: 100%;
  color: white;
}

#adas-close {
  width: 30px;
  height: 30px;
  margin: 30px 0 0 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/btn-close-white.svg);
  cursor: pointer;
}
#adas-close:hover {
  opacity: 0.5;
}

#adas-acronyme {
  font-size: 24px;
  margin: 10px 0 0 50px;
}

#adas-title {
  font-family: "bebas_neueregular";
  font-size: 38px;
  margin: 10px 50px 0 50px;
}

#adas-intro {
  font-size: 18px;
  margin: 30px 50px 0 50px;
}

#adas-progress {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 35px;
}

#screenAdasNext, #screenAdasPrev {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  top: calc(630px - 90px);
  cursor: pointer;
}
#screenAdasNext:hover, #screenAdasPrev:hover {
  opacity: 0.5;
}

#screenAdasNext {
  background-image: url(../images/btn-next.svg);
  right: 20px;
}

#screenAdasPrev {
  background-image: url(../images/btn-prev.svg);
  left: 40px;
}

#adas-launch {
  position: absolute;
  bottom: 80px;
  padding: 10px 20px;
  left: 50%;
  color: white;
  font-size: 24px;
  transform: translateX(-50%);
  border: solid 4px;
  border-radius: 50px;
  cursor: pointer;
}
#adas-launch:hover {
  opacity: 0.5;
}

#screen-bt-next {
  position: absolute;
  width: 75px;
  height: 75px;
  right: 123px;
  bottom: 95px;
  cursor: pointer;
  background: no-repeat center url(../images/btn-triangle.svg);
  background-size: 30%;
}

#audioSubtitlePanel {
  position: absolute;
  text-align: center;
  bottom: 15px;
  width: 880px;
  padding: 5px;
  background-color: rgba(18, 43, 84, 0.8);
  left: 300px;
  font-size: 22px;
  color: white;
}

.eval-validBtn, #suiteBtn {
  width: 150px;
  height: 50px;
  border: solid 4px #7EAA2E;
  border-radius: 25px;
  background-color: transparent;
  color: #122B54;
  font-family: "bebas_neueregular";
  font-size: 32px;
  cursor: pointer;
}

#screentitle {
  position: absolute;
  top: 10px;
  width: 100%;
  text-align: center;
  font-size: 48px;
}

.chantier {
  font-size: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "bebas_neueregular";
  color: #122B54;
  opacity: 0.5;
}

.ico-radar {
  position: absolute;
  background: no-repeat url("../images/rad3.svg");
  background-size: contain;
}
.ico-radar .ico-rad2 {
  position: absolute;
  background: no-repeat url("../images/rad2.svg");
  background-size: contain;
  opacity: 0.5;
  width: 50%;
  height: 50%;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  animation: turnRad2 2s infinite linear;
}
.ico-radar .ico-rad1 {
  position: absolute;
  background: no-repeat url("../images/rad1.svg");
  background-size: contain;
  opacity: 0.25;
  width: 50%;
  height: 50%;
  top: 0;
  left: 50%;
  transform-origin: bottom left;
  animation: turnRad1 4s infinite linear;
}

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