.menu-h-avec-sous-menus {
    margin: 0 !important;
    padding: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    height: 50px;
    background-color: transparent;
}

.menu-h-avec-sous-menus li {
    position: relative;
}

.menu-h-avec-sous-menus li a {

    display: block;
    padding: 0 10px;
    height: 50px;
    line-height: 50px;
    color: #aaaaaa;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: max-height .5s;
    -o-transition: max-height .5s;
    transition: max-height .5s;
}

.menu-h-avec-sous-menus li a.mcsq-menu-niveau-2::after {

    content: "\f105";
    font: normal normal normal 18px/1 FontAwesome;
    padding-left: 20px;

}

.menu-h-avec-sous-menus li a:hover {
    color: #ffffff;
    opacity: 0.8;
}

.menu-h-avec-sous-menus li a.mcsq-menu-niveau-2:hover::after {

    content: "\f107";
    font: normal normal normal 18px/1 FontAwesome;
    padding-left: 14px;

}


.menu-h-avec-sous-menus li ul {
    position: absolute;
    margin: 0;
    padding: 0;
    top: 52px;
    list-style: none;
    background-color: rgb(140,140,140);
    width: 225px;
    left: 0;
    max-height: 0;
    -webkit-transition: max-height .5s;
    -o-transition: max-height .5s;
    transition: max-height .5s;
    overflow: hidden;
}

.menu-h-avec-sous-menus li ul li a {
    height: 35px;
    line-height: 35px;
    width:225px;
    color: #999;
}

.menu-h-avec-sous-menus li ul li a:hover {
    background-color: rgba(23, 23, 23, 0.9);
    color: #ffffff;
}

.menu-h-avec-sous-menus li:hover>ul {
    max-height: 400px;
}

.menu-h-avec-sous-menus li:hover>a {
    background-color: transparent;
    color: #222222;
}

