.mm-menu{
right: calc(100% - 1524.48px);
}
// юзаем jQuery
$('.js-header-toggle').on('click touch', function(){
$('.header').toggleClass('.is-open');
});
.header{
height: 0;
opacity: 0;
transition: height 0.3s;
}
.header.is-open{
height: 100px;
opacity: 1;
}