.nav-open {
	display: none;
}

.nav-overlay {
	display: none;
} 

@media (max-width: 991px) { 

	/*******************************************
	:--- Mobile Navigation - Slide In ---:
	*******************************************/

	html, body {
		height: 100%;
	}

	body.opened {
		overflow: hidden;
	}

	.nav-wrap {
		padding: 0 !important;
	}

	.nav-open {
		cursor: pointer;
		display: block;
		position: absolute;
		right: 25px;
		top: calc(50% - 15px);
		z-index: 1000;
	}
    
    .nav-open:after {
        content: "MENU";
        font-size: 11px;
        font-weight: bold;
        position: absolute;
        top: 13px;
    }
    
    .nav-open.opened:after {
        content: " ";
    }

	.nav-open.opened {
		position: fixed;
		right: 1.5em;
		top: 15px;
		z-index: 10000;
	}
    
    .nav-open.opened:after {
		content: "";
        width: 50px;
        height: 55px;
        background: #CFB991;
        top: -15px;
        right: -8px;
        position: absolute;
        z-index: -1;
	}

	.nav-open.opened span:nth-child(1) {
		position: absolute;
		right: 0;
		top: 10px;
		transform: rotate(45deg);
	}

	.nav-open.opened span:nth-child(2) {
		position: absolute;
		right: 0;
		top: 10px;
		transform: rotate(-45deg);
	}

	.nav-open.opened span:nth-child(3) {
		display: none;
	}

	.nav-open span {
		background: #FFF;
		content: " ";
		display: block;
		height: 2px;
		margin: 0 0 4px;
		width: 32px;
	}

	.nav-overlay {
		background: rgba(0,0,0,0.5);
		height: 100vh;
		left: 0;
		opacity: 0;
		position: fixed;
		top: 0;
		transition: opacity .4s ease-out;
		width: 100%;
		z-index: 8000;
	}

	.nav-overlay.opened {
		display: block;
		opacity: 1;
	}

	.site-nav-wrap {
		background: #333;
		height: 100vh; 
		right: -60vw;	/* Left for slide in left / -100vw if full coverage required  */
		opacity: 0;
		position: fixed;
		top: 0;
		width: 60vw; /* 100vw if full coverage required */
		transition: right .4s ease-out, opacity .4s ease-out; /* Left for slide-in left / Remove if slide in isn't required */
		z-index: 9000;
	}

	.site-nav-wrap.opened {
		display: block;
		opacity: 1;
		right: 0; /* Change to left for slide in left */
        overflow-y: scroll;
        overflow-x: hidden;
	}

	/********************************************************************/
	/* Content Push - Include to also push the page content on slide in */
	/********************************************************************/

	.page-wrap {
		margin-left: 0;
		transition: .4s margin-left ease-out;
		width: 100vw;
	}

	.opened .page-wrap {
		margin-left: -60vw;
		transition: .4s margin-left ease-out;
	}

	/********************/
	/* End Content Push */
	/********************/
	
	/* Nav items */

	nav.site-nav {
		margin: 54px 0 200px;
	}

	nav.site-nav ul {
		border-top: 1px solid #555;
	}

	nav.site-nav ul .menu-item {
		border-bottom: 1px solid #555;
		float: none;
		padding-right: 0;
	}

	nav.site-nav ul .menu-item a {
		display: block;
		padding: 1em 2em;
	}

	nav.site-nav ul>.menu-item span {
		cursor: pointer;
		display: block;
		padding: .65em 2em .65em 3em;
		position: absolute;
		right: 0;
		text-align: center;
		top: 0;
	}

	/*nav.site-nav ul>.menu-item span.closed:after {
        color: #CFB991;
		content: '\f067';
		font-family: 'Font Awesome 5 Pro';
		font-size: 1em;
		text-align: center;
	}

	nav.site-nav ul>.menu-item span.opened:after {
        color: #CFB991;
		content: '\f068';
		font-family: 'Font Awesome 5 Pro';
		font-size: 1em;
		text-align: center;
	}*/

	nav.site-nav ul.sub-menu {
		position: absolute;
		width: auto;
	}

	nav.site-nav ul.sub-menu.sub-menu-open {
        background: transparent;
        border: 0;
		display: block;
		left: auto;
		position: relative;
	}

	nav.site-nav ul.sub-menu .menu-item {
		border-bottom: 0;
	}

}

@media (max-width: 767px) { 
    .site-nav-wrap {
        right: -100vw;
        width: 100vw;
    }
}