<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
.wpcf7                  /* cible lâ€™Ã©lÃ©ment div qui contient lâ€™ensemble de votre formulaire 
.wpcf7-form             /* cible lâ€™Ã©lÃ©ment form ou le cadre extÃ©rieur du formulaire  
.wpcf7-form-control     /* cible tous les champ du formulaire 
.wpcf7-text             /* cible les champs textes, y compris email, URL, tel 
.wpcf7-email            /* cible les champs email 
.wpcf7-url              /* cible les champs URL 
.wpcf7-tel              /* cible les champs tel 
.wpcf7-number           /* cible les champs nombre 
.wpcf7-date             /* cible les champs date 
.wpcf7-textarea         /* cible les champs zone de texte 
.wpcf7-select           /* cible les champs menu dÃ©roulant 
.wpcf7-checkbox         /* cible les champs case Ã&nbsp; cocher 
.wpcf7-radio            /* cible les champs boutons radio 
.wpcf7-acceptance       /* cible les champs confirmation 
.wpcf7-quiz             /* cible les champs quiz 
.wpcf7-file             /* cible les champs fichier 
.wpcf7-submit           /* cible le bouton dâ€™envoi du formulaire 
*/


    .radio-img .wpcf7-list-item-label {
        overflow: hidden;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: block;
        position: relative;
    }

    .radio-img img{
            position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        
    }


    .radio-img .wpcf7-list-item{
            position: relative;
            margin: 0;
        }


    .radio-img .wpcf7-list-item input{
        position: absolute;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
    }



    .radio-img-group{
        display: flex;
        gap: 15px;
    }


    .radio-img-group input +span{
        outline: 2px solid transparent;
        border: 4px solid transparent;
        color: transparent;
    }


    .radio-img-group input:checked + span{
    outline: 2px solid var(--e-a-color-accent);
    }


    /* input */
    input.wpcf7-form-control{
        background: #e9e9e9;
    }


    /* Title form */
  .wpcf7 .fieldset{
    padding: 0;
    border: none;
    }

    
    .wpcf7 fieldset legend{
        font-size: 30px;
        color: #000;
        font-weight: bold;
        margin-bottom: 20px;
    }

  .wpcf7   fieldset legend span,  .wpcf7 label{
        font-size: 16px;
        display: block;
        margin-bottom: 10px;
        color: #000;
        font-weight: bold;
    }


  .wpcf7  input,   .wpcf7  textarea,   .wpcf7  select{
        margin-top: 6px;
    }


    /* Message de validation */
 .wpcf7 form.sent .wpcf7-response-output {
    background: #fff;
    border: none;
    padding: 22px;
    margin: 0;
}

/* Hide form when form is sent */
form.wpcf7-form.sent &gt; *:not(.wpcf7-response-output) {
    display: none;
}

/* input file  */

.js .wpcf7-file {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.custom-file-input{
 
}

.wpcf7 .btn-file {
    display: inline-block;
    padding: 10px 20px ;
    background: var(--e-a-color-accent) ;
   cursor: pointer; /* "hand" cursor */
   color:#fff;
   font-size: 14px;
   font-family: inherit;
   margin-bottom: 0;
   margin-top: 6px;
}

.wpcf7 .btn-file:hover{
    background: #553c15;
}

.wpcf7 .file-name{
    display: block;
}


.wpcf7-acceptance .wpcf7-list-item{
margin: 0;
}

/* Keyboard Navigation */

.wpcf7-file:focus + .btn-file  {
	outline: 1px dotted #000;
	outline: -webkit-focus-ring-color auto 5px;
}


/* Colonnes  */
.wpcf7-flex{
    display: flex;
    flex-wrap: wrap;
}
.wpcf7-col {
    width: 50%;
}</pre></body></html>