/* mobile menu */
body {
	position: relative;
	top: 0;
	left: 0;
	transition: 0.3s;
}

body.jed-mobilemenu-body-open {
	width: 100%;
	overflow: hidden;
	left: -100%;
}

.jed-mobilemenu-line {
	display: none;
	position: fixed;
	width: 100%;
	left: 0;
	right: 0;
	padding: 7px 20px;
	z-index: 3;
	background-color: #FFF;
	box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
}

.jed-mobilemenu-line a {
	text-decoration: none;
}

.jed-mobilemenu-2 {
	text-align: center;
}

.jed-mobilemenu-3 {
	text-align: right;
}

.jed-mobilemenu-menu-area {
	text-align: right;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 80px 20px 50px 20px;
	overflow: hidden;
	opacity: 1;
	margin-right: -100%;
	background-color: #FFF;
	transition: 0.3s;
}

.jed-mobilemenu-menu {
	text-align: right;
}

.jed-mobilemenu-menu-area.open {
	margin-right: 0px;
	overflow: scroll;
}

.jed-mobilemenu-menu a {
	display: table;
	padding: 7px 10px;
	text-transform: uppercase;
}

.jed-mobilemenu-menu .down {
	padding: 10px 0px 10px 20px;
}

.jed-mobilemenu-menu .down a {
	text-transform: none;
}

.jed-mobilemenu-start {
	display: inline-block;
	background-image: url("img/menu-start.png");
	background-position: center;
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
	font-weight: 400;
	text-transform: uppercase;
	cursor: pointer;
	color: #FFF;
	transition: 0.3s;
}

.jed-mobilemenu-start.close {
	background-image: url("img/menu-close.png");
	color: transparent;
}

@media only screen and (max-width: 980px) {
	.jed-mobilemenu-line {
		display: table;
	}
}
