.fond-mon-profil{
    background-color:#a22e2e;
    margin-bottom: 0;
}

.container-page-mon-profil{
    max-width: 1000px;
    margin:20px auto;
}

.navigation-mon-espace{
    display: flex;
    justify-content: space-between;
}

.fiche-utilisateur{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;

}

.header-fiche-utilisateur{
    width: 60%;
    margin:0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-fiche-utilisateur .avatar{
    margin-right: 15px;
}

.element-fiche-utilisateur{
    margin:10px 0;
    width:50%;
}

#editProfilUtilisateur{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#editProfilUtilisateur input{
    border:none;
    padding:10px;
}

#editProfilUtilisateur input[type="submit"]{
    margin-top: 10px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #a22e2e;
    color: white;
}

#editProfilUtilisateur > div > label{
    color:#003e5d;
    text-transform: uppercase;
    font-weight: 600;
}

.label-fiche-utilisateur{
    color:#e26f38;
}

.container-secteur-activite{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 10px 0;
}

#secteurGeographiquePrincipal{
    padding:10px 5px;
    border:2px solid #a22e2e;
    color:#a22e2e;
    border-radius: 5px;
}

.container-form-texte{
    display:flex;
    flex-direction: column;
    width: 45%;
    margin: 10px 0;
}

.container-secteur-geographique-principal{
    display: flex;
    flex-direction: column;
    width: 45%;
}

.container-btn-submit{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.btn-submit{
    width: 20%;
}

.inner-container-secteur-activite{
    width: 20%;
}

label.secteurs-activites{
    width:100%;
}

.etoile-obligatoire{
    color:red;
}

.message-profil{
    opacity: 0;
    padding:15px;
    border:2px solid #2e8da2;
    transition: all 0.3s ease-out;
    width:30%;
    margin:20px auto;
    color: #2e8da2;
    text-align: center;
    font-weight: 600;
}

.show-message{
    opacity: 1;
}

.container-page-signature-email{
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin:0 auto;
    flex-wrap: wrap;
}

form#selectConsultant{
    margin: 20px auto;
    display: flex;
}


.container-select-consultant{
    display: flex;
    flex-direction: column;
}

.container-select-consultant input{
    padding: 10px;
    width: 300px;
    border: none;
    background-color: #e7e7e7;
}

form#selectConsultant label{
    color:#003e5d;
    font-weight: 600;
}


form#selectConsultant button{
   color:#e26f38;
   font-weight: 600;
   transition: all 0.3s ease-out;
   background-color: inherit;
   align-self: flex-end;
   padding: 10px;
   border: none;

   
}

form#selectConsultant button:hover{
    background-color: #e26f38;
    color:white;
    
}

.container-signature{
    width: 49%;
    padding:20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container-signature button{
    display: inline-block;
    margin: 20px auto 10px auto;
    border: none;
    padding:10px;
    transition: all 0.3s ease-out;
    font-weight: 600;
}

.container-signature button:hover{
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, 0.15);
}

#copier-sellsy{
    border:2px solid #003e5d;
    color:#003e5d;
    background-color: white;
}

#copier-gmail{
    border:2px solid #A22e2e;
    color:#a22e2e;
    background-color: white;
}

#copier-sellsy:hover{
    background-color: #003e5d;
    color:white;
}
#copier-gmail:hover{
    background-color: #a22e2e;
    color:white;
}

@media screen and (max-width:1199px){
    .container-page-mon-profil{
        padding: 20px;
    }

    #editProfilUtilisateur{
        flex-direction: column;
    }

    .container-form-texte,
    .container-secteur-geographique-principal{
        width:100%;
    }

    .inner-container-secteur-activite{
        width:100%;
        max-width: 250px;
    }

    .btn-submit{
        width:100px;
    }
}