
/* Résultats de contact */

/* Inputs */
.form-container .wpcf7-not-valid-tip{
    margin-top: 0.66vw;
    color: #CC482E; /* Changer la couleur en fonction du thème */
    font-size: 0.80vw;
    font-weight: 700;
    font-family: Manrope; /* Changer la police en fonction du thème */
    position: relative;
    width: fit-content;
    margin-left: 1vw;
}

.form-container .wpcf7-not-valid-tip::after{
    position: absolute;
    width: 0.15vw;
    background-color: #CC482E; /* Changer la couleur en fonction du thème */
    height: 100%;
    bottom: 0;
    left: -1vw;
    content: "";
}

/* Après envoi */
/* Envoyé */
.wpcf7 form .wpcf7-response-output{
    border: none;
    background-color: #10202C;  /* Changer la couleur en fonction du thème */
    padding: 1.66vw 2vw;
    color: white;
    font-size: 0.9vw;
    font-weight: 700;
    font-family: Manrope; /* Changer la police en fonction du thème */
    margin: 2vw 0;
}

/* Non envoyé */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output{
    border:none;
    background-color: #CC482E;  /* Changer la couleur en fonction du thème */
    padding: 1.66vw 2vw;
    color: white;
    font-size: 0.9vw;
    font-weight: 700;
    font-family: Manrope; /* Changer la police en fonction du thème */
    margin: 2vw 0;
}




@media screen and (max-width : 1230px){
    .form-container .wpcf7-not-valid-tip{
        margin-top: 10px;
        font-size: 12px;
        margin-left: 15px;
        position: absolute;
        top: 19px;
    }

    .form-container .wpcf7-not-valid-tip::after{
        width: 2px;
        left: -15px;
    }

    .wpcf7 form .wpcf7-response-output{
        padding: 15px 20px;
        font-size: 14px;
        margin: 18px 0;
    }

    /* Non envoyé */
    .wpcf7 form.invalid .wpcf7-response-output,
    .wpcf7 form.unaccepted .wpcf7-response-output{
        padding: 15px 20px;
        font-size: 14px;
        margin: 18px 0;
    }

}

@media screen and (max-width : 992px){

}

@media screen and (max-width : 768px){

}

@media screen and (max-width : 600px){

}

@media screen and (max-width : 480px){

}