#content-wrap {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

#content-wrap {	
	-webkit-overflow-scrolling: touch;
}

/* Menu Button */
.menu-wrap #off-canvas-menu ul.nav-pills.nav-stacked
{
	padding:0 30px;
}
#off-canvas-menu li a
{
	padding-left:0;
	padding-right:0;
}

.menu-button {
	
	background: transparent;
	cursor: pointer;
}
.menu-button .icon
{
		color:#111;
}

/* Close Button */
.close-button {
	background: #1cb4a4;
    color: #fff;
    font-weight: 700;
    padding: 16px 34px;
    text-align: left;
    text-transform: uppercase;
    width: 100%;
    border: 0;
}

.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-wrap {
    background: #fff none repeat scroll 0 0;
    font-size: 1.15em;
    height: 100%;
    overflow: auto;
    padding: 0;
    position: fixed;
    right: -320px;
    transition: right 0.4s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    width: 300px;
    z-index: 3001;
}
.menu-wrap #off-canvas-title
{
	padding: 20px 30px;
    background: #1cb4a4;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}
#off-canvas-menu {
    background: #fff none repeat scroll 0 0;
    height: 100%;
}
.show-menu .menu-wrap {
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    right: 0;
    transition: right 0.4s cubic-bezier(0.7, 0, 0.3, 1) 0s;
}

.show-menu .content::before {
	opacity: 1;
	-webkit-transition: opacity 0.8s;
	transition: opacity 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
