@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
/* placeholder: proportions vidéo youtube responsive */
/* placeholder : width de 100vw */
/* changer delay selon position dans la liste*/
/* changer width selon position dans la liste */
/* center vertically */
#questionnaire {
  background-color: #870300;
  color: white;
  padding: 100px 0 60px;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
  overflow: hidden;
}
#questionnaire.questionnaire-visible {
  background-color: white;
  color: black;
}
#questionnaire.questionnaire-visible .wrapper .wrapper-title-body {
  opacity: 0;
  height: 0;
  overflow: hidden;
}
#questionnaire.questionnaire-visible .wrapper .action {
  display: none;
}
#questionnaire.questionnaire-visible .wrapper .wrapper-questionnaire {
  height: auto;
}
#questionnaire .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: calc(100% - 40px);
}
#questionnaire .wrapper .wrapper-title-body {
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#questionnaire .wrapper .wrapper-title-body h1 {
  width: 100%;
  font-size: 2em;
  font-weight: 700;
  line-height: 115%;
  margin: 0 0 30px 0;
}
#questionnaire .wrapper .wrapper-title-body .body {
  width: 100%;
  font-size: 1em;
  line-height: 150%;
  font-weight: 500;
}
#questionnaire .wrapper .wrapper-title-body .body p {
  margin: 0 0 20px;
}
#questionnaire .wrapper .wrapper-title-body .body p:last-child {
  margin-bottom: 0;
}
#questionnaire .wrapper .action {
  margin: 0 auto;
  margin-top: 50px;
  width: 100%;
  max-width: 600px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
}
#questionnaire .wrapper .action a.btn.gris {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-color: #ffc2b0;
  font-size: 1em;
}
#questionnaire .wrapper .wrapper-questionnaire {
  height: 0;
  overflow: hidden;
}
#questionnaire .wrapper .wrapper-questionnaire .header-questionaire {
  width: 100%;
  font-size: 2em;
  font-weight: 700;
  line-height: 115%;
  margin-bottom: 50px;
}
#questionnaire .wrapper .wrapper-questionnaire .header-questionaire .sous-titre {
  color: #870300;
  font-weight: 500;
  font-size: 1.5rem;
}
#questionnaire .wrapper .wrapper-questionnaire .qr {
  opacity: 0;
  -webkit-transition: all 0.5s 0.75s ease-out;
  -moz-transition: all 0.5s 0.75s ease-out;
  -ms-transition: all 0.5s 0.75s ease-out;
  -o-transition: all 0.5s 0.75s ease-out;
  transition: all 0.5s 0.75s ease-out;
  position: absolute;
  z-index: -1;
  margin-left: 0px;
  width: 100%;
}
#questionnaire .wrapper .wrapper-questionnaire .qr.show {
  opacity: 1;
  margin-left: 0px;
  z-index: 100;
  position: static;
}
#questionnaire .wrapper .wrapper-questionnaire .qr.deja-vu {
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  opacity: 0;
  position: absolute;
  z-index: -1;
  margin-left: 0px;
}
#questionnaire .wrapper .wrapper-questionnaire .qr .progression {
  color: #870300;
  font-weight: 600;
  font-size: 1em;
}
#questionnaire .wrapper .wrapper-questionnaire .qr .question {
  font-size: 1em;
  font-weight: 500;
  line-height: 150%;
  margin: 30px 0;
}
#questionnaire .wrapper .wrapper-questionnaire .qr .reponse {
  font-weight: 600;
  font-size: 1em;
  line-height: 150%;
  opacity: 0;
  position: absolute;
  z-index: -1;
  color: black;
  -webkit-transition: all 0.5s 0.65s ease-out;
  -moz-transition: all 0.5s 0.65s ease-out;
  -ms-transition: all 0.5s 0.65s ease-out;
  -o-transition: all 0.5s 0.65s ease-out;
  transition: all 0.5s 0.65s ease-out;
}
#questionnaire .wrapper .wrapper-questionnaire .qr .reponse strong {
  font-weight: 800;
}
#questionnaire .wrapper .wrapper-questionnaire .qr .reponse.show {
  position: static;
  opacity: 1;
}
#questionnaire .wrapper .wrapper-questionnaire .qr .choix {
  color: #870300;
}
#questionnaire .wrapper .wrapper-questionnaire .qr .choix .vrai,
#questionnaire .wrapper .wrapper-questionnaire .qr .choix .faux {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  height: 40px;
  line-height: 40px;
  margin-bottom: 15px;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
#questionnaire .wrapper .wrapper-questionnaire .qr .choix .vrai::before,
#questionnaire .wrapper .wrapper-questionnaire .qr .choix .faux::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  border: solid 1px #870300;
  border-radius: 100%;
  margin-right: 15px;
}
#questionnaire .wrapper .wrapper-questionnaire .qr .choix .vrai.selected::before,
#questionnaire .wrapper .wrapper-questionnaire .qr .choix .faux.selected::before {
  background-color: #870300;
}
#questionnaire .wrapper .wrapper-questionnaire .qr .choix .vrai.off,
#questionnaire .wrapper .wrapper-questionnaire .qr .choix .faux.off {
  cursor: default;
}
#questionnaire .wrapper .wrapper-questionnaire .qr .status {
  margin-top: 50px;
}
#questionnaire .wrapper .wrapper-questionnaire .qr .status span {
  padding-left: 55px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 40px;
  display: inline-block;
  height: 40px;
  font-weight: 700;
  font-size: 1em;
  line-height: 40px;
  opacity: 0;
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.5s 0.15s ease-out;
  -moz-transition: all 0.5s 0.15s ease-out;
  -ms-transition: all 0.5s 0.15s ease-out;
  -o-transition: all 0.5s 0.15s ease-out;
  transition: all 0.5s 0.15s ease-out;
}
#questionnaire .wrapper .wrapper-questionnaire .qr .status span.show {
  position: static;
  opacity: 1;
}
#questionnaire .wrapper .wrapper-questionnaire .qr .status span.incorrect {
  background-image: url(../images/icone-incorrect.svg);
  color: #870300;
}
#questionnaire .wrapper .wrapper-questionnaire .qr .status span.correct {
  background-image: url(../images/icone-correct.svg);
  color: #248A47;
}
#questionnaire .wrapper .wrapper-questionnaire .qr a.btn.rouge {
  margin-top: 40px;
  width: 330px;
  font-size: 1em;
  opacity: 0;
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.5s 1s ease-out;
  -moz-transition: all 0.5s 1s ease-out;
  -ms-transition: all 0.5s 1s ease-out;
  -o-transition: all 0.5s 1s ease-out;
  transition: all 0.5s 1s ease-out;
}
#questionnaire .wrapper .wrapper-questionnaire .qr a.btn.rouge.show {
  position: static;
  opacity: 1;
}
#questionnaire .wrapper .wrapper-questionnaire .qr a.btn.rouge.download {
  width: auto;
  padding: 0 40px;
  margin-right: 40px;
}

@media only screen and (min-width: 768px) {
  #questionnaire .wrapper .wrapper-title-body h1 {
    font-size: 2.5em;
  }
  #questionnaire .wrapper .wrapper-questionnaire .header-questionaire {
    font-size: 2.5em;
  }
  #questionnaire .wrapper .wrapper-questionnaire .header-questionaire .sous-titre {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 1024px) {
  #questionnaire .wrapper .wrapper-title-body h1 {
    width: 450px;
    font-size: 3em;
    margin: 0;
  }
  #questionnaire .wrapper .wrapper-title-body .body {
    width: 400px;
  }
  #questionnaire .wrapper .action a.btn.gris {
    width: 800px;
  }
  #questionnaire .wrapper .wrapper-questionnaire .header-questionaire {
    width: 450px;
    font-size: 3em;
  }
  #questionnaire .wrapper .wrapper-questionnaire .header-questionaire .sous-titre {
    font-size: 1.9rem;
  }
  #questionnaire .wrapper .wrapper-questionnaire .qr {
    margin-left: -100px;
    width: 850px;
  }
  #questionnaire .wrapper .wrapper-questionnaire .qr.show {
    margin-left: 150px;
  }
  #questionnaire .wrapper .wrapper-questionnaire .qr.deja-vu {
    margin-left: 150px;
  }
  #questionnaire .wrapper .wrapper-questionnaire .qr a.btn.rouge {
    width: 400px;
  }
}
@media only screen and (min-width: 1280px) {
  #questionnaire {
    padding: 100px 0;
  }
  #questionnaire .wrapper .wrapper-title-body h1 {
    width: 600px;
  }
  #questionnaire .wrapper .wrapper-title-body .body {
    width: 550px;
  }
  #questionnaire .wrapper .wrapper-title-body .body p {
    margin: 0 0 40px;
  }
  #questionnaire .wrapper .action {
    margin-top: 90px;
  }
  #questionnaire .wrapper .action a.btn.gris {
    width: 800px;
    height: 60px;
    line-height: 60px;
    font-size: 1.1em;
  }
  #questionnaire .wrapper .wrapper-questionnaire .header-questionaire {
    width: 600px;
    margin-bottom: 100px;
  }
  #questionnaire .wrapper .wrapper-questionnaire .qr {
    margin-left: -100px;
    width: 850px;
  }
  #questionnaire .wrapper .wrapper-questionnaire .qr.show {
    margin-left: 350px;
  }
  #questionnaire .wrapper .wrapper-questionnaire .qr.deja-vu {
    margin-left: 350px;
  }
  #questionnaire .wrapper .wrapper-questionnaire .qr .progression {
    font-size: 1.1em;
  }
  #questionnaire .wrapper .wrapper-questionnaire .qr .question {
    margin: 40px 0;
  }
  #questionnaire .wrapper .wrapper-questionnaire .qr .reponse {
    font-size: 1.1em;
  }
  #questionnaire .wrapper .wrapper-questionnaire .qr .status span {
    font-size: 1.1em;
  }
  #questionnaire .wrapper .wrapper-questionnaire .qr a.btn.rouge {
    margin-top: 80px;
    font-size: 1.1em;
  }
}/*# sourceMappingURL=questionnaire-harcelement.css.map */