/*! -------- Variables ---------- */

:root {
    --top-sticky: 103px;
    --gap10: 10px;
    --gap5: 5px;
    --gap15: 15px;
}


/*! -------- ATTRIBUTS ---------- */

* {
    /* font-family: 'Roboto', sans-serif !important; */
    font-family: 'Lexend Deca', sans-serif !important;
}

main {
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

body {
    background-color: #f5f0f4 !important;
}

label {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

p {
    margin: 0;
}

button,
input,
optgroup,
select,
textarea,
html input[type="button"],
input[type="reset"],
input[type="submit"],
button[disabled],
html input[disabled],
button::-moz-focus-inner,
input::-moz-focus-inner,
input[type="checkbox"],
input[type="radio"],
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button,
input[type="search"],
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="tel"] {
    border: none;
    background-image: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

input[type=text],
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type=text],
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type=text],
input[type="email"],
input[type="password"],
input[type="tel"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

a:link {
    text-decoration: none;
}

.bold {
    font-weight: bold;
}


/*! -------- CLASS ---------- */


/* --- FLEX (un max) --- */

.flex {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
}

.flex-direction-column {
    flex-direction: column;
}

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

.justify-content-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.center {
    align-items: center;
    justify-content: center;
}

.gap50 {
    gap: 50px;
}

.gap30 {
    gap: 30px;
}

.gap20 {
    gap: 20px;
}

.gap18 {
    gap: 18px;
}

.gap15 {
    gap: 15px;
}

.gap12 {
    gap: 12px;
}

.gap10 {
    gap: 10px;
}

.gap5 {
    gap: 5px;
}

.width100 {
    width: 100%;
}

.width50 {
    width: 50%;

}

.weight {
    font-weight: 700;
}

.rose-hover {
    color: var(--rose-color);
    transition: 0.4;
}

.rose-hover:hover {
    color: var(--rose-color);
}

.right {
    text-align: right;
}

.pointer {
    cursor: pointer;
}


/* --- Bouton --- */

.demarcheQrCode-boutonContinuer-defaut {
    background: #F9F9F9;
    border: 1px solid #DEDEDE;
    transition: .2s ease-in-out;
    text-align: center;
    border-radius: 4px;
    padding: 8px;
    width: 200px;
    border-radius: 4px;
    cursor: not-allowed;
    font-size: 18px;
}

.demarcheQrCode-boutonContinuer-valide {
    background-color: var(--rose-color);
    box-shadow: 0 5px 10px rgb(0 0 0 / 15%);
    color: #ffffff;
    transition: .2s ease-in-out;
    cursor: pointer;
}

@media screen and (max-width: 449px) {
    .bouton-codePassReduc {
        position: absolute;
        cursor: pointer;
        background: black;
        color: white;
        border: none;
        padding: 2px 7px;
        text-align: center;
        border-radius: 4px;
        right: 8px;
        top: 8px;
    }
}

@media screen and (min-width: 450px) {
    .bouton-codePassReduc {
        position: absolute;
        cursor: pointer;
        background: black;
        color: white;
        border: none;
        padding: 2px 7px;
        text-align: center;
        border-radius: 4px;
        right: 8px;
        top: 8px;
    }
}

.bouton-raz {
    background: black;
}

.input-codePassReduc {
    font-weight: 600;
    padding: 10px 0px 8px 10px;
    border: 1px solid #DEDEDE;
    transition: .4s;
    width: 100%;
}


/* --- Radio Button */

input[type="radio"].bouton-radio {
    min-width: 13px;
    width: 13px;
    margin: 7px;
}


/* --- */


/* --- Checkbox */

.checkbox {
    position: relative;
    padding: 10px;
    /* margin-right: 20px; */
    border: 1px solid #DEDEDE;
    border-radius: 4px;
    min-width: 20px;
    margin-left: 6px;
}

.check {
    position: absolute;
    transform: translateX(-4px) translateY(-16px) scale(1.7);
    -webkit-transform: translateX(-4px) translateY(-16px) scale(1.7);
    min-width: 20px;
    display: none;
}

.checkPaiement {
    position: absolute;
    transform: translateX(-4px) translateY(-16px) scale(1.7);
    display: none;
    min-width: 20px;
}

.checkQ4 {
    position: absolute;
    transform: translateX(-4px) translateY(-16px) scale(1.7);
    display: none;
    min-width: 20px;
}


/* --- */

.boutonReponse {
    font-family: 'Roboto', sans-serif;
    border: 1px solid #DEDEDE;
    background: white;
    width: 100%;
    font-weight: 700;
    color: #000000;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
}

.boutonReponse:hover {
    color: var(--rose-color);
    transition: 0.4s;
}

.reponseSelected {
    border: 1px solid var(--rose-color) !important;
}

.boutonReponse {
    transition: 0.4s ease-out;
}

.reponseSelected:hover {
    color: black;
    transition: 0.4s;
}

.containerInput {
    width: 100%;
    position: relative;
}

.containerDropdown {
    display: none;
}

.demarcheBleu-boutonValider {
    padding: 8px;
    margin: 0 auto 0 auto;
    background-color: var(--rose-color);
    width: 200px;
    border-radius: 4px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 15%);
    cursor: pointer;
    color: white;
    font-size: 18px
}

.demarcheBleu-boutonValider-disabled {
    pointer-events: none;
    background-color: lightgray;
    /* cursor: not-allowed; */
}


/* --- Bandeau --- */

.text-bandeau {
    opacity: 0.19;
}


/* --- Div --- */

.alertMessageIsValid {
    color: red;
    width: 100%;
    font-size: 12px;
    margin-left: 10px;
    display: none;
    position: absolute;
    bottom: -22px;
    left: 0;
}

.emptyInput {
    border: 1px solid red !important;
}

.opacity4 {
    opacity: 0.4;
}

.div-nonCliquable {
    position: absolute;
    z-index: 9;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.croixRestart {
    margin-left: auto;
}

.div-nonCliquableDemarches {
    position: absolute;
    z-index: 9;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 30%;
    background-color: white;
}

.bandeauTitrePage {
    background-color: #767676;
    color: white;
    /* position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky; */
    z-index: 11;
    text-align: center;
    padding: 8px 8px 8px 8px;
    border-radius: 4px 4px 0 0;
}

.bandeauTitrePageCliquable {
    cursor: pointer;
}

.bandeauTitrePageCliquable:hover>div {
    background-color: var(--rose-color);
    color: white;
    transition: 0.3s;
}

.bandeauTitrePageCliquable:hover {
    cursor: pointer;
    opacity: 1 !important;
    transition: 0.3s;
}

.fondBloquant {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.blocIntro {
    padding: 30px;
    margin: 20px 0;
    border-radius: 6px;
    color: #4C4C4C;
    background-color:#FFFFFF;
    background-size: cover;
    background-position: center bottom;
    width: 100%;
    border: 1px solid #e1e1e1;
}

.conteneur {
    width: 100%;
    border: 1px solid #e1e1e1;
    padding: 35px 45px;
    background-color: white;
    border-radius: 4px;
}


/*--- Bar de progression */

.svg-barProgression {
    margin: 0 10px 2px 0;
}


/*--- div opacité */

.opacityMin {
    opacity: 0.10;
    position: relative;
    filter: blur(0.6px);
}

.opacityMax {
    opacity: 0.25;
    position: relative;
}

div.opacityMin button,
div.opacityMax button,
div.opacityMin input,
div.opacityMax input,
div.opacityMin select,
div.opacityMax select,
div.opacityMin div.div-blocDemarche div,
div.opacityMax div.div-blocDemarche div {
    cursor: not-allowed;
    pointer-events: none;
}


/*--- Bloc Questions reponses ---*/

.div-questionReponse {
    display: flex;
    flex-direction: column;
    gap: var(--gap10);
    width: 100%;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    border-radius: 4px;
}

.div-reponse {
    display: flex;
    gap: var(--gap10);
}


/*--- Modal options ---*/

.containerOptions {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'lexand Deca', sans-serif;
    padding: 0 32px;
}

.modalOptions {
    background-color: white;
    /* height: 100%; */
    width: 100%;
    max-width: 500px;
    max-height: 700px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: var(--gap10);
    font-size: 16px;
    overflow: hidden;
    position: relative;
}

.modalOptions .perso {
    position: absolute;
    top: 0;
    left: -4%;
    height: 30%;
    z-index: 1002;
    display: none;
}

.modalOptions header {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin: 0 20px;
}

.modalOptions .string {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    z-index: 1000;
    transform: translateY(45%);
}

.modalOptions h4 {
    font-weight: 700;
    font-size: 1rem;
    color: black;
}
.modalOptions .options {
    justify-content : center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: var(--gap10);
    height: 100%;
    padding: 20px;
    overflow-y: auto;
}

.modalOptions .star {
    /* add svg as pseudo element */
    font-style: normal;
    height:1rem;
    width:1rem;
    margin-left: 2%;
    background-image: url("/images/etoile.svg");
    background-repeat: no-repeat;
}

.optionCard {
    width: 100%;
    border: #C5C5C5 1px solid;
    background-color: white;
    border-radius: 8px;
    position: relative;
    padding: 15px;
    font-size: 1rem;
    z-index: 1001;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
}

.optionCard > * {
    pointer-events: none;
}

.optionCard:has(input:checked) {
    border: var(--rose-color) 1px solid;
    box-shadow: 0 4px 20px rgba(207, 11, 93, 0.1);
    transition: 0.3s;
}
.optionCard:hover {
    border: var(--rose-color) 1px solid;
    box-shadow: 0 4px 20px rgba(207, 11, 93, 0.1);
    transition: 0.3s;
}

.optionCard .optionContent {
    display: grid;
    grid-template-areas: "titre titre" "description checkbox";
    grid-template-columns: 1fr auto;
    width: 100%;
    row-gap: 5px;
    column-gap: 8px;
}

.optionCard .optionTitre {
    grid-area: titre;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.optionCard .iconeOption {
    display: none;
    color: var(--rose-color);
    background-color: rgba(222, 222, 222, 0.5);
    padding: 20px;
    box-sizing: content-box;
    border-radius: 8px;
}

.optionCard input {
    grid-area: checkbox;
    width: 20px;
    height: 20px;
    align-self: center;
}

.optionCard input:checked {
    accent-color: var(--rose-color);
}

.optionCard h5 {
    max-width: 90%;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.optionCard .optionCard-desc {
    grid-area: description;
    color: #5E5E5E;
    font-size: 14px;
    font-weight: 500;
}
.optionCard .prix {
    color: var(--rose-color);
    font-size: 16px;
    display: inline-block;
    margin: 0;
    font-weight: 600;
    white-space: nowrap;
}

.options .sansOptions {
    margin-top: 5px;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
}

.modalOptions footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--rose-color);
    color: white;
}

.modalOptions footer button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    background-color: transparent;
    color: #ffff;
    border-radius: 0 !important;
    border: none;
    font-size: 1.3rem;
    padding: 20px;
    cursor: pointer;
    z-index: 1001;
}
.containerOptions .btnNon {
    background-color: #C5C5C5;
    color: #252525;
}

@media screen and (min-width: 700px) {
    .modalOptions h4 {
        font-size: 30px;
    }
    .modalOptions footer button {
        font-size: 1.5rem;
    }
    .optionCard .iconeOption {
        display: flex;
    }
}

@media screen and (min-width: 870px) {
    .modalOptions {
        width: 80%;
        height: 70%;
    }
    .modalOptions .string {
        width: 40%;
        height: 40%;
        transform: translateY(35%);
    }
}

@media screen and (min-width: 1200px) {
    .modalOptions {
        width: 60%;
        height: 70%;
    }
    .modalOptions .string {
        width: 30%;
        height: 30%;
        transform: translateY(25%);
    }
    .modalOptions .perso {
        display: block;
    }
}

@media screen and (max-width: 1500px) {
  .modalOptions .perso {
    display: none;
  }
}

/* --- Texte */

.normalizeTexte {
    font-size: 14px;
    color: #4C4C4C;
}

.titre-question {
    font-size: 18px;
    font-weight: 700;
    color: black;
    align-items: center;
    display: flex;
    gap: var(--gap10);
}

.text-question {
    font-size: 18px;
    font-weight: 700;
    color: black;
    align-items: center;
    display: flex;
    gap: var(--gap10);
}

.text-titre {
    font-size: 22px;
    font-weight: 600;
    color: black;
    align-items: center;
    display: flex;
    margin-bottom: 12px;
}


/* --- */


/* --- Blocs demarche */

@media screen and (max-width: 347px) {
    .div-blocDemarche {
        height: auto !important;
    }
}

.div-blocDemarche {
    background-color: white;
    border: 1px solid #DEDEDE;
    border-radius: 4px;
    padding: 0 15px 0 15px;
    height: 80px;
    justify-content: space-between;
    cursor: pointer;
}

.titre-demarche {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.text-demarche {
    font-size: 14px;
    font-weight: lighter;
    color: #4C4C4C;
}

.demarcheSelected {
    border: 1px solid var(--rose-color);
}


/* --- Blocs vehicule */

#div-infoVehicule .inputInput {
    font-size: 14px;
}

.div-blocInfoVehicule {
    justify-content: flex-start;
}

.div-vehicule {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--gap10);
}


/* --- Bloc CGV --- */

#cgv {
    width: 100%;
    align-items: center;
}

.label-checkboxCgv {
    font-size: 12px;
    color: #4C4C4C;
    font-weight: 500;
    text-align: justify;
    text-decoration: underline;
}


/* --- Bloc Info Client --- */

.typeClientSelected {
    border: 1px solid var(--rose-color);
}


/* --- Bloc Recapitulatif */

.box-recapitulatif {
    position: sticky;
    top: var(--top-sticky);
    border: 1px solid #DEDEDE;
    border-top: none;
    border-radius: 4px;
    width: 35%;
    z-index: 11;
    height: fit-content;
}

#div-recapInfo {
    position: absolute;
    background-color: #b60044;
    width: 100%;
    height: calc(100% - 15px);
    left: 0;
    top: 0;
    color: white;
    border-radius: 0 0 4px 4px;
}

.div-recapitulatif {
    color: white;
}

.div-blocRecapitulatif {
    background-color: #ffffff;
    border-radius: 0 0 4px 4px;
    justify-content: flex-start;
    padding: 25px;
    color: #4C4C4C;
    font-size: 15px;
}

.div-blocRecapitulatifArrierePlan {
    background-color: #B60044;
    color: rgba(255, 255, 255, 0.4);
}

.recap-none {
    pointer-events: none;
    text-decoration: line-through;
    opacity: 0.5;
}

.recap-checkbox {
    position: relative;
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #DEDEDE;
    border-radius: 4px;
    max-height: 10px;
    max-width: 10px;
}

.recap-check {
    position: absolute;
    transform: translateX(-7px) translateY(-14px) scale(1.2);
    display: none;
    min-width: 20px;
}

.recap-checkChecked {
    display: block;
}

.text-titreRecap {
    font-size: 18px;
    border-radius: 4px 4px 0 0;
    background-color: #970034;
    color: white;
    text-align: center;
    height: 40px;
}

.grey {
    background-color: #767676;
}

.fond-imageRecap {
    background-color: #FF85B21a;
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.textRecap {
    text-align: right;
    font-weight: 700;
    color: #000000;
}

#recap-textDemarche {
    max-width: 70%;
}

.titre-textRecap {
    font-weight: normal;
}


/* --- Bloc paiement */

.div-blocPaiement {
    background-color: white;
    border: 1px solid #DEDEDE;
    border-radius: 4px;
    padding: 15px 30px 15px 35px;
    cursor: pointer;
}

.paiementSelected {
    border: 1px solid var(--rose-color);
    color: var(--rose-color);
}


/* --- Bloc Recapitulatif */

#svg-supprimerCoTitulaire {
    cursor: pointer;
}

.ajoutCoTitulaire {
    color: var(--rose-color);
    font-weight: 700;
    cursor: pointer;
}

.ajoutCoTitulaireAdded {
    display: flex;
    flex-direction: column;
    gap: var(--gap10);
}

.titreCoTitulaire {
    display: flex;
    gap: var(--gap10);
}

.gridDemarche {
    display: flex;
    gap: var(--gap5);
}


/*--- Input et select */

.input-vehicule {
    height: 48px;
    border: 1px solid #DEDEDE;
    background-color: #fdfdfd;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.select-vehicule {
    height: 60px;
    border: 1px solid #DEDEDE;
    font-size: 14px;
    font-weight: 700;
    padding-left: 8px;
    color: black;
}

#input-immatVehicule {
    text-transform: uppercase;
}

.inputInput:not([placeholder=""]):not(:focus)+.labelInput {
    left: 10px;
    top: 10px;
    font-size: 14px;
    color: grey;
    transition: .4s;
    transform: translateY(0);
}

.inputInput[value=""]:not(:focus)+.labelInput {
    color: black;
}

.inputInput::placeholder {
    color: #d8d8d8;
}

.labelInputVehicule {
    color: black !important;
    font-size: 14px !important;
}


/* Footer */

.footerContainer {
    width: 100%;
    background: #000;
    display: none;
    justify-content: center;
    padding: 12px;
    color: #fff;
    margin-top: 20px;
    font-size: 12px;
}

.footerContenu {
    text-align: center;
}


/*! -------- ID ---------- */

#premierBandeauGaucheTop {
    position: absolute;
    z-index: 10;
}

#premierBandeauDroiteTop {
    height: 400px;
    opacity: 0.2;
    filter: alpha(opacity=50);
    z-index: 5;
}

#div-bloc-option {
    display: flex;
    flex-direction: column;
    gap: var(--gap15);
}

#bandeauContainer {
    width: 70%;
}

#cache {
    width: 100%;
    background-color: #f5f0f4;
    padding: 5px;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 93px;
    z-index: 10;
}

#imageHome {
    display: none;
}

#bandeau {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: var(--top-sticky);
    z-index: 10;
}

#premierBandeauGaucheTop {
    position: absolute;
    z-index: 10;
}

#premierBandeauDroiteTop {
    height: 400px;
    opacity: 0.2;
    filter: alpha(opacity=50);
    z-index: 5;
}


/* --- Questions */

#div-questions {
    width: 100%;
    position: relative;
    gap: 20px;
}

#input-immatVehicule,
#input-cvVehicule,
#input-dateMECVehicule {
    padding-left: 10px;
}


/* #bandeauTemplate{
    gap: 16%;
} */

#loadingContainer {
    position: sticky;
    top: var(--top-sticky);
    z-index: 11;
}

#loadingbackground {
    width: 100%;
    height: 4px;
    background: #C4C4C4;
    position: absolute;
}

#loadingStatut {
    width: 0;
    height: 4px;
    position: absolute;
    background: var(--rose-color);
    transition: 0.2s;
    /* top: 0; */
}

#bouton-continuer-recap {
    display: none;
}

.pulseAnim {
    transform-origin: 50% 50%;
    transform: scale(1);
    animation: pulse 0.3s infinite linear alternate;
    -webkit-animation: pulse 0.3s infinite linear alternate;
}

@keyframes pulse {
    to {
        transform: scale(1.3);
    }
}

@-webkit-keyframes pulse {
    to {
        transform: scale(1.3);
    }
}


/* ----------- ACCORDEON ------------ */

.accordion button {
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 100%;
    transition: all 100ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 100ms linear, max-height 100ms linear;
    will-change: opacity, max-height;
}

.boutonPaiement,
.boutonPaiementGratuit {
    display: flex;
    background: var(--rose-color);
    /* margin: 10px; */
    border-radius: 4px;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    cursor: pointer;
}

.boutonPaiement>div,
.boutonPaiementGratuit>div {
    display: flex;
    gap: 22px;
    align-items: center;
}

#contenuBoutonContainer {
    line-height: 1.2;
}

#descContenuBouton {
    font-size: 12px;
    opacity: .6;
}

#prixTotal {
    font-size: 23px;
}

.statutBandeauNumero {
    background: #fff;
    padding: 0px 6.57px;
    color: #767676;
    font-weight: bold;
    border-radius: 50%;
    font-size: 14px;
}



span.rose {
	color: var(--rose-color);
  }
  #bandeau-header {
	  position: relative;
	  z-index: 2;
	  display: flex;
	  flex-direction: column;
	  background-color: #F7F7F7;
	  border-radius: 24px;
	  overflow: hidden;
	  max-height: 346px;
	  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
	  width: 100%;
	  margin-bottom: 40px;
  }
  #bandeau-header #header-left {
	  flex: 1 1;
	  display: flex;
	  flex-direction: column;
	  gap: 20px;
	  padding: 50px 50px 0 50px;
  }
  #bandeau-header #header-left h1 {
	  color: #2F2E41;
	  font-size: 35px;
	  font-weight: bold;
	  margin: 0;
  }
  #bandeau-header #header-left h2 {
	  color: #2F2E41;
	  font-size: 1.13rem;
	  font-weight: 600;
	  margin: 0;
	  max-width: 580px;
  }
  #bandeau-header #header-left > div {
	  width: 100%;
	  margin-top: auto;
	  display: flex;
	  justify-content: space-between;
	  align-items: flex-end;
	  margin-right: auto;
  }
  #bandeau-header #header-left > div > ul {
	  list-style: none;
	  display: flex;
	  flex-direction: column;
	  gap: 15px;
	  padding-left: 0;
	  margin-bottom: 0;
  }
  #bandeau-header #header-left > div > ul li {
	  display: flex;
	  gap: 30px;
	  align-items: center;
  }
  #bandeau-header #header-left > div > ul li img, #bandeau-header #header-left > div > ul li svg {
	  width: 20px;
	  height: 20px;
  }
  #bandeau-header #header-left > div > ul li p {
	  font-size: 1.13rem;
	  color: #2F2E41;
	  margin: 0;
  }
  #bandeau-header #header-left > div > a {
	  font-size: 1.3rem;
	  font-weight: 600;
	  margin-left: auto;
	  margin-right: 30px;
	  text-decoration: none;
	  color: white;
	  background-color: var(--rose-color);
	  padding: 18px 40px;
	  border-radius: 12px;
	  white-space: nowrap;
	  box-shadow: rgba(207, 11, 93, 0.2) 0 3px 8px;
  }
  #bandeau-header #fleche-header-right {
	  position: relative;
	  top: 0;
	  right: -1px;
  }
  #bandeau-header #header-right {
	  position: relative;
	  background-color: #D6D6D6;
	  padding: 50px 75px 50px 75px;
  }
  #bandeau-header #header-right img {
	  width: 100%;
	  height: 100%;
	  object-fit: contain;
  }
  
  #bandeau-chiffres {
	position: relative;
	margin-bottom: 20px;
	overflow-x: hidden;
	width: 100%;
	height: 120px;
  }
  #bandeau-chiffres > div {
	width: 100%;
	position: absolute;
	left: 0;
	top: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px 30px;
  }
  #bandeau-chiffres > div.secondary {
	display: none;
  }
  #bandeau-chiffres > div .chiffres-container {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding: 15px 20px;
	background-color: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(4px);
	border: 1px solid #dadada;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	max-width: 290px;
  
  }
  #bandeau-chiffres > div .chiffres-container #fusee {
	position: absolute;
	top: -10px;
	right: -10px;
  }
  #bandeau-chiffres > div .chiffres-container > svg {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	fill: #2F2E41;
  }
  #bandeau-chiffres > div .chiffres-container .chiffres-content {
	display: flex;
	flex-direction: column;
	gap: 5px;
  }
  #bandeau-chiffres > div .chiffres-container .chiffres-content > div {
	display: flex;
	gap: 10px;
	align-items: center;
  }
  #bandeau-chiffres > div .chiffres-container .chiffres-content h3 {
	color: #2F2E41;
	font-size: 16.8px;
	font-weight: 600;
	margin: 0;
	
	max-width: 200px;
	white-space: normal;
	word-wrap: break-word;
  }
  #bandeau-chiffres > div .chiffres-container .chiffres-content p {
	color: #2F2E41;
	font-size: 0.9rem;
	margin: 0;
	white-space: nowrap;
  }

/*! -------- MEDIAS QUERIES ---------- */


/* --- max width --- */

@media screen and (max-width: 1280px) {
    #imageHome {
        display: flex;
    }
	#bandeau-header {
		display: none;
	}
}

@media screen and (max-width: 1200px) {
    main {
        max-width: 990px;
    }
    .box-recapitulatif {
        width: auto;
        position: initial;
        z-index: 0;
    }
    #conteneurGlobal {
        flex-direction: column;
    }
    #bandeau {
        top: 112px;
    }
    #bandeauContainer {
        width: 100%;
    }
    #cache {
        display: none;
    }
    .fond-imageRecap {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    #bandeau {
        top: 80px;
    }
    #bandeauRecapActif {
        background: #000;
        border-radius: 4px 4px 0 0;
    }
    .bandeauTitrePage {
        border-radius: 0;
    }
    /* .text-titreRecap {
        border-radius: 0;
    } */
    #conteneur-bloc {
        padding: 20px 10px 0 10px;
    }
    /*#box-recapitulatif{
        margin: 10px;
    }*/
    #titreConsignes {
        border-radius: 4px 4px 0 0;
    }
}

@media screen and (max-width: 800px) {
    .labelHiddenOnMobile {
        /* -Label raccourcis sur mobile */
        display: none;
    }
    .blocIntro {
        display: none;
    }
    .conteneur {
        margin: 0;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    #imageHome {
        background: linear-gradient(360deg, #fafcfe 0%, #f3f3f3 8%);
    }
    #home_zoneFooter {
        display: none;
    }
    .footerContainer {
        display: flex;
    }
    /* #bandeauTemplate{
        gap: 0;
    } */
}

@media screen and (max-width: 768px) {
    .alertMessageIsValid {
        position: inherit;
        bottom: 0;
    }
    #question4 .div-reponse {
        flex-direction: column;
    }
    /* #bouton-continuer-recap {
        display: flex;
    } */
    /* .text-titreRecap {
        background-color: #A1003C;
    } */
    .containerInput {
        margin: 0;
    }
    .input-formulaire {
        flex-direction: column;
    }
    .conteneur {
        padding: 35px 15px;
    }
    .span-bandeau {
        display: none;
    }
    #div-paiement>span {
        padding: 14px 15px;
    }
}


/* --- min width --- */

@media screen and (min-width: 800px) {
    /* #containerIconesTop{
        flex-direction: row;
        gap: 36px;
    }
    #containerIconesTop:nth-child(1){
        min-width: fit-content;
    } */
}

#flecheCestParti {
    animation: bounce 1s ease-in-out infinite alternate;
}

@keyframes bounce {
    from {
        top: -3px;
    }
    to {
        top: 3px;
    }
}


/* OPTIONS */

.div-blocDemarchePlaque {
    background-color: white;
    border: 1px solid #DEDEDE;
    border-radius: 4px;
    padding: 0 15px 0 15px;
    height: 80px;
    justify-content: space-between;
    cursor: pointer;
}

.itemRowPopUp span {
    white-space: nowrap;
}

#optionBoutonAuFinalOui {
    font-size: 1rem;
}

.optionButtonShowOrHide {
    cursor: pointer;
    font-size: 0.8rem;
}

.optionButtonShowOrHide:hover {
    text-decoration: underline 1px;
    color: #5E5E5E;
}


/* media screen pour les options */

@media screen and (max-width: 533px) {
    .optionBloc.titre-demarche {
        font-size: 15px;
    }
    .optionBloc.text-demarche {
        font-size: 12px;
    }
    #optionCommandePlaque {
        margin-top: 25px !important;
    }
    #optionCommandePlaque div .div-reponse {
        flex-direction: column;
        width: 60% !important;
    }
    #optionCommandePlaque div .div-reponse div {
        width: 90% !important;
    }
    .itemRowPopUp span {
        font-size: 15px;
    }
    .itemRowPopUp {
        align-items: flex-start !important;
        margin-top: 5px;
    }
    #input_qtePlaquePopUp {
        margin-left: 0 !important;
    }
    #prixPlaque {
        margin-left: -15px !important;
        font-size: 18px;
    }
}

@media screen and (max-width: 467px) {
    .optionBloc.div-blocDemarche {
        height: auto !important;
    }
    #optionCommandePlaque div .div-reponse {
        font-size: 15px;
    }
}

@media screen and (max-width: 370px) {
    #div-qtePlaquePopUp {
        gap: 0 !important;
    }
}

@media screen and (max-width: 335px) {
    #optionCommandePlaque {
        margin-top: 10px !important;
    }
}

@media screen and (max-width: 330px) {
    #optionCommandePlaque div .div-reponse {
        font-size: 13px;
    }
}

@media screen and (max-width: 315px) and (min-width: 301px) {
    #checkAluminium,
    #checkPlexiglass {
        display: none !important;
    }
}

@media screen and (max-width: 300px) {
    #optionPlaque {
        height: 105px;
    }
    #optionCommandePlaque div .div-reponse {
        flex-direction: row;
        width: 100% !important;
    }
    #optionCommandePlaque #optionFlexPlaque {
        flex-direction: column;
    }
    .itemRowPopUp {
        align-items: center !important;
        justify-content: center;
    }
    #prixPlaque {
        margin-top: 30px !important;
        margin-left: -30px !important;
        font-size: 1rem;
    }
}