
body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
}

#preload {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: green;
}

#loading-bar-frame {
  border: 2px solid white;
  height: 64px;
  position: absolute;
  bottom: 128px;
  width: 75%;
  left: 13%;
}

#loading-bar-progress {
  height: 100%;
  width: 0px;
  background-color: aqua;
}

.scaled-container {
  position: absolute;
  width: 1920px;
  height: 1080px;
  top: 50%;
  left: 50%;
  overflow: hidden;
}

.center-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slideSeparator{
  /*position: absolute;
  right: 0;
  width: 20%;
  height: 100%;
  background-color: #9F9F9F;
  z-index: 2;
  opacity: 0;
  border: 10px solid #000000;*/

  position: absolute;
  right: 0;
  border-bottom: 1080px solid #9F9F9F;
  border-left: 164px solid #9F9F9F;
  border-right: 0 solid #9F9F9F;
  height: 0;
  width: 20%;
  opacity: 0;
  /*z-index: 2;*/
}

.defaultSlide {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 1920px;
  height: 1080px;
  background: #9F9F9F 0% 0% no-repeat padding-box;
  border: 1px solid #707070;
  opacity: 0;
  display: none;
}

.secondarySlide {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 1920px;
  height: 1080px;
  background: #323030 0% 0% no-repeat padding-box;
  border: 1px solid #707070;
  opacity: 1;
  display: none;
}

.simpleText {
  position: absolute;
  font-family: coolvetica, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  color: #FFFFFF;
  opacity: 1;
  letter-spacing: 0px;
  z-index: 1;
}

.interactiveText {
  position: absolute;
  font-family: coolvetica, sans-serif;
  text-align: center;
  color: #000000;
  opacity: 1;
}

.defaultButton {
  min-height: 145px;
  position: absolute;
  text-align: center;
  font: normal normal normal 30px/32px Londrina Solid;
  letter-spacing: 0px;
  color: #000000;
  text-shadow: 0px 3px 6px #00000029;
  opacity: 1;
  transition: transform .2s;
  background: transparent url('../assets/imgs/question_mark.png') 50% 0% no-repeat padding-box;
  padding-top: 22px;
  margin-top: -22px;
}

.secondaryButton {
  min-height: 145px;
  position: absolute;
  text-align: center;
  font: normal normal normal 30px/32px Londrina Solid;
  letter-spacing: 0px;
  color: #B7B7B7;
  text-shadow: 0px 3px 6px #00000029;
  opacity: 1;
  transition: transform .2s;
  background: url('../assets/imgs/question_mark.png') 50% 0% no-repeat padding-box;
  padding-top: 22px;
  margin-top: -22px;
}

.clickableLink {
  text-decoration: none;
  display: block;
  transition: transform .2s;
}

.clickableLink:hover {
  transform: scale(1.1);
}

.defaultButton:hover, .secondaryButton:hover {
  transform: scale(1.1)!important;
}

.skipLink {
  position: absolute;
  bottom: 30px;
  right:30px;
  width: 135px;
  height: 123px;
  background: transparent url('../assets/imgs/Bouton_skip.png') 0% 0% no-repeat padding-box;
  opacity: 1;
}

.downloadButton {
  position: absolute;
  bottom: -32px;
  right: -16px;
  width: 135px;
  height: 123px;
  opacity: 1;
  background: transparent url('../assets/imgs/Bouton\ download.png') 0% 0% no-repeat padding-box;
}

.bg-img {
  position: absolute;
}

.maskTemplate01 {
  background-color: #9F9F9F;
  position: absolute;
  opacity: 0;
}

.maskTemplate02 {
  background-color: #323030;
  position: absolute;
  opacity: 0;
}

.maskTemplate03 {
  background-color: #EBEBEB;
  position: absolute;
  opacity: 0;
}