/*** TOUTES LES MISES EN FORMES POUR LA FENETRE FLOTTANTE DE CONTACT ***/

div#fenetreContact
{
    position: fixed;
    width: 50%;

    display: flex;
    flex-direction: column;

    background-color: whitesmoke;

    /* ASTUCE POUR CENTRER UNE BOITE FIXED */
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);

    border: #2B2E4A solid 4px;
    border-radius: 25px;

}

div#fenCon_barre
{

    display: flex;

    border-bottom: #2B2E4A solid 4px;

    margin-bottom: 10px;
}

/* DONC LA BARRE DE DRAG */
div#fenCon_drag
{
    width: 95%;
    display: flex;

    background-color: #903749;
    border-radius: 20px 0 0 0;
    color: whitesmoke;
}
div#fenCon_drag:hover
{
    cursor: grab;
}
div#fenCon_drag:active
{
    cursor: grabbing;
}
div#fenCon_drag > *
{
    margin: auto 20px;
    padding: 7px 0;
}

/* DONC LA CROIX DE FERMETURE */
div#fenCon_croix
{
    width: 5%;
    display: flex;
    cursor: pointer;

    border-left: #2B2E4A solid 4px;
    border-radius: 0 20px 0 0;
    background-color: #E84545;
    color: whitesmoke;
}
div#fenCon_croix > p
{
    margin: auto;
}




div#fenCon_ventre
{

    display: flex;
}
div#fenCon_centre
{
    width: 20%;
    border-left: #903749 solid 2px;
    border-right: #903749 solid 2px;
    margin: 20px 0;

    display: flex;
}
div#fenCon_centre > p
{
    margin: auto;
    font-size: xxx-large;
    font-family: "cooperHewitt_gras", sans-serif;
    color: #903749;
}

.fenCon_cote
{
    width: 40%;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
}

div#fenCon_ventre h2
{
    margin: 0;
    text-align: left;
}
form#formContact
{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
form#formContact > input, textarea#saisieMessage
{
    width: 75%;
    margin-left: auto;
}
form#formContact > input
{
    border: #903749 solid 2px;
    border-radius: 5px;
}
textarea#saisieMessage
{
    resize: none;
    height: 75px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: #E84545 solid 2px;
    border-radius: 5px;
}

/* DONC LE BOUTON ENVOYER */
div#fenCon_ventre button
{
    margin: 20px auto;
    font-size: x-large;
    padding: 5px 30px;
    border-radius: 10px;
    border: solid 4px;
    background-color: #2B2E4A;
    color: whitesmoke;
}
div#fenCon_ventre button:hover
{
    background-color: whitesmoke;
    border: #903749 solid 4px;
    color: #903749;
}

div#boiteFlecheAnimee
{
    height: 100px;
    width: 80%;
    margin: 40% auto;

    display: flex;
}
img#flecheAnime
{
    height: 100%;
    position: relative;
    margin-left: auto;
}




/*** GESTION DU RESPONSIVE ***/
@media (max-width: 1024px) {





}



