@media only screen and (max-width: 1560px) {
  .site-pusher, .site-container { height: auto; }
  .site-container { overflow-x: hidden;
  overflow-y:scroll; }
  .site-pusher {
    transition-duration: 0.3s;
    transform: translateX(0px);
  }

  .site-content {
    position: relative;
    top: 0px;
    right: 0;
    left: 0;
    bottom: 0;
    padding-top: 0;
    overflow-y: scroll;
    --webkit-overflow-scrolling: touch; /* Inertie sur iOS */
  }

  .header { position: static; }

  /* L'icône hamburger, en utilisant le box-shadow */
  .header__icon {
    position: relative;
    display: block;
    float: left;
    width: 55px;
    height: 66px;
    cursor: pointer; }
  .header__icon:after {
      content: '';
      position: absolute;
      display: block;
      width: 1rem;
      height: 0;
      top: 16px;
      left: 20px;
      box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white; }

  .header__logo{
    margin:0;
    padding:0 5px;

  }

  /* Le menu collé à gauche est masqué grâce à un transform */
  .menu {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0;
    overflow-y: scroll;
    --webkit-overflow-scrolling: touch;
    scrollbar-width:thin;
    background-color:#00C2FA;
    width: 240px;
    transform:translateX(-250px);
    padding-left: 10px;

  }
    /* Un lien par ligne */
    .menu>a {
      display: block;
      height: 46px;
      text-align: center;
      line-height: 40px;
      border-bottom: 1px solid white;

}

/* Toujours dans le @media */
 .with--sidebar .site-pusher {
   transform: translateX(250px);
 }
 /* On met un cache par dessus le site-content pour bloquer le scroll et permettre le retour au site */
 .with--sidebar .site-cache {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: rgba(0, 0, 0, 0.6);
   z-index:4;
 }

 .choixlangue{
   display:inline;
   position:static;
   text-align:center;

 }

 .sous-menu-1{
   height:auto;
   width: 230px;

 }

.sous-menu-2{
  display:block;
  position:static;
  max-width: 230px;
  font-size: 90%;
  color : #006b8b;
  border: none;
  text-align: left;
  line-height: 50px;
}
