

/* menuBurger */

#menuTop{
	z-index: 5;
	cursor: pointer;
	position: fixed;
	top: 0px;
	left: 0px;
	color: white;
	vertical-align: top;
	opacity: 1;
    padding: 0px 0px;
    margin: auto;
}

#menuBurger{
  display: flex;
  justify-content: space-around; /* répartit uniformément */
  align-items: center;
  height: 80px;
  background-color: black;
  overflow: hidden;
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.divIcon, #iconMenu{
	height:70px;
	margin: 0px 40px 0px 15px;
    padding-top: 5px;
    flex: 1;
    margin: 0;            /* supprime les marges fixes */
    text-align: center;
    font-size: smaller;
	color: grey;
}



