#section-devis {
    width: 60%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 0;
    background-color: #006464;
}

#zone-devis {
    width: 80%;
    margin: auto;
    background-color: #FFFFFF;
    color: #000000;
    border-radius: 20px;
    padding: 3rem 6rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

/* ███ BARRE DE PROGRESSION ██████████████████████████████████████████████████████████████████████ */
.barre-de-progression {
    background-color: rgba(0, 153, 153, 0.25);
    border-radius: 1rem;
    height: 20px;
    color: #000000;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
}
.pourcentage {
    background-color: #009999;
    height: 100%;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    font-weight: bold;
    color: #FFFFFF;
    transition: width 0.3s ease-in-out;
}

/* ███ LABEL, INPUT, SELECT █████████████████████████████████████████████████████████████████████ */
.questions label {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin: 10px 0;
}
.questions label input[type="checkbox"],
.questions label input[type="radio"] {
    margin-right: 10px;
}

.questions input[type="text"],
.questions input[type="tel"],
.questions input[type="email"] {
    width: 30%;
    border-radius: 5px;
    padding: 5px;
}

.questions {
    display: none;
    opacity: 0;
    flex-direction: column;
    transition: opacity 0.5s ease-in-out;
}

.questions.active {
    display: flex !important;
    opacity: 1;
}

.questions p {
    font-size: 14px;
}