/* m_navigation.css : code css pour navigation version mobile */
/* mise à jour : 2020-05-17  */

.menu {
    flex-basis: 100%;
    list-style: none;
    margin: 0;
    max-height: 0;
    overflow: hidden;
padding: 0 2em;
    text-transform: uppercase;
    font-size: 40px;
    transition: margin .5s ease-in-out, max-height .5s ease-in-out, opacity .3s .1s ease-in-out;
    visibility: hidden;
}

 
.menu-checkbox:checked ~ .menu {
    margin: 1em 0;
    max-height: none;
    opacity: 1;
    visibility: visible;
}


.menu-checkbox {
	opacity: 0;
	position: absolute;
	top: -1000px;
}

.menu-checkbox:focus + .menu-toggle {
    outline: #00A1A1 auto 5px;
}

.menu-toggle {
    padding: .5em 1em;
}


.menu li {
    border-bottom: 1px solid #eee;
}


.menu li a {
    display: inline-block;
    padding: 0.5em 0.5em;
}


.nav-wrapper {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


#menuG_nav{
    background-color: #ffffff;
    top: 158px;
    position: absolute;
    z-index:2;
}

#menuD_nav{
    background-color: #ffffff;
    top: 158px;
    bottom: 140px;
    position: absolute;
    z-index:1;
}

