@font-face {
  font-family: Hind;
  src: url(../fonts/Hind-Regular.ttf), url(../fonts/Hind-Medium.ttf), url(../fonts/Hind-SemiBold.ttf), url(../fonts/Hind-Bold.ttf);
}
@font-face {
  font-family: League Spartan;
  src: url(../fonts/LeagueSpartan-Bold.otf);
}
html {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: #0C0C0D;
  color: white;
  font-family: Hind;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body ::-webkit-scrollbar {
  display: none;
}
@media (min-width: 480px) {
  body {
    font-size: 1rem;
  }
}

main {
  scrollbar-width: none;
}

h2 {
  font-family: League Spartan;
  font-size: 1.6rem;
  text-align: center;
}
@media (min-width: 480px) {
  h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1100px) {
  h2 {
    font-size: 2.8rem;
  }
}

h3 {
  font-family: League Spartan;
  font-size: 1.5rem;
}
@media (min-width: 1100px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
}
@media (min-width: 1100px) {
  h4 {
    font-size: 1.8rem;
  }
}

h5 {
  font-family: League Spartan;
  font-size: 14px;
  margin-top: 1.5rem;
}
@media (min-width: 480px) {
  h5 {
    font-size: 1rem;
  }
}
h5.bigger {
  font-size: 2rem;
  text-align: center;
}

.h5-like {
  font-family: League Spartan;
  font-size: 1rem;
  margin-top: 1.5rem;
}

.scrollbarContainer .simplebar-scrollbar {
  margin: 1px;
}
.scrollbarContainer .simplebar-scrollbar::before {
  background-color: rgba(255, 255, 255, 0.5);
}

.topBar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4rem;
  border-bottom: 1px solid #545455;
}
@media (min-width: 1100px) {
  .topBar {
    height: 6rem;
  }
}
.topBar a {
  display: flex;
}
.topBar a img {
  max-height: 3.5rem;
}
@media (min-width: 1100px) {
  .topBar a img {
    max-height: 5rem;
  }
}
.topBar .menu {
  position: absolute;
  left: 1rem;
  width: 2rem;
}
@media (min-width: 1100px) {
  .topBar .menu {
    display: none;
  }
}

section.session_confirm {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.3s;
  overflow: hidden;
}

section.session_confirm.displayed {
  display: flex;
}

section.session_confirm.opacity1 {
  opacity: 1;
}

section.session_confirm.opacity1 .confirm_bloc {
  top: 0;
}

.session_confirm .confirm_bloc {
  background-color: #31A8FF;
  color: white;
  width: 65vw;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  top: 15vh;
  transition: top 0.3s;
}

.confirm_bloc p {
  margin-bottom: 20px;
}

.confirm_bloc button {
  background: transparent;
  border: 0;
  color: white;
  font-weight: bold;
  /* border-bottom: solid 3px white; */
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 20px;
  font-family: "Hind";
  font-size: 1rem;
  margin: 0 10px;
  transition: background 0.3s;
  outline: 0;
  border-radius: 5px;
  /* padding-bottom: 4px; */
  /* padding: 0 0 4px; */
  /* border-color: rgba(0,0,0,.3); */
}

.confirm_bloc button:hover {
  background: rgba(0, 0, 0, 0.6);
}

.session_wait {
  display: flex;
  width: 100vw;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 10%;
  color: white;
  background-color: #070707;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 1;
  font-weight: bold;
  transition: background-color 0.5s;
}

.session_wait.session_valid {
  background-color: #3CB043;
}

.session_wait h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin: 5vh 0 0;
}

.session_wait .fa-check-circle {
  font-size: 3.75rem;
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.session_wait .cancel {
  font-size: 1rem;
  background: transparent;
  color: #e21617;
  text-decoration: none;
  border: 0;
  outline: 0;
  margin-top: 100px;
}

.session_wait .cancel i {
  font-size: 1rem;
  margin-right: 5px;
}

.session_wait .spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.session_wait .spinner > div {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.session_wait .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.session_wait .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
@-webkit-keyframes arrowdown {
  50% {
    transform: translateY(1rem) rotate(90deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes arrowdown {
  50% {
    transform: translateY(1rem) rotate(90deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.landscape-warning {
  display: none;
}
@media (max-width: 480px) and (orientation: portrait) {
  .landscape-warning {
    position: fixed;
    inset: 0;
    z-index: 99;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    font-size: 1.2rem;
    text-align: center;
  }
}

.modal_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(12, 12, 13, 0.5);
  z-index: 999;
  transition: 0.5s ease-in-out;
}
.modal_container.hidden {
  opacity: 0;
  pointer-events: none;
}
.modal_container.hidden .modal {
  transform: scale(0.5);
}
.modal_container .modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  max-width: 90%;
  background-color: #0C0C0D;
  border: 1px solid #545455;
  border-radius: 0.5rem;
  transition: 0.3s ease-in-out;
}
@media (min-width: 480px) {
  .modal_container .modal {
    padding: 8rem 12rem;
  }
}
.modal_container .modal h2 {
  font-family: League Spartan;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.modal_container .modal .form {
  display: flex;
  width: 100%;
  max-width: 32rem;
  background-color: #31A8FF;
  border: 1px solid #545455;
  border-radius: 0.5rem;
  overflow: hidden;
}
.modal_container .modal .form .field {
  width: 100%;
  background-color: #0C0C0D;
  border: none;
  outline: none;
  font-family: Hind;
  color: white;
  padding-left: 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
}
.modal_container .modal .form .button {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal_container .modal .form .button img {
  width: 1rem;
  filter: invert(0.9);
}

nav {
  position: absolute;
  top: 2rem;
  right: 4rem;
  display: flex;
  z-index: 99;
}
nav .homeLink {
  display: flex;
  gap: 1rem;
}
nav .homeLink img {
  width: 1rem;
  transform: translateY(-0.1rem);
  margin: 0 0.5rem;
}

.start {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
@media (min-width: 480px) {
  .start {
    padding: 4rem;
  }
}
.start.hidden {
  opacity: 0;
  pointer-events: none;
}
.start img {
  width: 12rem;
}
.start .text {
  text-align: center;
  max-width: 40rem;
  margin: auto 0;
}
.start .image_container {
  width: 100%;
  max-width: 80rem;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.start .image_container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
.start .image_container .gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(12, 12, 13, 0.2), #0C0C0D);
}
.start .image_container .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.start .image_container .content h1 {
  font-family: League Spartan;
  text-align: center;
  margin: auto auto 1rem auto;
}
.start .image_container .content button {
  margin: 0 auto auto auto;
  font-weight: bold;
  line-height: 120%;
  padding: 1em;
  color: #0C0C0D;
  background-color: #31A8FF;
  border-radius: 1rem;
  transition: 0.2s ease-in-out;
}
.start .image_container .content button.selected {
  background-color: white;
  transform: translateY(-0.2rem);
  pointer-events: none;
}

.wrapper {
  overflow: hidden;
  position: relative;
  transition: 0.3s ease-in-out;
}
.wrapper.hidden {
  opacity: 0;
  pointer-events: none;
}
.wrapper .next, .wrapper .previous {
  position: fixed;
  bottom: 8rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #31A8FF;
  display: flex;
  z-index: 1;
}
.wrapper .next img, .wrapper .previous img {
  width: 1.2rem;
  margin: auto;
  filter: invert(0.95);
}
.wrapper .next {
  right: 2rem;
}
.wrapper .previous {
  left: 2rem;
}
.wrapper .previous img {
  transform: rotate(180deg);
}
.wrapper .bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  background: linear-gradient(transparent, #0C0C0D 60%);
  pointer-events: none;
  z-index: 10;
}

.quiz_container {
  display: flex;
  position: relative;
  height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 0;
  transition: left 0.6s 0.2s cubic-bezier(0.6, 0, 0.4, 1);
}
.quiz_container .section {
  min-width: 100vw;
  max-width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 2rem 4rem 6rem 4rem;
}
.quiz_container .section h2 {
  font-size: 1.4rem;
  width: 100%;
  text-align: left;
}
.quiz_container .section .question {
  text-align: center;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.quiz_container .section .question p {
  max-width: 48rem;
}
.quiz_container .section .question img {
  border-radius: 0.5rem;
}
.quiz_container .section .question .big-text {
  font-size: 3rem;
}
.quiz_container .section .question .image_box {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}
.quiz_container .section .question .image_box img {
  max-width: 30vw;
  max-height: 50vh;
}
.quiz_container .section .question .image_box img.small {
  max-height: 40vh;
}
.quiz_container .section .question .image_box.align_images {
  flex-direction: row;
}
.quiz_container .section .question .image_box.align_images img {
  max-height: 30vh !important;
}
.quiz_container .section .question .image_box.align_images p {
  font-weight: bold;
  font-size: 1.6rem;
}
.quiz_container .section .question .multiple_images {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.quiz_container .section .question .multiple_images img {
  max-width: 25vw;
}
.quiz_container .section .question .two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}
.quiz_container .section .question .margin-top {
  margin-top: 2rem;
}
.quiz_container .section .question .margin-bottom {
  margin-bottom: 2rem;
}
.quiz_container .section .question img.small {
  max-width: 15vw !important;
  max-height: 20vw !important;
}
.quiz_container .section .question img.square {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.quiz_container .section .question img.very-small {
  max-width: 10vw !important;
  max-height: 15vw !important;
}
.quiz_container .section .question img.white-bg {
  background-color: white;
}
.quiz_container .section .image_container {
  width: 100%;
  max-width: 80rem;
  height: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.quiz_container .section .image_container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
.quiz_container .section .image_container .gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(12, 12, 13, 0.2), #0C0C0D);
}
.quiz_container .section .image_container .reponses {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}
.quiz_container .section .reponses {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0 1rem 0;
  justify-content: center;
  z-index: 1;
}
.quiz_container .section .reponses button {
  font-weight: bold;
  line-height: 120%;
  padding: 1em;
  color: #0C0C0D;
  background-color: #31A8FF;
  border-radius: 1rem;
  transition: 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}
.quiz_container .section .reponses button.selected {
  background-color: white;
  transform: translateY(-0.2rem);
  pointer-events: none;
}
.quiz_container .section .reponses button.right-rep {
  background-color: #00EF7C;
}
.quiz_container .section .reponses button.wrong-rep {
  background-color: #FF3142;
}
.quiz_container .section .reponses button select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0.3em 1em 0.1em 1em;
  border: 1px solid white;
  outline: none;
  border-radius: 0.4rem;
  background-color: transparent;
}
.quiz_container .section .reponses button .row {
  display: flex;
}
.quiz_container .section .reponses button img {
  max-width: 8rem;
  max-height: 8rem;
  border-radius: 0.5rem;
}
.quiz_container .section .validate-button {
  font-weight: bold;
  line-height: 120%;
  padding: 1em;
  color: #0C0C0D;
  background-color: #F5C61F;
  border-radius: 1rem;
  transition: 0.2s ease-in-out;
}
.quiz_container .section .validate-button.selected {
  background-color: white;
  transform: translateY(-0.2rem);
  pointer-events: none;
}
.quiz_container .section .right, .quiz_container .section .wrong {
  display: flex;
  gap: 0.3rem;
  margin-top: 1rem;
  font-weight: bold;
  display: none;
}
.quiz_container .section .right {
  color: #00EF7C;
}
.quiz_container .section .right svg {
  stroke: #00EF7C;
}
.quiz_container .section .wrong {
  color: #FF3142;
}
.quiz_container .section .wrong svg {
  fill: #FF3142;
}
.quiz_container .section .wrong_text {
  display: none;
}
.quiz_container .section.right_rep .right, .quiz_container .section.wrong_rep .wrong_text, .quiz_container .section.wrong_rep .wrong {
  display: flex;
}
.quiz_container .section .arrow-down {
  position: absolute;
  top: calc(100vh - 6rem);
  right: 2rem;
  width: 1.5rem;
  transform: rotate(90deg);
  -webkit-animation: arrowdown 1s ease-in-out infinite;
          animation: arrowdown 1s ease-in-out infinite;
  transition: 0.3s ease-in-out;
}
.quiz_container .section .arrow-down.hidden {
  opacity: 0;
}

.bottom {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  display: flex;
  justify-content: center;
  gap: 2rem;
  pointer-events: none;
  z-index: 999;
  transition: 0.3s 0.5s ease-in-out;
}
@media (min-width: 480px) {
  .bottom {
    width: calc(100% - 8rem);
  }
}
.bottom.hidden {
  opacity: 0;
}
.bottom .timer {
  width: 4rem;
  height: 4rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #18181a;
  position: relative;
}
.bottom .timer .timer_jauge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FF3142;
}
.bottom .timer .timer_text {
  font-family: League Spartan;
  font-size: 0.8rem;
  color: white;
  z-index: 1;
}
.bottom .jauge_container {
  width: 70vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bottom .jauge_container .jauge_nb {
  margin-bottom: 1rem;
}
.bottom .jauge_container .jauge {
  width: 100%;
  height: 0.5rem;
  border-radius: 1rem;
  background-color: #F5C61F;
  position: relative;
}
.bottom .jauge_container .jauge .jauge_content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 1rem;
  background-color: #31A8FF;
  transition: 0.3s ease-in-out;
}

.res_finals {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.res_finals.hidden {
  opacity: 0;
  pointer-events: none;
}
.res_finals img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 8rem);
  height: 60%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  border-radius: 0.5rem;
  z-index: -1;
}
.res_finals .gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 8rem);
  height: 60%;
  transform: translate(-50%, -50%);
  background: linear-gradient(rgba(12, 12, 13, 0.2), #0C0C0D);
  z-index: -1;
}
.res_finals .commentaire {
  margin: 0.5rem 0;
}
.res_finals a {
  margin-top: 1rem;
  font-weight: bold;
  line-height: 120%;
  padding: 1em;
  color: #0C0C0D;
  background-color: #31A8FF;
  border-radius: 1rem;
  transition: 0.2s ease-in-out;
}
.res_finals a.selected {
  background-color: white;
  transform: translateY(-0.2rem);
  pointer-events: none;
}/*# sourceMappingURL=evaluation.css.map */