.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--dark {
  background: #121212;
  color: #fff;
}
.Toastify__toast--default {
  background: #fff;
  color: #aaa;
}
.Toastify__toast--info {
  background: #3498db;
}
.Toastify__toast--success {
  background: #07bc0c;
}
.Toastify__toast--warning {
  background: #f1c40f;
}
.Toastify__toast--error {
  background: #e74c3c;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
  }
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--default {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}
.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
}
.Toastify__progress-bar--dark {
  background: #bb86fc;
}
@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

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

/* keyframes */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* hover */
._hover{
  cursor: pointer;
}
._hover:hover{
  opacity: 0.8;
}

.axis{
  width: 132px;
  border-radius: 8px;
  margin: 12px;
  background-color: white;
}
.axis-image img{
  height: 100px;
  width: 100px;
  border-radius: 8px;
  margin: 10px auto;
}
.axis-image-account{
  width: 80px !important;
  height: 80px !important;
  margin: 20px auto !important;
}
.axis-text{
  color: white;
  height: 60px;
  text-align: center;
  padding: 12px;
}
.axis-text span{
  margin: auto;
}
.axis-icon{
  width: 100%;
  height: 120px;
}
.axis-icon svg{
  margin: auto;
  font-size: 48px;
}

.button{
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 12px 20px;
  margin: 12px 0px;
}
.card{
  background-color: white;
  padding: 20px 30px;
  margin: 40px;
  border-radius: 8px;
}
.card-sm{
  width: 100%;
}

.card-button{
  border: 1px solid;
  border-radius: 8px;
  margin: 8px;
  padding: 8px;
  width: 120px;
  height: 120px;
  font-weight: bold;
  font-size: 14px;
}
.card-button svg{
  margin-bottom: 6px;
}

/* checkbox */
.checkbox-container{
  height: 36px;
  margin: auto;
}
.checkbox-inactive{
  opacity: 0.5;
}
.checkbox-inactive .checkbox{
  cursor: initial;
}
.checkbox{
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  margin: auto;
  border-radius: 8px;
  border: 2px solid;
  border-color: #8C8C8C;
  background-color: white;
}
.checkbox-action .button{
  margin: -2px;
  margin-bottom: -4px;
}
.checkbox svg{
  color: white;
  margin: auto;
}
.checkbox-active{
  border-color: #111C2B;
  background-color: #111C2B;
}
.checkbox-label{
  margin: auto 12px
}

.optional-modal{
  margin: auto;
  background-color: white;
  min-width: 400px;
  max-width: 400px;
  border-radius: 8px;
  color: initial;
  padding: 10px 30px;
}
.optional-modal select{
  width: 200px;
  height: 38px;
  margin: auto;
}
.optional-modal-title{
  text-align: center;
  padding: 20px;
}
.optional-modal-container{
  margin: 0px -30px;
}
.optional-modal-line{
  border-top: 1px solid #d2d2d2;
  padding: 0px 30px;
}
.optional-modal-line p{
  margin: 14px 0px;
}

@media screen and (max-height: 588px) {
  .question{
    height : calc(100vh - 88px) !important
  }
  .questions-container{
    height : calc(100vh - 88px) !important
  }
}

.question{
  background-color: white;
  border-radius: 8px;
  height: 500px;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.question-draft{
  position: absolute;
  background-color: #eb5a46; 
  color: white;
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  padding: 10px;
  margin-top: -62px;
}
.question-draft-safari{
  position: initial !important;
  margin-top: 0px;
}
.question-image{
  color : #d7d7d7;
}
.question-fullscreen .question-image svg{
  display: none;
}
.question-image svg{
  font-size: 32px;
  margin: 12px;
}
.question-count{
  color: #a7a7a7;
  margin: 0px 30px;
  margin-top: 20px;
}
.question-fullscreen{
  position: fixed;
  width: calc(100vw - 60px);
  height: calc(100vh - 60px);
  top: 30px;
  left: 30px;
  z-index: 3;
}
.question-header img{
  width: 60px;
  height: 60px;
  margin: 8px;
}
.question-header-chevron svg{
  margin: auto;
}
.question-header-border{
  border-bottom: 2px solid #d7d7d7;
  width: 20px;
  height: 50%;
  min-height: 22px;
}
.question-header-fullscreen img{
  width: 140px;
  height: 140px;
  margin: 20px;
}
.question-header-fullscreen .question-header-border{
  border-bottom : none;
}
.question-secondary{
  color: #a7a7a7;
  margin: 12px;
}
.question-topic{
  padding: 0px 10px;
  color: #a7a7a7;
}
.question-topic-fullscreen{
  padding: 0px 30px;
  margin-top: 6px;
}
.question-name{
  text-align: center;
  padding: 0px 8px;
  font-weight: 600;
}
.question-name a{
  color: #7e7e7e;
}
.question-name span{
  margin: auto;
  overflow-wrap: anywhere;
  font-weight: normal;
}
.question-name-big{
  font-size: 1.5em;
  padding: 0px 20px;
}
.question-name-choice{
  font-size: 12px;
  margin-top: -12px;
  margin-bottom : 6px
}
.question-name-choice span{
  font-style: italic;
}
.question-name-fullscreen{
  text-align: left;
  font-size: 22px;
  padding: 0px 30px;
}
@media screen and (max-width: 600px) {
  .question-name-big{
    font-size: 6vw;
  }
}
.question-propositions{
  overflow-y: auto;
  width: 100%;
}
.question-proposition{
  margin: 8px 12px;
  font-size: 12px;
}
.question-propositions-sm .question-proposition{
  margin: 2px 12px;
  font-size: 12px;
}
.question-proposition span{
  margin: auto 0px;
}
.question-proposition-circle{
  width: 26px;
  height: 26px;
  border: 2px solid;
  border-radius: 50%;
}
.question-propositions-sm .question-proposition-circle{
  width: 22px;
  height: 22px;
}
.question-proposition-circle-center{
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  border-radius: 50%;
  margin: 2px;
  background-color: #5c5c5c;
}
.question-proposition-order{
  color: white;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.question-proposition-circle-choice{
  margin: auto;
  margin-right: 12px;
}
.question-boolean-container{
  margin: 0px 30px 12px 30px;
}
.question-boolean{
  border: 2px solid;
  margin: auto;
  border-radius: 50%;
}
.question-boolean-center{
  text-align: center;
  color : white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 4px;
}
.question-boolean-center span{
  margin: auto;
}
.question-likert-label-container{
  height: 54px;
}
.question-likert{
  position: relative;
  min-width: 36px;
}
.question-likert-gradient{
  height: 10px;
}
.question-likert-circle{
  position: absolute;
  width: 28px;
  height: 28px;
  right: -14px;
  top: -9px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
}
.question-likert-circle:hover, .question-likert-circle-done{
  width: 36px;
  height: 36px;
  right: -18px;
  top: -14px;
}
.question-likert-label{
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
}
.question-button{
  margin: 10px 30px;
}
.question-nspp{
  font-size: 12px;
  font-weight: 400; 
  text-align: center;
  margin: 16px 0;
}
.question-nspp-text{
  margin: auto 10px
}
@media screen and (max-width: 600px) {
  .question{
    height: 100%
  }
  .question-likert-label, .question-proposition{
    font-size: 3.5vw;
  }
}
.question-done{
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: white;
  border-radius: 8px;
  opacity: 0.7;
}
.question-done:hover{
  opacity: 0.6;
}
.question-open{
  margin: 20px;
}
.question-open textarea{
  margin: 12px;
  resize: none;
  height: 100px;
  font-size: 14px;
  border: none;
  padding: 4px 8px;
  background-color: #eaeaea;
  border-radius: 8px;
  width: calc(100% - 40px);
}
.question-open-help{
  margin: 0px 20px;
  margin-bottom: -20px;
  margin-top: -20px;
}
.question-open-help p{
  font-size: 12px;
}
.question-nps{
  border-radius: 50%;
  height: 26px;
  width: 26px;
  color: white;
}
.question-nps-active{
  height: 40px;
  width: 40px;
  margin: -8px;
}
.question-nps-container{
  height: 70px;
}
.question-nps span{
  margin: auto;
}
.question-nps-label{
  color: #6a6a6a;
  font-size: 12px;
  margin: -8px 20px 14px 20px;
}
.question-nps-separator{
  border-bottom: 1px solid;
  margin-bottom: 8px;
  margin-left: 12px;
}
.question-nps-chevron{
  margin: 3px 8px 0px -5px;
  font-size: 11px;
}

.page{
  background-color: #ebeff2;
  width: 100vw;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  overflow-y: auto;
  -webkit-overflow-scrolling: "touch";
}
.page-footer{
  text-align: center;
  padding: 40px 80px;
}
.save-modal{
  margin: auto;
  background-color: white;
  min-width: 380px;
  min-height: 160px;
  border-radius: 8px;
  text-align: center;
  color: #5c5c5c;
}
.save-modal svg{
  font-size: 42px;
  margin-top: 20px;
}
.save-modal-container{
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #00000059;
  top: 0px;
  left: 0px;
  z-index: 99;
}

.scale-bar{
  width: 90%;
  height: 4px;
  background-color: #e9e9e9;
  position: absolute;
  top: 8px;
  margin: 10px
}

.scale-circle{
  width: 30px;
  height: 30px;
  background-color:#c9c9c9;
  border-radius: 20px;
  font-size: 20px;
  z-index: 1
}

.scale-circle-2{
  width: 50px;
  height: 50px;
  border-radius: 50px
}

.scale-circle-5{
  margin: 5px;
}

.scale-circle-10{
  margin: -5px;
}

.selected{
  box-shadow: inset 3px -3px 0px 0px rgba(17,28,43,1), inset -3px 3px 0px 0px rgba(17,28,43,1);
}

.selector{
  border: 1px solid;
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  margin: 22px 2px;
  position: relative;
}
.selector-values{
  position: absolute;
  background-color: white;
  border-radius: 8px;
  padding: 20px 0px;
  border: 1px solid;
  width: 100%;
  top: 42px;
  left: 0px;
  z-index: 1;
}
.selector-values-scrollable{
  max-height: 242px;
  padding: 0px 20px;
  overflow-y: auto;
}
.selector-value{
  padding: 4px;
}
.topic-title{
  margin: 0 5px;
  padding:0 5px;
  font-size: 12px
}

.textarea-message{
  border: 2px solid #c9c9c9;
  border-radius: 8px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px;
  height: 100px;
}

/* text input */
.text-input{
  padding: 10px 0;
  cursor: pointer;
  margin-top: 10px;
  border: none;
}
.text-input-error input{
  border-color: #eb5a46 !important;
}
.text-input input, .text-input{
  min-width: 130px;
  min-height: 22px;
  border-radius: 8px;
  stroke-width: 1;
  font-size: 14px;
  margin: 4px 0px;
}
.text-input input{
  width: 340px;
  padding: 10px 14px;
  border: 1px solid #b8b8b8;
}
.text-input input:focus{
  outline: none;
}
.text-input-check{
  margin: auto;
  font-size : 18px;
  margin-left: 8px;
  color: #eb5a46
}
.text-input-title{
  margin-bottom: 6px;
  margin-top: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.text-input input:disabled {
  background-color: white;
  border: none;
  color : #8c8c8c;
}

.warning-modal-container{
  position: absolute;
  background-color: #5c5c5c5e;
  border-radius: 8px;
  height: 100%;
  width: 100%;
}
.warning-modal{
  margin: auto 20px;
  background-color: white;
  border-radius: 8px;
  padding: 10px 16px 0px 16px;
  text-align: center;
  width: 100%;
}
html, .Toastify__toast-body, select, input, button, textarea{ 
  font-family: 'Open Sans', sans-serif;
  overflow: hidden;
}
body{
  color: #111C2B;
}

@media screen and (max-width: 600px) {
  h1{
    font-size: 7vw;
  }
  h2{
    font-size: 6vw;
  }
  h3{
    font-size: 5vw;
  }
  p, body{
    font-size: 4vw;
  }
}

/* textes en rouge */
.warning{
  color : #eb5a46;
}
.flex{ 
  display: flex; 
  display: -webkit-box; 
  display: -webkit-flex;
}
.flex1{ flex: 1; }
.flex2{ flex: 2; }
.flex3{ flex: 3; }
.flex4{ flex: 4; }
.flex-wrap{ flex-wrap: wrap; }
.flex-dcol{ 
  flex-direction: column;
  -webkit-flex-direction: column;
}
.flex-jcenter{ justify-content: center; }
.flex-jsa{ justify-content: space-around; }
.flex-jsb{ justify-content: space-between; }
.flex-ace{ align-items: center; }
/* end check */
.end-check svg{
  margin: auto;
  font-size: 120px;
  margin-bottom: 22px;
}

/* faq */
.faq-header{
  margin-bottom: 42px;
}
.faq-container{
  width: 100%;    
  height: calc(100vh - 80px);
  margin: 40px;
}
.faq-section-header{
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 22px;
}
.faq-section-open{
  margin-bottom: 62px;
}
.faq-section-open img{
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  margin: 20px 0px;
}
.faq-section-header:hover{
  background-color: #dedede;
}
.faq-section-header svg{
  margin: auto 12px;
  font-size: 22px;
}

/* intro */
.intro-language{
  margin-right: 8px;
  font-size: 1.5em;
}
.intro-text{
  width: 300px;
  margin: 40px;
}
.intro-text-alternative{
  width: 600px;
}
.intro-image{
  margin: 20px;
}
.intro-image img{
  border-radius: 8px;
  max-width: 260px;
  height: auto;
}
.intro-image-alternative img{
  max-width: 100px;
}

/* login */
.login-message{
  text-align: center;
}
.login-message svg{
  font-size: 32px;
  margin-top: 12px;
}

/* page message */
.message{
  margin: 40px;
}
.message textarea{
  width: 100%;
  border: none;
  resize: none;
  height: 132px;
  border-radius: 8px;
  font-size: initial;
}

/* page next */
.next-axis-text{
  width: 360px;
  margin: 30px;
}
.next-axis-header{
  text-align: center;
  width: 320px;
}
.next-axis-image img{
  height: 200px;
  width: 200px;
  margin: 20px auto;
}

/* questions */
.questions-infos{
  color: white;
  padding: 20px 40px 12px 40px;
}
.questions-infos svg{
  margin: 4px 12px 0px 0px;
}
.questions-back{
position: relative;
}
.questions-back svg{
  color: white;
  font-size: 32px;
}
.questions-back-button{
  margin: auto 30px;
}
.questions-back-button:hover .question-back-tooltip{
  opacity: 0.75;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.question-back-tooltip{
  position: absolute;
  font-size: 12px;
  width: 140px;
  text-align: center;
  padding: 6px 8px;
  border-radius: 8px;
  background-color: black;
  color: white;
  top: calc(50% + 30px);
  left: 20px;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.questions-container{
  position: relative;
  min-width: 300px;
  margin: 12px;
  height: 500px;
  background-color: #ffffff4f;
  border-radius: 8px;
}
.questions-secondary-background{
  background-color: #0000007d;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: 1;
}

/* affichage conditionnel mobile */
@media screen and (max-width: 600px) {
  .intro-image{
    display: none;
  }
  .gender-image{
    display: none;
  }
  .question{
    height: calc(100vh - 160px)
  }
  .questions-container{
    width: 100%;
    height: calc(100vh - 160px)
  }
  .next-axis-header{
    width: initial;
  }
  .next-axis-image img{
    width: 75%;
    height: 75%;
  }
}

/*# sourceMappingURL=main.f01fd1737eae50b5d046.css.map*/