/* Pour les appareils mobiles */
@media screen and (max-width: 960px) {
    /* Styles pour l'icône info */
    .info-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background-color: #007bff;
        color: white;
        font-size: 10px;
        cursor: pointer;
        position: relative;
    }

    /* Container pour la tooltip */
    .tooltip-container {
        position: fixed;
        display: inline-block;
        right: 2px;
        top: 2px;
    }

    /* Base commune pour toutes les tooltips */
    .tooltip-base {
        visibility: hidden;
        width: 285px;
        background-color: white;
        color: black;
        text-align: left;
        border-radius: 8px;
        padding: 15px;
        position: absolute;
        z-index: 100;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        opacity: 0;
        transition: opacity 0.3s;
        left: 86px;
        transform: translateX(-50%);
        font-family: var(--desktop-h2-regular-font-family);
        size: 14px;
        line-height: 18px;
    }

    .tooltip {
        bottom: 31px;
        height: 158px;
    }

    .tooltip-vert {
        bottom: 31px;
        left: -114px;
    }

    .tooltip-semblables {
        top: 88px;
        left: -55px;
        padding-bottom: 3px;0
    }

    /* Flèche pour "Foyers semblables" */
    .tooltip-semblables::after {
        content: "";
        position: absolute;
        bottom: 100%; /* Changé de top à bottom */
        left: 50%;
        margin-left: -12px;
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent white transparent;
    }

    /* Flèche de la tooltip */
    .tooltip::after {
        content: "";
        position: absolute;
        top: 100%;
        border-width: 8px;
        border-style: solid;
        border-color: white transparent transparent transparent /* Changé la direction de la flèche */
    }

    /* Flèche de la tooltip */
    .tooltip-vert::after {
        content: "";
        position: absolute;
        top: 100%;
        border-width: 8px;
        border-style: solid;
        border-color: white transparent transparent transparent /* Changé la direction de la flèche */
    }

    #special-tooltip-orange::after {
        content: "";
        position: absolute;
        left: 101px;
    }

    .tooltip-orange {
        bottom: 31px;
        padding: 10px 0px 0px 25px !important;
        height: 153px;
    }

    .tooltip-vert {
        padding: 11px 0px 9px 28px;
        height: 156px;
    }

    #special-tooltip-vert::after {
        content: "";
        position: absolute;
        left: 214px;
    }

    /* Afficher la tooltip au survol */
    .tooltip-container:hover .tooltip-base {
        visibility: visible;
        opacity: 1;
    }

    /* Afficher la tooltip quand elle est cliquée (même sans survol) */
    .tooltip-container.clicked .tooltip-base {
        visibility: visible;
        opacity: 1;
        z-index: 10000;
    }
    /* Ajoutez CSS spécifiques aux grands écrans ici */
    .simulator-container {
        width: 100%;
        max-width: 900px;
        margin: 20px auto;
        background-color: white;
    }

    .criteres-comparaison {
        padding-inline-start: 16px;
        margin-block-start: 7px;
    }

    .simulator-container {
        width: 100%;
        max-width: 900px;
        margin: 20px auto;
        background-color: white;
    }

    .simulator-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        margin-bottom: 20px;
    }

    .simulator-title {
        font-size: 24px;
        color: #000;
        font-weight: bold;
    }

    .close-button {
        cursor: pointer;
        font-size: 20px;
        color: #333;
    }

    .steps-container {
        background-color: #f9f9f9;
        padding: 5px 10px 10px 10px;
        width: 100%;
    }

    .step-title {
        text-align: center;
        margin-bottom: 30px;
        font-size: 18px;
        color: #003366;
        font-weight: normal;
    }

    .progress-steps {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .progress-line-container {
        flex-grow: 1;
        height: 1px;
        position: relative;
        margin-bottom: 20px;
    }

    .progress-line {
        width: 60%;
        height: 1px;
        background-color: #666666;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 20%;
    }

    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 2;
    }

    .step-icon {
        width: 40px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 8px;
        background-color: #666;
        color: white;
    }

    .step-icon.active {
        background-color: #0066ff;
    }

    .icon-home, .icon-energy, .icon-light, .icon-pin {
        font-size: 20px;
        color: white;
    }

    .step-label {
        font-size: 14px;
        color: #666;
        text-align: center;
        width: 71px;
        font-family: var(--EDF-2020-font-family);
    }

    .step.active .step-label {
        color: #0066ff;
        font-weight: bold;
        font-family: var(--EDF-2020-font-family);
    }

    /* Étape active */
    .step.active .step-icon {
        background-color: #005BFF;
    }

    .step.active .step-label {
        color: #005BFF;
        font-weight: bold;
        font-family: var(--EDF-2020-font-family);
    }

    /* Étape complétée */
    .step.completed .step-icon {
        background-color: #005BFF;
        position: relative;
    }

    .step.completed .step-label {
        color: #005BFF;
        font-family: var(--EDF-2020-font-family);
    }

    /* Icône de validation (coche verte) pour les étapes complétées */
    .check-icon {
        position: absolute;
        top: -5px;
        right: -5px;
        width: 18px;
        height: 18px;
        background-color: #43842A;
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        font-weight: bold;
    }

    .check-icon-foyer {
        position: absolute;
        margin-left: 30px;
        margin-bottom: 28px;
        width: 18px;
        height: 18px;
        background-color: #4CAF50;
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        font-weight: bold;
    }

    .departements-dropdown {
        position: absolute;
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
        background-color: white;
        border-top: none;
        z-index: 1000;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        top: 51px
    }

    .departements-dropdown div {
        padding: 10px;
        cursor: pointer;
    }

    .departements-dropdown div:hover {
        background-color: #f5f5f5;
    }
    .progress-line.completed {
        background-color: #005BFF; /* Bleu pour les lignes complétées */
    }

    .questionnaire .left {
        display: none;
    }

    .questionnaire .right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        flex: 1;
        align-self: stretch;
        flex-grow: 1;
        height: 100% !important;
        width: 90%;
    }

    .questionnaire .footer {
        display: none;
    }

    .questionnaire .header-principal-resultat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0rem var(--Spacing-spacing-4, 1rem);
        position: fixed;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        background-color: #ffffff;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-color: #f8f7f7;
        z-index: 9997;
    }

    .questionnaire .grey-line-resultat {
        position: absolute;
        width: 375px;
        height: 1px;
        top: 59px;
        left: 0;
    }

    .questionnaire .header-principal {
        position: fixed;
        background-color: #FFFFFF;
        width: -webkit-fill-available;
        z-index: 9999;
        padding: 0 16px;
    }

    .questionnaire .header-principal-top {
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-color: #f8f7f7;
    }

    .questionnaire .grey-line {
        position: absolute;
        width: 375px;
        height: 1px;
        top: 59px;
        left: 0;
    }

    .questionnaire .icon {
        right: 15px;
        position: fixed;
        transform: translateY(-160%);
    }

    .questionnaire .text-wrapper {
        position: relative;
        font-family: var(--mobile-titre1-BOLD-font-family);
        font-weight: var(--mobile-titre1-BOLD-font-weight);
        color: #001a70;
        font-size: var(--desktop-h3-BOLD-font-size);
        line-height: var(--mobile-body-caption1-s-BOLD-line-height);
        letter-spacing: var(--desktop-h3-BOLD-letter-spacing);
        font-style: var(--desktop-h3-BOLD-font-style);
        flex: 1;
    }

    .questionnaire .jauge-de-progression {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 1;
    }

    .question-wrapper {
        width: 100%;
    }

    .question-content {
        min-height: 100vh;
        padding: var(--Spacing-spacing-1, 70px) var(--Spacing-spacing-2, 16px);
        position: relative;
        padding-top: 170px;
    }

    .questionnaire .jauge {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
        position: relative;
        flex: 0 0 auto;
        height: 132px;
    }

    .questionnaire .questions {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 100px;
        position: relative;
        flex: 1;
        align-self: stretch;
        width: 100%;
        flex-grow: 1;
        padding-top: 20px;
    }

    .questionnaire .questions-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        position: relative;
        flex: 0 0 auto;
        align-self: stretch;
        width: 100%;
        background-color: #ffffff;
        padding: 70px 0px 40px;
    }

    .questionnaire .question {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 24px;
        position: relative;
        flex: 0 0 auto;
        margin-top: 50px !important;
    }

	.questionnaire .element {
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  gap: 24px;
	  position: relative;
	  width: 100%;
	  flex: 0 0 auto;
	}

	.questionnaire .padding-top-24 {
	    padding: 24px 16px 40px;
	}

	.questionnaire .frame-10 {
	    display: flex;
	    align-items: flex-start;
	    gap: 10px;
	    padding: 16px 16px 16px 0px;
	    position: relative;
	    align-self: stretch;
	    width: 100%;
	    flex: 0 0 auto;
	    background-color: #ffffff;
	}

	.questionnaire .frame-15 {
	  display: flex;
	  flex-direction: column;
	  flex-wrap: wrap;
	  align-items: center;
	  gap: 24px 24px;
	  position: relative;
	  align-self: stretch;
	  width: 100%;
	  flex: 0 0 auto;
	}

    .questionnaire .frame {
        padding: 30px 0 10px;
    }

    .questionnaire .frame-2 {
        display: flex;
        gap: 12px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        flex-direction: column;
    }

    .questionnaire .cta {
        display: flex;
        gap: 12px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        flex-direction: column;
    }

    .questionnaire .titre {
        position: relative;
        align-self: stretch;
        margin-top: -1px;
        font-family: var(--desktop-body-parag-l-regular-font-family);
        font-weight: var(--mobile-body-caption1-s-regular-font-weight);
        color: #001a70;
        font-size: var(--mobile-body-caption1-l-BOLD-font-size);
        letter-spacing: var(--desktop-body-parag-l-BOLD-letter-spacing);
        line-height: var(--desktop-body-parag-l-BOLD-line-height);
        font-size: 14px;
        text-align: center;
    }

    .questionnaire .frame-2-b {
        display: flex;
        gap: 12px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main-component-input-wrapper {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 10px 5px 5px 5px;
        position: relative;
        align-self: stretch;
        flex: 0 0 auto;
    }

    .dropdown {
        position: relative;
        padding: 20px 5px 5px 5px;
    }

    .dropdown select {
        width: 110px; /* Largeur du dropdown */
        height: 40px; /* Hauteur du dropdown */
        border: 1px solid #005bff; /* Bordure bleue */
        font-size: 16px; /* Taille de la police */
        color: #005bff; /* Couleur du texte */
        appearance: none; /* Désactiver l'apparence par défaut pour les autres navigateurs */
        background-color: white; /* Couleur de fond */
        padding: 5px; /* Espacement à l'intérieur */
        cursor: pointer; /* Forme du curseur en pointeur */
        font-style: var(--mobile-body-body-regular-font-style);
        font-size: var(--mobile-body-body-regular-font-size);
        font-weight: var(--mobile-body-body-regular-font-weight);
        font-family: var(--mobile-body-body-regular-font-family);
        padding-left: 15px;
    }

    .dropdown select:focus {
        outline: none; /* Supprimer le contour lors de la sélection */
    }

    .dropdown::after {
        content: url('../images/chevron-bas-2.svg');
        position: absolute;
        top: 28px;
        right: 13px;
        pointer-events: none; /* Éviter que l'icône ne réponde aux clics */
    }

    /*prices*/
    .prices {
        margin-bottom: 90px;
        /*width: 50%;*/
        position: relative;
        font-family: var(--desktop-body-parag-regular-font-family);
        font-size: 92%;
    }
	.prices.height-200 {
        height: 200px;
	}

    .prices > img {
        width: 100%;
        height: auto;
        /*margin: 0% 3%;*/
    }

    .prices .prices-item {
        position: absolute;
        border: 1px solid #001a70;
        width: 100px;
        text-align: center;
    }

    .prices .prices-item h5 {
        margin: 0 0 5px;
    }

    .prices .prices-item h6 {
        margin: 0;
        border-top: 1px solid #001A70;
        display: inline-block;
        padding: 5px 0 0;
        color: #001A70;
    }

    .prices .prices-item-left {
        top: 0;
        background: #e8512f;
        transform: translateY(-108%);
        margin-left: 4%;
        border-radius: 0.125rem;
    }

    .prices .prices-item-bottom {
        border-radius: 0.125rem;
        left: 50%;
        transform: translateX(-50%);
        background: #F4F4F4;
        border-style: dashed;
        width: 150px;
        padding: 6px 0px;
    }

    .prices .prices-item-center {
        border-radius: 0.125rem;
        top: 0;
        background: #FF861D;
        transform: translate(-50%, -108%);
        left: 50%;
    }

    .prices .prices-item-right {
        border-radius: 0.125rem;
        top: 0;
        background: #8fd710;
        transform: translateY(-108%);
        right: 5%;
    }

    .prices .prices-item-left:after {
        content: ' ';
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background-color: #e8512f;
        border: 1px solid #001a70;
        position: absolute;
        bottom: -20px;
        left: 10%;
        transform: translate(-50%, 108%);
    }

    .prices .prices-item-left:before {
        content: ' ';
        width: 2px;
        height: 20px;
        background-color: #001a70;
        position: absolute;
        bottom: 0;
        transform: translate(-50%, 108%);
        left: 10%;
    }

    .prices .prices-item-center:after {
        content: ' ';
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background-color: #FF861D;
        border: 1px solid #001a70;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translate(-50%, 108%);
    }

    .prices .prices-item-center:before {
        content: ' ';
        width: 2px;
        height: 20px;
        background-color: #001a70;
        position: absolute;
        bottom: 0;
        transform: translate(-50%, 108%);
        left: 50%;
    }

    .prices .prices-item-right:after {
        content: ' ';
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background-color: #8fd710;
        border: 1px solid #001a70;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translate(-50%, 108%);
    }

    .prices .prices-item-right:before {
        content: ' ';
        width: 2px;
        height: 20px;
        background-color: #001a70;
        position: absolute;
        bottom: 0;
        transform: translate(-50%, 108%);
        left: 50%;
    }

    .prices .prices-item-bottom:after {
        content: ' ';
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background-color: #FF861D;
        border: 1px dashed #001a70;
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translate(-50%, -108%);
    }

    .prices .prices-item-bottom:before {
        content: ' ';
        width: 2px;
        height: 20px;
        background: repeating-linear-gradient(
                0deg,
                #001a70 0px,
                #001a70 1px,
                transparent 2px,
                transparent 4px
        );
        position: absolute;
        top: 0;
        transform: translate(-50%, -108%);
        left: 50%;
    }

    .continuons-container {
        margin: 0 auto;
        width: 100%;
    }

    .continuons-button {
        padding: 0.75rem 1rem;
        background: #005BFF;
        color: white;
        border: 1px solid;
        margin: 2% 0%;
        font-size: 16px;
        line-height: 22px;
        width: 100%;
    }

    .optimisation {
        padding: var(--Spacing-spacing-3, 24px) var(--Spacing-spacing-2, 16px);
        background-color: #1057CB;
    }

    .optimisation-text {
        padding: var(--Spacing-spacing-3, 24px) var(--Spacing-spacing-2, 0px);
    }

    .optimisation-button {
        width: 100%;
    }

    .criteres {
        margin-top: 30%;
        margin-left: 5%;
        margin-right: 5%;
        padding-left: 1%;
        padding-top: 1.4%;
        padding-bottom: 1.4%;
    }

    .criteres::after {
        content: url("/images/chevron-bas-2-black.svg");
        position: absolute;
        transform: translateX(100%);
        left: 80%;
    }

    .footer-resultat {

    }

    .questionnaire .check {
        display: flex;
        flex-direction: column;
        gap: 8px;
        position: relative;
    }

    .questionnaire .check-left {
        width: 30%;
        position: relative;
        margin-bottom: 2%;
    }

    .questionnaire .checkbox {
        display: flex;
        width: 250px;
        align-items: center;
        gap: 8px;
        position: relative;
        flex: 0 0 auto;
    }

    .questionnaire .checkbox-2 {
        display: flex;
        position: relative;
        border-radius: 2px;
    }

    .checkbox-2 input[type="checkbox" i] {
        transform: scale(1.5);
    }

    .accordion {
        margin-left: auto;
        margin-right: auto;
    }

    .accordion-button {
        padding: 10px;
    }

    .accordion-button::after {
        left: 88%;
        position: absolute;
    }

    .demenagement {
        width: 80%;
        margin: 0 auto;
    }

    .demenagement-header {
        width: 100%;
    }

    .demenagement-header > img {
        margin: 4rem auto 35px;
        display: block;
    }

    .demenagement-rendez-vous {
        width: 80%;
        margin: 1.5rem auto;
    }

    .demenagement-rendez-vous .title{
        color: var(--Color-Principales-color-primaire-1, #001A70);
        text-align: center;
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 700;
        font-family: var(--desktop-h2-regular-font-family);
        line-height: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .demenagement-rendez-vous > button {
        border-radius: 2px;
        background-color: #005BFF;
        border: 0;
        width: 100%;
        color: #fff;
        display: flex;
        padding: 0.75rem 1rem;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

    .optimisation-body {
        color: var(--Color-Nuances-de-gris-neutral-0, #FFF);
        text-align: center;
        /* Mobile/Body/Caption1-S-regular */
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px; /* 128.571% */
    }

    .optimisation-title {
        text-align: center;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px;
        margin: 0% 0%;
    }

    .navigation-buttons {
        align-items: flex-start;
        width: 95%;
        display: flex;
        justify-content: space-around;
        padding: 30px 0 10px 0;
    }

    .button {
        padding: 10px 25px;
        border-radius: 2px;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        width: 47%;
    }

    .button-previous {
        border: 1px solid #0066FF;
        color: #0066FF;
        background-color: white;
        transition: background-color 0.3s;
    }

    .button-previous:hover {
        background-color: #f0f0f0;
    }

    .button-next {
        background-color: #0066FF;
        color: white;
        border: none;
    }

	.questionnaire .frame-16 {
	  display: flex;
	  align-items: center;
	  gap: 8px;
	  position: relative;
	}

	.frame-16 .mentions-l-gales{
	  position: relative;
	  width: fit-content;
	  font-family: var(--body-1-regular-font-family);
	  font-weight: var(--desktop-h2-regular-BOLD-font-weight);
	  color: var(--x03-nuances-de-grisgris-fonc);
	  font-size: var(--body-body-s-bold-font-size);
	  letter-spacing: var(--desktop-h2-regular-letter-spacing);
	  line-height: var(--desktop-body-parag-s-regular-line-height);
	  white-space: nowrap;
	  font-style: var(--desktop-h2-regular-font-style);
	}

	.frame-16 .cta-legal-content {
	  max-height: 0;
      overflow: hidden;
	  transition: max-height 0.2s ease-out;
	  font-family: var(--body-1-regular-font-family);
	  font-weight: var(--desktop-body-parag-s-regular-font-weight);
	  color: var(--x03-nuances-de-grisgris-fonc);
	  font-size: var(--body-body-s-bold-font-size);
	  letter-spacing: var(--desktop-h2-regular-letter-spacing);
	  line-height: var(--body-body-s-bold-line-height);
	}

    .questionnaire .container-4 {
        align-items: center;
        gap: 24px;
        padding: 16px;
        background-color: #F8F7F7;
        border: 0px none;
        display: flex;
        flex-direction: column;
        position: relative;
        margin-top: 20px;
    }

    .questionnaire .frame-3 {
        display: flex;
        align-items: center;
        gap: 16px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        flex-direction: column;
    }

    .questionnaire .frame-3.etiquette {
        flex-direction: row;
    }

    .questionnaire .frame-87 {
        display: flex;
        align-items: center;
        gap: 16px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        flex-direction: row;
    }

    .questionnaire .IMG-recap-1 {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 200px;
        height: 200px;
    }

    .questionnaire .texte-4 {
        position: relative;
        align-self: stretch;
        font-family: var(--desktop-body-parag-regular-font-family);
        font-weight: 400;
        color: #1c1c1c;
        font-size: 14px;
        text-align: center;
        letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
        line-height: 18px;
        font-style: var(--desktop-body-parag-regular-font-style);
    }

    .questionnaire .bouton-boson-2 {
        border: hidden;
        cursor: pointer;
        display: inline-flex;
        background-color: #005bff;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        position: relative;
        flex: 0 0 auto;
        border-radius: 2px;
        width: 100%;
        margin: 0 auto;
    }

    .questionnaire .bot-card {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        position: relative;
        flex: 0 0 auto;
        width: 100%;
    }

    .questionnaire .bouton-boson-3 {
        display: flex;
        align-self: stretch;
        width: 100%;
        background-color: #005bff;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        position: relative;
        flex: 0 0 auto;
        border-radius: 2px;
        width: 100%;
    }

    .questionnaire .bot-card-2 {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        position: relative;
        flex: 0 0 auto;
        background-color: #005bff;
        width: 100%;
        margin: 0 auto;
    }

    .questionnaire .bouton-boson-4 {
        display: inline-flex;
        border: 1px solid #005bff;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        position: relative;
        flex: 0 0 auto;
        border-radius: 2px;
        width: 100%;
        background-color: white;
    }

    .label-btn {
      color: #005BFF;
      font-family: 'EDF 2020-Regular';
    }

    .width-device {
        width: 100%;
    }

    .questionnaire .bouton-boson-2-not-allowed {
        cursor: not-allowed;
        display: inline-flex;
        background-color: #CCCCCC;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        position: relative;
        flex: 0 0 auto;
        border-radius: 2px;
        width: 100%;
        margin: 0 auto;
        border: initial;
    }
    .text-align-device {
        text-align: center !important;
    }

    .questionnaire .text-resultat {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        position: relative;
        flex: 0 0 auto;
    }

    .questionnaire .title-resultat {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        position: relative;
        flex: 1;
        align-self: stretch;
        width: 100%;
        flex-grow: 1;
    }

    .btn-resultat {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 11px;
    }

    .btn-rdv {
        width: 100% !important;
    }

    .btn-next {
        width: 100% !important;
        justify-content: center;
    }

    .padding-device {
        padding-left: 16px;
        padding-right: 16px;
    }

    .popup {
        display: none;
        position: fixed;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        padding: 30px;
        border: 1px solid #ccc;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 99999;
        width: 93%;
        height: 400px;
        font-family: var(--desktop-h4-BOLD-font-family);
        font-weight: var(--desktop-h4-BOLD-font-weight);
    }

    .close-btn {
        cursor: pointer;
        top: 76px;
    }

    .popup-link {
        padding: 0px 0px 0px 16px;
        font-size: 14px;
        line-height: 18px;
        font-weight: 400;
        font-family: var(--desktop-body-parag-s-bold-font-family);
    }

    .footer-wrapper{
        position: absolute;
        bottom: 2vh;
        z-index: 999999;
    }

    .questionnaire .content {
        max-height: 100%;
    }

  .recap-resultat2 {
    display: flex;
    flex-direction: column;
    padding: 5px 0px 12px 0px;
  }
  .main-container{
    background-color: #F8F7F7;
    padding: 10px !important;
    margin-bottom: 30px !important;
    width: 110% !important;
  }
  .resultat2 {
    display: flex;
    flex-direction: column;
    width: 90%;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
    margin-top: 80px;
  }

  .sticky-container {
    position: sticky;
    top: 0;
    z-index: 9998;
    background-color: #F8F7F7;
    width: 111%;
    padding-top: 10px;
    padding-bottom: 5px;
  }

  .stopped {
    position: absolute;
    top: auto;
  }

  /* Modification pour rendre le conteneur sticky */
  #tabs {
    top: 0;
    background-color: #F8F7F7;
  }

  .cards-container.cards-container-mobile {
    display: grid;
    gap: 20px;
    padding: 20px;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }

  /* Si un seul onglet est présent */
  .cards-container.cards-container-mobile:has(.icon-card:only-child) {
    grid-template-columns: 1fr;
  }

  /* Si exactement deux onglets sont présents */
  .cards-container.cards-container-mobile:has(.icon-card:nth-child(2):last-child) {
    grid-template-columns: 1fr 1fr;
  }

  /* Modification des icon-card pour les onglets inactifs */
  .icon-card {
    background-color: white;  /* Par défaut, les onglets sont blancs */
    color: #005BFF;  /* Texte en bleu */
    text-align: center;
    padding: 15px;
    position: relative;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    transition: background-color 0.3s;
    cursor: pointer;
    border: 1px solid #005BFF;
    font-family: var(--EDF-2020-font-family);
  }

  .icon-card img {
    filter: invert(26%) sepia(90%) saturate(6449%) hue-rotate(211deg) brightness(96%) contrast(101%);
  }

  /* Pour les icônes blanches quand la carte est active */
  .icon-card.active img {
    filter: brightness(0) invert(1); /* Rend l'icône blanche */
  }

  /* Style pour l'onglet actif */
  .icon-card.active {
    background-color: #005BFF;  /* Onglet actif en bleu */
    color: white;  /* Texte en blanc */
  }

  .icon-card::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;  /* Par défaut, triangle transparent */
  }

  /* Triangle bleu pour l'onglet actif */
  .icon-card.active::after {
    border-top: 10px solid #005BFF;
  }

  .icon-card i {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .card-contrat {
    background-color: #005BFF;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 20px;
  }

  .card {
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    margin-bottom: 20px;
  }

  .card-title {
    color: white;
    font-family: var(--EDF-2020-font-family);
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 28px;
    letter-spacing: 0;
  }

  .reflexe-title {
    color: #1057CB;
    gap: 20px;
  }

  .check-container {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px;
    margin-bottom: 20px;
    background-color: #005BFF;
  }

  .container-reflexe {
    background-color: #F8F7F7;
    border: 1px solid #E0E0E0;
  }

  .cta-offre {
    display: flex;
    font-size: 16px;
    font-family: var(--EDF-2020-font-family);
    justify-content: center;
    align-items: center;
    background-color: white;
    color: #005BFF;
    text-decoration: none;
    padding: 12px 15px;
    font-weight: 400;
  }

  .cta-travaux {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .badge {
    background-color: #f2f2f2;
    color: #333;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-top: 10px;
  }

  .badge.green {
    background-color: #e8f5e9;
    color: #388e3c;
  }

  .card-text {
    font-size: 14px;
    margin: 10px 0;
    font-weight: 400;
    font-family: var(--EDF-2020-font-family);
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    color: white;
  }

  .card-text-plus {
    margin: 10px 0;
    font-family: var(--EDF-2020-font-family);
    font-size: 8px;
    color: #333333;
  }

  .reflexe-text {
    color: #333333;
  }

  .checklist {
    margin: 15px 0;
  }

  .checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 13px;
  }

  .checklist-item i {
    color: #0066ff;
    margin-right: 8px;
    font-size: 16px;
  }

  .check-text {
    display: flex;
    align-items: flex-start;
    color: white;
    margin-bottom: 5px;
    font-family: var(--EDF-2020-font-family);
    font-size: 14px;
  }

  .text-reflexe{
    color: #1C1C1C;
  }

  .check-title {
    margin-bottom: 10px;
    color: white;
    font-family: var(--EDF-2020-font-family);
    font-weight: bold;
    font-size: 14px;
  }

  .title-reflexe {
    color: #1C1C1C;
  }

  cta-reflex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    flex: 0 0 auto;
    background-color: #005bff;
  }

  .banner {
    background-color: #C0E410;
    padding: 5px 8px 5px 8px;
    font-family: var(--EDF-2020-font-family);
    display: inline-flex;
    align-items: center;
    max-width: 450px;
  }
  .superscript {
    font-family: var(--EDF-2020-font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    padding-left: 5px;
  }

  .tip {
    background-color: #f5f8ff;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
  }

  .tip i {
    color: #0066ff;
    margin-right: 8px;
    font-size: 16px;
  }

  .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0066ff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    text-decoration: none;
    transition: background-color 0.3s;
  }

  .btn:hover {
    background-color: #0052cc;
  }

  .btn i {
    margin-left: 8px;
  }

  .btn.outline {
    background-color: white;
    color: #0066ff;
    border: 1px solid #0066ff;
    padding: 8px 15px;
  }

  .btn.outline i {
    color: #0066ff;
  }

  .icon-blue {
    color: #0066ff;
  }

  .bottom-card {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
  }

  .bottom-card .card {
    width: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
  }

  .bottom-card .card img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .resultat-title {
    font-weight: 700;
    font-size: 28px;
    color: #001A70;
    font-family: var(--EDF-2020-font-family);
    line-height: 34px;
  }

  .resultat-subTitle {
    font-weight: 400;
    font-family: var(--EDF-2020-font-family);
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
  }

  .resultat-subTitle a {
    color: #0066ff;
    text-decoration: none;
  }

  /* Style du titre "Vos étapes vers plus d'économies" */
  .description {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    font-family: var(--EDF-2020-font-family);
    margin-bottom: 10px;
    color: #001A70;  /* Couleur bleue pour le titre */
  }



  /* Ajout de styles pour les noms des onglets */
  .nom-tuile {
    font-family: var(--EDF-2020-font-family);
    font-weight: 500;
    font-size: 14px;
  }

  .conseil-box {
    background-color: #f0f8ff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
  }

  .conseil-title {
    display: flex;
  }

  .conseil-text {
    font-family: var(--EDF-2020-font-family);
    padding: 10px;
  }

  .conseil-description {
    color: #1C1C1C;
    font-size: 14px;
    margin: 0;
    font-family: var(--EDF-2020-font-family);
  }

  .vector-check {
    position: relative;
    width: 10px;
    height: 9px;
    margin: 5px 6px 0px 0px;
  }

  .vector-droite {
    position: relative;
    padding-left: 10px;
  }

}

/* Pour les tablettes */
@media screen and (min-width: 961px) and (max-width: 1180px) {

    /* Styles pour l'icône info */
    .info-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background-color: #007bff;
        color: white;
        font-size: 10px;
        cursor: pointer;
        position: relative;
    }

    /* Container pour la tooltip */
    .tooltip-container {
        position: fixed;
        display: inline-block;
        right: 2px;
        top: 2px;
    }

    /* Base commune pour toutes les tooltips */
    .tooltip-base {
        visibility: hidden;
        width: 285px;
        background-color: white;
        color: black;
        text-align: left;
        border-radius: 8px;
        padding: 15px;
        position: absolute;
        z-index: 100;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        opacity: 0;
        transition: opacity 0.3s;
        left: 86px;
        transform: translateX(-50%);
        font-family: var(--desktop-h2-regular-font-family);
        size: 14px;
        line-height: 18px;
    }

    .tooltip-orange {
        height: 137px;
        padding: 1px 0px 0px 24px !important
    }

    .tooltip-vert {
        height: 153px;
        left: -92px;
        padding: 1px 0px 0px 24px;
    }

    .tooltip {
        bottom: 31px;
        padding: 0px 0px 0px 21px;
        height: 137px;
    }

    .tooltip-semblables {
        top: 88px;
        left: -55px;
        padding-bottom: 3px;
    }

    /* Flèche pour "Foyers semblables" */
    .tooltip-semblables::after {
        content: "";
        position: absolute;
        bottom: 100%; /* Changé de top à bottom */
        left: 50%;
        margin-left: -12px;
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent white transparent;
    }

    /* Flèche de la tooltip */
    .tooltip::after {
        left: 14px;
        content: "";
        position: absolute;
        top: 100%;
        border-width: 8px;
        border-style: solid;
        border-color: white transparent transparent transparent /* Changé la direction de la flèche */
    }

    .tooltip-vert::after {
        left: 193px;
        content: "";
        position: absolute;
        top: 100%;
        border-width: 8px;
        border-style: solid;
        border-color: white transparent transparent transparent /* Changé la direction de la flèche */
    }

    .tooltip-orange::after {
        left: 101px;
        content: "";
        position: absolute;
        top: 100%;
        border-width: 8px;
        border-style: solid;
        border-color: white transparent transparent transparent /* Changé la direction de la flèche */
    }

    /* Afficher la tooltip au survol */
    .tooltip-container:hover .tooltip-base {
        visibility: visible;
        opacity: 1;
    }

    /* Afficher la tooltip quand elle est cliquée (même sans survol) */
    .tooltip-container.clicked .tooltip-base {
        visibility: visible;
        opacity: 1;
        z-index: 10000;
    }
    /* Ajoutez CSS spécifiques aux grands écrans ici */
    .simulator-container {
        width: 100%;
        max-width: 900px;
        margin: 20px auto;
        background-color: white;
    }

    .criteres-comparaison {
        padding-inline-start: 16px;
        margin-block-start: 7px;
    }

    .simulator-container {
        width: 97%;
        margin: 20px auto;
        background-color: white;
    }

    .simulator-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        margin-bottom: 20px;
    }

    .simulator-title {
        font-size: 24px;
        color: #000;
        font-weight: bold;
    }

    .close-button {
        cursor: pointer;
        font-size: 20px;
        color: #333;
    }

    .steps-container {
        background-color: #f9f9f9;
        padding: 20px 10px 30px;
        width: 100%;
    }

    .step-title {
        text-align: center;
        margin-bottom: 30px;
        font-size: 18px;
        color: #003366;
        font-weight: normal;
    }

    .progress-steps {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .progress-line-container {
        flex-grow: 1;
        height: 1px;
        position: relative;
        margin-bottom: 20px;
    }

    .progress-line {
        width: 60%;
        height: 1px;
        background-color: #666666;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 20%;
    }

    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 2;
    }

    .step-icon {
        width: 40px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 8px;
        background-color: #666;
        color: white;
    }

    .step-icon.active {
        background-color: #0066ff;
    }

    .icon-home, .icon-energy, .icon-light, .icon-pin {
        font-size: 20px;
        color: white;
    }

    .step-label {
        font-size: 14px;
        color: #666;
        text-align: center;
        font-family: var(--EDF-2020-font-family);
    }

    .step.active .step-label {
        color: #0066ff;
        font-weight: bold;
        font-family: var(--EDF-2020-font-family);
    }

    /* Étape active */
    .step.active .step-icon {
        background-color: #005BFF;
    }

    .step.active .step-label {
        color: #005BFF;
        font-weight: bold;
        font-family: var(--EDF-2020-font-family);
    }

    /* Étape complétée */
    .step.completed .step-icon {
        background-color: #005BFF;
        position: relative;
    }

    .step.completed .step-label {
        color: #005BFF;
        font-family: var(--EDF-2020-font-family);
    }

    /* Icône de validation (coche verte) pour les étapes complétées */
    .check-icon {
        position: absolute;
        top: -5px;
        right: -5px;
        width: 18px;
        height: 18px;
        background-color: #43842A;
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        font-weight: bold;
    }

    .check-icon-foyer {
        position: absolute;
        margin-left: 30px;
        margin-bottom: 28px;
        width: 18px;
        height: 18px;
        background-color: #4CAF50;
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        font-weight: bold;
    }

    .departements-dropdown {
        position: absolute;
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
        background-color: white;
        border-top: none;
        z-index: 1000;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        top: 51px
    }

    .departements-dropdown div {
        padding: 10px;
        cursor: pointer;
    }

    .departements-dropdown div:hover {
        background-color: #f5f5f5;
    }

    .progress-line.completed {
        background-color: #005BFF; /* Bleu pour les lignes complétées */
    }

    .questionnaire .left {
        display: none;
    }

    .questionnaire .right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        flex: 1;
        align-self: stretch;
        flex-grow: 1;
    }

    .questionnaire .footer {
        display: none;
    }

    .questionnaire .header-principal-resultat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0rem var(--Spacing-spacing-4, 1rem);
        position: fixed;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        background-color: #ffffff;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-color: #f8f7f7;
        z-index: 9997;
    }

    .questionnaire .grey-line-resultat {
        position: absolute;
        width: 375px;
        height: 1px;
        top: 59px;
        left: 0;
    }

    .questionnaire .header-principal {
        position: fixed;
        background-color: #FFFFFF;
        width: -webkit-fill-available;
        width: -moz-available;
        width: fill-available;
        z-index: 9999;
        padding: 0 16px;
    }

    .questionnaire .header-principal-top {
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-color: #f8f7f7;
    }

    .questionnaire .grey-line {
        position: absolute;
        width: 375px;
        height: 1px;
        top: 59px;
        left: 0;
    }

    .questionnaire .icon {
        right: 20px;
        position: absolute;
        transform: translateY(-172%);
    }

    .questionnaire .text-wrapper {
        flex: 1;
        font-family: var(--desktop-h3-BOLD-font-family);
        font-weight: var(--desktop-h3-BOLD-font-weight);
        color: #001a70;
        font-size: var(--desktop-h3-BOLD-font-size);
        line-height: var(--mobile-body-caption1-s-BOLD-line-height);
        position: relative;
        letter-spacing: var(--desktop-h3-BOLD-letter-spacing);
        font-style: var(--desktop-h3-BOLD-font-style);
    }

    .question-wrapper {
        width: 100%;
        padding: 20px;
    }

    .question-content {
        padding: var(--Spacing-spacing-1, 70px) var(--Spacing-spacing-2, 16px);
        position: relative;
        min-height: 100vh;
        padding-top: 295px;
    }

    .questionnaire .jauge-de-progression {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        padding-bottom: 20px;
    }

    .questionnaire .jauge {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
        position: relative;
        flex: 0 0 auto;
    }

    .questionnaire .questions {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 100px;
        position: relative;
        flex: 1;
        align-self: stretch;
        width: 100%;
    }

    .questionnaire .questions-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        position: relative;
        flex: 0 0 auto;
        align-self: stretch;
        width: 100%;
        background-color: #ffffff;
        padding: 60px 0px 40px;
    }

    .questionnaire .question {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 24px;
        position: relative;
        flex: 0 0 auto;
        padding-top: 56px;
    }

	.questionnaire .element {
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  gap: 24px;
	  position: relative;
	  width: 100%;
	  flex: 0 0 auto;
	}

	.questionnaire .padding-top-24 {
	    padding: 24px 16px 40px;
	}

	.questionnaire .frame-10 {
	    display: flex;
	    align-items: flex-start;
	    gap: 10px;
	    padding: 16px;
	    position: relative;
	    align-self: stretch;
	    width: 100%;
	    flex: 0 0 auto;
	    background-color: #ffffff;
	}

	.questionnaire .frame-15 {
	  display: flex;
	  flex-direction: column;
	  flex-wrap: wrap;
	  align-items: center;
	  gap: 24px 24px;
	  position: relative;
	  align-self: stretch;
	  width: 100%;
	  flex: 0 0 auto;
	}

    .questionnaire .frame-2 {
        display: flex;
        gap: 12px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        flex-direction: column;
    }

    .questionnaire .cta {
        display: flex;
        gap: 12px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        flex-direction: column;
    }

    .questionnaire .titre {
        position: relative;
        align-self: stretch;
        font-family: var(--desktop-body-parag-l-BOLD-font-family);
        font-weight: var(--desktop-body-parag-l-BOLD-font-weight);
        color: #001a70;
        font-size: var(--desktop-body-parag-l-BOLD-font-size);
        letter-spacing: var(--desktop-body-parag-l-BOLD-letter-spacing);
        line-height: var(--desktop-body-parag-l-BOLD-line-height);
        font-style: var(--desktop-body-parag-l-BOLD-font-style);
    }

    .dropdown {
        position: relative;
        padding: 25px;
    }

    .questionnaire .frame-2-b {
        display: flex;
        gap: 12px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main-component-input-wrapper {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 16px;
        position: relative;
        align-self: stretch;
        width: 70%;
        flex: 0 0 auto;
    }

    .dropdown select {
        width: 170px; /* Largeur du dropdown */
        height: 40px; /* Hauteur du dropdown */
        border: 1px solid #005bff; /* Bordure bleue */
        font-size: 16px; /* Taille de la police */
        color: #005bff; /* Couleur du texte */
        appearance: none; /* Désactiver l'apparence par défaut pour les autres navigateurs */
        background-color: white; /* Couleur de fond */
        padding: 5px; /* Espacement à l'intérieur */
        cursor: pointer; /* Forme du curseur en pointeur */
        font-style: var(--mobile-body-body-regular-font-style);
        font-size: var(--mobile-body-body-regular-font-size);
        font-weight: var(--mobile-body-body-regular-font-weight);
        font-family: var(--mobile-body-body-regular-font-family);
        padding-left: 15px;
    }

    .dropdown select:focus {
        outline: none; /* Supprimer le contour lors de la sélection */
    }

    .dropdown::after {
        content: url('../images/chevron-bas-2.svg');
        position: absolute;
        top: 35px;
        right: 40px;
        pointer-events: none; /* Éviter que l'icône ne réponde aux clics */
    }

    /*prices*/
    .prices {
        width: 100%;
        position: relative;
        font-family: var(--desktop-body-parag-regular-font-family);
        font-size: 92%;
        height: 200px;
    }

    .prices > img {
        width: 100%;
        height: 35%;
    }

    .prices .prices-item {
        position: absolute;
        border: 1px solid #001a70;
        width: 100px;
        text-align: center;
    }

    .prices .prices-item h5 {
        margin: 0 0 5px;
    }

    .prices .prices-item h6 {
        margin: 0;
        border-top: 1px solid #001A70;
        display: inline-block;
        padding: 5px 0 0;
        color: #001A70;
    }

    .prices .prices-item-left {
        top: 0;
        background: #e8512f;
        transform: translateY(-100%);
        border-radius: 0.125rem;
    }

    .prices .prices-item-bottom {
        left: 50%;
        transform: translateX(-50%);
        background: #F4F4F4;
        border-style: dashed;
        width: 150px;
        border-radius: 0.125rem;
        padding: 6px 0px;
    }

    .prices .prices-item-center {
        top: 0;
        background: #FF861D;
        transform: translate(-50%, -100%);
        left: 50%;
        border-radius: 0.125rem;
    }

    .prices .prices-item-right {
        top: 0;
        background: #8fd710;
        transform: translateY(-100%);
        right: 5%;
        border-radius: 0.125rem;
    }

    .prices .prices-item-left:after {
        content: ' ';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #e8512f;
        border: 1px solid #001a70;
        position: absolute;
        bottom: -20px;
        left: 10%;
        transform: translate(-50%, 100%);
    }

    .prices .prices-item-left:before {
        content: ' ';
        width: 2px;
        height: 20px;
        background-color: #001a70;
        position: absolute;
        bottom: 0;
        transform: translate(-50%, 100%);
        left: 10%;
    }

    .prices .prices-item-center:after {
        content: ' ';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #FF861D;
        border: 1px solid #001a70;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translate(-50%, 100%);
    }

    .prices .prices-item-center:before {
        content: ' ';
        width: 2px;
        height: 20px;
        background-color: #001a70;
        position: absolute;
        bottom: 0;
        transform: translate(-50%, 100%);
        left: 50%;
    }

    .prices .prices-item-right:after {
        content: ' ';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #8fd710;
        border: 1px solid #001a70;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translate(-50%, 100%);
    }

    .prices .prices-item-right:before {
        content: ' ';
        width: 2px;
        height: 20px;
        background-color: #001a70;
        position: absolute;
        bottom: 0;
        transform: translate(-50%, 100%);
        left: 50%;
    }

    .prices .prices-item-bottom:after {
        content: ' ';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #FF861D;
        border: 1px dashed #001a70;
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translate(-50%, -100%);
    }

    .prices .prices-item-bottom:before {
        content: ' ';
        width: 2px;
        height: 25px;
        background: repeating-linear-gradient(
                0deg,
                #001a70 0px,
                #001a70 1px,
                transparent 2px,
                transparent 4px
        );
        position: absolute;
        top: 0;
        transform: translate(-50%, -100%);
        left: 50%;
    }

    .continuons-container {
        margin: 0 auto;
        width: 400px;
    }

    .continuons-button {
        padding: 0.75rem 1rem;
        background: #005BFF;
        color: white;
        border: 1px solid;
        margin: 2% 0%;
        font-size: 16px;
        line-height: 22px;
        width: 100%;
    }

    .optimisation {
        padding: var(--Spacing-spacing-3, 24px) var(--Spacing-spacing-2, 16px);
        background-color: #1057CB;
        text-align: center;
    }

    .optimisation-button {
        width: 100%;
    }

    .criteres {
        margin-top: 18%;
        margin-left: 9%;
        margin-right: 9%;
        padding-left: 1%;
        padding-top: 1.4%;
        padding-bottom: 1.4%;
    }

    .criteres::after {
        content: url("/images/chevron-bas-2-black.svg");
        position: absolute;
        transform: translateX(100%);
        left: 90%;
    }

    .footer-resultat {
    }

    .questionnaire .check {
        display: flex;
        flex-direction: column;
        gap: 8px;
        position: relative;
    }

    .questionnaire .check-right {
        transform: translateX(82%);
        width: 30%;
    }


    .questionnaire .check-left {
        position: absolute;
    }

    .questionnaire .checkbox {
        display: flex;
        width: 250px;
        align-items: center;
        gap: 8px;
        position: relative;
        flex: 0 0 auto;
    }

    .questionnaire .checkbox-2 {
        display: flex;
        position: relative;
        border-radius: 2px;
    }

    .checkbox-2 input[type="checkbox" i] {
        transform: scale(1.5);
    }

    .accordion {
        margin: 1rem auto 0;
    }

    .accordion-button {
        padding: 10px;
    }

    .accordion-button::after {
        left: 90%;
        position: absolute;
    }
    .demenagement-header {
        width: 100%;
    }

    .demenagement-header > img {
        margin: 4rem auto 35px;
        display: block;
    }

    .demenagement-rendez-vous {
        width: 40%;
        margin: 3rem auto;
    }

    .demenagement-rendez-vous .title{
        color: var(--Color-Principales-color-primaire-1, #001A70);
        text-align: center;
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 700;
        font-family: var(--desktop-h2-regular-font-family);
        line-height: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .demenagement-rendez-vous > button {
        border-radius: 2px;
        background-color: #005BFF;
        border: 0;
        width: 100%;
        color: #fff;
        display: flex;
        padding: 0.75rem 1rem;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

    .question-wrapper .cta-valider {
        width: 95%;
        margin-top: 25px;
    }

	.questionnaire .frame-16 {
	  display: flex;
	  align-items: center;
	  gap: 8px;
	  position: relative;
	}

	.frame-16 .mentions-l-gales{
	  position: relative;
	  width: fit-content;
	  font-family: var(--body-1-regular-font-family);
	  font-weight: var(--desktop-h2-regular-BOLD-font-weight);
	  color: var(--x03-nuances-de-grisgris-fonc);
	  font-size: var(--body-body-s-bold-font-size);
	  letter-spacing: var(--desktop-h2-regular-letter-spacing);
	  line-height: var(--desktop-body-parag-l-regular-line-height);
	  white-space: nowrap;
	  font-style: var(--desktop-h2-regular-font-style);
	}

	.frame-16 .cta-legal-content {
	  max-height: 0;
      overflow: hidden;
	  transition: max-height 0.2s ease-out;
	  font-family: var(--body-1-regular-font-family);
	  font-weight: var(--desktop-body-parag-s-regular-font-weight);
	  color: var(--x03-nuances-de-grisgris-fonc);
	  font-size: var(--body-body-s-bold-font-size);
	  letter-spacing: var(--desktop-h2-regular-letter-spacing);
	  line-height: var(--desktop-body-parag-l-regular-line-height);
	}

    .questionnaire .container-4 {
        align-items: center;
        gap: 24px;
        padding: 16px;
        background-color: #F8F7F7;
        border: 0px none;
        display: flex;
        flex-direction: column;
        position: relative;
        width: 80%;
    }

    .questionnaire .frame-3 {
        display: flex;
        align-items: center;
        gap: 16px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        flex-direction: column;
    }

    .questionnaire .frame-3.etiquette {
        flex-direction: row;
    }

    .questionnaire .frame-87 {
        display: flex;
        align-items: center;
        gap: 16px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        flex-direction: row;
    }

    .questionnaire .IMG-recap-1 {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 200px;
        height: 200px;
    }

    .questionnaire .texte-4 {
        position: relative;
        align-self: stretch;
        font-family: var(--desktop-body-parag-regular-font-family);
        font-weight: 400;
        color: #1c1c1c;
        font-size: 14px;
        text-align: center;
        letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
        line-height: 18px;
        font-style: var(--desktop-body-parag-regular-font-style);
    }

    .questionnaire .bouton-boson-2 {
        border: hidden;
        cursor: pointer;
        display: inline-flex;
        background-color: #005bff;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        position: relative;
        flex: 0 0 auto;
        border-radius: 2px;
        width: 100%;
        margin: 0 auto;
    }

    .questionnaire .bot-card {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        position: relative;
        flex: 0 0 auto;
        width: 100%;
    }

    .questionnaire .bouton-boson-3 {
        display: flex;
        align-self: stretch;
        width: 100%;
        background-color: #005bff;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        position: relative;
        flex: 0 0 auto;
        border-radius: 2px;
        width: 100%;
    }

    .questionnaire .bot-card-2 {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        position: relative;
        flex: 0 0 auto;
        background-color: #005bff;
        width: 100%;
        margin: 0 auto;
    }

    .questionnaire .bouton-boson-4 {
        display: inline-flex;
        border: 1px solid #005bff;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        position: relative;
        flex: 0 0 auto;
        border-radius: 2px;
        width: 100%;
        background-color: white;
    }

      .label-btn {
        color: #005BFF;
        font-family: 'EDF 2020-Regular';
      }

    .questionnaire .text-resultat {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        position: relative;
        flex: 0 0 auto;
    }

    .questionnaire .title-resultat {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        position: relative;
        flex: 1;
        align-self: stretch;
        width: 100%;
        flex-grow: 1;
    }

    .btn-resultat {
        display: flex;
        flex-direction: row;
        gap: 10px;
        padding: 20px;
    }

    .questionnaire .bouton-boson-2-not-allowed {
        cursor: not-allowed;
        display: inline-flex;
        background-color: #CCCCCC;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        position: relative;
        flex: 0 0 auto;
        border-radius: 2px;
        width: 100%;
        margin: 0 auto;
        border: initial;
    }

    .width-device {
        width: 100%;
    }

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

    .padding-device {
        padding-left: 16px;
        padding-right: 16px;
    }

    .popup {
        display: none;
        position: fixed;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        padding: 30px;
        border: 1px solid #ccc;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 99999;
        width: 96%;
        height: 400px;
        font-family: var(--desktop-h4-BOLD-font-family);
        font-weight: var(--desktop-h4-BOLD-font-weight);
    }

    .close-btn {
        cursor: pointer;
        top: 74px;
    }

    .popup-link {
        padding: 0px 0px 0px 16px;
        font-size: 14px;
        line-height: 18px;
        font-weight: 400;
        font-family: var(--desktop-body-parag-s-bold-font-family);
    }

    .footer-wrapper{
        position: absolute;
        bottom: 2vh;
        z-index: 999999;
    }


    .questionnaire .content {
        max-height: 100%;
    }

    .navigation-buttons {
        align-items: flex-start;
        width: 95%;
        display: flex;
        justify-content: space-around;
        padding: 30px 0 10px 0;
    }

    .button {
        padding: 10px 25px;
        border-radius: 2px;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        width: 47%;
    }

    .button-previous {
        border: 1px solid #0066FF;
        color: #0066FF;
        background-color: white;
        transition: background-color 0.3s;
    }

    .button-previous:hover {
        background-color: #f0f0f0;
    }

    .button-next {
        background-color: #0066FF;
        color: white;
        border: none;
    }

  .resultat2 {
    display: flex;
    flex-direction: column;
    width: 95%;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
    margin-top: 80px;
  }

  .cards-container {
    display: grid;
    gap: 20px;
    padding: 6px 20px 20px 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .icon-card {
    background-color: #005BFF;
    color: white;
    text-align: center;
    padding: 15px;
    position: relative;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
  }

  .icon-card::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #0066ff;
  }

  .icon-card i {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .card-contrat {
    background-color: #005BFF;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 20px;
  }

  .card {
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    margin-bottom: 20px;
  }

  .card-title {
    color: white;
    font-family: var(--EDF-2020-font-family);
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 28px;
    letter-spacing: 0;
  }

  .reflexe-title {
    color: #1057CB;
    gap: 20px;
  }

  .check-container {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px;
    margin-bottom: 20px;
    background-color: #005BFF;
  }

  .container-reflexe {
    background-color: #F8F7F7;
    border: 1px solid #E0E0E0;
  }

  .cta-offre {
    display: flex;
    font-size: 16px;
    font-family: var(--EDF-2020-font-family);
    justify-content: center;
    align-items: center;
    background-color: white;
    color: #005BFF;
    text-decoration: none;
    padding: 12px 15px;
    font-weight: 400;
  }

  .cta-travaux {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .badge {
    background-color: #f2f2f2;
    color: #333;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-top: 10px;
  }

  .badge.green {
    background-color: #e8f5e9;
    color: #388e3c;
  }

  .card-text {
    font-size: 14px;
    margin: 10px 0;
    font-weight: 400;
    font-family: var(--EDF-2020-font-family);
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    color: white;
  }

  .card-text-plus {
    margin: 10px 0;
    font-family: var(--EDF-2020-font-family);
    font-size: 8px;
    color: #333333;
  }

  .reflexe-text {
    color: #333333;
  }

  .checklist {
    margin: 15px 0;
  }

  .checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 13px;
  }

  .checklist-item i {
    color: #0066ff;
    margin-right: 8px;
    font-size: 16px;
  }

  .check-text {
    display: flex;
    align-items: flex-start;
    color: white;
    margin-bottom: 5px;
    font-family: var(--EDF-2020-font-family);
    font-size: 14px;
  }

  .text-reflexe{
    color: #1C1C1C;
  }

  .check-title {
    margin-bottom: 10px;
    color: white;
    font-family: var(--EDF-2020-font-family);
    font-weight: bold;
    font-size: 14px;
  }

  .title-reflexe {
    color: #1C1C1C;
  }

  cta-reflex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    flex: 0 0 auto;
    background-color: #005bff;
  }

  .sticky-container {
    background-color: #F8F7F7;
    padding: 20px 20px 0px 20px;
    width: 100%;
  }

  .banner {
    background-color: #C0E410;
    padding: 5px 8px 5px 8px;
    font-family: var(--EDF-2020-font-family);
    display: inline-flex;
    align-items: center;
    max-width: 450px;
  }
  .superscript {
    font-family: var(--EDF-2020-font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    padding-left: 5px;
  }

  .tip {
    background-color: #f5f8ff;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
  }

  .tip i {
    color: #0066ff;
    margin-right: 8px;
    font-size: 16px;
  }

  .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0066ff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    text-decoration: none;
    transition: background-color 0.3s;
  }

  .btn:hover {
    background-color: #0052cc;
  }

  .btn i {
    margin-left: 8px;
  }

  .btn.outline {
    background-color: white;
    color: #0066ff;
    border: 1px solid #0066ff;
    padding: 8px 15px;
  }

  .btn.outline i {
    color: #0066ff;
  }

  .icon-blue {
    color: #0066ff;
  }

  .bottom-card {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
  }

  .bottom-card .card {
    width: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
  }

  .bottom-card .card img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .resultat-title {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    color: #001A70;
    font-family: var(--EDF-2020-font-family);
    line-height: 40px;
  }

  .resultat-subTitle {
    text-align: center;
    font-weight: 400;
    font-family: var(--EDF-2020-font-family);
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
  }

  .resultat-subTitle a {
    color: #0066ff;
    text-decoration: none;
  }

  .description {
    padding-bottom: 11px;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    font-family: var(--EDF-2020-font-family);
  }

  .nom-tuile {
    font-family: var(--EDF-2020-font-family);
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    text-align: center;
  }

  .conseil-box {
    background-color: #f0f8ff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
  }

  .conseil-title {
    display: flex;
  }

  .conseil-text {
    font-family: var(--EDF-2020-font-family);
    padding: 10px;
  }

  .conseil-description {
    color: #1C1C1C;
    font-size: 14px;
    margin: 0;
    font-family: var(--EDF-2020-font-family);
  }

  .vector-check {
    position: relative;
    width: 10px;
    height: 9px;
    margin: 5px 6px 0px 0px;
  }

  .vector-droite {
    position: relative;
    padding-left: 10px;
  }
}

/* Pour les grands écrans */
@media screen and (min-width: 1181px) {
    /* Styles pour l'icône info */
    .info-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background-color: #007bff;
        color: white;
        font-size: 10px;
        cursor: pointer;
        position: relative;
    }

    /* Container pour la tooltip */
    .tooltip-container {
        position: fixed;
        display: inline-block;
        right: 2px;
        top: 2px;
    }

    /* Base commune pour toutes les tooltips */
    .tooltip-base {
        visibility: hidden;
        width: 285px;
        background-color: white;
        color: black;
        text-align: left;
        border-radius: 8px;
        padding: 15px;
        position: absolute;
        z-index: 100;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        opacity: 0;
        transition: opacity 0.3s;
        left: 86px;
        transform: translateX(-50%);
        font-family: var(--desktop-h2-regular-font-family);
        size: 14px;
        line-height: 18px;
    }

    .tooltip {
        bottom: 31px;
    }

    .tooltip-vert {
        bottom: 31px;
        padding: 15px 15px 0px 15px !important;
    }

    .tooltip-orange {
        bottom: 31px;
        left: 86px !important;
        padding: 15px 15px 0px 15px !important;
    }

    .tooltip-semblables {
        top: 88px;
        left: -55px;
        padding-bottom: 3px;
    }

    /* Flèche pour "Foyers semblables" */
    .tooltip-semblables::after {
        content: "";
        position: absolute;
        bottom: 100%; /* Changé de top à bottom */
        left: 50%;
        margin-left: -12px;
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent white transparent;
    }

    /* Flèche de la tooltip */
    .tooltip::after {
        content: "";
        position: absolute;
        top: 100%;
        border-width: 8px;
        border-style: solid;
        border-color: white transparent transparent transparent /* Changé la direction de la flèche */
    }

    /* Afficher la tooltip au survol */
    .tooltip-container:hover .tooltip-base {
        visibility: visible;
        opacity: 1;
    }

    /* Afficher la tooltip quand elle est cliquée (même sans survol) */
    .tooltip-container.clicked .tooltip-base {
        visibility: visible;
        opacity: 1;
        z-index: 10000;
    }
    /* Ajoutez CSS spécifiques aux grands écrans ici */
    .simulator-container {
        width: 100%;
        max-width: 900px;
        margin: 20px auto;
        background-color: white;
    }

    .criteres-comparaison {
        padding-inline-start: 16px;
        margin-block-start: 7px;
    }

    .simulator-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        margin-bottom: 20px;
    }

    .simulator-title {
        font-size: 24px;
        color: #000;
        font-weight: bold;
    }

    .close-button {
        cursor: pointer;
        font-size: 20px;
        color: #333;
    }

    .steps-container {
        background-color: #f9f9f9;
        padding: 20px 10px 30px;
        width: 100%;
    }

    .step-title {
        text-align: center;
        margin-bottom: 30px;
        font-size: 18px;
        color: #003366;
        font-weight: normal;
    }

    .progress-steps {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    .progress-line-container {
        flex-grow: 1;
        height: 1px;
        position: relative;
        margin-bottom: 20px;
    }

    .progress-line {
        width: 60%;
        height: 1px;
        background-color: #666666;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 20%;
    }

    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 2;
    }

    .step-icon {
        width: 40px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 8px;
        background-color: #666;
        color: white;
    }

    .step-icon.active {
        background-color: #0066ff;
    }

    .icon-home, .icon-energy, .icon-light, .icon-pin {
        font-size: 20px;
        color: white;
    }

    .step-label {
        font-size: 14px;
        color: #666;
        text-align: center;
        font-family: var(--EDF-2020-font-family);
    }

    .step.active .step-label {
        color: #0066ff;
        font-weight: bold;
        font-family: var(--EDF-2020-font-family);
    }

    /* Étape active */
    .step.active .step-icon {
        background-color: #005BFF;
    }

    .step.active .step-label {
        color: #005BFF;
        font-weight: bold;
        font-family: var(--EDF-2020-font-family);
    }

    /* Étape complétée */
    .step.completed .step-icon {
        background-color: #005BFF;
        position: relative;
    }

    .step.completed .step-label {
        color: #005BFF;
        font-family: var(--EDF-2020-font-family);
    }

    .departements-dropdown {
        position: absolute;
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
        background-color: white;
        border-top: none;
        z-index: 1000;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        top: 51px
    }

    .departements-dropdown div {
        padding: 10px;
        cursor: pointer;
    }

    .departements-dropdown div:hover {
        background-color: #f5f5f5;
    }

    /* Icône de validation (coche verte) pour les étapes complétées */
    .check-icon {
        position: absolute;
        top: -5px;
        right: -5px;
        width: 18px;
        height: 18px;
        background-color: #43842A;
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        font-weight: bold;
    }

    .check-icon-foyer {
        position: absolute;
        margin-left: 30px;
        margin-bottom: 28px;
        width: 18px;
        height: 18px;
        background-color: #4CAF50;
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        font-weight: bold;
    }

    .progress-line.completed {
        background-color: #005BFF; /* Bleu pour les lignes complétées */
    }

    .questionnaire .left {
        width: 387px;
        height: 100vh;
        padding: 0px 48px 25px 0px;
        position: relative;
        align-self: stretch;
        background-color: #1057cb;
        overflow: hidden;
    }

    .questionnaire .left::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }

    .questionnaire .header-principal-resultat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 32px;
        position: fixed;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        background-color: #FFFFFF;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-color: #f8f7f7;
        z-index: 9997;
        height: 64px;
    }

    .questionnaire .icon-resultat {
        /*left: -400px;*/
        position: relative;
    }

    .questionnaire .text-wrapper-resultat {
        flex: 1;
        font-family: var(--desktop-h3-BOLD-font-family);
        font-weight: var(--desktop-h3-BOLD-font-weight);
        color: #001a70;
        font-size: var(--desktop-h3-BOLD-font-size);
        line-height: var(--desktop-h3-BOLD-line-height);
        position: relative;
        letter-spacing: var(--desktop-h3-BOLD-letter-spacing);
        font-style: var(--desktop-h3-BOLD-font-style);
    }

    .questionnaire .header-principal {
        position: fixed;
        background-color: #FFFFFF;
        width: -webkit-fill-available;
        width: -moz-available;
        width: fill-available;
        z-index: 9999;
        padding: 0 16px;
    }

    .header-principal-top{
        padding: 16px 32px;
        position: relative;
        height: 64px;
    }
    .questionnaire .grey-line{
        background: #f8f7f7;
        height: 1px;
        width: 100%;
        position: absolute;
        left: 0;
    }
    .questionnaire .icon {
        right: 25px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .questionnaire .text-wrapper {
        flex: 1;
        font-family: var(--desktop-h3-BOLD-font-family);
        font-weight: var(--desktop-h3-BOLD-font-weight);
        color: #001a70;
        font-size: var(--desktop-h3-BOLD-font-size);
        line-height: var(--desktop-h3-BOLD-line-height);
        position: relative;
        letter-spacing: var(--desktop-h3-BOLD-letter-spacing);
        font-style: var(--desktop-h3-BOLD-font-style);
        margin: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .questionnaire .jauge-de-progression {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 100px;
        position: relative;
        flex: 1;
        align-self: stretch;
        width: 100%;
        padding-top: 20px;
    }

    .question-wrapper {
        width: 100%;
    }

    .question-content {
        position: relative;
        min-height: 99vh;
        padding-top: 247px;
        display: flex;
        flex-direction: column;
    }

    .questionnaire .jauge {
        display: flex;
        flex-direction: column;
        width: 775px;
        align-items: center;
        gap: 24px;
        position: relative;
        flex: 0 0 auto;
    }

    .questionnaire .questions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 100px;
        position: relative;
        flex: 1;
        align-self: stretch;
        width: 100%;
        flex-grow: 1;
    }

    .questionnaire .title-resultat {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        position: relative;
        flex: 1;
        align-self: stretch;
        width: 100%;
        flex-grow: 1;
    }

    .questionnaire .text-resultat {
        display: flex;
        flex-direction: column;
        width: 764px;
        align-items: center;
        gap: 24px;
        position: relative;
        flex: 0 0 auto;
    }


    .questionnaire .questions-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        position: relative;
        flex: 0 0 auto;
        align-self: stretch;
        width: 100%;
        background-color: #ffffff;
        padding: 60px 0px 40px;
    }

    .questionnaire .question {
        display: flex;
        flex-direction: column;
        width: 764px;
        align-items: center;
        gap: 24px;
        position: relative;
        flex: 0 0 auto;
        margin-top: 80px;
    }

    .element {
	    display: flex;
	    flex-direction: column;
	    align-items: flex-start;
	    gap: 24px;
	    position: relative;
	    align-self: stretch;
	    width: 100%;
	    flex: 0 0 auto;
	}

	.questionnaire .frame-10 {
	    display: flex;
	    align-items: flex-start;
	    gap: 10px;
	    padding: 16px 0px 16px 0px;
	    position: relative;
	    align-self: stretch;
	    width: 100%;
	    flex: 0 0 auto;
	    background-color: #ffffff;
	}

	.questionnaire .frame-15 {
	  display: flex;
	  flex-wrap: wrap;
	  align-items: flex-start;
	  gap: 24px 24px;
	  position: relative;
	  align-self: stretch;
	  width: 100%;
	  flex: 0 0 auto;
	}

	.questionnaire .padding-top-24 {
	    padding: 24px 0px 40px;
	}

    .questionnaire .frame-2 {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .questionnaire .cta {
        display: flex;
        gap: 12px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        flex-direction: column;
    }

    .questionnaire .footer {
        display: flex;
        flex-direction: column;
        height: 120px;
        align-items: flex-start;
        gap: 10px;
        padding: 30px;
        position: relative;
        background-color: #ffffff;
        border-top-width: 1px;
        border-top-style: solid;
        border-color: #dadada;
    }

    .questionnaire .right {
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        flex: 1;
        align-self: stretch;
        flex-grow: 1;
        overflow-y: scroll;
    }

    .questionnaire .titre {
        position: relative;
        align-self: stretch;
        margin-top: -1px;
        font-family: var(--desktop-body-parag-l-BOLD-font-family);
        font-weight: var(--desktop-body-parag-l-BOLD-font-weight);
        color: #001a70;
        font-size: var(--desktop-body-parag-l-BOLD-font-size);
        letter-spacing: var(--desktop-body-parag-l-BOLD-letter-spacing);
        line-height: var(--desktop-body-parag-l-BOLD-line-height);
        font-style: var(--desktop-body-parag-l-BOLD-font-style);
        text-align: center;
        font-size: 18px;
    }

    .recap-resultat2 {
        display: flex;
        flex-direction: column;
        padding: 40px 0px 12px 0px;
    }

    .questionnaire .IMG-recap-1 {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 306px;
        height: 304px;
    }

    .questionnaire .frame-2-b {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main-component-input-wrapper {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 16px;
        position: relative;
        align-self: stretch;
        width: 70%;
        flex: 0 0 auto;
    }

    .dropdown {
        position: relative;
        padding: 23px;
    }

    .dropdown select {
        width: 200px; /* Largeur du dropdown */
        height: 40px; /* Hauteur du dropdown */
        border: 1px solid #005bff; /* Bordure bleue */
        font-size: 16px; /* Taille de la police */
        color: #005bff; /* Couleur du texte */
        appearance: none; /* Désactiver l'apparence par défaut pour les autres navigateurs */
        background-color: white; /* Couleur de fond */
        padding: 5px; /* Espacement à l'intérieur */
        cursor: pointer; /* Forme du curseur en pointeur */
        font-style: var(--mobile-body-body-regular-font-style);
        font-size: var(--mobile-body-body-regular-font-size);
        font-weight: var(--mobile-body-body-regular-font-weight);
        font-family: var(--mobile-body-body-regular-font-family);
        padding-left: 15px;
    }

    .dropdown select:focus {
        outline: none; /* Supprimer le contour lors de la sélection */
    }

    .dropdown::after {
        content: url('../images/chevron-bas-2.svg');
        position: absolute;
        top: 31px;
        right: 30px;
        pointer-events: none; /* Éviter que l'icône ne réponde aux clics */
    }

    .prices {
        width: 400px;
        position: relative;
        margin-top: 40px;
        margin: 0 auto;
        font-family: var(--desktop-body-parag-regular-font-family);
        font-size: 92%;
        height: 14rem;
    }

    .prices > img {
        /*width: 100%;*/
        /*height: 35%;*/
        width: 400px;
        height: 35%;
    }

    .prices .prices-item {
        position: absolute;
        border: 1px solid #001a70;
        width: 100px;
        text-align: center;
    }

    .prices .prices-item h5 {
        margin: 0 0 5px;
    }

    .prices .prices-item h6 {
        margin: 0;
        border-top: 1px solid #001A70;
        display: inline-block;
        padding: 5px 0 0;
        color: #001A70;
    }

    .prices .prices-item-left {
        top: 0;
        background: #e8512f;
        transform: translateY(-100%);
        border-radius: 0.125rem;
    }

    .prices .prices-item-bottom {
        left: 50%;
        transform: translateX(-50%);
        background: #F4F4F4;
        border-style: dashed;
        width: 150px;
        border-radius: 0.125rem;
        padding: 6px 0px;
    }

    .prices .prices-item-center {
        top: 0;
        background: #FF861D;
        transform: translate(-50%, -100%);
        left: 50%;
        border-radius: 0.125rem;
    }

    .prices .prices-item-right {
        top: 0;
        background: #8fd710;
        transform: translateY(-100%);
        right: 5%;
        border-radius: 0.125rem;
    }

    .prices .prices-item-left:after {
        content: ' ';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #e8512f;
        border: 1px solid #001a70;
        position: absolute;
        bottom: -20px;
        left: 10%;
        transform: translate(-50%, 100%);
    }

    .prices .prices-item-left:before {
        content: ' ';
        width: 2px;
        height: 20px;
        background-color: #001a70;
        position: absolute;
        bottom: 0;
        transform: translate(-50%, 100%);
        left: 10%;
    }

    .prices .prices-item-center:after {
        content: ' ';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #FF861D;
        border: 1px solid #001a70;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translate(-50%, 100%);
    }

    .prices .prices-item-center:before {
        content: ' ';
        width: 2px;
        height: 20px;
        background-color: #001a70;
        position: absolute;
        bottom: 0;
        transform: translate(-50%, 100%);
        left: 50%;
    }

    .prices .prices-item-right:after {
        content: ' ';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #8fd710;
        border: 1px solid #001a70;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translate(-50%, 100%);
    }

    .prices .prices-item-right:before {
        content: ' ';
        width: 2px;
        height: 20px;
        background-color: #001a70;
        position: absolute;
        bottom: 0;
        transform: translate(-50%, 100%);
        left: 50%;
    }

    .prices .prices-item-bottom:after {
        content: ' ';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #FF861D;
        border: 1px dashed #001a70;
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translate(-50%, -100%);
    }

    .prices .prices-item-bottom:before {
        content: ' ';
        width: 2px;
        height: 25px;
        background: repeating-linear-gradient(
                0deg,
                #001a70 0px,
                #001a70 1px,
                transparent 2px,
                transparent 4px
        );
        position: absolute;
        top: 0;
        transform: translate(-50%, -100%);
        left: 50%;
    }

    .continuons-container {
        margin: 0 auto;
        width: 400px;
    }

    .continuons-button {
        padding: 0.75rem 1rem;
        background: #005BFF;
        color: white;
        border: 1px solid;
        margin: 2% 0%;
        font-size: 16px;
        line-height: 22px;
        width: 100%;
    }

    .optimisation {
        margin: 4% 25%;
        padding: 0.4% 1% 2.4%;
        background-color: #1057CB;
        width: 40%;
        text-align: center;
    }

    .optimisation-button {
        width: 100%;
    }

    .criteres {
        margin-top: 13%;
        margin-left: 20%;
        margin-right: 20%;
        padding-left: 1%;
        padding-top: 0.4%;
        padding-bottom: 0.4%;
    }

    .criteres::after {
        content: url("/images/chevron-bas-2-black.svg");
        position: absolute;
        transform: translateX(100%);
        left: 90%;
    }

    .footer-resultat {
        width: 764px;
        margin: 0 auto;
    }

    .questionnaire .check {
        display: flex;
        flex-direction: column;
        gap: 8px;
        position: relative;
    }

    .questionnaire .check-right {
        width: 30%;
        transform: translateX(174%);
    }


    .questionnaire .check-left {
        position: absolute;
    }

    .questionnaire .checkbox {
        display: flex;
        width: 250px;
        align-items: center;
        gap: 8px;
        position: relative;
        flex: 0 0 auto;
    }

    .questionnaire .checkbox-2 {
        display: flex;
        position: relative;
        border-radius: 2px;
    }

    .checkbox-2 input[type="checkbox" i] {
        transform: scale(1.5);
    }

    .accordion {
        width: 764px;
        margin: 0 auto;
    }

    .accordion-button {
        padding: 0px 10px 10px;
    }

    .accordion-button::after {
        left: 70%;
        position: relative;
        top: 7px;
    }

    .demenagement-header {
        width: 100%;
    }

    .demenagement-header > img {
        margin: 5rem auto 0;
        display: block;
    }

    .demenagement-rendez-vous {
        width: 40%;
        margin: 0 auto;
    }

    .demenagement-rendez-vous .title{
        color: var(--Color-Principales-color-primaire-1, #001A70);
        text-align: center;
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 700;
        font-family: var(--desktop-h2-regular-font-family);
        line-height: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .demenagement-rendez-vous > button {
        border-radius: 2px;
        background-color: #005BFF;
        border: 0;
        width: 100%;
        color: #fff;
        display: flex;
        padding: 0.75rem 1rem;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

    .question-wrapper .cta-valider {
        width: 50%;
        margin: 15px auto 0;
    }

    .questionnaire .frame-16 {
	  display: flex;
	  align-items: center;
	  gap: 8px;
	  padding: 8px 40px;
	  position: relative;
	}

	.frame-16 .mentions-l-gales{
	  position: relative;
	  width: fit-content;
	  font-family: var(--body-1-regular-font-family);
	  font-weight: var(--desktop-h2-regular-BOLD-font-weight);
	  color: var(--x03-nuances-de-grisgris-fonc);
	  font-size: var(--body-body-s-bold-font-size);
	  letter-spacing: var(--desktop-h2-regular-letter-spacing);
	  line-height: var(--desktop-body-parag-l-regular-line-height);
	  white-space: nowrap;
	  font-style: var(--desktop-h2-regular-font-style);
	}

	.frame-16 .cta-legal-content {
	  max-height: 0;
      overflow: hidden;
	  transition: max-height 0.2s ease-out;
	  font-family: var(--body-1-regular-font-family);
	  font-weight: var(--desktop-body-parag-s-regular-font-weight);
	  color: var(--x03-nuances-de-grisgris-fonc);
	  font-size: var(--body-body-s-bold-font-size);
	  letter-spacing: var(--desktop-h2-regular-letter-spacing);
	  line-height: var(--desktop-body-parag-l-regular-line-height);
	}

    .questionnaire .container-4 {
        align-items: center;
        gap: 24px;
        padding: 32px;
        background-color: #F8F7F7;
        border: 0px none;
        display: flex;
        flex-direction: column;
        position: relative;
        margin-top: 20px;
    }

    .questionnaire .frame-3 {
        display: flex;
        align-items: center;
        gap: 16px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }


    .questionnaire .frame-87 {
        display: flex;
        align-items: center;
        gap: 16px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .questionnaire .texte-4 {
        position: relative;
        align-self: stretch;
        font-family: var(--desktop-body-parag-regular-font-family);
        font-weight: 400;
        color: #1c1c1c;
        font-size: 20px;
        text-align: center;
        letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
        line-height: 22px;
        font-style: var(--desktop-body-parag-regular-font-style);
    }

    .questionnaire .bouton-boson-2 {
        border: hidden;
        cursor: pointer;
        display: inline-flex;
        background-color: #005bff;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        position: relative;
        flex: 0 0 auto;
        border-radius: 2px;
        width: 294px;
        margin: 0 auto;
    }

    .questionnaire .bot-card {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        position: relative;
        flex: 0 0 auto;
    }

    .questionnaire .bouton-boson-3 {
        display: flex;
        align-self: stretch;
        width: 100%;
        background-color: #005bff;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        position: relative;
        flex: 0 0 auto;
        border-radius: 2px;
        margin: 0 auto;
    }

    .questionnaire .bot-card-2 {
        margin-left: -7.5px;
        margin-right: -7.5px;
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        position: relative;
        flex: 0 0 auto;
        background-color: #005bff;
    }

    .btn-resultat {
        display: flex;
        flex-direction: row;
        gap: 10px;
        padding: 20px;
    }

    .questionnaire .bouton-boson-4 {
        display: inline-flex;
        border: 1px solid #005bff;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        position: relative;
        flex: 0 0 auto;
        border-radius: 2px;
        margin: 0 auto;
        background-color: white;
    }

  .label-btn {
    color: #005BFF;
    font-family: 'EDF 2020-Regular';
  }

    .questionnaire .bouton-boson-2-not-allowed {
        cursor: not-allowed;
        display: inline-flex;
        background-color: #CCCCCC;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        position: relative;
        flex: 0 0 auto;
        border-radius: 2px;
        width: 295px;
        margin: 0 auto;
        border: initial;
    }

    .width-device {
        width: 870px !important;
    }

    .text-align-device {
        text-align: left !important;
    }

    .gap-48 {
        gap: 48px !important;
    }

    .height-400 {
        height: 400px !important;
    }

    .popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        padding: 30px;
        border: 1px solid #ccc;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 99999;
        width: 554px;
        height: 316px;
        font-family: var(--desktop-h4-BOLD-font-family);
        font-weight: var(--desktop-h4-BOLD-font-weight);
    }

    .popup-link {
        padding: 34px 0px 0px 48px;
        color: white;
        font-size: 14px;
        line-height: 18px;
        font-weight: 400;
        font-family: var(--desktop-body-parag-s-bold-font-family);
        position: fixed;
        bottom: 48px
    }

    .footer-wrapper {
        display: none;
    }

    .questionnaire .content {
        max-height: 100vh;
    }

    .button {
        padding: 10px 25px;
        border-radius: 2px;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
        text-decoration: none;
    }

    .button-previous {
        border: 1px solid #0066FF;
        color: #0066FF;
        background-color: white;
        transition: background-color 0.3s;
    }

    .button-previous:hover {
        background-color: #f0f0f0;
    }

    .button-next {
        background-color: #0066FF;
        color: white;
        border: none;
    }

    .navigation-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 20px;
        margin-bottom: 300px;
    }

    .resultat2 {
        display: flex;
        flex-direction: column;
        width: 75%;
        align-items: center;
        position: relative;
        flex: 0 0 auto;
        margin-top: 80px;
    }

    .cards-container {
        display: grid;
        gap: 20px;
        padding: 6px 20px 20px 20px;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .icon-card {
        background-color: #005BFF;
        color: white;
        text-align: center;
        padding: 15px;
        position: relative;
        height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3px;
    }

    .icon-card::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #0066ff;
    }

    .icon-card i {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .card-contrat {
        background-color: #005BFF;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        position: relative;
        margin-bottom: 20px;
    }

    .card {
        background-color: white;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        position: relative;
        margin-bottom: 20px;
    }

    .card-title {
        color: white;
        font-family: var(--EDF-2020-font-family);
        font-weight: bold;
        font-size: 20px;
        margin-bottom: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        line-height: 28px;
        letter-spacing: 0;
    }

    .reflexe-title {
        color: #1057CB;
        gap: 20px;
    }

    .check-container {
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: 15px;
        margin-bottom: 20px;
        background-color: #005BFF;
    }

    .container-reflexe {
        background-color: #F8F7F7;
        border: 1px solid #E0E0E0;
    }

    .cta-offre {
        display: flex;
        font-size: 16px;
        font-family: var(--EDF-2020-font-family);
        justify-content: center;
        align-items: center;
        background-color: white;
        color: #005BFF;
        text-decoration: none;
        padding: 12px 15px;
        font-weight: 400;
    }

    .cta-travaux {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .badge {
        background-color: #f2f2f2;
        color: #333;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 12px;
        display: inline-block;
        margin-top: 10px;
    }

    .badge.green {
        background-color: #e8f5e9;
        color: #388e3c;
    }

    .card-text {
        font-size: 14px;
        margin: 10px 0;
        font-weight: 400;
        font-family: var(--EDF-2020-font-family);
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0;
        color: white;
    }

  .card-text-plus {
    margin: 10px 0;
    font-family: var(--EDF-2020-font-family);
    font-size: 8px;
    color: #333333;
  }

    .reflexe-text {
        color: #333333;
    }

    .checklist {
        margin: 15px 0;
    }

    .checklist-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 8px;
        font-size: 13px;
    }

    .checklist-item i {
        color: #0066ff;
        margin-right: 8px;
        font-size: 16px;
    }

    .check-text {
        display: flex;
        align-items: flex-start;
        color: white;
        margin-bottom: 5px;
        font-family: var(--EDF-2020-font-family);
        font-size: 14px;
    }

    .text-reflexe{
        color: #1C1C1C;
    }

    .check-title {
        margin-bottom: 10px;
        color: white;
        font-family: var(--EDF-2020-font-family);
        font-weight: bold;
        font-size: 14px;
    }

    .title-reflexe {
        color: #1C1C1C;
    }

    cta-reflex {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        position: relative;
        flex: 0 0 auto;
        background-color: #005bff;
    }

    .sticky-container {
      background-color: #F8F7F7;
      padding: 20px 20px 0px 20px;
      width: 100%;
    }

    .banner {
        background-color: #C0E410;
        padding: 5px 8px 5px 8px;
        font-family: var(--EDF-2020-font-family);
        display: inline-flex;
        align-items: center;
        max-width: 450px;
    }
    .superscript {
        font-family: var(--EDF-2020-font-family);
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0;
        padding-left: 5px;
    }

    .tip {
        background-color: #f5f8ff;
        padding: 10px;
        border-radius: 5px;
        margin-top: 10px;
        font-size: 13px;
        display: flex;
        align-items: flex-start;
    }

    .tip i {
        color: #0066ff;
        margin-right: 8px;
        font-size: 16px;
    }

    .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #0066ff;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 10px 15px;
        font-size: 14px;
        cursor: pointer;
        margin-top: 15px;
        width: 100%;
        text-decoration: none;
        transition: background-color 0.3s;
    }

    .btn:hover {
        background-color: #0052cc;
    }

    .btn i {
        margin-left: 8px;
    }

    .btn.outline {
        background-color: white;
        color: #0066ff;
        border: 1px solid #0066ff;
        padding: 8px 15px;
    }

    .btn.outline i {
        color: #0066ff;
    }

    .icon-blue {
        color: #0066ff;
    }

    .bottom-card {
        margin-top: 20px;
        display: flex;
        justify-content: flex-end;
    }

    .bottom-card .card {
        width: 250px;
        display: flex;
        align-items: center;
        padding: 15px;
    }

    .bottom-card .card img {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }

    .resultat-title {
        text-align: center;
        font-weight: 700;
        font-size: 32px;
        color: #001A70;
        font-family: var(--EDF-2020-font-family);
        line-height: 40px;
    }

    .bloc-title {
        max-width: 77%;
    }

    .resultat-subTitle {
        text-align: center;
        font-weight: 400;
        font-family: var(--EDF-2020-font-family);
        font-size: 20px;
        line-height: 28px;
        letter-spacing: 0;
    }

    .resultat-subTitle a {
        color: #0066ff;
        text-decoration: none;
    }

    .description {
        padding-bottom: 11px;
        display: flex;
        flex-direction: column;
        text-align: center;
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
        font-family: var(--EDF-2020-font-family);
    }

    .nom-tuile {
        font-family: var(--EDF-2020-font-family);
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0;
        text-align: center;
    }

    .conseil-box {
        background-color: #f0f8ff;
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
    }

    .conseil-title {
        display: flex;
    }

    .conseil-text {
        font-family: var(--EDF-2020-font-family);
        padding: 10px;
    }

    .conseil-description {
        color: #1C1C1C;
        font-size: 14px;
        margin: 0;
        font-family: var(--EDF-2020-font-family);
    }

    .vector-check {
        position: relative;
        width: 10px;
        height: 9px;
        margin: 5px 6px 0px 0px;
    }

    .vector-droite {
        position: relative;
        padding-left: 10px;
    }
}

@media screen and (min-width: 1181px)  and (max-height: 720px) {
    .popup-link {
        position: static;
    }
    .questionnaire .left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;

    }
    .questionnaire .IMG-hub-EE {
        margin-top: 10px !important;
        margin-bottom: -20px !important;
    }
    .questionnaire .texte {
        margin-top: 20px !important;
    }
}

.questionnaire .content {
    display: flex;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #ffffff;
}

.questionnaire .top {
    padding: 0px 0px 0px 48px;
    position: relative;
    width: 100%;
}

.questionnaire .texte {
    position: relative;
    align-self: stretch;
    font-family: var(--desktop-h2-regular-font-family);
    font-weight: var(--desktop-h2-regular-font-weight);
    color: #ffffff;
    font-size: var(--desktop-h2-regular-font-size);
    letter-spacing: var(--desktop-h2-regular-letter-spacing);
    line-height: var(--desktop-h2-regular-line-height);
    font-style: var(--desktop-h2-regular-font-style);
    margin-bottom: 20px;
    margin-top: 49px;
}

.questionnaire .under-orange {
    position: relative;
    width: 40px;
    height: 4px;
    background-color: #e85130;
}

.questionnaire .IMG-hub-EE {
    position: relative;
    width: 339px;
    height: 263px;
    margin-top: 50px;
}

.questionnaire .header-logo {
    position: relative;
    height: 32px;
    margin-top: 18px;
    margin-bottom: 13px;
}

.questionnaire .padding-top-40 {
    padding-top: 50px;
}

.questionnaire .padding-top-80 {
    padding-top: 80px;
}

.questionnaire .close {
    width: 24px;
    height: 24px;
    top: 2px;
    left: 2px;
}

.questionnaire .conteneur {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}


.questionnaire .vector {
    position: absolute;
    width: 14px;
    height: 11px;
    top: 2px;
    left: 1px;
}


.questionnaire .indicateur-2 {
    background-color: #ffffff;
    position: relative;
    flex: 1;
    flex-grow: 1;
    height: 4px;
}

.questionnaire .indicateur-3 {
    position: relative;
    flex: 1;
    flex-grow: 1;
    height: 4px;
    background-color: #43842A;
}


.questionnaire .div-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .div-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .div-4 {
    padding: 8px;
    flex: 1;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    position: relative;
    border: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #001a70;
    width: 100%;
}

.questionnaire .div-5 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px 12px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .div-6 {
    align-items: flex-start;
    gap: 16px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.questionnaire .div-8 {
    padding: 0px 4px;
    flex: 1;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.questionnaire .div-10 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.questionnaire .div-11 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .frame {
    display: flex;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .tags {
    display: inline-flex;
    align-items: center;
    justify-content: left;
    gap: 4px;
    padding: 4px 8px;
    position: relative;
    flex: 0 0 auto;
    background-color: #001a70;
}

.questionnaire .tags-23 {
    display: inline-flex;
    align-items: left;
    justify-content: left;
    gap: 4px;
    padding: 4px 8px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 16px;
    border-width: 1px;
    border-style: solid;
    border-color: #FFB210;
    width: 100%;
}

.questionnaire .tags-27 {
    display: inline-flex;
    align-items: left;
    justify-content: left;
    gap: 4px;
    padding: 4px 0px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 16px;
    border-width: 1px;
    border-style: solid;
    border-color: #C0E410;
    width: 100%;
}

.questionnaire .img {
    position: relative;
    width: 24px;
    height: 24px;
}

.questionnaire .img-2 {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 8px;
}

.questionnaire .img-3 {
  position: relative;
  width: 16px;
  height: 16px;
}

.questionnaire .img-4 {
  position: relative;
  width: 24px;
  height: 24px;
}

.questionnaire .vector-2 {
    position: absolute;
    width: 19px;
    height: 17px;
    top: 4px;
    left: 2px;
}

.questionnaire .label {
    position: relative;
    width: fit-content;
    font-family: var(--desktop-body-parag-s-regular-font-family);
    font-weight: var(--desktop-body-parag-s-regular-font-weight);
    color: #ffffff;
    font-size: var(--desktop-body-parag-s-regular-font-size);
    letter-spacing: var(--desktop-body-parag-s-regular-letter-spacing);
    line-height: var(--desktop-body-parag-s-regular-line-height);
    white-space: nowrap;
    font-style: var(--desktop-body-parag-s-regular-font-style);
}

.questionnaire .label-gray {
    position: relative;
    width: fit-content;
    font-family: var(--desktop-body-parag-s-regular-font-family);
    font-weight: var(--desktop-body-parag-s-regular-font-weight);
    color: #666666;
    font-size: var(--desktop-body-parag-s-regular-font-size);
    letter-spacing: var(--desktop-body-parag-s-regular-letter-spacing);
    line-height: var(--desktop-body-parag-s-regular-line-height);
    white-space: nowrap;
    font-style: var(--desktop-body-parag-s-regular-font-style);
}

.questionnaire .label-dark-blue {
    position: relative;
    width: fit-content;
    font-family: var(--desktop-body-parag-s-regular-font-family);
    font-weight: var(--desktop-body-parag-s-regular-font-weight);
    color: #001A70;
    font-size: var(--desktop-body-parag-s-regular-font-size);
    letter-spacing: var(--desktop-body-parag-s-regular-letter-spacing);
    line-height: var(--desktop-body-parag-s-regular-line-height);
    white-space: nowrap;
    font-style: var(--desktop-body-parag-s-regular-font-style);
}

.questionnaire .label-22 {
    position: relative;
    width: fit-content;
    font-family: var(--desktop-body-parag-regular-font-family);
    font-weight: var(--desktop-body-parag-regular-font-weight);
    color: #1C1C1C;
    font-size: var(--desktop-body-parag-regular-font-size);
    letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
    line-height: var(--desktop-body-parag-regular-line-height);
    /*white-space: nowrap;*/
    font-style: var(--desktop-body-parag-regular-font-style);
}

.questionnaire .label-23 {
    position: relative;
    width: fit-content;
    margin-top: 4px;
    padding: 8px;
    font-family: var(--desktop-body-parag-regular-font-family);
    color: #1C1C1C;
    letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.questionnaire .label-24 {
    position: relative;
    width: fit-content;
    margin-top: 2px;
    font-family: var(--desktop-body-parag-regular-font-family);
    font-weight: var(--desktop-body-parag-regular-font-weight);
    color: #1C1C1C;
    font-size: var(--desktop-body-parag-regular-font-size);
    letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
    line-height: var(--desktop-body-parag-regular-line-height);
    /*white-space: nowrap;*/
    font-style: var(--desktop-body-parag-regular-font-style);
}

.questionnaire .question-m-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    gap: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .question-m {
    position: relative;
    flex: 1;
    margin-top: 0;
    margin-bottom: 0;
    font-family: var(--desktop-h4-BOLD-font-family);
    font-weight: var(--desktop-h4-BOLD-font-weight);
    color: #1c1c1c;
    font-size: var(--desktop-h4-BOLD-font-size);
    letter-spacing: var(--desktop-h4-BOLD-letter-spacing);
    line-height: var(--desktop-h4-BOLD-line-height);
    font-style: var(--desktop-h4-BOLD-font-style);
}

.questionnaire .data-picker {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    background-color: #ffffff;
    border-radius: 2px;
    border: 1px solid #005bff;
}

.data-picker:hover {
    background-color: #dddddd;
    cursor: pointer;
}

.data-picker:active {
    background-color: #1057CB; /* Change color on click */
    color: #ffffff;
}

.questionnaire .data-picker-active {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    border-radius: 2px;
    border: 1px solid #005bff;
    color: #ffffff;
    background-color: #1057CB; /* Change color on click */
}


.questionnaire .data-picker-4 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    border-radius: 2px;
    border-color: #005bff;
    justify-content: center;
    width: 100%;
}

.questionnaire .data-picker-5 {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 9px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    background-color: #005bff;
    border-radius: 2px;
    justify-content: center;
    border: 0px;
    margin: 0 auto;
    width: fit-content;
}

.questionnaire .data-picker-6 {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 9px;
    position: absolute;
    background-color: #ffffff;
    border-radius: 2px;
    border: 2px solid;
    border-color: #005bff;
    justify-content: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.questionnaire .data-picker-7 {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 9px;
    position: absolute;
    flex: 1;
    flex-grow: 1;
    background-color: #005bff;
    border-radius: 2px;
    justify-content: center;
    border: 0px;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.questionnaire .data-picker-8 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    border-radius: 2px;
    border-color: #005bff;
    justify-content: center;
    width: 100%;
}

.questionnaire .data-picker-9 {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 9px;
    position: relative;
    border-radius: 2px;
    border: 2px solid;
    border-color: #005bff;
    justify-content: center;
    margin: 0 auto;
    width: fit-content;
}

.questionnaire .data-picker-10 {
    display: flex;
    padding: 9px;
    position: absolute;
    flex: 1;
    flex-grow: 1;
    background-color: #005bff;
    border-radius: 2px;
    justify-content: center;
    border: 0px;
    left: 0px;
    bottom: 10px;
    width: fit-content;
}

.data-picker .top-2:active {
    background-color: #1057CB; /* Change color on click */
    color: #ffffff;
}

.questionnaire .data-picker-active .top-2 {
    position: relative;
    width: fit-content;
    font-family: var(--mobile-body-body-regular-font-family);
    font-weight: var(--mobile-body-body-regular-font-weight);
    color: #ffffff;
    font-size: var(--mobile-body-body-regular-font-size);
    letter-spacing: var(--mobile-body-body-regular-letter-spacing);
    line-height: var(--mobile-body-body-regular-line-height);
    white-space: nowrap;
    font-style: var(--mobile-body-body-regular-font-style);
}

.questionnaire .top-2 {
    position: relative;
    width: fit-content;
    font-family: var(--mobile-body-body-regular-font-family);
    font-weight: var(--mobile-body-body-regular-font-weight);
    color: #005bff;
    font-size: var(--mobile-body-body-regular-font-size);
    letter-spacing: var(--mobile-body-body-regular-letter-spacing);
    line-height: var(--mobile-body-body-regular-line-height);
    white-space: nowrap;
    font-style: var(--mobile-body-body-regular-font-style);
}

.questionnaire .top-6 {
    position: relative;
    width: fit-content;
    font-family: var(--mobile-body-body-regular-font-family);
    font-weight: var(--mobile-body-body-regular-font-weight);
    color: #ffffff;
    font-size: var(--mobile-body-body-regular-font-size);
    letter-spacing: var(--mobile-body-body-regular-letter-spacing);
    line-height: var(--mobile-body-body-regular-line-height);
    white-space: nowrap;
    font-style: var(--mobile-body-body-regular-font-style);
}

.questionnaire .top-5 {
    position: relative;
    width: 300px;
    flex: 1 1;
    font-family: var(--mobile-body-body-regular-font-family);
    font-weight: var(--mobile-body-body-regular-font-weight);
    color: #1C1C1C;
    font-size: var(--mobile-body-body-regular-font-size);
    letter-spacing: var(--mobile-body-body-regular-letter-spacing);
    line-height: var(--mobile-body-body-regular-line-height);
    white-space: nowrap;
    font-style: var(--mobile-body-body-regular-font-style);
}

.questionnaire .vector-3 {
    position: absolute;
    width: 22px;
    height: 17px;
    top: 4px;
    left: 1px;
}

.questionnaire .rectangle {
    width: 7px;
    height: 70px;
    left: 1042px;
    background-color: #7c7c7d;
    border-radius: 4px;
    position: absolute;
    top: 0;
}

.questionnaire .text-input-container {
    display: flex;
    flex-direction: column;
    height: 83px;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 40px;
    position: relative;
    align-self: stretch;
    width: 100%;
    margin-bottom: -7px;
    background-color: #ffffff;
}

.questionnaire .text-input-container-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: -36.5px;
    margin-bottom: -36.5px;
    display: flex;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .text-area-1 {
    margin-top: -1px;
    font-family: var(--desktop-body-parag-regular-font-family);
    font-weight: var(--desktop-body-parag-regular-font-weight);
    color: #1C1C1C;
    font-size: var(--desktop-body-parag-regular-font-size);
    line-height: var(--desktop-body-parag-regular-line-height);
    position: relative;
    width: fit-content;
    letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
    white-space: nowrap;
    font-style: var(--desktop-body-parag-regular-font-style);
}

.questionnaire .div-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    display: flex;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .text-input-wrapper {
    align-items: flex-start;
    justify-content: space-around;
    display: flex;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .text-input {
    display: flex;
    flex-direction: column;
    width: 382px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    align-self: stretch;
}

.questionnaire .logo-EDF {
    position: relative;
    width: 84px;
    height: 36px;
    transform: translateY(16px);
}

.questionnaire .text-input-2 {
    position: absolute;
    width: 41px;
    height: 16px;
    top: 13px;
    left: 43px;
}

.questionnaire .wings {
    position: absolute;
    width: 40px;
    height: 36px;
    top: 0;
    left: 0;
}

.questionnaire .p {
    position: relative;
    width: fit-content;
    font-family: var(--02-text-text-2-16-text-2-font-family);
    font-weight: var(--02-text-text-2-16-text-2-font-weight);
    color: #001a70;
    font-size: var(--02-text-text-2-16-text-2-font-size);
    letter-spacing: var(--02-text-text-2-16-text-2-letter-spacing);
    line-height: var(--02-text-text-2-16-text-2-line-height);
    white-space: nowrap;
    font-style: var(--02-text-text-2-16-text-2-font-style);
}

.questionnaire .vector-4 {
    position: absolute;
    width: 19px;
    height: 19px;
    top: 2px;
    left: 2px;
}

.questionnaire .champs-de-saisie {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .champs {
    display: flex;
    height: 50px;
    align-items: center;
    gap: 8px;
    padding: 8px 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    margin-top: 2px;
    margin-left: -1px;
    margin-right: -1px;
}

.questionnaire .label-2 {
    padding-top: 15px;
    font-family: var(--desktop-body-parag-regular-font-family);
    font-weight: var(--desktop-body-parag-regular-font-weight);
    color: #001a70;
    font-size: 16px;
    line-height: var(--desktop-body-parag-regular-line-height);
    position: relative;
    width: fit-content;
    letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
    white-space: nowrap;
    font-style: var(--desktop-body-parag-regular-font-style);
}

.questionnaire .label-2::placeholder {
    font-family: "EDF 2020-Regular", Helvetica;
    color: #001a70;
}

.questionnaire .messages {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .icone {
    display: inline-flex;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
}

.questionnaire .message-d {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: "EDF 2020-Regular", Helvetica;
    font-weight: 400;
    color: #001a70;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 18px;
}

.questionnaire .message-d-r {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: "EDF 2020-Regular", Helvetica;
    font-weight: 400;
    color: #E10000;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 18px;
}

.questionnaire .message-r2 {
    font-family: "EDF 2020-Regular", Helvetica;
    font-weight: 700;
    color: #001a70;
    font-size: 11px;
    line-height: 14px;
}

.question-wrapper .cta-valider {
    justify-content: center;
    display: flex;
    align-items: flex-start;
}

.questionnaire .bouton-boson {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    position: relative;
    border-radius: 2px;
    background-color: white;
    border: initial;
}

.questionnaire .bouton-boson:active {
    cursor: pointer;
    color: #3e3d3d;
}

.questionnaire .bouton-boson:hover {
    cursor: pointer;
}

.questionnaire .label-3 {
    font-family: var(--desktop-body-parag-regular-font-family);
    font-weight: var(--desktop-body-parag-regular-font-weight);
    color: #666666;
    font-size: var(--desktop-body-parag-regular-font-size);
    line-height: var(--desktop-body-parag-regular-line-height);
    position: relative;
    width: fit-content;
    letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
    white-space: nowrap;
    font-style: var(--desktop-body-parag-regular-font-style);
}

.questionnaire .label-4 {
    margin-top: -1px;
    font-family: "EDF 2020-Regular", Helvetica;
    font-weight: 400;
    color: #001a70;
    font-size: 16px;
    line-height: 22px;
    position: relative;
    width: fit-content;
    letter-spacing: 0;
    white-space: nowrap;
}

.questionnaire .label-4::placeholder {
    font-family: "EDF 2020-Regular", Helvetica;
    color: #001a70;
}

.questionnaire .message-d-2 {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: "EDF 2020-Regular", Helvetica;
    font-weight: 400;
    color: #001a70;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 18px;
    white-space: nowrap;
}

.questionnaire .padding {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    border: 1px solid;
    border-color: #005bff;
    background-color: white;
}

.questionnaire .padding-2 {
    display: flex;
    width: 95px;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
}

.questionnaire .text-wrapper-2 {
    position: relative;
    flex: 1;
    font-family: var(--desktop-h2-BOLD-font-family);
    font-weight: var(--desktop-h2-BOLD-font-weight);
    color: #001a70;
    background-color: #F8F7F7;
    font-size: var(--desktop-h2-BOLD-font-size);
    text-align: center;
    letter-spacing: var(--desktop-h2-BOLD-letter-spacing);
    line-height: var(--desktop-h2-BOLD-line-height);
    font-style: var(--desktop-h2-BOLD-font-style);
}

.questionnaire .box {
    cursor: pointer;
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    border: 1px solid;
    border-color: #666666;
}

.questionnaire .texte-2 {
    font-family: var(--desktop-body-parag-regular-font-family);
    font-weight: var(--desktop-body-parag-regular-font-weight);
    color: #333333;
    position: relative;
    letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
    font-style: var(--desktop-body-parag-regular-font-style);
    cursor: pointer;
}

.questionnaire .top-3 {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: var(--mobile-body-body-regular-font-family);
    font-weight: var(--mobile-body-body-regular-font-weight);
    color: #005bff;
    font-size: var(--mobile-body-body-regular-font-size);
    letter-spacing: var(--mobile-body-body-regular-letter-spacing);
    line-height: var(--mobile-body-body-regular-line-height);
    white-space: nowrap;
    font-style: var(--mobile-body-body-regular-font-style);
}

.questionnaire .data-picker-2 {
    flex: 1;
    flex-grow: 1;
    border-color: #666666;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    position: relative;
    background-color: #ffffff;
    border-radius: 2px;
    border: 1px solid;
}

.questionnaire .top-4 {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: var(--mobile-body-body-regular-font-family);
    font-weight: var(--mobile-body-body-regular-font-weight);
    color: #666666;
    font-size: var(--mobile-body-body-regular-font-size);
    letter-spacing: var(--mobile-body-body-regular-letter-spacing);
    line-height: var(--mobile-body-body-regular-line-height);
    white-space: nowrap;
    font-style: var(--mobile-body-body-regular-font-style);
}

.questionnaire .infobulle {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-radius: 8px;
    border: 1px solid;
    border-color: #c0e410;
}

.questionnaire .BOT {
    position: relative;
    width: 40px;
    height: 38.43px;
}

.questionnaire .frame-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.questionnaire .label-5 {
    margin-top: -1px;
    font-family: var(--mobile-body-caption1-s-BOLD-font-family);
    font-weight: var(--mobile-body-caption1-s-BOLD-font-weight);
    color: #1c1c1c;
    font-size: var(--mobile-body-caption1-s-BOLD-font-size);
    line-height: var(--mobile-body-caption1-s-BOLD-line-height);
    position: relative;
    width: fit-content;
    letter-spacing: var(--mobile-body-caption1-s-BOLD-letter-spacing);
    white-space: nowrap;
    font-style: var(--mobile-body-caption1-s-BOLD-font-style);
}

.questionnaire .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .texte-3 {
  position: relative;
  align-self: stretch;
  font-family: var(--desktop-body-parag-regular-font-family);
  font-weight: var(--desktop-body-parag-regular-font-weight);
  color: #1c1c1c;
  font-size: var(--desktop-body-parag-regular-font-size);
  text-align: center;
  letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
  line-height: var(--desktop-body-parag-regular-line-height);
  font-style: var(--desktop-body-parag-regular-font-style);
}

.questionnaire .line {
    position: relative;
    width: 20px;
    height: 1350px;
}

.questionnaire .vector-5 {
  position: absolute;
  width: 81px;
  height: 1px;
  top: 14px;
  left: 1px;
  object-fit: cover;
}

.questionnaire .data-picker-3 {
    width: 376px;
    border-color: #005bff;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    position: relative;
    background-color: #ffffff;
    border-radius: 2px;
    border: 1px solid;
}

.questionnaire .content-2 {
    height: 856px;
    display: flex;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #ffffff;
    overflow-y: scroll;
}

.questionnaire .jauge-de-progression-2 {
    display: flex;
    flex-direction: column;
    width: 1053px;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 80px 0px 64px;
    position: relative;
    flex: 0 0 auto;
}

.questionnaire .infobulle-2 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-radius: 8px;
    border: 1px solid;
    border-color: #43842a;
}

.questionnaire .conteneur-2 {
    justify-content: flex-end;
    gap: 121px;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}

.questionnaire .conteneur-texte-2 {
    display: flex;
    width: 204.5px;
    align-items: center;
    gap: 2px;
    position: relative;
    opacity: 0;
}

.questionnaire .text-wrapper-3 {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: var(--desktop-body-parag-s-bold-font-family);
  font-weight: var(--desktop-body-parag-s-bold-font-weight);
  color: #333333;
  font-size: var(--desktop-body-parag-s-bold-font-size);
  letter-spacing: var(--desktop-body-parag-s-bold-letter-spacing);
  line-height: var(--desktop-body-parag-s-bold-line-height);
  font-style: var(--desktop-body-parag-s-bold-font-style);
}

.questionnaire .indicateur-3 {
    background-color: #43842a;
    position: relative;
    flex: 1;
    flex-grow: 1;
    height: 4px;
}

.questionnaire .desktop {
    height: 1078px;
    display: flex;
    flex-direction: column;
    width: 1440px;
    align-items: flex-start;
    position: relative;
    background-color: #ffffff;
}

.questionnaire .content-3 {
    height: 922px;
    justify-content: center;
    display: flex;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #ffffff;
    overflow-y: scroll;
}

.questionnaire .left-2 {
    display: flex;
    flex-direction: column;
    width: 387px;
    height: 743px;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0px 48px 48px 0px;
    position: relative;
    background-color: #1057cb;
}

.questionnaire .right-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    align-self: stretch;
    flex-grow: 1;
}

.questionnaire .header-principal-2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1062px;
    padding: 16px 32px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: #ffffff;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #f8f7f7;
}

.questionnaire .icon-2 {
    position: relative;
}

.questionnaire .frame-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .frame-5 {
  display: flex;
  flex-direction: column;
  height: 60px;
  align-items: center;
  gap: 4px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.questionnaire .frame-6 {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.questionnaire .titre-2 {
  position: relative;
  align-self: stretch;
  font-family: var(--desktop-h2-BOLD-font-family);
  font-weight: var(--desktop-h2-BOLD-font-weight);
  color: #001a70;
  font-size: var(--desktop-h2-BOLD-font-size);
  text-align: center;
  letter-spacing: var(--desktop-h2-BOLD-letter-spacing);
  line-height: var(--desktop-h2-BOLD-line-height);
  font-style: var(--desktop-h2-BOLD-font-style);
}

.questionnaire .question-m-2 {
    font-family: var(--desktop-body-parag-l-regular-font-family);
    font-weight: var(--desktop-body-parag-l-regular-font-weight);
    color: #1c1c1c;
    font-size: var(--desktop-body-parag-l-regular-font-size);
    text-align: center;
    line-height: var(--desktop-body-parag-l-regular-line-height);
    position: relative;
    align-self: stretch;
    letter-spacing: var(--desktop-body-parag-l-regular-letter-spacing);
    font-style: var(--desktop-body-parag-l-regular-font-style);
}

.questionnaire .group {
  position: relative;
  width: 345px;
  height: 28px;
}

.questionnaire .overlap {
    position: relative;
    width: 400px;
    height: 246px;
}

.questionnaire .titre-3 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--desktop-h3-BOLD-font-family);
  font-weight: var(--desktop-h3-BOLD-font-weight);
  color: #1c1c1c;
  font-size: var(--desktop-h3-BOLD-font-size);
  text-align: center;
  letter-spacing: var(--desktop-h3-BOLD-letter-spacing);
  line-height: var(--desktop-h3-BOLD-line-height);
  font-style: var(--desktop-h3-BOLD-font-style);
}

.questionnaire .overlap-group {
  position: relative;
  width: 343px;
  height: 28px;
}

.questionnaire .titre-4 {
  position: relative;
  width: 343px;
  margin-top: -1px;
  font-family: "EDF 2020-Bold", Helvetica;
  font-weight: 700;
  color: #005bff;
  font-size: 32px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

.questionnaire .union {
    position: absolute;
    width: 399px;
    height: 73px;
    top: 80px;
    left: 1px;
}

.questionnaire .group-2 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 34px;
}

.questionnaire .group-3 {
    transform: translate(0%, 40%);
    display: flex;
    position: relative;
    width: 100%;
    height: 19px;
}

.questionnaire .frame-7 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

.questionnaire .frame-8 {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.questionnaire .titre-wrapper {
    display: flex;
    flex-direction: column;
    width: 150px;
    height: 34px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 16px;
    position: relative;
    background-color: #e85130;
    border-radius: 2px;
    border: 1px solid;
    border-color: #ffffff;
}

.questionnaire .titre-5 {
  position: absolute;
  width: 343px;
  top: 0;
  left: 0;
  font-family: var(--desktop-h4-BOLD-font-family);
  font-weight: var(--desktop-h4-BOLD-font-weight);
  color: #005bff;
  font-size: var(--desktop-h4-BOLD-font-size);
  text-align: center;
  letter-spacing: var(--desktop-h4-BOLD-letter-spacing);
  line-height: var(--desktop-h4-BOLD-line-height);
  font-style: var(--desktop-h4-BOLD-font-style);
}

.questionnaire .line-2 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 1px;
    object-fit: cover;
}

.questionnaire .question-2 {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}


.questionnaire .titre-6 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--desktop-h5-BOLD-font-family);
  font-weight: var(--desktop-h5-BOLD-font-weight);
  color: #001a70;
  font-size: var(--desktop-h5-BOLD-font-size);
  text-align: center;
  letter-spacing: var(--desktop-h5-BOLD-letter-spacing);
  line-height: var(--desktop-h5-BOLD-line-height);
  font-style: var(--desktop-h5-BOLD-font-style);
}

.questionnaire .overlap-group-2 {
    position: absolute;
    width: 11px;
    height: 30px;
    top: 76px;
    left: 6px;
}

.questionnaire .line-3 {
    position: absolute;
    width: 1px;
    height: 24px;
    top: 0;
    left: 5px;
    object-fit: cover;
}

.questionnaire .ellipse {
    position: absolute;
    width: 11px;
    height: 11px;
    top: 19px;
    left: 0;
    background-color: #e85130;
    border-radius: 5.5px;
    border: 1px solid;
    border-color: #001a70;
}

.questionnaire .group-4 {
    position: absolute;
    width: 150px;
    height: 34px;
    top: 0;
    left: 31px;
}

.questionnaire .overlap-2 {
    position: absolute;
    width: 11px;
    height: 33px;
    top: -1px;
    left: 74px;
}

.questionnaire .line-4 {
    position: absolute;
    width: 1px;
    height: 23px;
    top: 10px;
    left: 5px;
    object-fit: cover;
}

.questionnaire .rectangle-2 {
    width: 11px;
    height: 11px;
    left: 0;
    background-color: #ff861d;
    border-radius: 10px;
    border: 1px dashed;
    border-color: #001a70;
    position: absolute;
    top: 0;
}

.questionnaire .group-5 {
    position: absolute;
    width: 146px;
    height: 88px;
    top: 32px;
    left: 0;
}

.questionnaire .frame-9 {
    flex-direction: column;
    gap: 4px;
    align-self: stretch;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
}

.questionnaire .group-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0px;
    position: relative;
    flex: 0 0 auto;
}

.questionnaire .overlap-group-wrapper {
    position: relative;
    width: 42.5px;
    height: 23.92px;
}

.questionnaire .overlap-group-3 {
    position: relative;
    width: 43px;
    height: 24px;
}

.questionnaire .vector-6 {
  position: absolute;
  width: 75px;
  height: 1px;
  top: 14px;
  left: 262px;
  object-fit: cover;
}

.questionnaire .vector-7 {
  width: 89px;
  left: -5px;
  position: absolute;
  height: 1px;
  top: 14px;
  object-fit: cover;
}

.questionnaire .vector-8 {
  width: 83px;
  left: 260px;
  position: absolute;
  height: 1px;
  top: 14px;
  object-fit: cover;
}

.questionnaire .pour-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.questionnaire .vector-9 {
  width: 70px;
  left: -5px;
  position: absolute;
  height: 1px;
  top: 13px;
  object-fit: cover;
}

.questionnaire .vector-10 {
  width: 62px;
  left: 280px;
  position: absolute;
  height: 1px;
  top: 13px;
  object-fit: cover;
}

.questionnaire .liste {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 0px 0px 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #F8F7F7;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #cccccc;
}

.questionnaire .liste-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: #F8F7F7;
}

.questionnaire .liste-2 {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #cccccc;
}

.questionnaire .div-9 {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.questionnaire .div-12 {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  flex-direction: column;
}

.questionnaire .text-wrapper-4 {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: var(--desktop-body-parag-s-regular-font-family);
  font-weight: var(--desktop-body-parag-s-regular-font-weight);
  color: #001a70;
  font-size: var(--desktop-body-parag-s-regular-font-size);
  letter-spacing: var(--desktop-body-parag-s-regular-letter-spacing);
  line-height: var(--desktop-body-parag-s-regular-line-height);
  font-style: var(--desktop-body-parag-s-regular-font-style);
  margin-bottom: 0px;
}

.questionnaire .frame-11 {
    display: flex;
    flex-direction: column;
    width: 400px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 16px;
    position: relative;
    flex: 0 0 auto;
    background-color: #1057cb;
}

.questionnaire .question-m-3 {
    position: relative;
    flex: 1;
    margin-top: -1px;
    font-family: var(--mobile-titre4-BOLD-font-family);
    font-weight: var(--mobile-titre4-BOLD-font-weight);
    color: #1c1c1c;
    font-size: var(--mobile-titre4-BOLD-font-size);
    letter-spacing: var(--mobile-titre4-BOLD-letter-spacing);
    line-height: var(--mobile-titre4-BOLD-line-height);
    font-style: var(--mobile-titre4-BOLD-font-style);
}

.questionnaire .question-m-4 {
    font-family: var(--desktop-body-parag-regular-font-family);
    font-weight: var(--desktop-body-parag-regular-font-weight);
    color: #ffffff;
    font-size: var(--desktop-body-parag-regular-font-size);
    text-align: center;
    line-height: var(--desktop-body-parag-regular-line-height);
    position: relative;
    align-self: stretch;
    letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
    font-style: var(--desktop-body-parag-regular-font-style);
}

.questionnaire .texte-5 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: var(--mobile-body-body-regular-font-family);
    font-weight: var(--mobile-body-body-regular-font-weight);
    color: #1c1c1c;
    font-size: var(--mobile-body-body-regular-font-size);
    letter-spacing: var(--mobile-body-body-regular-letter-spacing);
    line-height: var(--mobile-body-body-regular-line-height);
    font-style: var(--mobile-body-body-regular-font-style);
}

.questionnaire .texte-6 {
    position: relative;
    align-self: stretch;
    font-family: var(--mobile-body-caption2-XS-regular-font-family);
    font-weight: var(--mobile-body-caption2-XS-regular-font-weight);
    color: #1c1c1c;
    font-size: var(--mobile-body-caption2-XS-regular-font-size);
    letter-spacing: var(--mobile-body-caption2-XS-regular-letter-spacing);
    line-height: var(--mobile-body-caption2-XS-regular-line-height);
    font-style: var(--mobile-body-caption2-XS-regular-font-style);
}

.questionnaire .label-6 {
    margin-top: -1px;
    font-family: var(--desktop-body-parag-regular-font-family);
    font-weight: var(--desktop-body-parag-regular-font-weight);
    color: #ffffff;
    font-size: var(--desktop-body-parag-regular-font-size);
    line-height: var(--desktop-body-parag-regular-line-height);
    position: relative;
    width: fit-content;
    letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
    white-space: nowrap;
    font-style: var(--desktop-body-parag-regular-font-style);
}

.questionnaire .label-6-not-allowed {
    margin-top: -1px;
    font-family: var(--desktop-body-parag-regular-font-family);
    font-weight: var(--desktop-body-parag-regular-font-weight);
    color: #666666;
    font-size: var(--desktop-body-parag-regular-font-size);
    line-height: var(--desktop-body-parag-regular-line-height);
    position: relative;
    width: fit-content;
    letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
    white-space: nowrap;
    font-style: var(--desktop-body-parag-regular-font-style);
}

.questionnaire .question-m-5 {
    font-family: "EDF 2020-Regular", Helvetica;
    font-weight: 400;
    color: #1c1c1c;
    font-size: 16px;
    line-height: 22px;
    position: relative;
    align-self: stretch;
    letter-spacing: 0;
}

.questionnaire .span {
    font-family: var(--desktop-body-parag-regular-font-family);
    font-weight: var(--desktop-body-parag-regular-font-weight);
    color: #1c1c1c;
    font-size: var(--desktop-body-parag-regular-font-size);
    letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
    line-height: var(--desktop-body-parag-regular-line-height);
    font-style: var(--desktop-body-parag-regular-font-style);
}

.questionnaire .text-wrapper-5 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--mobile-body-caption1-s-regular-font-family);
  font-weight: var(--mobile-body-caption1-s-regular-font-weight);
  color: #001a70;
  font-size: var(--mobile-body-caption1-s-regular-font-size);
  letter-spacing: var(--mobile-body-caption1-s-regular-letter-spacing);
  line-height: var(--mobile-body-caption1-s-regular-line-height);
  white-space: nowrap;
  font-style: var(--mobile-body-caption1-s-regular-font-style);
  margin-bottom: 0px;
}

.questionnaire .desktop-e {
    display: flex;
    flex-direction: column;
    width: 1440px;
    height: 1160px;
    align-items: flex-start;
    position: relative;
    background-color: #ffffff;
}

.questionnaire .content-4 {
    height: 1004px;
    justify-content: center;
    display: flex;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #ffffff;
    overflow-y: scroll;
}

.questionnaire .frame-12 {
    display: flex;
    flex-direction: column;
    width: 764px;
    align-items: center;
    gap: 32px;
    padding: 24px 16px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    background-color: #ffffff;
}

.questionnaire .illu-demenagement-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .illu-demenagement {
    position: relative;
    width: 215px;
    height: 215px;
}

.questionnaire .frame-13 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .question-m-6 {
    font-family: var(--mobile-body-body-regular-font-family);
    font-weight: var(--mobile-body-body-regular-font-weight);
    color: #1c1c1c;
    font-size: var(--mobile-body-body-regular-font-size);
    text-align: center;
    line-height: var(--mobile-body-body-regular-line-height);
    position: relative;
    align-self: stretch;
    letter-spacing: var(--mobile-body-body-regular-letter-spacing);
    font-style: var(--mobile-body-body-regular-font-style);
}

.questionnaire .frame-14 {
    display: flex;
    flex-direction: column;
    width: 400px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 16px;
    position: relative;
    flex: 0 0 auto;
}

.questionnaire .question-m-7 {
    margin-top: -1px;
    font-family: var(--mobile-titre3-BOLD-font-family);
    font-weight: var(--mobile-titre3-BOLD-font-weight);
    color: #001a70;
    font-size: var(--mobile-titre3-BOLD-font-size);
    text-align: center;
    line-height: var(--mobile-titre3-BOLD-line-height);
    position: relative;
    align-self: stretch;
    letter-spacing: var(--mobile-titre3-BOLD-letter-spacing);
    font-style: var(--mobile-titre3-BOLD-font-style);
}

.questionnaire .label-7 {
  width: fit-content;
  font-family: var(--desktop-body-parag-regular-font-family);
  font-weight: var(--desktop-body-parag-regular-font-weight);
  color: #ffffff;
  font-size: var(--desktop-body-parag-regular-font-size);
  line-height: var(--desktop-body-parag-regular-line-height);
  /*white-space: nowrap;*/
  position: relative;
  letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
  font-style: var(--desktop-body-parag-regular-font-style);
}

.questionnaire .question-m-8 {
    margin-top: -1px;
    font-family: var(--mobile-titre3-BOLD-font-family);
    font-weight: var(--mobile-titre3-BOLD-font-weight);
    color: #ffffff;
    font-size: var(--mobile-titre3-BOLD-font-size);
    text-align: center;
    line-height: var(--mobile-titre3-BOLD-line-height);
    position: relative;
    align-self: stretch;
    letter-spacing: var(--mobile-titre3-BOLD-letter-spacing);
    font-style: var(--mobile-titre3-BOLD-font-style);
}

.questionnaire .question-m-9 {
    font-family: var(--mobile-body-caption1-s-regular-font-family);
    font-weight: var(--mobile-body-caption1-s-regular-font-weight);
    color: #ffffff;
    font-size: var(--mobile-body-caption1-s-regular-font-size);
    text-align: center;
    line-height: var(--mobile-body-caption1-s-regular-line-height);
    position: relative;
    align-self: stretch;
    letter-spacing: var(--mobile-body-caption1-s-regular-letter-spacing);
    font-style: var(--mobile-body-caption1-s-regular-font-style);
}

.questionnaire .bold {
    font-weight: bold;
}

.questionnaire .fusion-text {
    padding: 8px;
}

.questionnaire .box2 {
    position: relative;
    content: "";
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

.questionnaire .box2.green-1 {
    background-color: #43842A;
}

.questionnaire .box2.green-2 {
    background-color: #88D910;
}

.questionnaire .box2.green-3 {
    background-color: #C0E410;
}

.questionnaire .box2.yellow-1 {
    background-color: #FFB210;
}

.questionnaire .box2.orange-1 {
    background-color: #FF861D;
}

.questionnaire .box2.orange-2 {
    background-color: #E85130;
}

.questionnaire .box2.red-1 {
    background-color: #E10000;
}

.questionnaire .left-10 {
    left: 10px;
}

.questionnaire .right-10 {
    right: 10px;
}

.questionnaire .inline-flex {
    display: inline-flex;
}


.questionnaire .titre-7 {
    position: relative;
    width: fit-content;
    font-family: var(--mobile-body-caption2-XS-BOLD-font-family);
    font-weight: var(--mobile-body-caption2-XS-BOLD-font-weight);
    color: #001a70;
    font-size: var(--mobile-body-caption2-XS-BOLD-font-size);
    letter-spacing: var(--mobile-body-caption2-XS-BOLD-letter-spacing);
    line-height: var(--mobile-body-caption2-XS-BOLD-line-height);
    white-space: nowrap;
    font-style: var(--mobile-body-caption2-XS-BOLD-font-style);
}

.questionnaire .titre-8 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: var(--desktop-h2-regular-BOLD-font-family);
    font-weight: var(--desktop-h2-regular-BOLD-font-weight);
    color: #001a70;
    font-size: var(--desktop-h2-regular-BOLD-font-size);
    text-align: center;
    letter-spacing: var(--desktop-h2-regular-BOLD-letter-spacing);
    line-height: var(--desktop-h2-regular-BOLD-line-height);
    font-style: var(--desktop-h2-regular-BOLD-font-style);
}

.questionnaire .titre-resultat {
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: var(--desktop-h2-regular-BOLD-font-family);
    color: #001a70;
    letter-spacing: var(--desktop-h2-regular-BOLD-letter-spacing);
}


.questionnaire .titre-9 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: var(--desktop-h3-BOLD-font-family);
    font-weight: var(--desktop-h3-BOLD-font-weight);
    color: #001a70;
    text-align: center;
    font-size: var(--desktop-h3-BOLD-font-size);
    letter-spacing: var(--desktop-h3-BOLD-letter-spacing);
    line-height: var(--desktop-h3-BOLD-line-height);
    font-style: var(--desktop-h3-BOLD-font-style);
}

.questionnaire .titre-10 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: var(--desktop-body-parag-regular-font-family);
    font-weight: var(--desktop-body-parag-regular-font-weight);
    color: #1c1c1c;
    font-size: var(--desktop-body-parag-regular-font-size);
    letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
    line-height: var(--desktop-body-parag-regular-line-height);
    font-style: var(--desktop-body-parag-regular-font-style);
}

.questionnaire .titre-15 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: var(--desktop-h4bis-BOLD-font-family);
    font-weight: var(--desktop-h4bis-BOLD-font-weight);
    color: #005bff;
    text-align: center;
    font-size: var(--desktop-h4bis-BOLD-font-size);
    letter-spacing: var(--desktop-h4bis-BOLD-letter-spacing);
    line-height: var(--desktop-h4bis-BOLD-line-height);
    font-style: var(--desktop-h4bis-BOLD-font-style);
}

.questionnaire .titre-16 {
    position: relative;
    width: fit-content;
    font-family: var(--desktop-body-parag-s-bold-font-family);
    font-weight: var(--desktop-body-parag-s-bold-font-weight);
    color: #1c1c1c;
    font-size: var(--desktop-body-parag-s-bold-font-size);
    text-align: center;
    letter-spacing: var(--desktop-body-parag-s-bold-letter-spacing);
    line-height: var(--desktop-body-parag-s-bold-line-height);
    white-space: nowrap;
    font-style: var(--desktop-body-parag-s-bold-font-style);
}

.questionnaire .titre-17 {
    position: relative;
    flex: 1;
    margin-top: -1px;
    font-family: var(--desktop-body-parag-XS-regular-font-family);
    font-weight: var(--desktop-body-parag-XS-regular-font-weight);
    color: #1c1c1c;
    font-size: var(--desktop-body-parag-XS-regular-font-size);
    letter-spacing: var(--desktop-body-parag-XS-regular-letter-spacing);
    line-height: var(--desktop-body-parag-XS-regular-line-height);
    font-style: var(--desktop-body-parag-XS-regular-font-style);
}

.questionnaire .titre-18 {
    position: relative;
    flex: 1;
    margin-top: -1px;
    font-family: var(--desktop-body-parag-XS-regular-font-family);
    font-weight: var(--desktop-body-parag-XS-regular-font-weight);
    color: #1c1c1c;
    font-size: var(--desktop-body-parag-XS-regular-font-size);
    text-align: right;
    letter-spacing: var(--desktop-body-parag-XS-regular-letter-spacing);
    line-height: var(--desktop-body-parag-XS-regular-line-height);
    font-style: var(--desktop-body-parag-XS-regular-font-style);
}

.questionnaire .center {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

h1 {
    display: flex;
    flex-direction: row;
    color: #005bff;
}

h1:before, h1:after h1:not(.texte) {
    content: "";
    flex: 1 1;
    border-bottom: 2px solid #005bff;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 14px;
}

.questionnaire .block-note {
    background-color: #ffffff;
    padding: 26px;
    height: 470px;
    margin-top: 16px;
}

.questionnaire .block-note-mini {
    background-color: #ffffff;
    padding: 26px;
    height: 250px;
    margin-top: 16px;
}

.questionnaire .block-note-2 {
    background-color: #ffffff;
    padding: 26px;
    height: 290px;
    margin-top: 16px;
}

.questionnaire .dark-blue {
    color: #001A70;
}

h2:not(.titre) {
    display: flex;
    flex-direction: row;
    content: "";
    flex: 1;
    border-bottom: 3px solid #CCCCCC;
    margin: 6px;
}

.questionnaire .padding-8 {
    padding-top: 8px;
    padding-bottom: 8px;
}


.questionnaire .padding-16-bottom {
    padding-bottom: 16px;
}

.questionnaire .padding-8-bottom {
    padding-bottom: 8px;
}

.questionnaire .padding-barre-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.questionnaire .titre-11 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: var(--desktop-h5-BOLD-font-family);
    font-weight: var(--desktop-h5-BOLD-font-weight);
    color: #001a70;
    font-size: var(--desktop-h5-BOLD-font-size);
    text-align: center;
    letter-spacing: var(--desktop-h5-BOLD-letter-spacing);
    line-height: var(--desktop-h5-BOLD-line-height);
    font-style: var(--desktop-h5-BOLD-font-style);
    padding-bottom: 16px;
}

.questionnaire .gap-8 {
    padding: 20px;
}

.questionnaire .bottom {
    position: absolute;
    bottom: 20px;
}

.questionnaire .EDF-2020 {
    font-family: var(--EDF-2020-font-family);
    font-weight: var(--EDF-2020-font-weight);
    font-size: var(--EDF-2020-font-size);
    letter-spacing: var(--EDF-2020-letter-spacing);
    line-height: var(--EDF-2020-line-height);
    font-style: var(--EDF-2020-font-style);
}

.questionnaire .titre-12 {
    position: relative;
    align-self: stretch;
    margin-top: 10px;
    color: #005bff;
    font-family: var(--desktop-body-parag-l-BOLD-font-family);
    font-weight: var(--desktop-body-parag-l-BOLD-font-weight);
    font-size: var(--desktop-body-parag-l-BOLD-font-size);
    letter-spacing: var(--desktop-body-parag-l-BOLD-letter-spacing);
    line-height: var(--desktop-body-parag-l-BOLD-line-height);
    font-style: var(--desktop-body-parag-l-BOLD-font-style);
}


.questionnaire .titre-13 {
    position: relative;
    align-self: stretch;
    margin-top: 10px;
    color: #1C1C1C;
    font-family: var(--desktop-h5-BOLD-font-family);
    font-weight: var(--desktop-h5-BOLD-font-weight);
    font-size: var(--desktop-h5-BOLD-font-size);
    letter-spacing: var(--desktop-h5-BOLD-letter-spacing);
    line-height: var(--desktop-h5-BOLD-line-height);
    font-style: var(--desktop-h5-BOLD-font-style);
    padding-bottom: 8px;
}

.questionnaire .label-8 {
  width: fit-content;
  margin-top: -1px;
  font-family: var(--desktop-body-parag-regular-font-family);
  font-weight: var(--desktop-body-parag-regular-font-weight);
  color: #005bff;
  font-size: var(--desktop-body-parag-regular-font-size);
  line-height: var(--desktop-body-parag-regular-line-height);
  white-space: nowrap;
  position: relative;
  letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
  font-style: var(--desktop-body-parag-regular-font-style);
}

.questionnaire .label-9 {
    position: relative;
    width: fit-content;
    font-family: var(--mobile-body-body-regular-font-family);
    font-weight: var(--mobile-body-body-regular-font-weight);
    color: #1C1C1C;
    font-size: var(--mobile-body-body-regular-font-size);
    letter-spacing: var(--mobile-body-body-regular-letter-spacing);
    line-height: var(--mobile-body-body-regular-line-height);
    white-space: nowrap;
    font-style: var(--mobile-body-body-regular-font-style);
    padding-bottom: 8px;
}

.questionnaire .label-10 {
    font-family: var(--desktop-body-parag-XS-regular-font-family);
    font-weight: var(--desktop-body-parag-XS-regular-font-weight);
    color: #1c1c1c;
    font-size: var(--desktop-body-parag-XS-regular-font-size);
    letter-spacing: var(--desktop-body-parag-XS-regular-letter-spacing);
    line-height: var(--desktop-body-parag-XS-regular-line-height);
    font-style: var(--desktop-body-parag-XS-regular-font-style);
}

.auestionnaire .label-11 {
    font-family: var(--mobile-body-caption2-XS-BOLD-font-family);
    font-weight: var(--mobile-body-caption2-XS-BOLD-font-weight);
    font-size: var(--mobile-body-caption2-XS-BOLD-font-size);
    letter-spacing: var(--mobile-body-caption2-XS-BOLD-letter-spacing);
    line-height: var(--mobile-body-caption2-XS-BOLD-line-height);
    font-style: var(--mobile-body-caption2-XS-BOLD-font-style);
}

.questionnaire .parent {
    padding-top: 16px;
    position: relative;
    top: 0;
    left: 0;
}

.questionnaire .performance-energie {
    position: relative;
    top: 0;
    left: 0;
}

.questionnaire .performance-energie-vous {
    position: absolute;
    padding-top: 16px;
    top: -8px;
    left: 30px;
}

.questionnaire .align-right {
    position: absolute;
    right: 0px;
}

.questionnaire .titre-14 {
    position: relative;
    font-family: var(--desktop-h5-BOLD-font-family);
    font-weight: var(--desktop-h5-BOLD-font-weight);
    color: #1C1C1C;
    font-size: var(--desktop-h5-BOLD-font-size);
    letter-spacing: var(--desktop-h5-BOLD-letter-spacing);
    line-height: var(--desktop-h5-BOLD-line-height);
    font-style: var(--desktop-h5-BOLD-font-style);
    padding-bottom: 16px;
}

.questionnaire .margin-10-left {
    margin-left: 10px;
}

.questionnaire .margin-10-right {
    margin-right: 10px;
}

.questionnaire .checkbox-30 {
    width: 30px;
    height: 30px;
    border-radius: 2px;
}


.criteres {
    position: relative;
    align-self: stretch;
    font-family: var(--desktop-body-parag-regular-font-family);
    font-weight: var(--desktop-body-parag-regular-font-weight);
    color: #333;
    font-size: var(--desktop-body-parag-regular-font-size);
    letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
    line-height: var(--desktop-body-parag-regular-line-height);
    font-style: var(--desktop-body-parag-regular-font-style);
    border-bottom: 1px solid #CCC;
    border-top: 1px solid #CCC;
}

.optimisation {
    margin: 1.5rem auto;
    font-family: var(--desktop-body-parag-regular-font-family);
    color: #ffffff;
    line-height: var(--desktop-body-parag-regular-line-height);
    font-style: var(--desktop-body-parag-regular-font-style);
}

.optimisation-body {
    text-align: center;
}

.optimisation-button {
    padding: 0.75rem 1rem;
    background: var(--Color-Nuances-de-gris-neutral-0, #FFF);
    color: #005BFF;
    border-radius: 5px;
    border: 1px solid;
    margin: 2% 0%;
    font-size: 110%;
}

.footer-resultat {
    align-self: stretch;
    font-family: var(--desktop-body-parag-regular-font-family);
    font-weight: var(--desktop-body-parag-regular-font-weight);
    color: #333;
    font-size: var(--desktop-body-parag-regular-font-size);
    /* text-align: center; */
    letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
    line-height: var(--desktop-body-parag-regular-line-height);
    font-style: var(--desktop-body-parag-regular-font-style);
}

.questionnaire .rcup-email-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    flex: 1;
    flex-grow: 1;
}

.questionnaire .rcup-email {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    gap: 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.questionnaire .champs-2 {
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 8px 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    margin-top: -1px;
    margin-bottom: -1px;
    margin-left: -1px;
    margin-right: -1px;
}

.questionnaire .texte-7 {
    position: relative;
    flex: 1;
    margin-top: -1px;
    font-family: var(--desktop-body-parag-regular-font-family);
    font-weight: var(--desktop-body-parag-regular-font-weight);
    color: #333333;
    font-size: var(--desktop-body-parag-regular-font-size);
    letter-spacing: var(--desktop-body-parag-regular-letter-spacing);
    line-height: var(--desktop-body-parag-regular-line-height);
    font-style: var(--desktop-body-parag-regular-font-style);
}


/*-----2*/
.accordion {
    font-family: var(--desktop-body-parag-regular-font-family);
    color: var(--Color-Principales-color-primaire-1, #001A70);
}

.accordion-button {
    background-color: #fff;
    color: black;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: background-color 0.4s ease;
    border-bottom: 1px solid #CCC;
    border-top: 1px solid #CCC;
    font-weight: var(--desktop-body-parag-s-bold-font-weight);
    font-size: var(--desktop-body-parag-s-bold-font-size);
    line-height: var(--desktop-body-parag-s-bold-line-height);
    font-style: var(--desktop-body-parag-s-bold-font-style);
}

.accordion-button::after {
    content: url("/images/chevron-bas-2-black.svg");
}

.accordion-button:hover {
    background-color: #dddddd;
}

.accordion-content {
    padding: 3px 0;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-content li {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 5px;
}

.accordion-content .icon-list {
    width: 20px; /* Taille des icônes */
    height: 20px; /* Hauteur des icônes */
    margin-right: 10px;
    fill: currentColor; /* Si les SVG sont inline, cela leur permet de s'adapter à la couleur du texte */
}

.accordion-content li span {
    color: var(--Color-Nuances-de-gris-neutral-700, #666);
}
pre {
    margin: 5px 0px;
    font-size: 8px;
}

.prices-item-bottom-left {
    margin-top: 5px;
    position: absolute;
    left: 0;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

.prices-item-bottom-right {
    margin-top: 5px;
    position: absolute;
    right: 0;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

.frame-16 .cta-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
}

.frame-16 .cta-legal-button {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.margin-16-bottom {
    margin-bottom: 16px!important;
}

.margin-18-bottom {
    margin-bottom: 18px!important;
}

    .margin-34-left {
    margin-left: 34px!important;
}

.margin-24-bottom {
    margin-bottom: 24px!important;
}

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

.gap-16 {
    gap: 16px !important;
}

.width-100-percent {
    width: 100% !important;
}

.padding-16 {
    padding: 16px !important;
}

.color-black {
    color: #000 !important;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.arrow-down {
    width: 20px;
    height: 20px;
}

/* Styles supplémentaires pour le contenu EDF */
.cta-legal-content {
    font-family: var(--desktop-body-parag-s-bold-font-family);
    font-weight: 400;
    color: var(--x03-nuances-de-grisgris-fonc);
    font-size: 14px;
    line-height: 18px;
}

.popup-title {
    margin: 0px;
    position: relative;
    color: #001A70;
    margin-bottom: 13px;
    height: 24px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    width: 80%;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #7C7C7D;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #626263;
}

@media screen and (max-width: 427px) {
    .questionnaire .question {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 24px;
        position: relative;
        flex: 0 0 auto;
        margin-top: 58px;
    }
    .questionnaire .label-7 {
        font-size: 15px;
    }

    .questionnaire .padding-top-40 {
        padding-top: 5px;
    }
}
.select-focus:focus {
    outline: none;
    border: 2px solid #007BFF;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
