.simulateur {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
    position: relative;
}

.simulateur #q_title {
    color: #6081ED;
    font-size: 1.1em;
    margin-top: 2rem;
}

.simulateur .init_form {
    margin-top: 3rem;
}

.simulateur .labelCard {
    width: 100%;
}

.simulateur .form_content {
    margin-top: 3rem
}

.simulateur .card-list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
    flex-wrap: wrap;
    width: 100%;
}


.simulateur .card {
    width: 100%;
    height: 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 0.4rem;
    background-color: #fff;
}

.simulateur .card:hover {
    cursor: pointer;
    transition: all linear 0.3s;
}

.simulateur .card>img {
    width: 2rem;
    margin-left: 1rem;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 3px 0px;
    border-radius: 50%;
    padding: 5px;
}

.simulateur .card>p {
    margin: 0;
    text-align: center;
    font-size: 0.8em;
    width: 100%;
    background-color: transparent;
    font-weight: 600;
}

.simulateur .form_content>.disable {
    display: none;
}


.simulateur .reset_button {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-style: italic;
    cursor: pointer;
    color: #9b9b9b;
    font-size: 0.8em;
    margin-top: 0.5rem;
}

.simulateur .reset_button img {
    width: 0.8rem;
    opacity: 0.5;
}

.simulateur .progressBar {
    margin-top: 1rem;
}

.simulateur .progressBar #stepbar {
    width: 100%;
    height: 0.3rem;
    background-color: #fff;
    border-radius: 0.5rem;
    position: relative;
}

.simulateur .progressBar #stepbar-content {
    height: 0.3rem;
    background-color: #6081ED;
    transition: all linear 0.7s;
    width: 0;
}

.simulateur .progressBar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.simulateur .progressBar #step-pourc {
    font-size: 0.8em;
    width: 3rem;
    color: #7c7c7c;
}

.simulateur label {
    color: #000;
    font-size: 1em;
    background-color: #fff;
    font-weight: 100;
    border-radius: 0.4rem;
    padding: 0;
}

/*
* INPUT RADIO
*/
/**
  Default Markup
**/

.simulateur .card-input-element {
    display: none;
}

.simulateur .card-input:hover {
    cursor: pointer;
}

.simulateur .card-input-element:checked+.card-input {
    box-shadow: 0 0 1px 1px #6081ED;
}

.simulateur .footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1rem;
    gap: 0.5rem;
    width: -webkit-fill-available;
    margin-right: 0.5rem;
}


.simulateur .footer .footerButton {
    display: flex;
    gap: 0.3rem;
    width: 100%;
}

.simulateur #submitForm {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 10rem;
}

.simulateur #submitForm img {}

.simulateur .footer button {
    background-color: #6081ED;
    border: 3px solid #6081ED;
    border-radius: 1.5rem;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    padding: 10px 20px;
    min-height: 3rem;
}

.simulateur .footer button img {
    filter: invert(100%);
    width: 1rem;
}

.simulateur #submitFormPrev {
    padding: 0;
    min-width: 3rem;
    width: 3rem;
    height: 3rem;
    min-height: 3rem;
    border-radius: 100%;
}

.simulateur .footer button.disable {
    background-color: #e5e5e5;
    border: 3px solid #e5e5e5;
    border-radius: 0.7rem;
    color: #fff;
    cursor: not-allowed;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    padding: 10px 20px;
}

.simulateur .formSuccess {
    background-color: #fff;
    width: fit-content;
    margin: auto;
    border-radius: 1rem;
    padding: 1rem 2rem;
}

.simulateur .formSuccess h3 {
    margin-bottom: 1rem;
    color: #6081ED;
    background-color: #fff;
}


.simulateur .formSuccess p {
    background-color: #fff;
}

.simulateur .wait_card {
    display: none;
    width: fit-content;
    margin: auto;
    padding: 1rem;
    background-color: #fff;
    border-radius: 1rem;
}

.simulateur .wait_card img {
    width: 13rem;
}

.simulateur .success_card {
    display: none;
    width: fit-content;
    margin: auto;
    padding: 1rem;
    background-color: #fff;
    border-radius: 1rem;
}

.simulateur .success_card img {
    width: 12rem;
}

.simulateur input[type=text],
.simulateur input[type=number],
.simulateur input[type=email] {
    border: 1px #fff solid;
    padding: 0.7rem 0.5rem;
    border-radius: 0.4rem;
    background-color: #fff;
    width: -webkit-fill-available;
    text-align: center;
    margin: auto;
    margin-bottom: 0.5rem;
    display: block;

}

.avisSvg1 {
    display: none;
}

.avisSvg2 {
    display: block;
}

@media screen AND (min-width: 900px) {
    .simulateurPage {
        height: 100vw;
    }


    .simulateur #submitForm {
        width: auto;
    }

    .simulateur .footer {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 3rem;
        gap: 0.5rem;
        width: -webkit-fill-available;
        margin-right: 3rem;
    }

    .simulateur .footerButton {
        width: fit-content !important;
    }

    .avisSvg2 {
        display: none;
    }

    .avisSvg1 {
        display: block;
    }

    .simulateur .card-list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        width: 100%;
    }


    .simulateur .card {
        width: 10rem;
        height: 7rem;
        padding: 0.5rem 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 0.4rem;
    }

    .simulateur .card>img {
        width: 3rem;
        margin-left: 0;
    }

    .simulateur .card>p {
        text-align: center;
        font-size: 1em;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .simulateur #q_title {
        font-size: 1.5em;
    }


    .simulateur .reset_button {
        font-size: 1em;
    }

    .simulateur .reset_button img {
        width: 0.9rem;
    }

    .simulateur .progressBar {
        margin-top: 2rem;
    }

    .simulateur .progressBar #stepbar {
        height: 0.5rem;
    }

    .simulateur .progressBar #stepbar-content {
        height: 0.5rem;
    }

    .simulateur .progressBar #step-pourc {
        font-size: 1em;
        width: 4rem;
    }

    .simulateur input[type=text],
    .simulateur input[type=number],
    .simulateur input[type=email] {
        border: 1px #fff solid;
        padding: 0.5rem 0.5rem;
        border-radius: 0.5rem;
        background-color: #fff;
        width: auto;
        min-width: 15rem;
    }
}