@font-face {
    font-family: 'Linecons';
    src: url('../fonts/linecons.ttf') format('truetype');
}

#menu-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    height: auto;
    width: 40px;
    display: none;
    cursor: pointer;
    z-index: 9999;
}
.mp-pushed #menu-toggle {
    z-index: 9;
}

#menu-toggle span {
    position: relative;
    background: #000;
    margin-bottom: 5px;
    height: 5px;
    width: 100%;
    display: block;
}

.mp-has-childs {
	background-color: rgba(0,0,0,0.1);
	position: absolute;
	box-shadow: none !important;
	border-left: 1px solid rgba(0,0,0,0.1);
	margin-top: 0;
	right: 0;
	padding: 14px 15px !important;
	cursor: pointer;
	
}
.mp-has-childs:after {
    position: relative;
    content: '\e035';
    font-family: 'Linecons';
    font-size: 1em;
    float: right;
    color: #FFFFFF;
}

.mp-menu {
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 9999;
    width: 300px;
    height: 100%;

    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

.mp-level {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-color: #fff;
    z-index: 1;
    overflow: scroll;

    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

.mp-level.mp-level-child {
    left: -300px;
}

.mp-menu.mp-menu-pushed,
.mp-level.mp-menu-pushed {
    left: 0;
}

#mp-menu-bg {
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: 0;
    display: none;
    z-index: 9999;
    cursor: pointer;

    transition: opacity .3s;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
}
#mp-menu-bg.mp-menu-pushed {
    opacity: 1;
    display: block;
}

/* content style */
.mp-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
	background-color: #fff;
}

.mp-menu .menu-title {
    background-color: #fff;
    margin: 0;
    padding: 1em;
    color: rgba(0,0,0,0.4);
    text-shadow: 0 0 1px rgba(0,0,0,0.1);
    font-weight: 300;
    font-size: 2em;
    text-align: center;
}

.mp-menu ul li > a {
    color: #000;
    display: block;
    padding: 0.7em 1em 0.7em 1.8em;
    outline: none;
    box-shadow: inset 0 -1px rgba(0,0,0,0.2);
    text-shadow: 0 0 1px rgba(255,255,255,0.1);
    text-decoration: none;
    font-size: 1em;
    -webkit-transition: background 0.3s, box-shadow 0.3s;
    -moz-transition: background 0.3s, box-shadow 0.3s;
    transition: background 0.3s, box-shadow 0.3s;
}

.mp-menu ul li::before {
    position: absolute;
    left: 10px;
    z-index: -1;
    color: rgba(0,0,0,0.2);
    line-height: 3.5;
}

.mp-level > ul > li:first-child > a,
.mp-level > ul > li.mp-lang-item > a {
    box-shadow: inset 0 -1px rgba(0,0,0,0.2), inset 0 1px rgba(0,0,0,0.2);
}

.mp-menu ul li a:hover,
.mp-level > ul > li:first-child > a:hover {
    background: rgba(0,0,0,0.2);
    box-shadow: inset 0 -1px rgba(0,0,0,0);
}

.mp-back {
    background: rgba(0,0,0,0.1);
    outline: none;
    color: rgba(0,0,0,0.4);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    font-size: 0.8em;
    padding: 1em;
    position: relative;
    cursor: pointer;
    box-shadow: inset 0 1px rgba(0,0,0,0.1);
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
}

.mp-back::after {
    position: absolute;
    content: "\e034";
    right: 10px;
    font-family: 'Linecons';
    font-size: 1.6em;
    color: rgba(0,0,0,0.4);
    top: 9px;
}

.mp-back:hover {
    color: rgba(0,0,0,0.4);
}

.mp-lang-item {
    background: rgba(255,255,255,0.05);
    margin-top: 15px;
}
.mp-lang-item + .mp-lang-item {
    margin-top: -1px;
}