.mobile-nav-overlay {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
}
.mobile-nav-overlay.visible {
    opacity: 1;
    visibility: visible;
}
.mobile-nav {
    background-color: #f3f3f3;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    display: block;
    height: 100%;
    left: 0;
    overflow: hidden;
    padding-bottom: 60px;
    position: fixed;
    top: 0;
    width: 320px;
    z-index: 10010;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transition: all 0.7s cubic-bezier(0, 1, 0.5, 1) 0s;
    -webkit-transition: all 0.7s cubic-bezier(0, 1, 0.5, 1) 0s;
    -moz-transition: all 0.7s cubic-bezier(0, 1, 0.5, 1) 0s;
}
.mobile-nav.visible {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
}
.mobile-nav-header {
    border-bottom: 1px solid #ccc;
    height: 64px;
    line-height: 64px;
    padding: 0 1.3rem;
    position: relative;

}
.mobile-nav-header .nav-title { float:left; }
.mobile-nav-header .nav-title a {
    color: #777;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}
.mobile-nav-header .nav-title a:hover {
    color:#222;
} 
.mobile-nav-header .nav-close { float:right; }
.mobile-nav-header .nav-close a {
    color: #222;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}
.mobile-nav-header .nav-close a:hover {
    color: #df329a;
}
.mobile-nav-wrapper {
     bottom: 0;
    height: 1px;
    left: 0;
    margin: auto;
    min-height: calc(100% - 64px*2);
    overflow: auto;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
.mobile-nav-wrapper > ul {}
.mobile-nav-wrapper > ul > li {
    display: block;
}
.mobile-nav-wrapper > ul > li > a {
    color: #222;
    position: relative;
    display: block;
    font-size: 21px;
    font-weight: 700;
    padding: 1rem 1.3rem;
    transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}
.mobile-nav-wrapper > ul > li > a:hover, .mobile-nav-wrapper > ul > li.open > a {
    color: #df329a;
    background: #fff;
}
.mobile-nav-wrapper > ul > li > a span.figure {
    color: #777;
    font-size: 41px;
    font-weight: 300;
    line-height: 0.4;
    position: absolute;
    right: 1.3rem;
    top: 1.3rem;
    transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}
.mobile-nav-wrapper > ul > li > a:hover span.figure, .mobile-nav-wrapper > ul > li.open > a span.figure {
    color: #df329a;
}
.mobile-nav-wrapper > ul > li > ul {
    background: #fff none repeat scroll 0 0;
    padding-bottom: 1rem;
    display: none;
}
.mobile-nav-wrapper > ul > li > ul li {
    display: block;
}
.mobile-nav-wrapper > ul > li > ul li a {
    color: #777;
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 0.6rem 1.3rem;
    transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}
.mobile-nav-wrapper > ul > li > ul li a:hover {
    color: #df329a;
}


.mobile-nav-footer {
    background: #fff none repeat scroll 0 0;
    border-top: 1px solid #ccc;
    bottom: 0;
    height: 64px;
    left: 0;
    padding: 0.8rem 1rem;
    position: absolute;
    right: 0;
    width: 100%;
}
.mobile-nav-footer .nav-social {
    text-align: center;
}
.mobile-nav-footer .nav-social a {
    background: #777 none repeat scroll 0 0;
    border-radius: 100%;
    color: #fff;
    display: inline-block;
    font-size: 21px;
    height: 40px;
    margin: 0 0.2rem;
    width: 40px;
    transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}
.mobile-nav-footer .nav-social a:hover {
    background: #df329a none repeat scroll 0 0;
}
.mobile-nav-footer .nav-social a .icon {
    display: table-cell;
    height: inherit;
    vertical-align: middle;
    width: inherit;
}