@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #1a1a1a;
}

body {
  font-family: "Poppins", sans-serif;
}

.center {
  text-align: center !important;
  justify-content: center !important;
}

body {
  color: #1a1a1a;
}

.header {
  background-color: #10dfa2;
}

.button {
  background-color: #10dfa2;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
}

.button.back {
  background-color: #fff !important;
  color: #10dfa2 !important;
}

._valid {
  background-repeat: no-repeat !important;
  background-position: center right 10px !important;
  background-size: 20px !important;
  background-color: white !important;
  border: 2px solid #30b430 !important;
}

._error {
  background-repeat: no-repeat !important;
  background-position: center right 10px !important;
  background-size: 20px !important;
  background-color: white !important;
  border: 2px solid rgb(231, 34, 34) !important;
}

.tooltip-trigger {
  position: relative;
  display: inline-block;
  margin-left: 5px;
  cursor: help;
  color: #666;
  font-size: 14px;
  background: #f0f0f0;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
}

.tooltip-text {
  visibility: hidden;
  width: 250px;
  background-color: #333;
  color: #fff !important;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 3;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  line-height: 1.4;
}

.tooltip-trigger:hover .tooltip-text {
  visibility: visible;
}

/* Petite flèche sous le tooltip */
.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.header {
  width: 100%;
  height: 80px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header-container {
  width: 100%;
  max-width: 100px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.header_logo {
  width: auto;
  height: 40px;
}

.body {
  width: 100%;
  padding: 2rem;
  min-height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.body_text {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.body_h1 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000;
}
@media (max-width: 768px) {
  .body_h1 {
    font-size: 1.5rem;
  }
}
.body_p {
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .body_p {
    font-size: 1rem;
  }
}

.div-bar {
  max-width: 700px;
  height: 26px;
  width: 100%;
  background-color: #f7f7f7;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 2rem 0;
}
.div-bar_container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.div-bar_bar {
  width: 13%;
  height: 100%;
  background-color: #10dfa2;
  transition: width 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 500;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .div-bar_bar {
    font-size: 0.75rem;
  }
}

#FormInner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  #FormInner {
    padding: 1.5rem;
  }
}
#FormInner .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#FormInner .form_title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  text-align: center;
}
#FormInner .form_p {
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-top: 1rem;
  text-align: center;
  background-color: rgba(16, 223, 162, 0.1);
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
}
@media (max-width: 768px) {
  #FormInner .form_p {
    font-size: 0.75rem;
  }
}
#FormInner .form_p ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0.25rem auto 0;
}
#FormInner .form_choices {
  width: 100%;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  #FormInner .form_choices {
    grid-template-columns: repeat(1, 1fr);
  }
}
#FormInner .form_choices .placeholder_33 {
  grid-column: span 4;
}
#FormInner .form_choices .placeholder_25 {
  grid-column: span 3;
}
#FormInner .form_choices .placeholder_15 {
  grid-column: span 2;
}
#FormInner .form_choices .placeholder_10 {
  grid-column: span 1;
}
#FormInner .form_choices .form_choice {
  width: 100%;
  height: 100%;
  box-shadow: 0 0 50px -5px hsla(162, 87%, 47%, 0.11);
  border-radius: 10px;
  position: relative;
}
#FormInner .form_choices .form_choice img {
  z-index: 2;
  pointer-events: none;
  max-width: min(100px, 50%);
  max-height: min(100px, 50%);
  width: 100%;
  height: 100%;
  margin-bottom: 0.5rem;
}
#FormInner .form_choices .form_choice img.form_choice_img_no {
  max-width: min(75px, 50%);
  margin-left: 12.5px;
  margin-right: 12.5px;
}
#FormInner .form_choices .form_choice h3 {
  z-index: 2;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  pointer-events: none;
  transition: color 0.2s ease;
}
@media (max-width: 768px) {
  #FormInner .form_choices .form_choice h3 {
    font-size: 0.85rem;
  }
}
#FormInner .form_choices .form_choice h3.bigTitle {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  #FormInner .form_choices .form_choice h3.bigTitle {
    font-size: 1rem;
  }
}
#FormInner .form_choices .form_choice .form_choice_radio {
  position: absolute;
  cursor: pointer;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  transition: background-color 0.2s ease-in-out;
  border-radius: 10px;
}
#FormInner .form_choices .form_choice .form_choice .form_choice_radio:checked,
#FormInner .form_choices .form_choice .form_choice .form_choice_radio:hover {
  border: 1px solid white;
}
#FormInner .form_choices .form_choice .form_choice_radio:checked,
#FormInner .form_choices .form_choice .form_choice_radio:hover {
  background-color: #10dfa2;
}
#FormInner .form_choices .form_choice .form_choice_radio:checked + img + h3, #FormInner .form_choices .form_choice .form_choice_radio:checked + h3,
#FormInner .form_choices .form_choice .form_choice_radio:hover + img + h3,
#FormInner .form_choices .form_choice .form_choice_radio:hover + h3 {
  color: #fff !important;
}
#FormInner .form_choices .form_choice_50 {
  grid-column: span 6;
  padding: 1rem;
  aspect-ratio: 20/9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#FormInner .form_choices .form_choice_50 img.form_choice_img_no {
  max-width: min(60px, 50%);
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  #FormInner .form_choices .form_choice_50 {
    font-size: 0.75rem;
    aspect-ratio: inherit !important;
  }
}
#FormInner .form_choices .form_choice_100 {
  grid-column: span 12;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
}
#FormInner .form_choices .form_choice_100:not(.form_choice_input) {
  aspect-ratio: 100/13;
}
#FormInner .form_choices .form_choice_100 img {
  max-width: min(100px, 60%);
  max-height: min(80px, 60%);
}
@media (max-width: 768px) {
  #FormInner .form_choices .form_choice_100 {
    flex-direction: column;
    font-size: 0.75rem;
    aspect-ratio: inherit !important;
  }
}
#FormInner .form_choices .form_choice_33 {
  grid-column: span 4;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  aspect-ratio: 16/5;
}
#FormInner .form_choices .form_choice_33 img {
  max-width: min(40px, 50%);
}
#FormInner .form_choices .form_choice_input {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  padding: 1rem;
  background-color: #fff;
  border: 2px solid rgb(220, 220, 220);
  outline: none;
  font-size: 1rem;
}
#FormInner .form_choices .form_choice_title {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  text-align: center;
}
#FormInner .form_choices .form_choice .tooltip-trigger {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
}
#FormInner .form_div-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}
#FormInner .form_div-button_button {
  background-image: linear-gradient(45deg, #10dfa2, #0ed097, #10dfa2);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-weight: 5000;
  background-size: 200% 200%;
  transition: background-position 0.3s ease;
  font-size: 1rem;
}
#FormInner .form_div-button_button.back {
  background-image: none !important;
  background-color: #fff !important;
  color: #10dfa2 !important;
  border: 1px solid white !important;
  transition: gap 0.2s ease;
  font-size: 0.9rem;
}
#FormInner .form_div-button_button:hover {
  background-position: 100% 100%;
}

.footer {
  width: 100%;
  margin: 0 auto;
  height: 80px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_content {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer img {
  width: 100%;
  width: auto;
  max-width: 240px;
  max-height: 70px;
}/*# sourceMappingURL=style.css.map */