#mobileNav {
    position: absolute;
    width: 250px;
    background: #f4f6fa;
    left: -250px;
    overflow-y: auto;
    height: 100%;

    -webkit-box-shadow:inset -10px 0 20px -10px rgba(0,0,0,.4);
    box-shadow:inset -10px 0 20px -10px rgba(0,0,0,.4);

    /*-webkit-transition: all 300ms ease-in-out;*/
    /*-moz-transition: all 300ms ease-in-out;*/
    /*-ms-transition: all 300ms ease-in-out;*/
    /*-o-transition: all 300ms ease-in-out;*/
    /*transition: all 300ms ease-in-out;*/
}

#pageCommonWrap.nav-active {
    height: 100%;
    overflow: hidden;
}

#pageWrap {
    position: relative;

    /*-webkit-transition: all 300ms ease-in-out;*/
    /*-moz-transition: all 300ms ease-in-out;*/
    /*-ms-transition: all 300ms ease-in-out;*/
    /*-o-transition: all 300ms ease-in-out;*/
    /*transition: all 300ms ease-in-out;*/
}

body.left-nav-active {
    overflow: hidden;
    position: fixed;
}
body.left-nav-active #mobileNav {
    transform: matrix(1, 0, 0, 1, 250, 0);
    position: fixed;
}
body.left-nav-active #pageWrap {
    transform: matrix(1, 0, 0, 1, 250, 0);
    overflow: hidden;
}
body.left-nav-active #footer {
    transform: matrix(1, 0, 0, 1, 250, 0);
}


#mobileNav .bottom {
    background: #e7ecf4;
    padding: 20px 30px;

    -webkit-box-shadow:inset -10px 0 20px -10px rgba(0,0,0,.4);
    box-shadow:inset -10px 0 20px -10px rgba(0,0,0,.4);
}
#mobileNav .bottom .contacts a {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

#mobileNav .menu-left ul {
    list-style-type: none;
    padding: 0;
}
#mobileNav .menu-left > ul {
    margin: 0;
}
#mobileNav .menu-left a {
    color: #323232;
    text-decoration: none;
}

#mobileNav .menu-left a:hover {
    color: inherit;
}

#mobileNav .menu-left a.mobile-nav-link.active {
    font-weight: 500;
}

.mobile-nav-link__discount {
    line-height: 24px;
}

.mobile-nav-link__discount:after {
    content: '%';
    display: inline-block;
    vertical-align: middle;
    border-radius: 100%;
    width: 24px;
    height: 24px;
    background-color: #d27474;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-size: 14px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 500;
    margin-left: 3px;
}

#mobileNav .menu-left > ul > li > a {
    display: block;
    position: relative;
    padding: 20px 20px;
    font-size: 16px;
}

#mobileNav .menu-left > ul > li a > i.el-submenu__icon-arrow {
    transition: transform .3s;
}

#mobileNav .menu-left > ul ul i.el-submenu__icon-arrow {
    font-size: 10px;
}
#mobileNav .menu-left > ul > li a[aria-expanded="true"] > i.el-submenu__icon-arrow {
    -ms-transform: rotate(90deg);
    transform: rotateZ(90deg);
}

#mobileNav .menu-left > ul > li > ul {
    margin: 0 20px 0 35px;
}
#mobileNav .menu-left > ul > li > ul a {
    display: block;
    margin: 0 0 15px;
    font-size: 15px;
}

.menu-left > ul > li > ul > li > ul {
    margin: 0 30px 0 20px;
}

#mobileNav .el-submenu__icon-arrow {
    position: inherit;
    top: 0;
    right: 0;
    float: right;
    margin-top: 4px;
    margin-right: 10px;
}

#mobileNav .collapsing {
    transition: none !important;
}