@charset "UTF-8";
:root {
  /* Déclaration de variables pour les couleurs */
  --primary-color: #F50D1A;
  --secondary-color: #332B78;
  --tertiary-color: var(--secondary-color);
  --qcm-color: var(--secondary-color);
  --primary-small-color: #3F30A3;
  --white-color: #FFF;
  --Gris-bg: #F6F6F6;
  --Gris-border: #DBDBDB;
  --gris-label: #757575;
  --Green-light: #DCFEBE;
  --Green: #006102;
  --ORANGE-Orange---50: #FFFAEA;
  --ORANGE-Orange---100: #FFF2C5;
  --ORANGE-Orange---200: #FFE586;
  --ORANGE-Orange---300: #FFD246;
  --ORANGE-Orange---400: #FFBC1C;
  --orange-orange-500-adh: #F39201;
  --ORANGE-Orange---600: #E17100;
  --ORANGE-Orange---700: #BB4D02;
  --ORANGE-Orange---800: #973B09;
  --ORANGE-Orange---900: #7C310B;
  --ORANGE-Orange---950: #481700;
  --RED-Rouge---50: #FFF0F1;
  --RED-Rouge---100: #FFDEE0;
  --RED-Rouge---200: #FFC3C6;
  --RED-Rouge---300: #FF999F;
  --RED-Rouge---400: #FF5E67;
  --RED-Rouge---500: #FF2C38;
  --RED-Rouge---600: #F50D1A;
  --red-rouge-700-adh: #E30613;
  --RED-Rouge---800: #AA0A13;
  --RED-Rouge---900: #8D0F16;
  --RED-Rouge---950: #4D0206;
  --BLUE-Blue---50: #EEF1FF;
  --BLUE-Blue---100: #E0E5FF;
  --BLUE-Blue---200: #C7CEFE;
  --BLUE-Blue---300: #A5AEFC;
  --Blue---400: #8184F8;
  --BLUE-Blue---500: #6A63F1;
  --BLUE-Blue---600: #5A46E5;
  --BLUE-Blue---700: #4D38CA;
  --BLUE-Blue---800: #3F30A3;
  --ADH-Primary-blue: #332B78;
  --blue-blue-900-adh: #332B78;
  --BLUE-Blue---950: #211B4B;
  font-family: Roboto B, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-feature-settings: "calt" off;
  color: var(--ADH-Primary-blue);
}

.body {
  /* public/styles/app.css */
}
.body .wrap-container {
  width: 100%;
  max-width: 1440px;
  padding: 24px 72px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container {
    padding: 32px 24px;
  }
}
.body .wrap-container-xl {
  width: 100%;
  max-width: 1440px;
  padding: 80px 72px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container-xl {
    padding: 48px 24px;
  }
}
.body .wrap-container-xxl {
  width: 100%;
  max-width: 1440px;
  padding: 80px 182px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container-xxl {
    padding: 48px 24px;
  }
}
.body .success-message {
  color: #28a745; /* Vert pour les succès */
  background-color: #d4edda;
  padding: 10px;
}
.body .error-message {
  color: #dc3545; /* Rouge pour les erreurs */
  background-color: #f8d7da;
  padding: 10px;
}
.body span.mandatory {
  color: var(--red-rouge-700-adh);
}
.body .help-text {
  font-size: 14px;
  margin-top: 14px;
}
.body .underline {
  text-decoration: underline;
}
.body .background-grey {
  background-color: var(--Gris-bg);
}
.body .display-block {
  display: block;
}

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

.section-contact .title-center {
  padding-bottom: 16px !important;
}
.section-contact .title-center h2 {
  padding: 0 !important;
}

.form.form__errors {
  padding: 0;
  list-style: none;
}

input[type=checkbox] {
  border-radius: 2px;
  width: 22px;
  height: 22px;
  border: solid var(--BLUE-Blue---800) 1px;
}

.section-award {
  background-color: var(--ADH-Primary-blue);
  background-image: url("../images/vector-background-aa00b48efa9b6516d588d7ef34a6f5d3.png");
  background-repeat: no-repeat;
  background-position: center center;
  color: #FFFFFF;
  margin-bottom: 80px !important;
}
.section-award .award {
  display: flex;
  gap: 80px;
}
.section-award .award .info {
  display: flex;
  flex-direction: row;
  text-align: center;
  flex: 1;
  align-items: center;
  gap: 24px;
}
.section-award .award .info img {
  width: 84px;
  height: auto !important;
}
.section-award .award .info .info-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}
.section-award .award .info .info-text span {
  font-size: 48px;
  line-height: 130%;
  letter-spacing: -1px;
  font-weight: 800;
}

@media screen and (max-width: 1200px) {
  .section-award {
    margin-bottom: 48px !important;
    background-image: url("../images/vector-background-mobile-863f42ff22a0998c79dd08f841108e75.png");
  }
  .section-award .award {
    display: flex;
    flex-direction: column-reverse;
    gap: 48px;
  }
  .section-award .award .info {
    display: flex;
    flex-direction: column;
  }
  .section-award .award .info .info-text {
    text-align: center;
  }
}
.status-badge {
  display: flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 52px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.status-badge.success {
  color: var(--Green);
  background-color: var(--Green-light);
}
.status-badge.error {
  color: var(--RED-Rouge---900);
  background-color: var(--RED-Rouge---50);
}
.status-badge.warning {
  color: var(--ORANGE-Orange---800);
  background-color: var(--ORANGE-Orange---100);
}
.status-badge.disabled {
  color: var(--gris-label);
  background-color: var(--Gris-bg);
}
.status-badge.notice {
  color: var(--blue-blue-900-adh);
  background-color: var(--BLUE-Blue---100);
}
.status-badge.default {
  color: var(--ADH-Primary-blue);
  background-color: var(--white-color);
  border: solid var(--ADH-Primary-blue) 1 px;
}

@media screen and (max-width: 1440px) {
  .bloc-column h5 {
    font-size: 24px;
  }
}
.body .section .section-breadcrumb .breadcrumb {
  padding: 12px 24px;
  color: var(--ADH-Primary-blue);
  display: flex;
  gap: 8px;
}
.body .section .section-breadcrumb i {
  vertical-align: middle;
  margin-right: 8px;
  width: 20px;
  height: 20px;
}
.body .section .section-breadcrumb i svg {
  fill: transparent;
}
.body .section .section-breadcrumb i svg path {
  stroke: var(--ADH-Primary-blue);
}
.body .section .section-breadcrumb h1 {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
  color: var(--BLUE-Blue---950);
}

@media screen and (max-width: 768px) {
  .body .section .section-breadcrumb .breadcrumb {
    display: none;
  }
}
body {
  all: unset;
}

.btn {
  border: solid 2px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
}
.btn svg {
  fill: transparent;
}
.btn:focus {
  box-shadow: 0px 0px 0px 2px #FFF, 0px 0px 0px 4px #5A46E5;
}
.btn i {
  margin-left: 10px;
}
.btn span {
  vertical-align: middle;
}
.btn span.btn-span-left {
  padding-right: 4px;
}
.btn label.required::after {
  display: none;
  content: none;
}
.btn.btn-primary {
  padding: 14px 24px;
  background: var(--RED-Rouge---600, #F50D1A);
  color: white;
  border-color: var(--RED-Rouge---600, #F50D1A);
  background-color: var(--RED-Rouge---600, #F50D1A);
}
.btn.btn-primary:hover {
  background-color: #FF2C38;
}
.btn.btn-primary:hover.disabled, .btn.btn-primary:hover:disabled {
  background-color: #F6F6F6;
}
.btn.btn-primary.active, .btn.btn-primary:active {
  border-color: #AA0A13;
  background-color: #AA0A13;
}
.btn.btn-primary.disabled, .btn.btn-primary:disabled {
  border: none;
  box-shadow: none;
  background-color: #F6F6F6;
  color: #DBDBDA;
}
.btn.btn-primary i.v-align-middle {
  vertical-align: middle;
}
.btn.btn-primary i.red-white svg {
  stroke: white;
  fill: transparent;
}
.btn.btn-tertiary, .btn.btn-secondary {
  padding: 10px 24px;
  color: var(--ADH-Primary-blue);
  border-color: var(--ADH-Primary-blue);
  background-color: transparent;
}
.btn.btn-tertiary:is(.btn.btn-tertiary.btn-underline, .btn.btn-secondary.btn-underline), .btn.btn-secondary:is(.btn.btn-tertiary.btn-underline, .btn.btn-secondary.btn-underline) {
  padding: 12px 4px;
  text-decoration: underline;
  border: none;
  background: none;
}
.btn.btn-tertiary:hover, .btn.btn-secondary:hover {
  background-color: #EEF1FF;
}
.btn.btn-tertiary:hover:is(.btn.btn-tertiary:hover.btn-underline, .btn.btn-secondary:hover.btn-underline), .btn.btn-secondary:hover:is(.btn.btn-tertiary:hover.btn-underline, .btn.btn-secondary:hover.btn-underline) {
  background: none;
}
.btn.btn-tertiary:hover.disabled, .btn.btn-tertiary:hover:disabled, .btn.btn-secondary:hover.disabled, .btn.btn-secondary:hover:disabled {
  background-color: var(--white-color);
}
.btn.btn-tertiary.btn.btn-secondary:has(input[type=radio]), .btn.btn-secondary.btn.btn-secondary:has(input[type=radio]) {
  padding: 0;
}
.btn.btn-tertiary.btn.btn-secondary:has(input[type=radio]) label, .btn.btn-secondary.btn.btn-secondary:has(input[type=radio]) label {
  padding: 10px 24px;
  display: inline-block;
  margin: 0;
  cursor: pointer;
  box-sizing: border-box;
}
.btn.btn-tertiary.disabled, .btn.btn-tertiary:disabled, .btn.btn-secondary.disabled, .btn.btn-secondary:disabled {
  border: none;
  box-shadow: none;
  background-color: var(--white-color);
  color: #C7CEFE;
}
.btn.btn-tertiary.disabled:hover, .btn.btn-tertiary:disabled:hover, .btn.btn-secondary.disabled:hover, .btn.btn-secondary:disabled:hover {
  background-color: var(--white-color);
}
.btn.btn-tertiary:has(input[type=radio]:checked), .btn.btn-secondary:has(input[type=radio]:checked) {
  background-color: #EEF1FF;
}
.btn.btn-secondary-red {
  padding: 10px 24px;
  color: #FFFFFF;
  border-color: var(--RED-Rouge---600, #F50D1A);
  background-color: var(--RED-Rouge---600, #F50D1A);
}
.btn.btn-secondary-red:is(.btn.btn-secondary-red.btn-underline) {
  padding: 12px 4px;
  text-decoration: underline;
  border: none;
  background: none;
}
.btn.btn-secondary-red:hover {
  background-color: #FF2C38;
}
.btn.btn-secondary-red:hover:is(.btn.btn-secondary-red:hover.btn-underline) {
  background: none;
}
.btn.btn-secondary-red:hover.disabled, .btn.btn-secondary-red:hover:disabled {
  background-color: var(--RED-Rouge---600, #F6F6F6);
}
.btn.btn-secondary-red.btn.btn-secondary:has(input[type=radio]) {
  padding: 0;
}
.btn.btn-secondary-red.btn.btn-secondary:has(input[type=radio]) label {
  padding: 10px 24px;
  display: inline-block;
  margin: 0;
  cursor: pointer;
  box-sizing: border-box;
}
.btn.btn-secondary-red.disabled, .btn.btn-secondary-red:disabled {
  border: none;
  box-shadow: none;
  background-color: var(--white-color);
  color: #C7CEFE;
}
.btn.btn-secondary-red.disabled:hover, .btn.btn-secondary-red:disabled:hover {
  background-color: var(--white-color);
}
.btn.btn-secondary-red:has(input[type=radio]:checked) {
  background-color: #EEF1FF;
}
.btn.btn-secondary-small {
  padding: 10px 24px;
  color: var(--ADH-Primary-blue);
  border-color: var(--ADH-Primary-blue);
  background-color: var(--white-color);
  font-size: 16px;
}
.btn.btn-secondary-small:is(.btn.btn-secondary-small.btn-underline) {
  padding: 12px 4px;
  text-decoration: underline;
  border: none;
  background: none;
}
.btn.btn-secondary-small:hover {
  background-color: #EEF1FF;
}
.btn.btn-secondary-small:hover:is(.btn.btn-secondary-small:hover.btn-underline) {
  background: none;
}
.btn.btn-secondary-small:hover.disabled, .btn.btn-secondary-small:hover:disabled {
  background-color: var(--white-color);
}
.btn.btn-secondary-small.disabled, .btn.btn-secondary-small:disabled {
  border: none;
  box-shadow: none;
  background-color: var(--white-color);
  color: #C7CEFE;
}
.btn.btn-secondary-small.disabled:hover, .btn.btn-secondary-small:disabled:hover {
  background-color: var(--white-color);
}
.btn.btn-tertiary-menu {
  padding: 12px;
  color: var(--ADH-Primary-blue);
  border-color: var(--white-color);
  background-color: var(--white-color);
}
.btn.btn-tertiary-menu span svg path {
  fill: var(--white-color);
}
.btn.btn-tertiary-menu:focus {
  box-shadow: none;
}
.btn.btn-tertiary-menu:hover {
  background-color: #EEF1FF;
}
.btn.btn-tertiary-menu-sous {
  padding: 12px;
  font-weight: 400;
  color: var(--ADH-Primary-blue);
  border-color: var(--white-color);
  background-color: var(--white-color);
  text-align: left;
}
.btn.btn-tertiary-menu-sous span svg path {
  fill: var(--white-color);
}
.btn.btn-tertiary-menu-sous:focus {
  box-shadow: none;
}
.btn.btn-tertiary-menu-sous:hover {
  background-color: #EEF1FF;
}
.btn.btn-qcm {
  padding: 8px 24px;
  color: var(--ADH-Primary-blue);
  border-color: var(--ADH-Primary-blue);
  background-color: var(--white-color);
  text-transform: uppercase;
  font-size: 26px;
}
.btn.btn-qcm.active, .btn.btn-qcm:active {
  background-color: #EEF1FF;
}
.btn.btn-qcm:focus {
  box-shadow: none;
}
.btn.btn-primary-small {
  padding: 10px 24px;
  color: var(--white-color);
  border-color: var(--BLUE-Blue---800);
  background-color: var(--BLUE-Blue---800);
}
.btn.btn-primary-small span svg path {
  fill: var(--BLUE-Blue---800);
}
.btn.btn-primary-small:hover {
  background-color: #4D38CA;
}
.btn.btn-primary-small:hover.disabled, .btn.btn-primary-small:hover:disabled {
  background-color: #F6F6F6;
}
.btn.btn-primary-small.active, .btn.btn-primary-small:active {
  border-color: #332B78;
  background-color: #332B78;
}
.btn.btn-primary-small.active span svg path, .btn.btn-primary-small:active span svg path {
  fill: #332B78;
}
.btn.btn-primary-small.disabled, .btn.btn-primary-small:disabled {
  border: none;
  box-shadow: none;
  background-color: #F6F6F6;
  color: #DBDBDB;
}
.btn.btn-account-action {
  padding: 10px 24px;
  color: var(--white-color);
  border-color: var(--ADH-Primary-blue);
  background-color: var(--ADH-Primary-blue) !important;
  width: 100%;
}
.btn.btn-account-action:is(.btn.btn-account-action.btn-underline) {
  padding: 12px 4px;
  text-decoration: underline;
  border: none;
  background: none;
}
.btn.btn-account-action:hover {
  background-color: #EEF1FF;
}
.btn.btn-account-action:hover:is(.btn.btn-account-action:hover.btn-underline) {
  background: none;
}
.btn.btn-account-action:hover.disabled, .btn.btn-account-action:hover:disabled {
  background-color: var(--ADH-Primary-blue);
}
.btn.btn-account-action a {
  color: var(--white-color);
  text-decoration: none;
  text-underline: none;
}
.btn.btn-account-action.btn.btn-secondary:has(input[type=radio]) {
  padding: 0;
}
.btn.btn-account-action.btn.btn-secondary:has(input[type=radio]) label {
  padding: 10px 24px;
  display: inline-block;
  margin: 0;
  cursor: pointer;
  box-sizing: border-box;
}
.btn.btn-account-action.disabled, .btn.btn-account-action:disabled {
  border: none;
  box-shadow: none;
  background-color: var(--white-color);
  color: #C7CEFE;
}
.btn.btn-account-action.disabled:hover, .btn.btn-account-action:disabled:hover {
  background-color: var(--white-color);
}
.btn.btn-account-action:has(input[type=radio]:checked) {
  background-color: #EEF1FF;
}
.btn.btn-icon {
  padding: 10px;
  color: #E30613;
  background-color: var(--white-color);
}
.btn.btn-icon:is(.btn.btn-icon.btn-icon-mobile) {
  border: none;
  background: none;
}
.btn.btn-icon:is(.btn.btn-icon.btn-icon-mobile) span svg path {
  fill: none;
}
.btn.btn-icon span svg path {
  stroke: #E30613;
  fill: var(--white-color);
}
.btn.btn-icon:hover {
  color: #332B78;
  background-color: #EEF1FF;
}
.btn.btn-icon:hover:is(.btn.btn-icon:hover.btn-icon-mobile) {
  border: none;
  background: none;
}
.btn.btn-icon:hover:is(.btn.btn-icon:hover.btn-icon-mobile) span svg path {
  fill: none;
}
.btn.btn-icon:hover span svg path {
  stroke: #332B78;
  fill: #EEF1FF;
}
.btn.btn-icon:focus {
  box-shadow: none;
}

.btn-connected {
  border: none;
  display: flex;
  align-items: center;
  color: var(--red-rouge-700-adh);
  background-color: transparent;
  padding: 0;
}
.btn-connected:hover {
  color: var(--ADH-Primary-blue);
}
.btn-connected:focus {
  border: none;
}
.btn-connected > span.globe, .btn-connected > span.profile {
  font-size: 17px;
  border: none;
  display: flex;
}
.btn-connected > span.profile {
  width: 38px;
  height: 38px;
  background-color: var(--RED-Rouge---50);
  border-radius: 19px;
  font-weight: 600;
}
.btn-connected > span.globe svg {
  fill: transparent;
}

.dropdown {
  position: relative;
  display: inline-flex;
}
.dropdown .dropdown-toggle {
  width: 100%;
}
.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  width: auto;
  max-width: 100%;
  padding: 20px 24px;
  flex-direction: column;
  align-items: flex-start;
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0 0 14px 0 rgba(41, 41, 41, 0.15);
}
.dropdown .dropdown-menu li {
  list-style: none;
}
.dropdown .dropdown-menu .dropdown-item {
  display: flex;
  width: 100%;
  margin: auto 0;
  padding: 12px;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ADH-Primary-blue);
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: var(--BLUE-Blue---50);
}
.dropdown .dropdown-menu .dropdown-divider {
  height: 1px;
  margin: 8px 0;
  background: #DBDBDB;
}
.dropdown.show .dropdown-menu {
  display: block;
}

main.contact-page {
  margin-bottom: 60px;
}
main.contact-page .column .wrap-container {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
main.contact-page .column .wrap-container .contact-form {
  flex: 1;
}
main.contact-page .column .wrap-container .contact-form h1 {
  font-size: 48px;
}
main.contact-page .column .wrap-container .contact-form .column {
  padding: 0;
}
main.contact-page .column .wrap-container .contact-form .contact-form__fields {
  display: flex;
  flex-direction: column;
}
main.contact-page .column .wrap-container .contact-form .contact-form__fields span.mandatory {
  color: var(--red-rouge-700-adh);
}
main.contact-page .column .wrap-container .contact-form .contact-form__fields div#contact_email {
  display: block;
  flex-direction: column;
  gap: 30px;
}
main.contact-page .column .wrap-container .contact-form .contact-form__fields div#contact_email div {
  display: flex;
  flex-direction: column;
}
main.contact-page .column .wrap-container .contact-form .contact-form__fields div#contact_email div ul {
  color: var(--red-rouge-700-adh);
}
main.contact-page .column .wrap-container .contact-form .contact-form__fields label {
  margin-top: 30px;
  font-size: 16px;
  font-weight: bold;
}
main.contact-page .column .wrap-container .contact-form .contact-form__fields label:after {
  content: "*";
  color: rgb(225, 113, 0);
  margin-left: 2px;
}
main.contact-page .column .wrap-container .contact-form .contact-form__fields label.no-mandatory::after {
  display: none;
}
main.contact-page .column .wrap-container .contact-form .contact-form__fields textarea {
  font-family: Roboto B, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-feature-settings: "calt" off;
  font-size: 19px;
}
main.contact-page .column .wrap-container .contact-form .contact-form__fields textarea,
main.contact-page .column .wrap-container .contact-form .contact-form__fields input {
  border-radius: 8px;
  border: var(--blue-blue-900-adh) solid 1px;
  padding: 14px 12px;
}
main.contact-page .column .wrap-container .contact-form .contact-form__fields textarea#contact_phone,
main.contact-page .column .wrap-container .contact-form .contact-form__fields input#contact_phone {
  width: 100%;
}
main.contact-page .column .wrap-container .contact-form .contact-form__fields select:focus,
main.contact-page .column .wrap-container .contact-form .contact-form__fields textarea:focus,
main.contact-page .column .wrap-container .contact-form .contact-form__fields input[type=email]:focus,
main.contact-page .column .wrap-container .contact-form .contact-form__fields input[type=tel]:focus,
main.contact-page .column .wrap-container .contact-form .contact-form__fields input[type=password]:focus,
main.contact-page .column .wrap-container .contact-form .contact-form__fields input[type=date]:focus,
main.contact-page .column .wrap-container .contact-form .contact-form__fields input[type=text]:focus {
  background-color: var(--BLUE-Blue---50);
  border: var(--blue-blue-900-adh) solid 1px;
  box-shadow: 0 0 0 2px #FFF, 0 0 0 4px var(--BLUE-Blue---600);
}
main.contact-page .column .wrap-container .contact-form .contact-form__fields .g-recaptcha {
  margin: 30px auto 20px 0;
}
main.contact-page .column .wrap-container .contact-form .contact-form__fields button {
  width: 50%;
}
main.contact-page .column .wrap-container .contact-aside .contact-aside__panel {
  text-align: center;
  padding: 40px;
  width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
}
main.contact-page .column .wrap-container .contact-aside .contact-aside__panel div {
  display: flex;
  text-align: left;
  align-items: center;
  gap: 10px;
  width: 45%;
}
main.contact-page .column .wrap-container .contact-aside .contact-aside__panel div i {
  height: 36px;
}
main.contact-page .column .wrap-container .contact-aside .contact-aside__panel div i svg {
  fill: transparent;
}
main.contact-page .column .wrap-container .contact-aside .contact-aside__panel div span {
  font-size: 20px;
  font-weight: 500;
}
main.contact-page .column .wrap-container .contact-aside .contact-aside__panel:nth-child(1) {
  background-color: rgb(246, 246, 246);
}
main.contact-page .column .wrap-container .contact-aside .contact-aside__panel:nth-child(1) p {
  font-size: 16px;
}
main.contact-page .column .wrap-container .contact-aside .contact-aside__panel:nth-child(2) {
  margin-top: 30px;
  background: rgb(255, 250, 234);
  gap: 30px;
}

@media screen and (max-width: 1200px) {
  main.contact-page .column {
    width: 100%;
    margin-top: 0;
  }
  main.contact-page .column .wrap-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  main.contact-page .column .wrap-container .contact-form {
    max-width: 100%;
  }
  main.contact-page .column .wrap-container .contact-aside {
    width: 100%;
  }
  main.contact-page .column .wrap-container .contact-aside .contact-aside__panel {
    max-width: 100%;
    width: auto;
  }
}
* {
  box-sizing: border-box;
}

.required-input {
  color: #e17100;
}

.custom-column {
  max-width: 1200px;
  margin: 0 auto;
}

input:valid,
select:valid {
  background-color: #EEF1FF !important;
}

.column {
  display: flex;
  flex-direction: column;
}
.column.offer-column .bloc-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.column.offer-column .bloc-column a {
  margin: 0 0 auto;
  margin-top: 16px !important;
}
.column.offer-column .bloc-column .offer-item {
  width: 621px;
  margin-left: -70px;
}
.column.opinion-column .opinion-item {
  margin: 50px auto;
}
.column.opinion-column .valuation-wrapper {
  display: flex;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1000px) {
  .column.opinion-column .valuation-wrapper {
    gap: 20px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 1000px) {
  .column.opinion-column .valuation-wrapper > *:nth-child(n+2) {
    display: none;
  }
}
.column.opinion-column .opinion-column__plus {
  margin-top: 30px;
  color: #332B78;
}
.column.background-grey {
  background-color: var(--Gris-bg);
}
.column.background-grey .btn {
  background-color: var(--Gris-bg);
}
.column.padding-xxl h2 {
  padding-bottom: 50px;
}
.column .center-image {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  justify-content: center;
}
.column .title-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 48px;
}
.column a {
  width: max-content;
  margin: auto;
}
.column .bloc-column.bc-faq {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 40px;
}
.column .bloc-column.bc-faq > button {
  padding: 16px 20px;
  background: url("../icons/arrow-down-xl-41dce9235ee608b073dcebea3c2b2db6.svg") no-repeat calc(100% - 10px) center;
  text-align: left;
  stroke: var(--ADH-Primary-blue);
}
.column .bloc-column.bc-faq > button .bc-faq-content {
  padding-top: 20px;
  display: none;
}
.column .bloc-column.bc-faq a {
  margin-top: 8px;
}
.column .center {
  padding-top: 32px;
}
.column .right,
.column .left,
.column .right-cropped,
.column .left-cropped {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.column .right .bloc-column .hp-price,
.column .left .bloc-column .hp-price,
.column .right-cropped .bloc-column .hp-price,
.column .left-cropped .bloc-column .hp-price {
  margin-top: 8px;
  margin-bottom: 32px;
}
.column .right .bloc-column.bc-faq,
.column .left .bloc-column.bc-faq,
.column .right-cropped .bloc-column.bc-faq,
.column .left-cropped .bloc-column.bc-faq {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.column .right .content-image.mobile-visibility,
.column .left .content-image.mobile-visibility,
.column .right-cropped .content-image.mobile-visibility,
.column .left-cropped .content-image.mobile-visibility {
  display: block;
}
.column .right .content-image.desktop-visibility,
.column .left .content-image.desktop-visibility,
.column .right-cropped .content-image.desktop-visibility,
.column .left-cropped .content-image.desktop-visibility {
  display: none;
}
.column .right .content-image,
.column .right .content-image-cropped,
.column .left .content-image,
.column .left .content-image-cropped,
.column .right-cropped .content-image,
.column .right-cropped .content-image-cropped,
.column .left-cropped .content-image,
.column .left-cropped .content-image-cropped {
  max-width: 100%;
}
.column .right .content-image-cropped,
.column .left .content-image-cropped,
.column .right-cropped .content-image-cropped,
.column .left-cropped .content-image-cropped {
  box-shadow: 0 6px 1px 0 var(--orange-orange-500-adh);
  border-radius: 16px 500px 500px 16px;
}
.column .right a,
.column .left a,
.column .right-cropped a,
.column .left-cropped a {
  width: max-content;
  height: max-content;
}
.column .right-cropped .content-image-cropped {
  box-shadow: 0 6px 1px 0 var(--orange-orange-500-adh);
  border-radius: 500px 16px 16px 500px;
}
.column .right-cropped .bloc-column,
.column .left-cropped .bloc-column {
  margin: auto 0;
}
.column .right-cropped .bloc-column > ul,
.column .left-cropped .bloc-column > ul {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 0;
}
.column .right-cropped .bloc-column > ul li,
.column .left-cropped .bloc-column > ul li {
  background: url("../icons/check-bc996588116b35db0d193ea679f803be.svg") no-repeat 10px;
  list-style-type: none;
  font-size: 18px;
  padding: 8px 8px 8px 48px;
  font-weight: 500;
}
.column .right-cropped .bloc-column > ul li i,
.column .left-cropped .bloc-column > ul li i {
  margin-right: 10px;
  color: #F39200;
}

.who-are-us {
  padding: 0 182px 48px 182px !important;
}
.who-are-us .left {
  padding-top: 0;
}

.logo-clouds {
  margin-top: 32px !important;
}

.row {
  display: flex;
  flex-direction: row;
}

@media (min-width: 1200px) {
  .column p {
    font-size: 16px;
  }
  .column .content-image,
  .column .content-image-cropped {
    width: 50%;
  }
  .column .bloc-column.bc-faq .btn.btn-secondary:focus {
    background: url("../icons/arrow-up-xl-e4ed162a1479d50f00221a875fa0b508.svg") no-repeat calc(100% - 5px) calc(0% + 10px);
  }
  .column .bloc-column.bc-faq .btn.btn-secondary:focus .bc-faq-content {
    transition: visibility 1s, opacity 1s linear;
    display: block;
  }
  .column .right,
  .column .left,
  .column .right-cropped,
  .column .left-cropped {
    flex-direction: row;
    gap: 48px;
  }
  .column .right .bloc-column,
  .column .left .bloc-column,
  .column .right-cropped .bloc-column,
  .column .left-cropped .bloc-column {
    width: 50%;
  }
  .column .right .content-image,
  .column .left .content-image,
  .column .right-cropped .content-image,
  .column .left-cropped .content-image {
    border-radius: 8px;
  }
  .column .right .content-image.mobile-visibility,
  .column .left .content-image.mobile-visibility,
  .column .right-cropped .content-image.mobile-visibility,
  .column .left-cropped .content-image.mobile-visibility {
    display: none;
  }
  .column .right .content-image.desktop-visibility,
  .column .left .content-image.desktop-visibility,
  .column .right-cropped .content-image.desktop-visibility,
  .column .left-cropped .content-image.desktop-visibility {
    display: block;
  }
  .column .right .content-image,
  .column .right .content-image-cropped,
  .column .left .content-image,
  .column .left .content-image-cropped,
  .column .right-cropped .content-image,
  .column .right-cropped .content-image-cropped,
  .column .left-cropped .content-image,
  .column .left-cropped .content-image-cropped {
    margin-right: auto;
    width: 100%;
  }
  .column .right,
  .column .right-cropped {
    flex-direction: row-reverse;
  }
  .column .left,
  .column .left-cropped {
    flex-direction: row;
  }
  .column .flex-row {
    flex-direction: row;
  }
  .column .flex-row .content-image-cropped {
    border-radius: 16px 500px 500px 16px;
  }
  .column .flex-row-reverse {
    flex-direction: row-reverse;
  }
  .column .flex-row-reverse .content-image-cropped {
    border-radius: 500px 16px 16px 500px;
  }
  .column .right .img,
  .column .left .img,
  .column .right-cropped .img,
  .column .left-cropped .img {
    width: 50%;
  }
  .column .right .img img,
  .column .left .img img,
  .column .right-cropped .img img,
  .column .left-cropped .img img {
    width: 100%;
  }
  .column .right-cropped,
  .column .left-cropped {
    align-items: center;
  }
  .column.who-are-us .right {
    margin-bottom: 0;
  }
  .column.who-are-us .left {
    padding-top: 0;
  }
  .column.who-are-us .img {
    width: 50%;
  }
  .column .separator {
    padding-top: 48px;
  }
}
@media screen and (max-width: 768px) {
  .column {
    display: flex;
    flex-direction: column;
  }
  .column .title-center {
    padding-bottom: 32px;
  }
  .column .bloc-column.bc-faq ul {
    padding-left: 0px;
  }
  .column.offer-column .bloc-column {
    gap: 8px;
  }
  .column.offer-column .bloc-column a {
    margin-top: 24px;
  }
  .column.offer-column .bloc-column .offer-item {
    margin-top: 88px !important;
  }
  .column .right-cropped .bloc-column .hp-price,
  .column .left-cropped .bloc-column .hp-price {
    margin-top: 8px;
    margin-bottom: 32px;
  }
  .column .right-cropped .bloc-column > ul,
  .column .left-cropped .bloc-column > ul {
    margin-top: 16px;
    margin-bottom: 32px;
  }
  .column .right-cropped .content-image-cropped,
  .column .left-cropped .content-image-cropped {
    box-shadow: 0 6px 1px 0 var(--orange-orange-500-adh);
    border-radius: 500px 500px 16px 16px;
  }
  .who-are-us {
    padding: 0 24px 48px 24px !important;
  }
  .who-are-us .left {
    padding-top: 0;
  }
  .who-are-us .left .img {
    display: none;
  }
  .logo-clouds .wrap-container-xxl .title-center h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%; /* 31.2px */
    letter-spacing: -0.24px;
    padding: 0;
  }
  .logo-clouds .wrap-container-xxl .center-image {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .logo-clouds .wrap-container-xxl .center-image img {
    width: 100%;
    max-width: 327px;
  }
}
.field-invalid {
  color: var(--RED-Rouge---900) !important;
}
.field-invalid small {
  color: var(--ADH-Primary-blue);
}
.field-invalid input {
  border: var(--RED-Rouge---600) solid 1px;
  box-shadow: 0 0 0 2px #FFF, 0 0 0 4px var(--BLUE-Blue---600);
  padding-right: 40px;
}
.field-invalid ul {
  list-style-type: none;
  font-size: 14px;
  margin-block-start: 5px;
  margin-block-end: 0;
  padding-inline-start: 0;
}
.field-invalid ul li {
  color: var(--RED-Rouge---900) !important;
}

.custom-dropdown {
  float: left;
  overflow: hidden;
}

.custom-dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  margin: 0;
  background: transparent;
}
.custom-dropdown button span {
  display: flex;
  align-items: center;
}
.custom-dropdown button span i {
  margin-left: 10px;
  font-size: 11px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0px 4px 50px 0px rgba(31, 31, 37, 0.15);
  padding: 24px;
  z-index: 1;
}
.dropdown-content a, .dropdown-content li {
  background-color: transparent !important;
  border-color: transparent !important;
  box-sizing: border-box;
  margin: 0 0 auto;
  width: 100%;
}
.dropdown-content a {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
  color: #332B78;
  padding: 8px;
  text-decoration: none;
  margin-bottom: 8px;
}
.dropdown-content a:last-child {
  margin-bottom: 0;
}
.dropdown-content a:hover {
  border-radius: 8px;
  background: #EEF1FF !important;
}

.custom-dropdown:hover .dropdown-content {
  display: block;
}

.btn-connected {
  text-decoration: none;
}
.btn-connected > span.profile {
  align-items: center;
  justify-content: center;
}

:root {
  /* Déclaration de variables pour les couleurs */
  --primary-color: #F50D1A;
  --secondary-color: #332B78;
  --tertiary-color: var(--secondary-color);
  --qcm-color: var(--secondary-color);
  --primary-small-color: #3F30A3;
  --white-color: #FFF;
  --Gris-bg: #F6F6F6;
  --Gris-border: #DBDBDB;
  --gris-label: #757575;
  --Green-light: #DCFEBE;
  --Green: #006102;
  --ORANGE-Orange---50: #FFFAEA;
  --ORANGE-Orange---100: #FFF2C5;
  --ORANGE-Orange---200: #FFE586;
  --ORANGE-Orange---300: #FFD246;
  --ORANGE-Orange---400: #FFBC1C;
  --orange-orange-500-adh: #F39201;
  --ORANGE-Orange---600: #E17100;
  --ORANGE-Orange---700: #BB4D02;
  --ORANGE-Orange---800: #973B09;
  --ORANGE-Orange---900: #7C310B;
  --ORANGE-Orange---950: #481700;
  --RED-Rouge---50: #FFF0F1;
  --RED-Rouge---100: #FFDEE0;
  --RED-Rouge---200: #FFC3C6;
  --RED-Rouge---300: #FF999F;
  --RED-Rouge---400: #FF5E67;
  --RED-Rouge---500: #FF2C38;
  --RED-Rouge---600: #F50D1A;
  --red-rouge-700-adh: #E30613;
  --RED-Rouge---800: #AA0A13;
  --RED-Rouge---900: #8D0F16;
  --RED-Rouge---950: #4D0206;
  --BLUE-Blue---50: #EEF1FF;
  --BLUE-Blue---100: #E0E5FF;
  --BLUE-Blue---200: #C7CEFE;
  --BLUE-Blue---300: #A5AEFC;
  --Blue---400: #8184F8;
  --BLUE-Blue---500: #6A63F1;
  --BLUE-Blue---600: #5A46E5;
  --BLUE-Blue---700: #4D38CA;
  --BLUE-Blue---800: #3F30A3;
  --ADH-Primary-blue: #332B78;
  --blue-blue-900-adh: #332B78;
  --BLUE-Blue---950: #211B4B;
  font-family: Roboto B, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-feature-settings: "calt" off;
  color: var(--ADH-Primary-blue);
}

.body {
  /* public/styles/app.css */
}
.body .wrap-container {
  width: 100%;
  max-width: 1440px;
  padding: 24px 72px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container {
    padding: 32px 24px;
  }
}
.body .wrap-container-xl {
  width: 100%;
  max-width: 1440px;
  padding: 80px 72px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container-xl {
    padding: 48px 24px;
  }
}
.body .wrap-container-xxl {
  width: 100%;
  max-width: 1440px;
  padding: 80px 182px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container-xxl {
    padding: 48px 24px;
  }
}
.body .success-message {
  color: #28a745; /* Vert pour les succès */
  background-color: #d4edda;
  padding: 10px;
}
.body .error-message {
  color: #dc3545; /* Rouge pour les erreurs */
  background-color: #f8d7da;
  padding: 10px;
}
.body span.mandatory {
  color: var(--red-rouge-700-adh);
}
.body .help-text {
  font-size: 14px;
  margin-top: 14px;
}
.body .underline {
  text-decoration: underline;
}
.body .background-grey {
  background-color: var(--Gris-bg);
}
.body .display-block {
  display: block;
}

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

.section-contact .title-center {
  padding-bottom: 16px !important;
}
.section-contact .title-center h2 {
  padding: 0 !important;
}

.form.form__errors {
  padding: 0;
  list-style: none;
}

input[type=checkbox] {
  border-radius: 2px;
  width: 22px;
  height: 22px;
  border: solid var(--BLUE-Blue---800) 1px;
}

.custom-form label {
  margin-bottom: 3px;
}
.custom-form input {
  font-size: 19px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid;
}
.custom-form input[type=radio] {
  display: none;
}
.custom-form select {
  width: 100%;
  border-radius: 8px;
  border: var(--blue-blue-900-adh) solid 1px;
  padding: 14px 12px;
  font-size: 19px;
  font-weight: 400;
  color: var(--ADH-Primary-blue);
}
.custom-form select:focus {
  background-color: var(--BLUE-Blue---50);
  border: var(--blue-blue-900-adh) solid 1px;
  box-shadow: 0 0 0 2px #FFF, 0 0 0 4px var(--BLUE-Blue---600);
}
.custom-form input[type=date] {
  font-family: Roboto B, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-feature-settings: "calt" off;
  font-size: 19px;
}
.custom-form select {
  background-color: #FFFFFF;
}

.estimate-page .custom-column {
  max-width: 1200px;
  margin: 0 auto;
}
.estimate-page .custom-column .progress-bar {
  margin-top: 50px;
}
.estimate-page .custom-column.panel-section {
  display: none;
  display: flex;
  min-height: 400px;
  padding: 40px 0;
}
.estimate-page .custom-column.panel-section .estimate-aside__panel {
  flex: 1;
  padding: 40px;
  background-color: rgba(238, 241, 255, 0.25);
}
.estimate-page .custom-column.panel-section .estimate-aside__panel h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.estimate-page .custom-column.panel-section .estimate-aside__panel h4 {
  font-weight: bold;
  margin: 20px 0;
  font-size: 26px;
}
.estimate-page .custom-column.panel-section .estimate-aside__panel button {
  margin-right: 10px;
  border-color: #332B78;
  border: 1px solid;
}
.estimate-page .custom-column.panel-section .estimate-aside__panel button:hover {
  background-color: #EEF1FF;
  outline: 1px solid;
}
.estimate-page .custom-column.panel-section .estimate-aside__panel button.number {
  width: 50px;
}
.estimate-page .custom-column.panel-section .estimate-aside__right {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 400px;
  background-image: url("../icons/bulb-7eb8fa614e169a9602dd73cd4084b14a.svg");
  background-repeat: no-repeat;
  background-position: top right;
}
.estimate-page .custom-column.panel-section .estimate-aside__right h4 {
  font-size: 20px;
  font-weight: bold;
}
.estimate-page .custom-column.panel-section .estimate-aside__right p {
  margin-top: 0;
}
.estimate-page .custom-column.toolbar-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.estimate-page .custom-column.toolbar-section a {
  background-color: #F6F6F6;
  color: #757575;
  border: none;
}
.estimate-page .custom-column.toolbar-section a:hover {
  background-color: #F50D1A;
  color: white;
}
.estimate-page.part2 .custom-column.toolbar-section a:first-child {
  background-color: white;
  color: #332b78;
  border: none;
}
.estimate-page.part2 .custom-column.toolbar-section a:first-child:hover {
  opacity: 0.5;
}
.estimate-page.part3 .custom-column.toolbar-section a:first-child {
  background-color: white;
  color: #332b78;
  border: none;
}
.estimate-page.part3 .custom-column.toolbar-section a:first-child:hover {
  opacity: 0.5;
}
.estimate-page.part4 .custom-column.toolbar-section a:first-child {
  background-color: white;
  color: #332b78;
  border: none;
}
.estimate-page.part4 .custom-column.toolbar-section a:first-child:hover {
  opacity: 0.5;
}
.estimate-page.part5 .estimate-aside__right label {
  margin-top: 5px;
  font-weight: bold;
  color: #211B4B;
}
.estimate-page.part5 .estimate-aside__right ul.list-wrap {
  margin: 0;
  padding: 0;
  color: #211B4B;
}
.estimate-page.part5 .estimate-aside__right ul.list-wrap li {
  list-style: none;
  margin-top: 15px;
  display: flex;
}
.estimate-page.part5 .estimate-aside__right ul.list-wrap li:last-child {
  margin-bottom: 10px;
}
.estimate-page.part5 .estimate-aside__right ul.list-wrap li i {
  margin-right: 10px;
}
.estimate-page.part5 .custom-column.toolbar-section a:first-child {
  background-color: white;
  color: #332b78;
  border: none;
}
.estimate-page.part5 .custom-column.toolbar-section a:first-child:hover {
  opacity: 0.5;
}
.estimate-page.part6 .custom-column.panel-section .estimate-aside__right {
  display: block;
}
.estimate-page.part6 .custom-column.toolbar-section a:first-child {
  background-color: white;
  color: #332b78;
  border: none;
}
.estimate-page.part6 .custom-column.toolbar-section a:first-child:hover {
  opacity: 0.5;
}
.estimate-page.part7 .custom-column.panel-section .custom-form {
  display: flex;
  flex-direction: column;
}
.estimate-page.part7 .custom-column.panel-section .custom-form input[name="step_four_form[address]"] {
  width: 520px;
}
.estimate-page.part7 .custom-column.panel-section .custom-form input[name="step_four_form[addressComplement]"] {
  width: 320px;
}
.estimate-page.part7 .custom-column.panel-section .custom-form input[name="step_four_form[city]"] {
  width: 220px;
}
.estimate-page.part7 .custom-column.panel-section .custom-form input[name="step_four_form[postalCode]"] {
  width: 220px;
}
@media (max-width: 1200px) {
  .estimate-page.part7 .custom-column.panel-section .custom-form input {
    width: 100% !important;
  }
}
.estimate-page.part7 .custom-column.panel-section .custom-form label {
  margin-top: 20px;
  font-weight: bold;
}
.estimate-page.part7 .custom-column.panel-section .custom-form label span {
  margin-left: 5px;
}
.estimate-page.part7 .custom-column.panel-section .custom-form label.required::after {
  margin-left: 4px;
  content: "*";
  color: red;
}
.estimate-page.part7 .custom-column.toolbar-section a:first-child {
  background-color: white;
  color: #332b78;
  border: none;
}
.estimate-page.part7 .custom-column.toolbar-section a:first-child:hover {
  opacity: 0.5;
}
.estimate-page.part8 .estimate-aside__right p:last-child {
  font-size: 12px;
}
.estimate-page.part8 .custom-column.toolbar-section a:first-child {
  background-color: white;
  color: #332b78;
  border: none;
}
.estimate-page.part8 .custom-column.toolbar-section a:first-child:hover {
  opacity: 0.5;
}
.estimate-page.part9 .estimate-aside__right p {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  margin-bottom: 0;
}
.estimate-page.part9 .estimate-aside__right p label {
  font-weight: bold;
}
.estimate-page.part9 .estimate-aside__right p:last-child {
  font-size: 12px;
  display: block;
}
.estimate-page.part9 .custom-column.toolbar-section a:first-child {
  background-color: white;
  color: #332b78;
  border: none;
}
.estimate-page.part9 .custom-column.toolbar-section a:first-child:hover {
  opacity: 0.5;
}
.estimate-page.part10 .custom-column.toolbar-section a:first-child {
  background-color: white;
  color: #332b78;
  border: none;
}
.estimate-page.part10 .custom-column.toolbar-section a:first-child:hover {
  opacity: 0.5;
}
.estimate-page.part11 .custom-column.toolbar-section a:first-child {
  background-color: white;
  color: #332b78;
  border: none;
}
.estimate-page.part11 .custom-column.toolbar-section a:first-child:hover {
  opacity: 0.5;
}
.estimate-page.part12 .custom-column.toolbar-section a:first-child {
  background-color: white;
  color: #332b78;
  border: none;
}
.estimate-page.part12 .custom-column.toolbar-section a:first-child:hover {
  opacity: 0.5;
}
.estimate-page.part12 span {
  display: block;
  margin-top: 10px;
}

@media screen and (max-width: 1200px) {
  .estimate-page .custom-column {
    max-width: 100vw;
  }
  .estimate-page .custom-column .progress-bar {
    margin: 20px auto 20px;
    width: 90%;
  }
  .estimate-page .custom-column.panel-section {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .estimate-page .custom-column.panel-section .estimate-aside__panel {
    padding: 20px;
  }
  .estimate-page .custom-column.panel-section .estimate-aside__panel h2 {
    font-size: 24px;
  }
  .estimate-page .custom-column.panel-section .estimate-aside__panel button {
    margin-top: 15px;
  }
  .estimate-page .custom-column.panel-section .estimate-aside__right {
    width: 100%;
    background-position: 95% 5px;
  }
  .estimate-page .custom-column.panel-section .estimate-aside__right p {
    width: 90% !important;
  }
}
.fast-access {
  padding: 40px;
  border-radius: 16px;
  font-weight: bold;
  background-color: rgb(238, 241, 255);
  background-image: url("../images/access-mask-074e55238ff666837f9ddc23ec461591.png");
  background-position: right 0;
  background-repeat: no-repeat;
  color: rgb(51, 43, 120);
}
.fast-access .fast-access__title {
  font-size: 26px;
}
.fast-access .fast-access__content {
  display: flex;
  gap: 62px;
}
.fast-access .fast-access__content aside {
  display: flex;
  flex-direction: column;
}
.fast-access .fast-access__content aside a {
  margin: 20px 0px 0px 0px;
  color: rgb(51, 43, 120);
  font-size: 19px;
}

@media screen and (max-width: 1200px) {
  .fast-access {
    background-image: none;
  }
  .fast-access .fast-access__content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.body footer.section-contact {
  display: none;
}
.body footer.section.footer-global {
  background-image: url("../images/footer-mask-12699c6f1a531b70120a7336495d0616.png");
  background-repeat: no-repeat;
  background-position: 87% 100%;
}
.body footer.section .section-footer {
  background: var(--ADH-Primary-blue);
  background-image: url("../images/footer-mask-12699c6f1a531b70120a7336495d0616.png");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  font-style: normal;
  line-height: normal;
}
.body footer.section .section-footer .footer-bloc-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  align-self: stretch;
}
.body footer.section .section-footer .footer-bloc-links .footer-text-category {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.19px;
}
.body footer.section .section-footer .footer-bloc-links .footer-bloc-column,
.body footer.section .section-footer .footer-bloc-links .footer-v-flex-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.16px;
}
.body footer.section .section-footer .footer-bloc-links .footer-bloc-column a,
.body footer.section .section-footer .footer-bloc-links .footer-v-flex-link a {
  color: #FFFFFF;
  text-decoration: none;
}
.body footer.section .section-footer .footer-map {
  display: flex;
  width: 443px;
  height: 230px;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 16px;
}
.body footer.section .section-footer .footer-map .map-img {
  width: 100%;
  height: 200px;
  border-radius: 0 0 16px 16px;
  background: url("../images/map-mobile-bbfc5828d00e10bb8dd2137d4a48fadb.png");
}
.body footer.section .section-footer .footer-map .map-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.body footer.section .section-footer .footer-map .map-address {
  width: 243px;
  display: flex;
  flex-direction: column;
  border-radius: 16px 16px 0 0;
  background: var(--BLUE-Blue---200);
  gap: 40px;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.body footer.section .section-footer .footer-map .map-address p {
  margin-block-start: 0;
  margin-block-end: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  color: var(--blue-blue-900-adh);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.19px;
}
.body footer.section .section-footer .footer-map .map-address p.text-category {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.body footer.section .section-footer .footer-map .map-address .schedule {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.body footer.section .section-footer .footer-map .map-address .schedule p.phone {
  margin-top: 10px;
}
.body footer.section .section-footer .footer-map .map-address .address {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.body footer.section .section-footer .footer-socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  margin-top: 20px;
  gap: 32px;
}
.body footer.section .section-footer .footer-socials svg {
  fill: transparent;
}
.body footer.section .section-footer .footer-socials svg path {
  stroke: #FFFFFF;
}
.body footer.section .section-footer.section-footer-mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  padding: 64px 24px;
}
.body footer.section .section-footer.section-footer-mobile .footer-logo {
  margin: 0 auto;
}
.body footer.section .section-footer.section-footer-mobile .footer-map {
  display: flex;
  justify-content: start;
  width: 100%;
  height: 415px;
  border-radius: 16px 16px 16px 16px;
}
.body footer.section .section-footer.section-footer-mobile .footer-map .map-img {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.body footer.section .section-footer.section-footer-mobile .footer-map .map-address {
  width: 100%;
  height: 327px;
  align-items: normal;
  justify-content: start;
  padding: 24px;
}
.body footer.section .section-footer.section-footer-mobile .footer-map .map-address .schedule .text-category {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.2px;
}
.body footer.section .section-footer.section-footer-mobile .footer-map .map-address .schedule .phone {
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.19px;
}
.body footer.section .section-footer.section-footer-mobile .footer-map .map-address .address p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
}
.body footer.section .section-footer.section-footer-mobile .footer-bloc-links {
  gap: 48px;
}
.body footer.section .section-footer.section-footer-mobile .footer-bloc-links .footer-bloc-column .footer-v-flex-link a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
}
.body footer.section .section-footer.section-footer-desktop {
  display: none;
}

@media (min-width: 1200px) {
  .body footer.section-contact {
    display: block;
  }
  .body footer.section .section-footer {
    padding: 64px 72px;
    flex-direction: row;
  }
  .body footer.section .section-footer .footer-wrapper {
    align-items: center;
  }
  .body footer.section .section-footer .footer-links {
    display: flex;
    width: 827px;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    flex-shrink: 0;
  }
  .body footer.section .section-footer .footer-links .footer-bloc-links {
    flex-direction: row;
  }
  .body footer.section .section-footer .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 1 auto;
  }
  .body footer.section .section-footer .footer-map {
    width: 443px;
    flex-direction: row;
    align-items: flex-start;
  }
  .body footer.section .section-footer .footer-map .map-img {
    width: 200px;
    height: 230px;
    border-radius: 16px 0 0 16px;
    background: url("../images/map-4cd1e39b80c25426a6be609c8d252595.png");
  }
  .body footer.section .section-footer .footer-map .map-address {
    width: 243px;
    border-radius: 0 16px 16px 0;
  }
  .body footer.section .section-footer .footer-socials {
    align-self: normal;
    justify-content: flex-end;
  }
  .body footer.section .section-footer.section-footer-mobile {
    display: none;
  }
  .body footer.section .section-footer.section-footer-desktop {
    display: flex;
  }
}
.body header.section .section-header {
  background: #FFF;
}
.body header.section .section-header .logo a > img.desktop {
  display: none;
}
.body header.section .section-header .logo a > img.mobile {
  display: flex;
}
.body header.section .section-header .navbar {
  display: flex;
  align-items: center;
  gap: 16px;
}
.body header.section .section-header .navbar .navbar-links {
  display: none;
}
.body header.section .section-header .navbar .navbar-right {
  display: flex;
  justify-content: flex-end;
  flex: 1 auto;
  gap: 16px;
}
.body header.section .section-header .navbar .navbar-right .menu.menu-globe {
  display: none;
}
.body header.section .section-header .navbar .navbar-right .menu.menu-burger {
  display: flex;
}
.body header.section .section-header .navbar .navbar-right .menu.desktop {
  display: flex;
}
.body header.section .section-header .menu-mobile {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: none;
  flex-direction: column;
}
.body header.section .section-header .menu-mobile .separator {
  display: block;
  border-bottom: 1px #DBDBDB solid;
  margin: 20px 0;
}
.body header.section .section-header .menu-mobile .menu.menu-globe .menu-item {
  width: auto;
  color: var(--red-rouge-700-adh);
}
.body header.section .section-header .menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.body header.section .section-header .menu-content {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: white;
  padding: 32px 24px;
  overflow-y: auto;
}
.body header.section .section-header .menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 0;
}
.body header.section .section-header .menu-actions {
  display: flex;
  gap: 12px;
}
.body header.section .section-header .menu-button {
  background: none;
  border: none;
  cursor: pointer;
  color: #E30613;
  padding: 0;
}
.body header.section .section-header .icon {
  width: 24px;
  height: 24px;
}
.body header.section .section-header .menu-links {
  margin-top: 24px;
}
.body header.section .section-header .menu-item {
  display: flex;
  width: 100%;
  padding: 8px 8px 8px 12px;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
  color: #332B78;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
}
.body header.section .section-header .menu-item:not(:first-child) {
  margin-top: 16px;
}
.body header.section .section-header .submenu {
  margin-left: 20px;
  display: none;
}
.body header.section .section-header .submenu-item {
  display: block;
  padding: 8px;
  color: #332B78;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
}
.body .notice-alert-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: var(--RED-Rouge---600, #F50D1A);
  color: #FFFFFF;
  font-family: Roboto B, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.body .notice-alert-header p {
  padding: 0px 16px;
  font-size: 16px;
}
.body .notice-alert-header-title {
  font-weight: 800;
}
.body .notice-alert-header a {
  color: #FFFFFF;
  text-decoration: underline;
}
.body .notice-alert-header a :hover {
  text-decoration: none;
}

@media (min-width: 1200px) {
  .body header.section .section-header .logo a > img.desktop {
    display: flex;
  }
  .body header.section .section-header .logo a > img.mobile {
    display: none;
  }
  .body header.section .section-header .dropdown nav {
    background-color: white;
    padding: 24px 16px;
  }
  .body header.section .section-header .dropdown ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .body header.section .section-header .dropdown ul li {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    /* Sous-menu (menu caché) */
    /* Affiche le sous-menu lors du survol du parent */
  }
  .body header.section .section-header .dropdown ul li a {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .body header.section .section-header .dropdown ul li a svg {
    width: 24px;
    height: 24px;
  }
  .body header.section .section-header .dropdown ul li .sous {
    display: none;
    position: absolute;
    margin-left: 20px;
    font-weight: 400;
  }
  .body header.section .section-header .dropdown ul li .sous li {
    margin: 8px;
    display: block;
  }
  .body header.section .section-header .dropdown ul li:hover .sous {
    display: block;
  }
  .body header.section .section-header .navbar {
    gap: 32px;
  }
  .body header.section .section-header .navbar .navbar-links {
    display: flex;
  }
  .body header.section .section-header .navbar .navbar-links div.btn:hover > .submenu {
    display: flex;
  }
  .body header.section .section-header .navbar .navbar-links div.btn > .submenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    font-weight: 400;
    border: solid red;
    margin-block-start: 0;
    margin-block-end: 0;
  }
  .body header.section .section-header .navbar .navbar-links div.btn > .submenu li {
    display: block;
  }
  .body header.section .section-header .navbar .navbar-right .menu.menu-globe {
    display: flex;
  }
  .body header.section .section-header .navbar .navbar-right .menu.menu-globe .dropdown-content {
    top: 70px;
  }
  .body header.section .section-header .navbar .navbar-right .menu.menu-burger {
    display: none;
  }
}
.mobile-only {
  display: none; /* Caché par défaut */
}

@media screen and (max-width: 768px) {
  .mobile-only {
    display: block; /* Visible sur mobile */
  }
}
.desktop-only {
  display: block; /* Visible par défaut */
}

@media screen and (max-width: 768px) {
  .desktop-only {
    display: none; /* Caché sur mobile */
  }
}
:root {
  /* Déclaration de variables pour les couleurs */
  --primary-color: #F50D1A;
  --secondary-color: #332B78;
  --tertiary-color: var(--secondary-color);
  --qcm-color: var(--secondary-color);
  --primary-small-color: #3F30A3;
  --white-color: #FFF;
  --Gris-bg: #F6F6F6;
  --Gris-border: #DBDBDB;
  --gris-label: #757575;
  --Green-light: #DCFEBE;
  --Green: #006102;
  --ORANGE-Orange---50: #FFFAEA;
  --ORANGE-Orange---100: #FFF2C5;
  --ORANGE-Orange---200: #FFE586;
  --ORANGE-Orange---300: #FFD246;
  --ORANGE-Orange---400: #FFBC1C;
  --orange-orange-500-adh: #F39201;
  --ORANGE-Orange---600: #E17100;
  --ORANGE-Orange---700: #BB4D02;
  --ORANGE-Orange---800: #973B09;
  --ORANGE-Orange---900: #7C310B;
  --ORANGE-Orange---950: #481700;
  --RED-Rouge---50: #FFF0F1;
  --RED-Rouge---100: #FFDEE0;
  --RED-Rouge---200: #FFC3C6;
  --RED-Rouge---300: #FF999F;
  --RED-Rouge---400: #FF5E67;
  --RED-Rouge---500: #FF2C38;
  --RED-Rouge---600: #F50D1A;
  --red-rouge-700-adh: #E30613;
  --RED-Rouge---800: #AA0A13;
  --RED-Rouge---900: #8D0F16;
  --RED-Rouge---950: #4D0206;
  --BLUE-Blue---50: #EEF1FF;
  --BLUE-Blue---100: #E0E5FF;
  --BLUE-Blue---200: #C7CEFE;
  --BLUE-Blue---300: #A5AEFC;
  --Blue---400: #8184F8;
  --BLUE-Blue---500: #6A63F1;
  --BLUE-Blue---600: #5A46E5;
  --BLUE-Blue---700: #4D38CA;
  --BLUE-Blue---800: #3F30A3;
  --ADH-Primary-blue: #332B78;
  --blue-blue-900-adh: #332B78;
  --BLUE-Blue---950: #211B4B;
  font-family: Roboto B, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-feature-settings: "calt" off;
  color: var(--ADH-Primary-blue);
}

.body {
  /* public/styles/app.css */
}
.body .wrap-container {
  width: 100%;
  max-width: 1440px;
  padding: 24px 72px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container {
    padding: 32px 24px;
  }
}
.body .wrap-container-xl {
  width: 100%;
  max-width: 1440px;
  padding: 80px 72px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container-xl {
    padding: 48px 24px;
  }
}
.body .wrap-container-xxl {
  width: 100%;
  max-width: 1440px;
  padding: 80px 182px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container-xxl {
    padding: 48px 24px;
  }
}
.body .success-message {
  color: #28a745; /* Vert pour les succès */
  background-color: #d4edda;
  padding: 10px;
}
.body .error-message {
  color: #dc3545; /* Rouge pour les erreurs */
  background-color: #f8d7da;
  padding: 10px;
}
.body span.mandatory {
  color: var(--red-rouge-700-adh);
}
.body .help-text {
  font-size: 14px;
  margin-top: 14px;
}
.body .underline {
  text-decoration: underline;
}
.body .background-grey {
  background-color: var(--Gris-bg);
}
.body .display-block {
  display: block;
}

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

.section-contact .title-center {
  padding-bottom: 16px !important;
}
.section-contact .title-center h2 {
  padding: 0 !important;
}

.form.form__errors {
  padding: 0;
  list-style: none;
}

input[type=checkbox] {
  border-radius: 2px;
  width: 22px;
  height: 22px;
  border: solid var(--BLUE-Blue---800) 1px;
}

.custom-form label {
  margin-bottom: 3px;
}
.custom-form input {
  font-size: 19px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid;
}
.custom-form input[type=radio] {
  display: none;
}

.help-page .custom-column {
  margin: 0 auto;
}
.help-page .custom-column .progress-bar {
  margin-top: 50px;
}
.help-page .custom-column.panel-section {
  display: flex;
  min-height: 400px;
  padding: 40px 0;
}
.help-page .custom-column.panel-section .help-aside__panel {
  flex: 1;
  padding: 40px;
  background-color: rgba(238, 241, 255, 0.25);
  border-radius: 16px;
  align-content: center;
}
.help-page .custom-column.panel-section .help-aside__panel h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.help-page .custom-column.panel-section .help-aside__panel h4 {
  font-weight: bold;
  margin: 20px 0;
  font-size: 26px;
}
.help-page .custom-column.panel-section .help-aside__panel input {
  background-color: rgba(238, 241, 255, 0.25);
}
.help-page .custom-column.panel-section .help-aside__right {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 400px;
  background-image: url("../icons/bulb-7eb8fa614e169a9602dd73cd4084b14a.svg");
  background-repeat: no-repeat;
  background-position: top right;
}
.help-page .custom-column.panel-section .help-aside__right h4 {
  font-size: 20px;
  font-weight: bold;
}
.help-page .custom-column.panel-section .help-aside__right p {
  margin-top: 10px;
}
.help-page .custom-column.panel-section .help-aside__right ul {
  margin-block-start: 0;
  width: 90%;
}
.help-page .custom-column.panel-section .help-aside__right.claim-infos p {
  margin: 5px 0;
}

@media screen and (max-width: 1200px) {
  .help-page .custom-column {
    max-width: 100vw;
  }
  .help-page .custom-column .progress-bar {
    margin: 20px auto 20px;
    width: 90%;
  }
  .help-page .custom-column.panel-section {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .help-page .custom-column.panel-section .help-aside__panel {
    padding: 20px;
  }
  .help-page .custom-column.panel-section .help-aside__panel h2 {
    font-size: 24px;
  }
  .help-page .custom-column.panel-section .help-aside__right {
    width: 100%;
    background-position: 95% 5px;
  }
  .help-page .custom-column.panel-section .help-aside__right p {
    width: 90% !important;
  }
}
.offer-item {
  display: flex;
  color: var(--BLUE-Blue---800);
  background-color: rgba(255, 242, 197, 0.7);
  background-image: url("../images/offer-mask-79955d5391a47055e240df5df9a1c6ec.png");
  background-size: 100%;
  align-items: center;
}
.offer-item.is_desktop {
  margin-top: 36px !important;
  padding: 24px 50px;
  border-radius: 100px 16px 16px 100px;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.offer-item.is_desktop aside img {
  width: 45px;
  margin: 0 auto;
  display: block;
}
.offer-item.is_desktop aside h5 {
  margin: 0 !important;
  margin-bottom: 4px !important;
}
.offer-item.is_desktop aside p {
  margin: 0;
  font-size: 19px;
}
.offer-item.is_mobile {
  width: 100% !important;
  margin-top: 88px !important;
  border-radius: 16px !important;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-sizing: border-box;
}
.offer-item.is_mobile .upper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.offer-item.is_mobile .upper aside {
  text-align: center;
}
.offer-item.is_mobile .upper aside h5 {
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%; /* 26px */
  letter-spacing: -0.2px;
  margin: 0;
}
.offer-item.is_mobile .upper aside p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
  margin-top: 4px;
  margin-bottom: 0;
}
.offer-item.is_mobile .upper aside a {
  margin-top: 16px !important;
}
.offer-item.is_mobile a {
  width: 100%;
}

.rounded-right {
  border-radius: 16px 100px 100px 16px !important;
}

@media screen and (max-width: 1200px) {
  .offer-item.is_mobile {
    display: flex !important;
  }
  .offer-item.is_desktop {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .offer-item.is_mobile {
    display: none;
  }
  .offer-item.is_desktop {
    display: flex;
  }
}
.opinion-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.opinion-item aside {
  margin-right: 10px;
  font-weight: bold;
}
.opinion-item aside span:nth-child(1) {
  font-size: 40px;
  color: #332B78;
}
.opinion-item aside span:nth-child(2) {
  font-size: 25px;
  color: #5a45e5;
}
.opinion-item img {
  height: 40px;
  width: auto !important;
}

.panel-item {
  border: 1px solid;
  border-radius: 8px;
  color: var(--ADH-Primary-blue);
  border-color: rgb(165, 174, 252);
  margin-bottom: 24px;
  margin-top: 24px;
}
.panel-item .panel-item__description {
  padding-top: 10px;
  padding: 4px 20px 16px 20px;
  width: 100%;
}
.panel-item .panel-item__description summary {
  padding: 0px !important;
}
.panel-item .panel-item__description-summary {
  display: none !important;
}
.panel-item .panel-item__description-content {
  display: flex;
  width: 100%;
  padding: 30px;
}
.panel-item .panel-item__description-content-title {
  text-align: left;
  width: 50%;
  font-weight: bold;
}
.panel-item .panel-item__description-content-values {
  display: flex;
  width: 50%;
}
.panel-item .panel-item__description-content-values-value {
  flex: 1;
  text-align: left;
}
.panel-item .panel-item__description-content-values-value aside {
  font-weight: 400 !important;
}
.panel-item .panel-item__description-content-values-value:nth-child(1) {
  width: 100%;
}
.panel-item .panel-item__description-content-values-value:nth-child(2) {
  width: 50%;
}
.panel-item .panel-item__description-content-values-value:nth-child(3) {
  width: 33.33%;
}
.panel-item .panel-item__description-content-values-value:nth-child(4) {
  width: 20%;
}
.panel-item details {
  color: rgb(33, 27, 75);
}
.panel-item details summary {
  padding: 16px 20px;
  color: rgb(51, 43, 120);
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}
.panel-item details summary:hover {
  cursor: pointer;
}
.panel-item .summary-content {
  display: flex;
  width: 100%;
}
.panel-item .summary-content-title {
  text-align: left;
  width: 50%;
}
.panel-item .summary-content-columns {
  display: flex;
  width: 50%;
}
.panel-item .summary-content-columns-value {
  flex: 1;
  text-align: left;
}
.panel-item .summary-content-columns-value:nth-child(1) {
  width: 100%;
}
.panel-item .summary-content-columns-value:nth-child(2) {
  width: 50%;
}
.panel-item .summary-content-columns-value:nth-child(3) {
  width: 33.33%;
}
.panel-item .summary-content-columns-value:nth-child(4) {
  width: 20%;
}

summary {
  list-style-type: none; /* Firefox */
}

summary::-webkit-details-marker {
  display: none; /* Chrome */
}

@media screen and (max-width: 768px) {
  .panel-item {
    overflow-x: scroll;
  }
  .panel-item details.fixed-box {
    width: 100%;
    overflow-x: hidden;
  }
  .panel-item details.fixed-box summary-content-title {
    width: 40%;
  }
  .panel-item details.scrollable-box {
    min-width: 768px;
  }
  .panel-item details.scrollable-box summary {
    min-width: 768px;
  }
  .panel-item details.scrollable-box summary-content-title {
    width: 40%;
  }
  .panel-item .panel-item__description-content-title {
    width: 45%;
  }
  .panel-item .summary-content-title {
    width: 45%;
  }
}
:root {
  /* Déclaration de variables pour les couleurs */
  --primary-color: #F50D1A;
  --secondary-color: #332B78;
  --tertiary-color: var(--secondary-color);
  --qcm-color: var(--secondary-color);
  --primary-small-color: #3F30A3;
  --white-color: #FFF;
  --Gris-bg: #F6F6F6;
  --Gris-border: #DBDBDB;
  --gris-label: #757575;
  --Green-light: #DCFEBE;
  --Green: #006102;
  --ORANGE-Orange---50: #FFFAEA;
  --ORANGE-Orange---100: #FFF2C5;
  --ORANGE-Orange---200: #FFE586;
  --ORANGE-Orange---300: #FFD246;
  --ORANGE-Orange---400: #FFBC1C;
  --orange-orange-500-adh: #F39201;
  --ORANGE-Orange---600: #E17100;
  --ORANGE-Orange---700: #BB4D02;
  --ORANGE-Orange---800: #973B09;
  --ORANGE-Orange---900: #7C310B;
  --ORANGE-Orange---950: #481700;
  --RED-Rouge---50: #FFF0F1;
  --RED-Rouge---100: #FFDEE0;
  --RED-Rouge---200: #FFC3C6;
  --RED-Rouge---300: #FF999F;
  --RED-Rouge---400: #FF5E67;
  --RED-Rouge---500: #FF2C38;
  --RED-Rouge---600: #F50D1A;
  --red-rouge-700-adh: #E30613;
  --RED-Rouge---800: #AA0A13;
  --RED-Rouge---900: #8D0F16;
  --RED-Rouge---950: #4D0206;
  --BLUE-Blue---50: #EEF1FF;
  --BLUE-Blue---100: #E0E5FF;
  --BLUE-Blue---200: #C7CEFE;
  --BLUE-Blue---300: #A5AEFC;
  --Blue---400: #8184F8;
  --BLUE-Blue---500: #6A63F1;
  --BLUE-Blue---600: #5A46E5;
  --BLUE-Blue---700: #4D38CA;
  --BLUE-Blue---800: #3F30A3;
  --ADH-Primary-blue: #332B78;
  --blue-blue-900-adh: #332B78;
  --BLUE-Blue---950: #211B4B;
  font-family: Roboto B, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-feature-settings: "calt" off;
  color: var(--ADH-Primary-blue);
}

.body {
  /* public/styles/app.css */
}
.body .wrap-container {
  width: 100%;
  max-width: 1440px;
  padding: 24px 72px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container {
    padding: 32px 24px;
  }
}
.body .wrap-container-xl {
  width: 100%;
  max-width: 1440px;
  padding: 80px 72px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container-xl {
    padding: 48px 24px;
  }
}
.body .wrap-container-xxl {
  width: 100%;
  max-width: 1440px;
  padding: 80px 182px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container-xxl {
    padding: 48px 24px;
  }
}
.body .success-message {
  color: #28a745; /* Vert pour les succès */
  background-color: #d4edda;
  padding: 10px;
}
.body .error-message {
  color: #dc3545; /* Rouge pour les erreurs */
  background-color: #f8d7da;
  padding: 10px;
}
.body span.mandatory {
  color: var(--red-rouge-700-adh);
}
.body .help-text {
  font-size: 14px;
  margin-top: 14px;
}
.body .underline {
  text-decoration: underline;
}
.body .background-grey {
  background-color: var(--Gris-bg);
}
.body .display-block {
  display: block;
}

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

.section-contact .title-center {
  padding-bottom: 16px !important;
}
.section-contact .title-center h2 {
  padding: 0 !important;
}

.form.form__errors {
  padding: 0;
  list-style: none;
}

input[type=checkbox] {
  border-radius: 2px;
  width: 22px;
  height: 22px;
  border: solid var(--BLUE-Blue---800) 1px;
}

.progress-bar {
  position: relative;
  background-color: lightgrey;
  border-radius: 16px;
  width: 100%;
  height: 10px;
  overflow: hidden;
}
.progress-bar .progress-bar__filled {
  position: absolute;
  border-radius: 16px;
  background-color: orange;
  height: 10px;
}

body {
  all: unset;
}
body .promo {
  width: 327px;
}
@media (min-width: 1200px) {
  body .promo {
    width: fit-content;
    background-color: var(--ORANGE-Orange---50);
    border: solid red 1px;
  }
  body .promo .info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 24px 16px;
  }
}

:root {
  /* Déclaration de variables pour les couleurs */
  --primary-color: #F50D1A;
  --secondary-color: #332B78;
  --tertiary-color: var(--secondary-color);
  --qcm-color: var(--secondary-color);
  --primary-small-color: #3F30A3;
  --white-color: #FFF;
  --Gris-bg: #F6F6F6;
  --Gris-border: #DBDBDB;
  --gris-label: #757575;
  --Green-light: #DCFEBE;
  --Green: #006102;
  --ORANGE-Orange---50: #FFFAEA;
  --ORANGE-Orange---100: #FFF2C5;
  --ORANGE-Orange---200: #FFE586;
  --ORANGE-Orange---300: #FFD246;
  --ORANGE-Orange---400: #FFBC1C;
  --orange-orange-500-adh: #F39201;
  --ORANGE-Orange---600: #E17100;
  --ORANGE-Orange---700: #BB4D02;
  --ORANGE-Orange---800: #973B09;
  --ORANGE-Orange---900: #7C310B;
  --ORANGE-Orange---950: #481700;
  --RED-Rouge---50: #FFF0F1;
  --RED-Rouge---100: #FFDEE0;
  --RED-Rouge---200: #FFC3C6;
  --RED-Rouge---300: #FF999F;
  --RED-Rouge---400: #FF5E67;
  --RED-Rouge---500: #FF2C38;
  --RED-Rouge---600: #F50D1A;
  --red-rouge-700-adh: #E30613;
  --RED-Rouge---800: #AA0A13;
  --RED-Rouge---900: #8D0F16;
  --RED-Rouge---950: #4D0206;
  --BLUE-Blue---50: #EEF1FF;
  --BLUE-Blue---100: #E0E5FF;
  --BLUE-Blue---200: #C7CEFE;
  --BLUE-Blue---300: #A5AEFC;
  --Blue---400: #8184F8;
  --BLUE-Blue---500: #6A63F1;
  --BLUE-Blue---600: #5A46E5;
  --BLUE-Blue---700: #4D38CA;
  --BLUE-Blue---800: #3F30A3;
  --ADH-Primary-blue: #332B78;
  --blue-blue-900-adh: #332B78;
  --BLUE-Blue---950: #211B4B;
  font-family: Roboto B, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-feature-settings: "calt" off;
  color: var(--ADH-Primary-blue);
}

.body {
  /* public/styles/app.css */
}
.body .wrap-container {
  width: 100%;
  max-width: 1440px;
  padding: 24px 72px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container {
    padding: 32px 24px;
  }
}
.body .wrap-container-xl {
  width: 100%;
  max-width: 1440px;
  padding: 80px 72px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container-xl {
    padding: 48px 24px;
  }
}
.body .wrap-container-xxl {
  width: 100%;
  max-width: 1440px;
  padding: 80px 182px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container-xxl {
    padding: 48px 24px;
  }
}
.body .success-message {
  color: #28a745; /* Vert pour les succès */
  background-color: #d4edda;
  padding: 10px;
}
.body .error-message {
  color: #dc3545; /* Rouge pour les erreurs */
  background-color: #f8d7da;
  padding: 10px;
}
.body span.mandatory {
  color: var(--red-rouge-700-adh);
}
.body .help-text {
  font-size: 14px;
  margin-top: 14px;
}
.body .underline {
  text-decoration: underline;
}
.body .background-grey {
  background-color: var(--Gris-bg);
}
.body .display-block {
  display: block;
}

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

.section-contact .title-center {
  padding-bottom: 16px !important;
}
.section-contact .title-center h2 {
  padding: 0 !important;
}

.form.form__errors {
  padding: 0;
  list-style: none;
}

input[type=checkbox] {
  border-radius: 2px;
  width: 22px;
  height: 22px;
  border: solid var(--BLUE-Blue---800) 1px;
}

.besoin-item {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  background-color: #f6f6f6;
  align-items: center;
  gap: 20px;
}

.recommend-page .custom-column {
  text-align: center;
  padding: 0px 0 50px;
}
.recommend-page .custom-column:nth-child(1) {
  max-width: 100%;
  background-color: #FFFAEA;
}
.recommend-page .custom-column .recommend-page__offer-section {
  max-width: 1200px;
  margin: 0 auto;
}
.recommend-page .custom-column .recommend-page__offer-section > h1 {
  text-align: left;
  margin: 10px 0;
  margin-bottom: 20px;
  text-align: left;
  font-size: 32px;
}
.recommend-page .custom-column .recommend-page__offer-section > h1 span {
  font-size: 20px;
  margin-left: 10px;
}
.recommend-page .custom-column .recommend-page__offer-section .offer-wrap {
  display: flex;
  gap: 20px;
}
.recommend-page .custom-column .recommend-page__offer-section .offer-wrap .offer-card {
  position: relative;
  border: 1px solid #E17100;
  border-radius: 10px;
  padding: 20px 0;
  background-color: white;
  margin-bottom: 20px;
}
.recommend-page .custom-column .recommend-page__offer-section .offer-wrap .offer-card .offer-card__elem {
  display: block;
  position: absolute;
  background-color: #E17100;
  border-radius: 50px;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  top: 0;
  width: fit-content;
  margin: -23px auto 0 auto;
}
.recommend-page .custom-column .recommend-page__offer-section .offer-wrap .offer-card .offer-card__elem img {
  position: absolute;
  top: -5px;
  right: -25px;
}
.recommend-page .custom-column .recommend-page__offer-section .offer-wrap .offer-card .offer-card__from {
  margin-bottom: 20px;
}
.recommend-page .custom-column .recommend-page__offer-section .offer-wrap .offer-card .offer-card__from span:last-child {
  color: #E17100;
  font-size: 25px;
  font-weight: bold;
}
.recommend-page .custom-column .recommend-page__offer-section .offer-wrap .offer-card .offer-card__list .offer-card__feature {
  display: flex;
  align-items: center;
  text-align: left;
  background-repeat: no-repeat;
  padding-left: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.recommend-page .custom-column .recommend-page__offer-section .offer-wrap .offer-card .offer-card__list .offer-card__feature.check {
  color: rgb(51, 43, 120);
}
.recommend-page .custom-column .recommend-page__offer-section .offer-wrap .offer-card .offer-card__list .offer-card__feature.uncheck {
  color: rgba(128, 128, 128, 0.53);
}
.recommend-page .custom-column .recommend-page__offer-section .offer-wrap .offer-card .offer-card__list .offer-card__feature i {
  margin-right: 10px;
}
.recommend-page .custom-column .recommend-page__offer-section .offer-wrap .offer-card a:last-child {
  margin: 30px auto 10px auto;
  width: fit-content;
}
.recommend-page .custom-column .recommend-page__offer-section a:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 0;
}
.recommend-page .custom-column .recommend-page__offer-section a:last-child img {
  margin-right: 10px;
}
.recommend-page .custom-column .recommend-page__warranty-section h1 {
  margin-bottom: 30px;
  font-size: 32px;
}
.recommend-page .custom-column .recommend-page__warranty-section .panel-item {
  margin-bottom: 20px;
  background-color: #332B78;
}
.recommend-page .custom-column .recommend-page__warranty-section .panel-item summary {
  color: white;
}
.recommend-page .custom-column .recommend-page__warranty-section .panel-item .panel-item__description {
  background-color: white;
  padding: 0;
}
.recommend-page .custom-column .recommend-page__warranty-section .panel-item .panel-item__description .row {
  display: flex;
  align-items: center;
  padding: 30px;
}
.recommend-page .custom-column .recommend-page__warranty-section .panel-item .panel-item__description .row:nth-child(2n) {
  background: rgba(238, 241, 255, 0.5);
}
.recommend-page .custom-column .recommend-page__warranty-section .panel-item .panel-item__description .row aside {
  text-align: left;
}
.recommend-page .custom-column .recommend-page__warranty-section .panel-item .panel-item__description .row aside:first-child {
  width: 30%;
  font-weight: bold;
}
.recommend-page .custom-column .recommend-page__warranty-section .panel-item .panel-item__description .row aside:last-child {
  width: 70%;
}
.recommend-page .custom-column .recommend-page__question-section h1 {
  margin-bottom: 30px;
  font-size: 32px;
}
.recommend-page .custom-column .recommend-page__question-section a:last-child {
  margin-top: 50px;
}
.recommend-page .custom-column .recommend-page__question-section .panel-item {
  margin-bottom: 20px;
}
.recommend-page .custom-column .recommend-page__question-section .panel-item .panel-item__description {
  background-color: white;
  padding: 0;
}
.recommend-page .custom-column .recommend-page__question-section .panel-item .panel-item__description .row {
  display: flex;
  align-items: center;
  padding: 30px;
}
.recommend-page .custom-column .recommend-page__question-section .panel-item .panel-item__description .row:nth-child(2n+1) {
  background: rgba(238, 241, 255, 0.5);
}
.recommend-page .custom-column .recommend-page__question-section .panel-item .panel-item__description .row aside {
  text-align: left;
}
.recommend-page .custom-column .recommend-page__question-section .panel-item .panel-item__description .row aside:first-child {
  width: 30%;
  font-weight: bold;
}
.recommend-page .custom-column .recommend-page__question-section .panel-item .panel-item__description .row aside:last-child {
  width: 70%;
}
.recommend-page .formula-page .custom-column {
  background-color: #FFFFFF;
}
.recommend-page .column .wrap-container-xl {
  padding: 0px;
}
.recommend-page .column .wrap-container-xl h2.hp-block {
  font-size: 32px;
}

@media only screen and (max-width: 1200px) {
  .recommend-page .custom-column {
    margin-bottom: 0;
  }
  .recommend-page .custom-column h1 {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    text-align: center !important;
    margin: 0 !important;
  }
  .recommend-page .custom-column .owl-stage-outer {
    padding-top: 30px;
  }
  .recommend-page .custom-column .recommend-page__offer-section .back-question {
    margin-top: 0 !important;
  }
  .recommend-page .custom-column .recommend-page__offer-section .offer-wrap {
    display: flex;
    overflow: scroll;
    padding: 20px;
  }
  .recommend-page .custom-column .recommend-page__offer-section .offer-wrap .offer-card {
    margin-top: 20px;
    width: 90vw;
  }
  .recommend-page .custom-column .recommend-page__warranty-section {
    padding: 0 20px;
  }
  .recommend-page .custom-column .recommend-page__warranty-section .title {
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;
    letter-spacing: -0.4px;
  }
  .recommend-page .custom-column .recommend-page__warranty-section h1 {
    margin-bottom: 20px !important;
  }
  .recommend-page .custom-column .recommend-page__warranty-section .panel-item {
    margin-bottom: 10px;
  }
  .recommend-page .custom-column .recommend-page__warranty-section .panel-item .panel-item__description .row {
    flex-direction: column;
    padding: 30px;
  }
  .recommend-page .custom-column .recommend-page__warranty-section .panel-item .panel-item__description .row aside {
    width: 100% !important;
  }
  .recommend-page .custom-column .recommend-page__question-section {
    padding: 0 20px;
  }
  .recommend-page .custom-column .recommend-page__question-section h1 {
    margin-bottom: 20px !important;
  }
  .recommend-page .custom-column .recommend-page__question-section .panel-item {
    margin-bottom: 10px;
  }
  .recommend-page .custom-column .recommend-page__question-section .panel-item .panel-item__description .row {
    flex-direction: column;
    padding: 30px;
  }
  .recommend-page .custom-column .recommend-page__question-section .panel-item .panel-item__description .row aside {
    width: 100% !important;
  }
}
body {
  all: unset;
}

h1, h2, h3, h4, h5 {
  margin: 0;
}

h1 {
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: 130%; /* 46.8px */
  letter-spacing: -0.36px;
  margin-block-start: 0;
  margin-block-end: 0;
}

h2 {
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 32px */
  letter-spacing: -0.32px;
}

h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.24px;
}
h3 span {
  color: var(--ORANGE-Orange---600);
  font-size: 32px;
  line-height: 130%;
  letter-spacing: -0.32px;
}

h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%; /* 26px */
  letter-spacing: -0.2px;
}

@media (min-width: 1200px) {
  h1 {
    font-size: 56px;
    letter-spacing: -0.56px;
    margin-block-start: 0;
    margin-block-end: 0;
  }
  h2 {
    font-size: 48px;
    line-height: 130%; /* 62.4px */
    letter-spacing: -1px;
    margin-block-start: 0;
    margin-block-end: 0;
  }
  h3 {
    font-size: 40px;
    letter-spacing: -0.4px;
    margin-block-start: 0;
    margin-block-end: 0;
  }
  h3 span {
    line-height: 130%;
  }
  h4 {
    /* Body M - regular - 16 */
    font-size: 32px;
    letter-spacing: -0.32px;
    font-weight: 200;
  }
  h4 span {
    color: var(--ORANGE-Orange---600, var(--ADH-Primary-blue, #E17100));
    font-feature-settings: "calt" off;
    /* H4 - extrabold - 32 */
    font-size: 34px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;
    letter-spacing: -0.32px;
  }
  h5 {
    font-size: 26px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%; /* 26px */
    letter-spacing: -0.2px;
    margin-block-start: 0;
    margin-block-end: 20px;
  }
  h5 span {
    color: var(--ORANGE-Orange---600, var(--ADH-Primary-blue, #E17100));
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;
    letter-spacing: -0.32px;
  }
}
.title-with-icon {
  display: flex;
  align-items: center;
}
.title-with-icon img {
  width: 48px;
}
.title-with-icon span {
  font-size: 26px;
  margin-left: 10px;
  font-weight: bold;
}

h2.hero-banner {
  font-size: 56px;
  font-style: normal;
  font-weight: 900;
  line-height: 72.8px;
  letter-spacing: -1%;
  margin-block-start: 0;
  margin-block-end: 0;
}
@media screen and (max-width: 768px) {
  h2.hero-banner {
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: 130%; /* 46.8px */
    letter-spacing: -0.36px;
  }
}

h3.hp-btn {
  font-size: 19px;
  font-weight: 700;
  line-height: 22.27px;
}

h2.hp-block {
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%; /* 62.4px */
  letter-spacing: -0.48px;
}
@media screen and (max-width: 768px) {
  h2.hp-block {
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%; /* 41.6px */
    letter-spacing: -0.32px;
  }
}

@media screen and (max-width: 768px) {
  h2.title-small {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%; /* 31.2px */
    letter-spacing: -0.24px;
  }
}

h2.hp-block-cropped {
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%; /* 52px */
  letter-spacing: -0.4px;
}

@media screen and (max-width: 768px) {
  h2.hp-block-cropped {
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 130%; /* 46.8px */
    letter-spacing: -0.36px;
  }
}
h4.hp-price,
h5.hp-price {
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 41.6px */
  letter-spacing: -0.26px;
}
h4.hp-price span,
h5.hp-price span {
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%;
  letter-spacing: -0.32px;
  color: var(--ORANGE-Orange---600);
}

main.section-login {
  margin-bottom: 120px;
}

.affiliate-logo {
  display: flex;
  max-width: 100%;
  margin-bottom: 10px;
}

main.user-account .wrap-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
main.user-account #page-menu {
  display: flex;
  flex-direction: row;
}
main.user-account #page-menu button {
  padding: 16px 32px;
  background-color: var(--white-color);
  color: var(--blue-blue-900-adh);
  text-decoration: none;
  font-weight: 900;
  font-size: 20px;
  border-top: solid var(--blue-blue-900-adh) 1px;
  border-bottom: solid var(--blue-blue-900-adh) 1px;
  width: auto;
  margin: 0;
}
main.user-account #page-menu button:hover {
  cursor: pointer;
}
main.user-account #page-menu button.active {
  color: var(--white-color);
  background-color: var(--blue-blue-900-adh);
}
main.user-account #page-menu button.start {
  border-left: solid var(--blue-blue-900-adh) 1px;
  border-right: none;
  border-radius: 8px 0 0 8px;
}
main.user-account #page-menu button.middle {
  border-right: none;
  border-left: none;
}
main.user-account #page-menu button.end {
  border-right: solid var(--blue-blue-900-adh) 1px;
  border-left: none;
  border-radius: 0 8px 8px 0;
}
main.user-account #page-menu button i {
  display: none;
}
main.user-account #logout {
  display: none;
  font-size: 20px;
  font-weight: 900;
}
main.user-account #logout a,
main.user-account #logout a:visited {
  color: var(--red-rouge-700-adh);
}
main.user-account .page-content .back-link-mobile {
  display: none;
}
main.user-account .page-content #user-contract,
main.user-account .page-content #user-claim,
main.user-account .page-content #user-profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
main.user-account .page-content #user-contract.no-display,
main.user-account .page-content #user-claim.no-display,
main.user-account .page-content #user-profile.no-display {
  display: none;
}
main.user-account .page-content .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
main.user-account .page-content .header .title {
  font-size: 20px;
  font-weight: bold;
}
main.user-account .page-content .header .title-with-icon img,
main.user-account .page-content .header .title-with-icon span {
  width: 20px;
}
main.user-account .page-content .header .title-with-icon span {
  font-size: 20px;
}
main.user-account .page-content .header .add-contract {
  margin-left: auto;
}
main.user-account .page-content .header .add-contract a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
}
main.user-account .page-content .header a {
  margin: auto 0;
}
main.user-account .page-content .content {
  width: 100%;
  border-radius: 16px;
  margin-top: 24px;
}
main.user-account .page-content .content .contracts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  padding: 24px 24px;
}
main.user-account .page-content .content .contracts .contract {
  background-color: var(--white-color);
  padding: 24px;
  border-radius: 16px;
  flex: 1 1 32%;
  max-width: 32%;
}
main.user-account .page-content .content .contracts .contract .title-status {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
main.user-account .page-content .content .contracts .contract .title-status .title-with-icon {
  padding-bottom: 0;
}
main.user-account .page-content .content .contracts .contract .title-status .title-with-icon img {
  width: 36px;
}
main.user-account .page-content .content .contracts .contract .title-status .title-with-icon span {
  font-size: 14px;
}
main.user-account .page-content .content .contracts .contract .contract-button {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main.user-account .page-content .content .contracts .contract .contract-button .btn-primary-small {
  background-color: var(--blue-blue-900-adh);
}
main.user-account .page-content .content .profile-section,
main.user-account .page-content .content .contract-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
main.user-account .page-content .content .profile-section div,
main.user-account .page-content .content .contract-section div {
  display: flex;
  flex-direction: column;
}
main.user-account .page-content .content .contract-section {
  margin-top: 20px;
}
main.user-account .page-content .content .section-start {
  align-items: flex-start;
}
main.user-account .page-content .content .section-end {
  align-items: flex-end;
}
main.user-account .page-content .content .section-start span.section-label,
main.user-account .page-content .content .section-end span.section-label {
  font-size: 14px;
}
main.user-account .page-content .content .section-start span.section-value,
main.user-account .page-content .content .section-end span.section-value {
  font-size: 19px;
  font-weight: 600;
}
main.user-account .page-content #user-profile .content {
  padding: 24px;
}
main.user-account .page-content #user-profile .identity-section .header {
  margin-bottom: 5px;
}
main.user-account .page-content #user-profile .identity-section .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: solid var(--BLUE-Blue---200) 1px;
  border-radius: 8px;
  padding: 24px;
}
main.user-account .page-content #user-profile .identity-section .content .section-start span.section-label,
main.user-account .page-content #user-profile .identity-section .content .section-end span.section-label {
  font-size: 19px;
}
main.user-account .page-content #user-profile .identity-section .content .section-start a,
main.user-account .page-content #user-profile .identity-section .content .section-start a:visited,
main.user-account .page-content #user-profile .identity-section .content .section-end a,
main.user-account .page-content #user-profile .identity-section .content .section-end a:visited {
  font-size: 19px;
  font-weight: 700;
  color: var(--blue-blue-900-adh);
}
main.user-account .page-content #user-profile .ellipse {
  font-size: 40px;
}
main.user-account .page-content #user-claim .help-page .custom-column {
  max-width: none;
}
main.user-account .page-content #user-claim .help-page .custom-column.panel-section {
  padding: 0;
  margin-bottom: 40px;
}
main.user-account .page-content #user-claim .help-page .custom-column.panel-section .help-aside__panel {
  display: flex;
  flex-direction: column;
  text-align: center;
  background-color: var(--Gris-bg);
}
main.user-account .page-content #user-claim .help-page .custom-column.panel-section .help-aside__panel .custom-form {
  margin: auto;
}
main.user-account .page-content #user-claim .help-page .custom-column.bordered-panel-section {
  display: flex;
  padding: 24px;
  border-radius: 8px;
  border: 0.5px solid #C7CEFE;
}
main.user-account .page-content #user-claim .help-page .custom-column.bordered-panel-section li {
  margin-bottom: 24px;
}
main.user-account .page-content #user-claim .help-page .custom-column.bordered-panel-section li:last-child {
  margin-bottom: 0;
}

main.user-form .column .wrap-container {
  max-width: 520px;
}
main.user-form .column .wrap-container .title-desktop {
  display: block;
}
main.user-form .column .wrap-container .title-mobile {
  display: none;
}
main.user-form .column .wrap-container form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
main.user-form .column .wrap-container form .column {
  padding: 0;
}
main.user-form .column .wrap-container form #user_registration_step_one_email,
main.user-form .column .wrap-container form #user_registration_step_one_password {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
main.user-form .column .wrap-container form #user_registration_step_one_email div:first-child,
main.user-form .column .wrap-container form #user_registration_step_one_password div:first-child {
  display: flex;
  flex-direction: column;
}
main.user-form .column .wrap-container form #user_registration_step_one_email div:first-child label,
main.user-form .column .wrap-container form #user_registration_step_one_password div:first-child label {
  order: 1;
}
main.user-form .column .wrap-container form #user_registration_step_one_email div:first-child input,
main.user-form .column .wrap-container form #user_registration_step_one_password div:first-child input {
  order: 2;
}
main.user-form .column .wrap-container form #user_registration_step_one_email div:first-child ul,
main.user-form .column .wrap-container form #user_registration_step_one_password div:first-child ul {
  order: 3;
  list-style-type: none;
  margin-block-start: 5px;
  margin-block-end: 5px;
  padding-inline-start: 0;
  padding-inline-end: 0;
  font-size: 14px;
}
main.user-form .column .wrap-container form .semi-column-select,
main.user-form .column .wrap-container form .semi-column {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
main.user-form .column .wrap-container form .semi-column-select div,
main.user-form .column .wrap-container form .semi-column div {
  width: 252px;
}
main.user-form .column .wrap-container form .semi-column-select {
  gap: 15px;
}
main.user-form .column .wrap-container form .semi-column-select select {
  width: inherit;
}
main.user-form .column .wrap-container form label {
  font-size: 16px;
  font-weight: bold;
}
main.user-form .column .wrap-container form label.required:after {
  content: "*";
  color: rgb(225, 113, 0);
  margin-left: 2px;
}
main.user-form .column .wrap-container form label.btn.btn-secondary {
  padding: 10px 12px;
  border: solid 1px;
  font-weight: 400;
}
main.user-form .column .wrap-container form label.btn.btn-secondary.active {
  background-color: var(--BLUE-Blue---50);
}
main.user-form .column .wrap-container form label.btn.btn-secondary:after {
  content: none;
  color: transparent;
  margin-left: 0;
}
main.user-form .column .wrap-container form label.btn.btn-secondary input {
  margin: 0;
}
main.user-form .column .wrap-container form .user_registration_step_one_send_commercial_offer label:after {
  content: none;
}
main.user-form .column .wrap-container form input[type=radio] {
  appearance: none;
}
main.user-form .column .wrap-container form select,
main.user-form .column .wrap-container form textarea,
main.user-form .column .wrap-container form input[type=email],
main.user-form .column .wrap-container form input[type=tel],
main.user-form .column .wrap-container form input[type=password],
main.user-form .column .wrap-container form input[type=date],
main.user-form .column .wrap-container form input[type=text] {
  width: 100%;
  border-radius: 8px;
  border: var(--blue-blue-900-adh) solid 1px;
  padding: 14px 12px;
  font-size: 19px;
  font-weight: 400;
  color: var(--ADH-Primary-blue);
}
main.user-form .column .wrap-container form select:focus,
main.user-form .column .wrap-container form textarea:focus,
main.user-form .column .wrap-container form input[type=email]:focus,
main.user-form .column .wrap-container form input[type=tel]:focus,
main.user-form .column .wrap-container form input[type=password]:focus,
main.user-form .column .wrap-container form input[type=date]:focus,
main.user-form .column .wrap-container form input[type=text]:focus {
  background-color: var(--BLUE-Blue---50);
  border: var(--blue-blue-900-adh) solid 1px;
  box-shadow: 0 0 0 2px #FFF, 0 0 0 4px var(--BLUE-Blue---600);
}
main.user-form .column .wrap-container form input[type=date] {
  font-family: Roboto B, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-feature-settings: "calt" off;
  font-size: 19px;
}
main.user-form .column .wrap-container form select {
  background-color: #FFFFFF;
}
main.user-form .column .wrap-container form .user_registration_step_one_send_commercial_offer,
main.user-form .column .wrap-container form .user_registration_step_one_allow_collect_data {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
}
main.user-form .column .wrap-container form .user_registration_step_one_send_commercial_offer input[type=checkbox],
main.user-form .column .wrap-container form .user_registration_step_one_allow_collect_data input[type=checkbox] {
  border-radius: 2px;
  width: 22px;
  height: 22px;
  border: solid var(--BLUE-Blue---800) 1px;
}
main.user-form .column .wrap-container form .user_registration_step_one_send_commercial_offer a,
main.user-form .column .wrap-container form .user_registration_step_one_allow_collect_data a {
  text-decoration: none;
}
main.user-form .column .wrap-container form .user_registration_step_one_send_commercial_offer a,
main.user-form .column .wrap-container form .user_registration_step_one_allow_collect_data a,
main.user-form .column .wrap-container form .user_registration_step_one_privacy_policy a {
  text-decoration: underline;
  color: var(--ADH-Primary-blue);
}
main.user-form .column .wrap-container form .user_registration_step_one_send_commercial_offer a:hover,
main.user-form .column .wrap-container form .user_registration_step_one_allow_collect_data a:hover,
main.user-form .column .wrap-container form .user_registration_step_one_privacy_policy a:hover {
  text-decoration: underline;
}
main.user-form .column .wrap-container form #user_registration_step_two_phone {
  width: 100%;
}
main.user-form .column .wrap-container form .user_login_submit,
main.user-form .column .wrap-container form .user_registration_submit {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
main.user-form .column .wrap-container form .user_login_submit .btn.btn-primary,
main.user-form .column .wrap-container form .user_registration_submit .btn.btn-primary {
  width: 223px;
  padding: 10px 24px;
}
main.user-form .column .wrap-container form[name=claim] select {
  width: 100%;
}

main.user-password-request .custom-form form {
  max-width: 520px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main.user-password-request .custom-form form .column {
  width: 100%;
}
main.user-password-request .custom-form form input {
  width: 100%;
  border-radius: 8px;
  border: var(--blue-blue-900-adh) solid 1px;
  padding: 14px 12px;
  font-size: 19px;
  font-weight: 400;
  color: var(--ADH-Primary-blue);
}
main.user-password-request .custom-form form input:focus {
  background-color: var(--BLUE-Blue---50);
  border: var(--blue-blue-900-adh) solid 1px;
  box-shadow: 0 0 0 2px #FFF, 0 0 0 4px var(--BLUE-Blue---600);
}
main.user-password-request .custom-form form button {
  margin: 0;
}

@media screen and (max-width: 1200px) {
  main.user-account #title.no-display {
    display: none;
  }
  main.user-account #page-menu {
    flex-direction: column;
  }
  main.user-account #page-menu.no-display {
    display: none;
  }
  main.user-account #page-menu button {
    display: flex;
    justify-content: space-between;
  }
  main.user-account #page-menu button.active {
    color: var(--blue-blue-900-adh);
    background-color: var(--white-color);
  }
  main.user-account #page-menu button.end, main.user-account #page-menu button.middle, main.user-account #page-menu button.start {
    border: none;
    border-bottom: solid var(--Gris-border) 1px;
    border-radius: 0 0 0 0;
    padding: 20px 0;
  }
  main.user-account #page-menu button i {
    display: flex;
  }
  main.user-account #logout {
    display: block;
  }
  main.user-account #logout.no-display {
    display: none;
  }
  main.user-account .page-content {
    max-width: 100%;
  }
  main.user-account .page-content #user-contract.first-display, main.user-account .page-content #user-contract.no-display,
  main.user-account .page-content #user-claim.first-display,
  main.user-account .page-content #user-claim.no-display,
  main.user-account .page-content #user-profile.first-display,
  main.user-account .page-content #user-profile.no-display {
    display: none;
  }
  main.user-account .page-content #user-profile .column.content {
    max-width: 90%;
  }
  main.user-account .page-content .back-link-mobile {
    display: block;
    padding: 4px 0;
  }
  main.user-account .page-content .back-link-mobile button {
    color: inherit;
    text-decoration: inherit;
    font-size: 20px;
    font-weight: 800;
    border: none;
    background-color: var(--white-color);
  }
  main.user-account .page-content .back-link-mobile button i {
    padding-right: 20px;
  }
  main.user-account .page-content .header {
    flex-direction: column-reverse;
  }
  main.user-account .page-content .header .add-contract {
    justify-content: center;
    margin-bottom: 30px;
  }
  main.user-account .page-content .header .title-with-icon {
    display: none;
  }
  main.user-account .page-content .header a {
    margin-top: 16px;
  }
  main.user-account .page-content .content {
    width: 100%;
  }
  main.user-account .page-content .content .contracts {
    display: flex;
    flex-direction: column;
    flex-wrap: unset;
    justify-content: unset;
  }
  main.user-account .page-content .content .contracts .contract {
    flex: none;
    max-width: none;
  }
  main.user-form .column .wrap-container .title-desktop {
    display: none;
  }
  main.user-form .column .wrap-container .title-mobile {
    display: block;
  }
  main.user-form .column .wrap-container form .semi-column-select,
  main.user-form .column .wrap-container form .semi-column {
    flex-direction: column;
    width: 100%;
  }
  main.user-form .column .wrap-container form .semi-column-select div,
  main.user-form .column .wrap-container form .semi-column div {
    width: 100%;
  }
  main.user-form .column .wrap-container form .semi-column-select {
    gap: 30px;
  }
  main.user-form .column .wrap-container form .user_login_submit {
    flex-direction: column-reverse;
  }
  main.user-form .column .wrap-container form .user_login_submit a,
  main.user-form .column .wrap-container form .user_login_submit .btn.btn-primary {
    width: 75%;
  }
  main.user-form .column .wrap-container form .user_registration_submit a {
    display: none;
  }
}
.input-group-append {
  position: relative;
}
.input-group-append button {
  font-size: 19px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border: none;
  background-color: transparent;
  color: var(--ADH-Primary-blue);
  height: min-content;
  margin: auto 10px auto auto;
}

.field-invalid .input-group-append input {
  background-image: none;
}

.valuation-item {
  background: #F6F6F6;
  padding: 20px;
  border-radius: 8px;
}
.valuation-item .valuation-item__top {
  text-align: center;
}
.valuation-item .valuation-item__bottom {
  display: flex;
}
.valuation-item .valuation-item__bottom .valuation-item__avatar {
  display: flex;
  flex-direction: column;
  min-width: 100px;
  align-items: center;
}
.valuation-item .valuation-item__bottom .valuation-item__avatar img {
  width: 68px;
  height: auto !important;
}
.valuation-item .valuation-item__bottom p {
  padding-left: 20px;
}
.valuation-item .fa-star.fa-solid {
  color: #F39201;
}
.valuation-item .fa-star.fa-regular {
  color: #F39201;
}

:root {
  /* Déclaration de variables pour les couleurs */
  --primary-color: #F50D1A;
  --secondary-color: #332B78;
  --tertiary-color: var(--secondary-color);
  --qcm-color: var(--secondary-color);
  --primary-small-color: #3F30A3;
  --white-color: #FFF;
  --Gris-bg: #F6F6F6;
  --Gris-border: #DBDBDB;
  --gris-label: #757575;
  --Green-light: #DCFEBE;
  --Green: #006102;
  --ORANGE-Orange---50: #FFFAEA;
  --ORANGE-Orange---100: #FFF2C5;
  --ORANGE-Orange---200: #FFE586;
  --ORANGE-Orange---300: #FFD246;
  --ORANGE-Orange---400: #FFBC1C;
  --orange-orange-500-adh: #F39201;
  --ORANGE-Orange---600: #E17100;
  --ORANGE-Orange---700: #BB4D02;
  --ORANGE-Orange---800: #973B09;
  --ORANGE-Orange---900: #7C310B;
  --ORANGE-Orange---950: #481700;
  --RED-Rouge---50: #FFF0F1;
  --RED-Rouge---100: #FFDEE0;
  --RED-Rouge---200: #FFC3C6;
  --RED-Rouge---300: #FF999F;
  --RED-Rouge---400: #FF5E67;
  --RED-Rouge---500: #FF2C38;
  --RED-Rouge---600: #F50D1A;
  --red-rouge-700-adh: #E30613;
  --RED-Rouge---800: #AA0A13;
  --RED-Rouge---900: #8D0F16;
  --RED-Rouge---950: #4D0206;
  --BLUE-Blue---50: #EEF1FF;
  --BLUE-Blue---100: #E0E5FF;
  --BLUE-Blue---200: #C7CEFE;
  --BLUE-Blue---300: #A5AEFC;
  --Blue---400: #8184F8;
  --BLUE-Blue---500: #6A63F1;
  --BLUE-Blue---600: #5A46E5;
  --BLUE-Blue---700: #4D38CA;
  --BLUE-Blue---800: #3F30A3;
  --ADH-Primary-blue: #332B78;
  --blue-blue-900-adh: #332B78;
  --BLUE-Blue---950: #211B4B;
  font-family: Roboto B, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-feature-settings: "calt" off;
  color: var(--ADH-Primary-blue);
}

.body {
  /* public/styles/app.css */
}
.body .wrap-container {
  width: 100%;
  max-width: 1440px;
  padding: 24px 72px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container {
    padding: 32px 24px;
  }
}
.body .wrap-container-xl {
  width: 100%;
  max-width: 1440px;
  padding: 80px 72px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container-xl {
    padding: 48px 24px;
  }
}
.body .wrap-container-xxl {
  width: 100%;
  max-width: 1440px;
  padding: 80px 182px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .body .wrap-container-xxl {
    padding: 48px 24px;
  }
}
.body .success-message {
  color: #28a745; /* Vert pour les succès */
  background-color: #d4edda;
  padding: 10px;
}
.body .error-message {
  color: #dc3545; /* Rouge pour les erreurs */
  background-color: #f8d7da;
  padding: 10px;
}
.body span.mandatory {
  color: var(--red-rouge-700-adh);
}
.body .help-text {
  font-size: 14px;
  margin-top: 14px;
}
.body .underline {
  text-decoration: underline;
}
.body .background-grey {
  background-color: var(--Gris-bg);
}
.body .display-block {
  display: block;
}

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

.section-contact .title-center {
  padding-bottom: 16px !important;
}
.section-contact .title-center h2 {
  padding: 0 !important;
}

.form.form__errors {
  padding: 0;
  list-style: none;
}

input[type=checkbox] {
  border-radius: 2px;
  width: 22px;
  height: 22px;
  border: solid var(--BLUE-Blue---800) 1px;
}

.besoin-item {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  background-color: #f6f6f6;
  align-items: center;
  gap: 20px;
}

.formula-page .custom-column {
  text-align: center;
}
.formula-page .custom-column .formula-page__offer-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.formula-page .custom-column .formula-page__offer-section > h1 {
  text-align: left;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%; /* 62.4px */
  letter-spacing: -0.48px;
}
.formula-page .custom-column .formula-page__offer-section > h1 span {
  font-size: 20px;
  margin-left: 10px;
}
.formula-page .custom-column .formula-page__offer-section > .content {
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.19px;
  color: #211B4B;
  padding: 0 80px;
}
.formula-page .custom-column .formula-page__offer-section .offer-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.formula-page .custom-column .formula-page__offer-section .offer-wrap .offer-card {
  display: flex;
  width: 410.667px;
  padding: 40px 24px;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  border: 1px solid var(--ORANGE-Orange---400, #FFBC1C);
  background: var(--White, #FFF);
}
.formula-page .custom-column .formula-page__offer-section .offer-wrap .offer-card .title {
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%;
  letter-spacing: -0.4px;
}
.formula-page .custom-column .formula-page__offer-section .offer-wrap .offer-card .offer-card__elem {
  display: block;
  position: absolute;
  background-color: #E17100;
  border-radius: 50px;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  top: 0;
  width: fit-content;
  margin: -23px auto 0 auto;
}
.formula-page .custom-column .formula-page__offer-section .offer-wrap .offer-card .offer-card__elem img {
  position: absolute;
  top: -5px;
  right: -25px;
}
.formula-page .custom-column .formula-page__offer-section .offer-wrap .offer-card .offer-card__from {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
  text-align: center;
}
.formula-page .custom-column .formula-page__offer-section .offer-wrap .offer-card .offer-card__from span:last-child {
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%;
  letter-spacing: -0.32px;
  color: #E17100;
}
.formula-page .custom-column .formula-page__offer-section .offer-wrap .offer-card .offer-card__list {
  margin-top: 24px;
}
.formula-page .custom-column .formula-page__offer-section .offer-wrap .offer-card .offer-card__list .offer-card__feature {
  display: flex;
  align-items: center;
  text-align: left;
  background-repeat: no-repeat;
  padding: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
}
.formula-page .custom-column .formula-page__offer-section .offer-wrap .offer-card .offer-card__list .offer-card__feature.check {
  color: rgb(51, 43, 120);
}
.formula-page .custom-column .formula-page__offer-section .offer-wrap .offer-card .offer-card__list .offer-card__feature.uncheck {
  color: rgba(128, 128, 128, 0.53);
}
.formula-page .custom-column .formula-page__offer-section .offer-wrap .offer-card .offer-card__list .offer-card__feature i {
  margin-right: 10px;
}
.formula-page .custom-column .formula-page__offer-section a:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 0;
}
.formula-page .custom-column .formula-page__offer-section a:last-child img {
  margin-right: 10px;
}
.formula-page .custom-column .formula-page__warranty-section .title {
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%;
  letter-spacing: -0.4px;
}
.formula-page .custom-column .formula-page__warranty-section h1 {
  margin-bottom: 30px;
  font-size: 32px;
}
.formula-page .custom-column .formula-page__warranty-section .panel-item {
  margin-bottom: 20px;
  background-color: #332B78;
}
.formula-page .custom-column .formula-page__warranty-section .panel-item summary {
  color: white;
}
.formula-page .custom-column .formula-page__warranty-section .panel-item .panel-item__description {
  background-color: white;
  padding: 0;
}
.formula-page .custom-column .formula-page__warranty-section .panel-item .panel-item__description .row {
  display: flex;
  align-items: center;
  padding: 30px;
}
.formula-page .custom-column .formula-page__warranty-section .panel-item .panel-item__description .row:nth-child(2n) {
  background: rgba(238, 241, 255, 0.5);
}
.formula-page .custom-column .formula-page__warranty-section .panel-item .panel-item__description .row aside {
  text-align: left;
}
.formula-page .custom-column .formula-page__warranty-section .panel-item .panel-item__description .row aside:first-child {
  width: 30%;
  font-weight: bold;
}
.formula-page .custom-column .formula-page__warranty-section .panel-item .panel-item__description .row aside:last-child {
  width: 70%;
}
.formula-page .custom-column .formula-page__question-section h1 {
  margin-bottom: 30px;
  font-size: 32px;
}
.formula-page .custom-column .formula-page__question-section a:last-child {
  margin-top: 50px;
}
.formula-page .custom-column .formula-page__question-section .panel-item {
  margin-bottom: 20px;
}
.formula-page .custom-column .formula-page__question-section .panel-item .panel-item__description {
  background-color: white;
  padding: 0;
}
.formula-page .custom-column .formula-page__question-section .panel-item .panel-item__description .row {
  display: flex;
  align-items: center;
  padding: 30px;
}
.formula-page .custom-column .formula-page__question-section .panel-item .panel-item__description .row:nth-child(2n+1) {
  background: rgba(238, 241, 255, 0.5);
}
.formula-page .custom-column .formula-page__question-section .panel-item .panel-item__description .row aside {
  text-align: left;
}
.formula-page .custom-column .formula-page__question-section .panel-item .panel-item__description .row aside:first-child {
  width: 30%;
  font-weight: bold;
}
.formula-page .custom-column .formula-page__question-section .panel-item .panel-item__description .row aside:last-child {
  width: 70%;
}
.formula-page .custom-column .formula-page__optional-guarantee-section {
  padding: 40px 24px;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  align-self: stretch;
  margin-top: 32px;
  border-radius: 16px;
  border: 1px solid #FFBC1C;
  background: #FFF;
}
.formula-page .custom-column .formula-page__optional-guarantee-section .card-header span {
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.24px;
  color: #332B78;
}
.formula-page .custom-column .formula-page__optional-guarantee-section .card-body {
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.19px;
  color: #211B4B;
  text-align: left;
}
.formula-page .custom-column .formula-page__optional-guarantee-section .card-body p {
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%; /* 33.8px */
  letter-spacing: -0.26px;
  color: #332B78;
  margin: 0;
}
.formula-page .custom-column .formula-page__optional-guarantee-section .card-body strong {
  color: #E17100;
}

.background-orange {
  background-color: #FFFAEA;
}

.formula-page__warranty-section {
  padding: 80px 0px;
}

@media screen and (max-width: 768px) {
  .formula-page .custom-column .formula-page__offer-section {
    gap: 32px;
  }
  .formula-page .custom-column .formula-page__offer-section > h1 {
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%; /* 41.6px */
    letter-spacing: -0.32px;
  }
  .formula-page .custom-column .formula-page__offer-section > .content {
    padding: 0;
  }
  .formula-page .custom-column .formula-page__offer-section .offer-wrap {
    flex-direction: column;
  }
  .formula-page .custom-column .formula-page__offer-section .offer-wrap .offer-card {
    width: 311px;
  }
  .formula-page .custom-column .formula-page__offer-section .offer-wrap .offer-card .title {
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;
    letter-spacing: -0.4px;
  }
  .formula-page .custom-column .formula-page__offer-section .offer-wrap .offer-card .offer-card__elem img {
    width: 15%;
  }
  .formula-page .custom-column .formula-page__offer-section .offer-wrap .offer-card a {
    margin: 0;
  }
  .formula-page .custom-column .formula-page__optional-guarantee-section {
    padding: 40px 24px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    margin-top: 32px;
    border-radius: 16px;
    border: 1px solid #FFBC1C;
    background: #FFF;
  }
  .formula-page .custom-column .formula-page__optional-guarantee-section .card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 16px;
  }
  .formula-page .custom-column .formula-page__optional-guarantee-section .card-header span {
    font-size: 26px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%; /* 31.2px */
    letter-spacing: -0.24px;
    color: #332B78;
  }
  .formula-page .custom-column .formula-page__optional-guarantee-section .card-body span {
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.19px;
    color: #211B4B;
    text-align: left;
  }
  .formula-page .custom-column .formula-page__optional-guarantee-section .card-body span strong {
    color: #E17100;
    font-weight: 700;
  }
}
@media only screen and (max-width: 1200px) {
  .formula-page .custom-column {
    margin-bottom: 0;
  }
  .formula-page .custom-column h1 {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    text-align: center !important;
    margin: 0 !important;
  }
  .formula-page .custom-column .formula-page__offer-section .back-question {
    margin-top: 0 !important;
  }
  .formula-page .custom-column .formula-page__offer-section .offer-wrap {
    display: flex;
    overflow: scroll;
  }
  .formula-page .custom-column .formula-page__warranty-section h1 {
    margin-bottom: 32px !important;
  }
  .formula-page .custom-column .formula-page__warranty-section .panel-item {
    margin-bottom: 10px;
  }
  .formula-page .custom-column .formula-page__warranty-section .panel-item .panel-item__description .row {
    flex-direction: column;
    padding: 30px;
  }
  .formula-page .custom-column .formula-page__warranty-section .panel-item .panel-item__description .row aside {
    width: 100% !important;
  }
  .formula-page .custom-column .formula-page__question-section {
    padding: 0 20px;
  }
  .formula-page .custom-column .formula-page__question-section h1 {
    margin-bottom: 20px !important;
  }
  .formula-page .custom-column .formula-page__question-section .panel-item {
    margin-bottom: 10px;
  }
  .formula-page .custom-column .formula-page__question-section .panel-item .panel-item__description .row {
    flex-direction: column;
    padding: 30px;
  }
  .formula-page .custom-column .formula-page__question-section .panel-item .panel-item__description .row aside {
    width: 100% !important;
  }
}
@media screen and (max-width: 1200px) {
  .formula-page__optional-guarantee-section.is_mobile {
    display: flex !important;
  }
  .formula-page__optional-guarantee-section.is_desktop {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .formula-page__optional-guarantee-section.is_mobile {
    display: none;
  }
  .formula-page__optional-guarantee-section.is_desktop {
    display: flex;
  }
}
.subscription .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -15px;
  margin-left: -15px;
}
.subscription .row .item {
  margin: 22px;
}
.subscription .row .item a.download_label {
  color: initial;
  display: flex;
}
.subscription .row .item a.download_label img {
  margin-right: 10px;
}
.subscription .price .row {
  justify-content: space-between;
}
.subscription .price .row .moredetail {
  font-weight: normal;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  position: relative;
  display: block;
}
.subscription .price .row .moredetail svg {
  bottom: 4px;
  display: inline-block;
  position: relative;
  left: 10px;
}
.subscription .price .row .hide {
  display: none;
}
.subscription .col-md-3, .subscription .col-md-4, .subscription .col-md-6, .subscription .col-md-8, .subscription .col-md-12 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding: 0 15px 40px 15px;
}
.subscription .col-sm-3, .subscription .col-sm-4, .subscription .col-sm-6, .subscription .col-sm-8, .subscription .col-sm-12 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding: 0 15px;
}
.subscription .subscription-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #00106B;
  border-radius: 15px;
}
.subscription .subscription-card .subscription-card__header {
  padding: 12px 20px;
  margin-bottom: 0;
  background-color: #00106B;
  border-bottom: 1px solid #00106B;
}
.subscription .subscription-card .subscription-card__header:first-child {
  border-radius: 13px 13px 0 0;
}
.subscription .subscription-card h2 {
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: white;
}
.subscription .subscription-card .subscription-card__body {
  flex: 1 1 auto;
  padding: 1.25rem;
}
.subscription .subscription-card .subscription-card__body label required:after {
  display: none;
}
.subscription .subscription-card .subscription-card__body.declarations {
  padding: 30px 10px;
}
.subscription .subscription-card .subscription-card__body .subscription_form_formula_input {
  display: none;
}
.subscription .subscription-card .subscription-card__body .subscription_form_formula_label required:after {
  display: none;
}
.subscription .subscription-card .subscription-card__body .subscription_form_formula_label {
  width: 100%;
}
.subscription form .form-group {
  margin-bottom: 15px;
}
.subscription form .form-group input[type=radio] {
  display: none;
}
.subscription form label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.subscription form label.required::after {
  margin-left: 4px;
  content: "*";
  color: red;
}
.subscription form .form-control {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--blue-blue-900-adh, #332B78);
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.19px;
  color: #332B78;
}
.subscription form .form-control:focus {
  background-color: var(--BLUE-Blue---50);
  border: var(--blue-blue-900-adh) solid 1px;
  box-shadow: 0 0 0 2px #FFF, 0 0 0 4px var(--BLUE-Blue---600);
}
.subscription form .form-check {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.subscription form .form-check label {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 8px 24px;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%; /* 33.8px */
  letter-spacing: -0.26px;
  background-color: transparent;
  color: #332B78;
  border: 1px solid #332B78;
  transition: background 0.2s, border 0.2s;
}
.subscription form .form-check label:hover {
  background-color: #EEF1FF;
}
.subscription form .form-check label:has(input:checked) {
  background-color: #EEF1FF;
}
.subscription form .form-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.subscription .offer-card {
  border-radius: 5px;
  border: 1px solid #FFBC1C;
  padding: 20px 16px;
}
.subscription .offer-card .offer-card__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.subscription .offer-card .offer-card__header h3 {
  color: #00106B;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}
.subscription .offer-card .offer-card__body ul, .subscription .offer-card .offer-card__body li {
  list-style: none;
  padding: 0;
}
.subscription .offer-card .offer-card__body ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.subscription .offer-card .offer-card__body ul li {
  color: #00106B;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 0px;
}
.subscription .offer-card .offer-card__body ul li i {
  margin-right: 8px;
}
.subscription .offer-card .offer-card__body ul li span {
  font-size: 6px;
}
.subscription .selected {
  background-color: #FFFAEA;
}
.subscription .declarations p {
  color: #000;
  font-size: 14px;
}
.subscription .declarations p.warning {
  color: #FF1010;
  font-weight: 700;
}
.subscription .declarations ul, .subscription .declarations li {
  font-size: 14px;
  color: #000;
  margin: 0;
}
.subscription .declarations .file-card {
  width: 194.615px;
  height: 105px;
  margin: 0 auto;
  border-radius: 5px;
  border: 1px solid #000;
  padding: 10px 16px;
  background: #F5F5F5;
}
.subscription .declarations .file-card .file-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.subscription .price .title {
  display: inline-flex;
  flex-direction: row;
  gap: 40px;
}
.subscription .price .title p {
  font-size: 20px;
}
.subscription .price .title p span:first-child {
  font-size: 16px;
}
.subscription .price .title p span:last-child {
  font-size: 10px;
}
.subscription .price p {
  font-size: 14px;
  font-weight: 700;
  color: #00106B;
}
.subscription .price p span {
  font-size: 10px;
}

@media screen and (min-width: 576px) {
  .col-sm-3, .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4, .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-6, .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-8, .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-12, .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  form .form-check {
    grid-template-columns: repeat(3, 1fr);
  }
  form label {
    flex: 1;
  }
  .declarations {
    padding: 30px 72px !important;
  }
}
.benefit {
  display: flex;
  padding: 80px 162px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.benefit h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 48px */
  letter-spacing: -0.48px;
}
.benefit .benefit__cards {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.benefit .benefit__cards .benefit__card {
  display: flex;
  width: 350px;
  flex-direction: column;
  padding: 24px 40px;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background-color: #F6F6F6;
  background-size: 100%;
}
.benefit .benefit__cards .benefit__card:first-child {
  background-image: url("../images/benefit-first-desktop-mask-d6fd84e0bda26c1bb47845c8c0755d4d.png");
}
.benefit .benefit__cards .benefit__card:nth-child(2) {
  background-image: url("../images/benefit-second-desktop-mask-9d756fcf2e95236fbcf054e6ff15d4b4.png");
}
.benefit .benefit__cards .benefit__card:last-child {
  background-image: url("../images/benefit-third-desktop-mask-af5093063cdb1c246dd43adff408bf83.png");
}
.benefit .benefit__cards .benefit__card .benefit__text {
  text-align: center;
}
.benefit .benefit__cards .benefit__card .benefit__text h3 {
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%; /* 33.8px */
  letter-spacing: -0.26px;
  color: #3F30A3;
}
.benefit .benefit__cards .benefit__card .benefit__text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
  color: #3F30A3;
}

@media screen and (max-width: 768px) {
  .benefit {
    display: flex;
    padding: 48px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    align-self: stretch;
  }
  .benefit h2 {
    color: #332B78;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%; /* 41.6px */
    letter-spacing: -0.32px;
  }
  .benefit .benefit__cards {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
  }
  .benefit .benefit__cards .benefit__card {
    display: flex;
    width: 100%;
    flex-direction: row;
    padding: 24px;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    border-radius: 16px;
    background-color: #F6F6F6;
    background-size: 100%;
  }
  .benefit .benefit__cards .benefit__card:first-child {
    background-image: url("../images/benefit-first-mask-9e77b1ae054f771b3caab81ff53fd6a1.png");
  }
  .benefit .benefit__cards .benefit__card:nth-child(2) {
    background-image: url("../images/benefit-second-mask-fc5abcb547109ca193dd2fb5f77b49fe.png");
  }
  .benefit .benefit__cards .benefit__card:last-child {
    background-image: url("../images/benefit-third-mask-0b4cf247122db3d58f278b9648ececfa.png");
  }
  .benefit .benefit__cards .benefit__card .benefit__text {
    text-align: left;
  }
  .benefit .benefit__cards .benefit__card .benefit__text h3 {
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%; /* 26px */
    letter-spacing: -0.2px;
    color: #3F30A3;
  }
  .benefit .benefit__cards .benefit__card .benefit__text p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.16px;
    color: #3F30A3;
  }
}
.user-claim .wrap-container {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
.user-claim .wrap-container .column.page-content {
  width: 50%;
  padding: 40px;
  background-color: rgb(246, 246, 246);
  border-radius: 16px;
  text-align: center;
}
.user-claim .wrap-container .form_container {
  height: 100%;
  /* Preparer le label */
  /* Aspect de la case */
  /* Aspect de la coche */
  /* Aspect non cochée */
  /* Aspect cochée */
}
.user-claim .wrap-container .form_container [type=radio]:not(:checked),
.user-claim .wrap-container .form_container [type=radio]:checked {
  /* Cache la checkbox sans
     la rendre invisible aux
     lecteurs d'écran */
  position: absolute;
  left: 0;
  opacity: 0.01;
}
.user-claim .wrap-container .form_container [type=radio]:not(:checked) + label,
.user-claim .wrap-container .form_container [type=radio]:checked + label {
  position: relative; /* permet de positionner la checkbox */
  padding-left: 2.3em; /* place pour la box */
  font-size: 1.05em;
  line-height: 1.7;
  cursor: pointer;
  text-align: initial;
}
.user-claim .wrap-container .form_container [type=radio]:not(:checked) + label::before,
.user-claim .wrap-container .form_container [type=radio]:checked + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4em;
  height: 1.4em;
  border: 1px solid #aaa;
  background: #FFF;
  border-radius: 0.2em;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 rgba(203, 34, 237, 0.2);
}
.user-claim .wrap-container .form_container [type=radio]:not(:checked) + label::after,
.user-claim .wrap-container .form_container [type=radio]:checked + label::after {
  content: "x";
  speak: never; /* Pour être sûr que le lecteur d'écran ne lira pas "fois" */
  position: absolute;
  top: 0.38em;
  left: 0.22em;
  font-size: 1.6em;
  line-height: 0;
}
.user-claim .wrap-container .form_container [type=radio]:not(:checked) + label::after {
  opacity: 0;
}
.user-claim .wrap-container .form_container [type=radio]:checked + label::after {
  opacity: 1;
}
.user-claim .wrap-container .form_container + button {
  max-width: 200px;
}

.user-claim-other .wrap-container {
  max-width: 800px;
  background: var(--Gris-bg);
  margin: 20px auto;
  border-radius: 10px;
  color: black;
}
.user-claim-other .wrap-container div {
  margin: 10px 0;
}
.user-claim-other .wrap-container div.message-container {
  text-align: center;
  font-weight: bold;
}
.user-claim-other .wrap-container div.action {
  text-align: center;
  margin-top: 35px;
}
.user-claim-other .wrap-container div p {
  margin: 0;
}
.user-claim-other .wrap-container div .title-center {
  text-align: center;
}

.custom-column.toolbar-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 900px) {
  .user-claim .wrap-container {
    flex-direction: column;
  }
  .user-claim .wrap-container .column.page-content {
    width: 100%;
  }
}
.body {
  max-width: 100%;
  color: var(--blue-blue-900-adh, var(--ADH-Primary-blue, #332B78));
  font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-feature-settings: "calt" off;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -1%;
}

@media (min-width: 1440px) {
  .body {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

/*# sourceMappingURL=app.output.css.map */
