.section-newsletter {
    padding: 0;
}

.section-newsletter .maxWidth {
    position: relative;
    display: flex;
    padding: 6rem 0;
}

.section-newsletter .maxWidth .bgcImg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.section-newsletter .maxWidth .texts {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 3rem 5rem;
    border-radius: 5px;
    background-color: var(--couleur-10);
    gap: 2rem;
}

.section-newsletter .maxWidth .texts h2 {
    color: var(--couleur-9);
    font-size: 3rem;
}

.section-newsletter .maxWidth .texts p {
    color: var(--couleur-9);
    font-size: 1.1rem;
}

.section-newsletter .maxWidth .texts .input {
    display: flex;
    width: 30rem;
}

.section-newsletter .maxWidth .texts .input input {
    height: 100%;
    width: 100%;
    background-color: var(--couleur-18);
    border: none;
    color: var(--couleur-8);
    outline: none;
    padding: 1rem 2rem;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.section-newsletter .maxWidth .texts .input button {
    width: 30%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


/* rajout probance */
.section-newsletter div#probance_form_block form {
    position: relative;
    margin: auto;
    width: calc(100% - 30px);
    display: flex;
    flex-wrap: wrap;
}

.section-newsletter #probance_form_block {
    display: flex;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.section-newsletter .p-nlform-subtitle {
    max-width: 425px;
}

.section-newsletter div#probance_optin_cb_wrapper {
    order: 3;
    display: flex;
    margin-top: 2rem;
    line-height: initial;
    align-items: center;
}

.section-newsletter .probance_msg_wrong_email {
    margin: 5px 0;
}

.section-newsletter #probance_newsletter_submit_btn {
    border-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: var(--couleur-7);
    font-family: var(--police-worksans-bold);
    padding: 1rem 2rem;
    border: none;
    outline: none;
    color: var(--couleur-10);
    transition: all .2s;
    cursor: pointer;
}

.section-newsletter #probance_newsletter_submit_btn:hover {
    background-color: var(--couleur-27);
}

.section-newsletter label.p-nlform-email-label {
    display: none;
}

.section-newsletter div.email_block {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.section-newsletter div#probance_optin_cb_wrapper #probance_optin_cb_nl {
    width: 15px;
}

.section-newsletter div#btn_block {
    width: 100%;
}



#probance_optin_cb_wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

#probance_optin_cb_wrapper input {
    cursor: pointer;
    margin-top: 0.25rem;
    accent-color: #be825a;
}

#probance_optin_cb_wrapper span {
    text-align: left;
    cursor: pointer;
    line-height: initial;
}

#probance_optin_cb_wrapper input:checked+span {
    color: var(--couleur-1);
    font-family: var(--police-worksans-bold);
}

#probance_optin_cb_wrapper input[type="checkbox"] {
    width: 15px !important;
}



@media screen and (max-width: 900px) {
    .section-newsletter .maxWidth {
        padding: 6rem 10%;
    }

    .section-newsletter .maxWidth .texts {
        width: 100%;
    }
}

@media screen and (max-width: 720px) {
    .section-newsletter .maxWidth .texts {
        padding: 2rem 5%;
    }

    .section-newsletter .maxWidth .texts h2 {
        font-size: 2.5rem;
    }

    .section-newsletter .maxWidth .texts .input {
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .section-newsletter .maxWidth .texts .input {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        height: unset;
    }

    .section-newsletter .maxWidth .texts .input input {
        width: 100%;
        border-radius: 5px;
    }

    .section-newsletter .maxWidth .texts .input button {
        width: unset;
        border-radius: 5px;
    }

    .section-newsletter .maxWidth .texts h2 {
        font-size: 1.5rem;
    }

    .section-newsletter .maxWidth .texts p {
        color: var(--couleur-9);
        font-size: .9em;
    }

    .section-newsletter .maxWidth .texts .input input::placeholder {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}