
.question-title {



}

.question-submit-section {

  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap-reverse;
  margin-bottom: 50px;

}

.answers-container {

  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
  align-content: center;
  flex-wrap: wrap;
  padding-top: calc(var(--header-height) * 2);
  opacity: 0.2;
  transition: opacity 0.5s linear;

}

.answers-container > * {

  margin: 10px;

}

.answers-container h2 {

  width: 100%;
  text-align: center;
  color: var(--violet);

}

.answers-container .image-container {

  width: 100%;
  border-radius: 5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

}

.image-container img {

  width: 100%;

}

.answer {

  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transform: translate(0);

}

.answer > * {

  position: absolute;
  width: 100%;
  box-sizing: border-box;
  margin: 5px;
  padding: 10px;
  min-height: inherit;
  height: 100%;

}

.answer.custom {

  border-radius: 5px;
  width: calc(50% - 10px);
  box-sizing: border-box;
  margin: 5px;
  padding: 10px;
  min-height: 100px;

}

.answer-radio-input {

  opacity: 0;
  z-index: 1;
  cursor: pointer;

}

.answer-radio-label {

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: solid 3px var(--violet);
  color: var(--violet);
  background-color: transparent;
  transition: all 0.2s linear;
  text-align: center;

}

.answer:hover .answer-radio-label, .answer-radio-input:checked + .answer-radio-label {

  color: white!important;
  background-color: var(--violet);

}

.answer.number {

  width: 50px;
  height: 50px;
  margin-top: 20px;
  margin: 5px;

}

.answer.number .answer-radio-label {

  border: solid 2px var(--violet);
  color: var(--violet);
  border-radius: 100%;
  font-size: 20px;

}

.answer.yes-no {

  width: calc(50% - 20px);
  margin: 10px;
  min-height: 50px;

}

.answer.yes-no .answer-radio-label {

  --tmp-color: var(--violet);
  width: 70%;
  min-width: 150px;
  border-radius: 50px;
  border-color: var(--tmp-color);
  color: var(--tmp-color);

}

.answer.yes-no .answer-radio-input[value="yes"] + .answer-radio-label {
  --tmp-color: var(--green);
}

.answer.yes-no .answer-radio-input[value="no"] + .answer-radio-label {
  --tmp-color: var(--red);
}

.answer.yes-no:hover .answer-radio-label, .answer.yes-no .answer-radio-input:checked + .answer-radio-label {
  background-color: var(--tmp-color);
  color: white;
}

.answer.yes-no-probably {

  width: 40px;
  height: 40px;
  margin: 15px;
  margin-bottom: 50px;

}

@media(max-width: 400px) {

  .answer.yes-no-probably {
    margin: 5px;
    margin-bottom: 50px;
  }

}

.answer.yes-no-probably .answer-radio-label {

  --tmp-color: grey;
  --tmp-size: 30px;
  background-color: transparent;
  border: solid 2px var(--tmp-color);
  transition: background-color 0.2s linear;
  border-radius: 100%;
  color: black;
  width: var(--tmp-size);
  height: var(--tmp-size);

}

.answer-radio-input[value="extreme-yes"] + .answer-radio-label, .answer-radio-input[value="probably-yes"] + .answer-radio-label {
  --tmp-color: var(--green);
  --tmp-label: "Totalement";
}
.answer-radio-input[value="extreme-no"] + .answer-radio-label, .answer-radio-input[value="probably-no"] + .answer-radio-label {
  --tmp-color: var(--red);
  --tmp-label: "Pas du tout";
}
.answer-radio-input[value="extreme-yes"] + .answer-radio-label, .answer-radio-input[value="extreme-no"] + .answer-radio-label {
  --tmp-size: 40px;
}
.answer-radio-input[value="probably-yes"] + .answer-radio-label, .answer-radio-input[value="probably-no"] + .answer-radio-label {
  --tmp-size: 35px;
}

.answer.yes-no-probably:hover .answer-radio-label, .answer.yes-no-probably .answer-radio-input:checked + .answer-radio-label {
  background-color: var(--tmp-color);
}

.answer-radio-input[value="extreme-yes"] + .answer-radio-label::before {

  content: var(--tmp-label);
  position: absolute;
  width: 100px;
  text-align: left;
  color: black!important;
  top: 50px;
  left: 0;

}

.answer-radio-input[value="extreme-no"] + .answer-radio-label::after {

  content: var(--tmp-label);
  position: absolute;
  width: 100px;
  text-align: right;
  color: black!important;
  top: 50px;
  right: 0;

}

.answer.yes-no-probably.other {

  min-width: 90%;
  min-height: 50px;

}

.answer.yes-no-probably.other .answer-radio-label {

  --tmp-color: var(--violet);
  height: 100%;
  border-radius: 5px;
  border-color: var(--violet);
  color: var(--violet);
  width: 100%;
  border-width: 2px;

}

.other {

  flex: 1;

}

.next-question-button {

  margin: 100px;

}
