#page {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

#page {	
	-webkit-overflow-scrolling: touch;
}

/* Menu Button */
.menu-button {
	position: absolute;
	top: 0px;
	left: 15px;
	background: none;
	border: none;
	width: 45px;
	height: 45px;
	border: 1px solid #eee;
	display: inline-block;
	z-index: 10;
}

.menu-button .fa {
	font-size: 17px;
	color: #111;
	line-height: 45px;
}

/* Close Button */
.close-button {
	width: 25px; height: 25px;
	position: absolute;
	top: 10px;
	right: 25px;
	border: medium none;
	background: transparent;
	font-size: 0px;
}

.close-button::before,
.close-button::after {
	content: '';
	position: absolute;
	width: 3px;
	height: 100%;
	top: 0;
	left: 50%;
	background: #fff;
}

.close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Menu */
#off-canvas-title {
	height: 50px;
	line-height: 50px;
	position: absolute;
	right: 0px;
	top: 0px;
	color: #fff;
	padding: 0px 25px;
	text-transform: uppercase;
	font-weight: 700;
	width: 100%;
}

#off-canvas-menu {
	float: none;
	display: block;
	padding-top: 50px;
}

#off-canvas-menu ul.nav > li {
	position: relative;
	border-bottom: 1px solid #ededed;
	display: block;
	float: none;
	margin: 0;
}

#off-canvas-menu ul.nav > li > a {
	text-transform: uppercase;
	font-size: 14px;
	color: #000;
	padding: 15px 0 14px;
	background: none;
	font-weight: 500;
	border-radius: 0;
}

#off-canvas-menu ul.nav > li > a:hover {
	color: #bb0101;
}

#off-canvas-menu ul.nav > li > a > em {
	float: right;
	width: 23px;
	height: 23px;
	background: #ccc;
	text-align: center;
	color: #fff;
	line-height: 22px;
}

#off-canvas-menu li.open .dropdown-menu {
	position: static;
	float: none;
	width: auto;
	margin-top: 0;
	background-color: transparent;
	border: 0;
	box-shadow: none;
	padding: 0 10px 20px;
}

#off-canvas-menu ul.nav li ul a {
	font-size: 14px;
	text-transform: capitalize;
	padding: 5px 10px;
	line-height: 25px;
}

#off-canvas-menu .mod-content {
	display: none;
}

/* Shown menu */

.menu-wrap {
	position: fixed;
	z-index: 9999;
	width: 0;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	top: 0;
	bottom: 0;
	left: 0;
	overflow-y:scroll;
	padding: 0 25px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
	left: -320px;
	transition: left 0.4s cubic-bezier(0.7, 0, 0.3, 1) 0s;
	/* -webkit-transition: width 150ms ease-out 50ms;
	-moz-transition: width 150ms ease-out 50ms;
	-ms-transition: width 150ms ease-out 50ms;
    -o-transition: width 150ms ease-out 50ms;
    transition: width 150ms ease-out 50ms; */
}

.show-menu .menu-wrap {
	width: 300px;
	opacity: 1;
	visibility: visible;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
	left: 0;
	transition: left 0.4s cubic-bezier(0.7, 0, 0.3, 1) 0s;
}
