.menu_mobile{
  position:absolute;
  overflow:hidden;
  top:0;
  left:-100vw;
  background-color: #000;
  height:100vh;
  width:100vw;
  max-width:450px;
  z-index:1000;
  padding:20px;
  transition: left 0.7s ease;
  display: none;

  .header{
    position: relative;
    height: 60px;

    img{
      height: 38px;
    }

    img, div.close{
      position: absolute;
    }

    div.close{
      cursor:pointer;
      right:0;
      top:0px;
      width:15px;
      height:15px;

      img{
        width:15px;
        height:15px;
      }
    }
  }

  .menu_content{
    overflow: hidden;
    height: 100vh;
    display:flex;
    justify-content:center;
    align-items:center;

    .content{
      display:flex;
      flex-direction:column;
      justify-content:flex-start;
      align-items:center;
      transform : translateY(-40px);

      .separator{
        height:2px;
        background-color: white;
        width:30px;
        margin-top: 5px;
        margin-bottom: 13px;
      }


      .links, .products, .newsletter, .langues{
        a:link, a:visited, a:hover, a:active, {
          @extend .din-bold;
          border-bottom-color: transparent;
          text-transform: uppercase;
          margin-bottom: 0px;
          color:white;
          margin-bottom: 13px;
        }

        a:hover{
          border-bottom: 1px solid white;
        }
      }

      .langues{
        display: flex;
        width: 40px;
        justify-content: space-between;
        margin-top: 20px;
        span{
          color: white;
        }

        a:link, a:visited, a:hover, a:active, {
          text-transform: none;
        }
      }
  
      .links, .products{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
      }

      img{
        width:inherit;
        margin-top: 13px;
        margin-bottom: 13px;
      }

      .reseaux{
        margin-top: 7px;
        margin-bottom: 7px;
        span{
          color: white;
        }

        a:link, a:visited, a:hover, a:active, {
          text-transform: none;
          @extend .absara-regular;
          border-bottom-color: transparent;
          color:white;
        }

        a:hover{
          border-bottom-color: white;
        }
      }
    }
  }

  &.open{
    left:0;
  }
}


.hamburger{
  display:none;
  position: absolute;
  right:20px;
  top:20px;
  height:16px;
  width:25px;
  margin:0 auto;
  cursor: pointer;

  span{
    position: absolute;
    border-top:4px solid black;
    width:100%;

    &.top{top:0;}
    &.middle{top:6px;}
    &.bottom{bottom:0;}
  }
}


/*
|--------------------------------------------------------------------------
| MENU MOBILE POUR LES PETITS TÉLÉPHONES
|--------------------------------------------------------------------------
*/
@media screen and (max-width: 400px){
  .menu_mobile{

    .header{
      img{
        width:130px;
      }
    }


    .menu_content{
      .content{
        transform : translateY(-40px);

        .links, .products, .newsletter, .langues, .reseaux{
          a:link, a:visited, a:hover, a:active, {
            font-size: 0.8rem;
            margin-bottom: 5px;
          }
        }

        .reseaux,.langues{
          margin: 0px;
        }
  
        img{
          width:80%;
          margin-top: 4px;
          margin-bottom: 8px;
        }
      }
    }
  }
}
