/** VERSION BUREAU **/

.menu_cadre
{
  width: 100vw;
  height: 65px;
  background-color: white;
  place-content: center;
  text-align: center;
  position: fixed;
  z-index: 1;
  border-style: dotted;
  border-color: #E1E1E1;
  border-width: 0 0 1px 0;
}

.menu_bouton
{
  margin: 0 5px 0 5px;
  padding: 0 5px 0 5px;
  font-size: 16px;
  font-family: 'bold';
  font-style: normal;
  display: inline;
}
  
.menu_bouton:hover
{
  background-color: #FFD041;
}

.menu_titre_cadre
{
  width: 100vw;
  padding: 30px 0 30px 0;
  background-color: white;
  text-align: center;
  box-shadow: 2px 12px 8px #E6E6E6;
}

.menu_recherche
{
  width: 40vw;
  height: 25px;
  font-size: 14px;
  margin: 30px 0 0 0;
  padding: 25px;
  border-style: none;
  border-radius: 25px;
  background-color: #F3F3F3;
  color: black;
}

/** VERSION MOBILE **/

@media (max-width:767px)
{

.menu_cadre
{
  padding: 0 10px 0 10px;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.menu_cadre::-webkit-scrollbar 
{
  display: none;
}
.menu_cadre 
{
  -ms-overflow-style: none; // IE 10+
  overflow: -moz-scrollbars-none; // Firefox
}

.menu_bouton
{
  margin: 0 5px 0 5px;
  padding: 0 5px 0 5px;
  font-size: 14px;
  font-family:'bold';
  color: black;
}

.menu_logo
{
  width: 220px;
}

.menu_recherche
{
  width: 80vw;
  margin: 15px 0 0 0;
}

}