<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.contact-civil{
    display: flex;
    align-items: center;
}
.contact-civil p:first-child{
    color: white;
    font-size: 18px;
    font-family: 'Poppins',sans-serif;
    font-weight: 500;
}

.contact-civil p:nth-child(2) span{
color:white;

}
.contact-civil p:nth-child(2) .civilite{
    display: flex;
}
.contact-civil p:nth-child(2) .civilite .first,.contact-civil p:nth-child(2) .civilite .last{
    display: flex;
    flex-direction: row-reverse;
}

.contact-civil p:nth-child(2) .civilite input{
    margin : auto 0.5em auto 0;
    -webkit-appearance: none; /* Remove default checkbox style in some browsers */
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    border-radius: 50%;
    outline: none;
}

.contact-civil p:nth-child(2) .civilite input:checked{
    background-color:white; /* Replace with your desired color */
  border-color: white; /* Same color as background */

}
.contact-civil .wpcf7-list-item{
    display: flex;
    flex-direction: row-reverse;
}

.contact-wrapper{
    display: flex;
    gap: 10px 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-wrapper p{
    width: 49%;
    margin: 0;
    font-family: 'Poppins',sans-serif;
    color: #222223;
    font-size: 16px;
    font-weight: 400;
    border: none;

}

.contact-wrapper p input::placeholder{
    font-family: 'Poppins',sans-serif;
    color: #222223;
    font-size: 16px;
    font-weight: 400;

}

.contact-wrapper p input{
    width: 100%;
    padding:10px 20px;
    border-radius: 10px;
    border: none;
}

.contact-msg textarea::placeholder{
    font-family: 'Poppins',sans-serif;
    color: #222223;
    font-size: 16px;
    font-weight: 400;
}

.contact-msg textarea{
    border-radius: 10px;
    padding: 17px 0 0 20px;
    border: none;
}

.contact-checkboxes{
    display: flex;
    gap: 10px;
}

.contact-abonnement,.contact-missions{
    width: 50%;
}


.contact-abonnement .wpcf7-form-control-wrap,.contact-missions .wpcf7-form-control-wrap{
    display: grid;
    grid-template-rows: 0fr;
    transition: all .3s ease-in;
}

.contact-abonnement .wpcf7-form-control-wrap.active,.contact-missions .wpcf7-form-control-wrap.active{
    grid-template-rows: 1fr;
}


.contact-abonnement .wpcf7-form-control-wrap&gt;span,.contact-missions .wpcf7-form-control-wrap&gt;span{
    overflow: hidden;
    background-color: white;
    border-radius: 10px;
   display: flex;
   flex-direction: column;
}
.label-abonnement,.label-missions{
    background-color: white;
    padding: 10px 20px;
    border-radius: 10px;
}

.contact-abonnement .wpcf7-list-item-label, .contact-missions .wpcf7-list-item-label{
    color:#222223;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.label-abonnement p,.label-missions p{
    margin: 0;
    color:#222223;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
}

.label-abonnement.active p::after,.label-missions.active p::after{
    transform: rotate(180deg);
    
}

.label-abonnement p::after,.label-missions p::after{
    content: url(../img/arrow-form.svg);
    margin-left: auto;
    position: absolute;
    right: 0;
    transition: transform .3s ease;

}

.contact-missions .wpcf7-list-item.first,.contact-abonnement .wpcf7-list-item.first{
    margin-top: .5em;
}

.contact-missions input,.contact-abonnement input{
    margin-right: 10px;
}

.input-container button{
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
}

.contact-checkboxes [type="checkbox"]{
    appearance: none;
    border: solid 1px black;
    /* width: 100%; */
    width: 15px;
    height: 15px;
    border-radius: 3px;
    background-color: white;
}

.contact-checkboxes [type="checkbox"]:checked{
    background-color:#222223;
}

.wpcf7-list-item{
    margin: 0 0 5px 1em;
}
@media (max-width: 576px){
    .contact-wrapper p{
        width: 100%;
    }

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

    .contact-civil p:first-child{
        margin: 0;
    }

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

    .contact-abonnement,.contact-missions{
        width: 100%;
    }

    .contact-civil p:nth-child(2) .civilite{
        display: flex;
        flex-flow: wrap;
        justify-content: center;
    }
}

@media (max-width:1024px){
    .contact-wrapper p{
        width: 100%;
    }

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

    .contact-civil p:nth-child(2) .civilite{
        flex-wrap: wrap;
        justify-content: center;
    }
}</pre></body></html>