.js .main-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
}
.js .main-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0;
	background: rgba(0,0,0,0.3);
}

/* Layout for search container */
.search__wraper {
	padding: 20rem;
}

.js .search__wraper {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 100%;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	background: #fff;
}

.js .search__wraper::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}

.btn--search-close {
	font-size: 1.8rem;
	position: fixed;
	z-index: 1001;
	top: 1.25em;
	left: 1.25em;
	box-shadow:none
}

.search__input {
	font-family: inherit;
	font-size: 2vw;
	line-height: 1;
	display: inline-block;
	box-sizing: border-box;
	width: 100%;
	ing: 1.5rem 0;
	color: #000;
	border-bottom: 2px solid;
	border-bottom: 2px solid #BFA751;
}

.search__input::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #969696;
}

.search__input::-moz-placeholder {
	opacity: 1;
	/* Mozilla Firefox 19+ */
	color: #969696;
}

.search__input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #969696;
}

.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration {
	-webkit-appearance: none;
}

.search__input::-ms-clear {
	display: none;
}

.search__info {
	font-size: 1.5rem;
	font-weight: bold;
	display: block;
	width: 50%;
	padding: 0.85em 0;
	color: #333;
}

.search__related {
	display: flex;
	width: 35%;
	padding: 4em 0 0 0;
	pointer-events: none;
}

.search__suggestion h3 {
	font-size: 1.35em;
	margin: 0;
}

.search__suggestion h3::before {
	content: '\21FE';
	display: inline-block;
	padding: 0 0 0 0.5em;
}

.search__suggestion p {
	font-size: 1.15em;
	line-height: 1.4;
	margin: 0.75em 0 0 0;
	color: #ff4848;
}

/************************/
/* Transitions 			*/
/************************/

.js .main-wrap::after {
	transition: opacity 0.3s;
	transition-timing-function: ease-out;
}

.js .main-wrap--overlay::after {
	opacity: 1;
	transition-delay: 0s;
}

.js .search__wraper {
	pointer-events: none;
	transition: transform 0.7s;
	transition-delay: 0.4s;
	transition-timing-function: ease-out;
}

.js .search--open {
	pointer-events: auto;
	transform: translate3d(100%,0,0);
	transition-delay: 0s;
}

.js .search__wraper::after {
	transition: transform 0.7s;
	transition-timing-function: ease-out;
}

.js .search--open::after {
	transform: translate3d(-100%,0,0);
	transition-delay: 0.4s;
}

.js .btn--search-close {
	transition: opacity 0.1s;
	transition-delay: 0.3s;
}

@media screen and (max-width: 40em) {
	.btn--search-close {
		font-size: 1.25em;
	}
	.search__related {
		font-size: 80%;
		width: 75%;
	}
	.search__input {
		font-size: 2em;
		width: 90%;
	}
	.search__info {
		width: 90%;
	}
}

.js .main-wrap::after {
	content: '';
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0;
	background: rgba(0,0,0,0.3);
	z-index: 999;
}

/* Layout for search container */
.menu__wraper {
	padding: 5rem;
}
.menu__wraper li {
}
.menu__wraper li a {
	font-size:1.7rem;
	line-height:3;
	color:#777;
	text-transform:uppercase;
	font-weight:700;
	transition:all 0.5s ease-in-out;
	display:inline-block;
	position:relative;
}
/* .menu__wraper li a:after {
    width:0;
    height:2px;
    content:"";
    position:absolute;
    right:0;
    top:45%;
    background:#89c144;
	transition:all 0.5s ease-in-out;
} */
/* .menu__wraper li:hover a:after {
    width:100%
} */
.js .menu__wraper {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 100%;
	overflow: hidden;
	width: 30%;
	height: 100vh;
	background: #fff;
}

.js .menu__wraper::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}

.btn--menu-close {
	font-size: 2em;
	position: fixed;
	z-index: 1001;
	top: 1.25em;
    left: 10.25em;
	box-shadow:none
}

/************************/
/* Transitions 			*/
/************************/

.js .main-wrap::after {
	transition: opacity 0.3s;
	transition-timing-function: ease-out;
}

.js .main-wrap--overlay::after {
	opacity: 1;
	transition-delay: 0s;
}

.js .menu__wraper {
	pointer-events: none;
	transition: transform 0.7s;
	transition-delay: 0.4s;
	transition-timing-function: ease-out;
}

.js .menu--open {
	pointer-events: auto;
	transform: translate3d(-100%,0,0);
	transition-delay: 0s;
}

.js .menu__wraper::after {
	transition: transform 0.7s;
	transition-timing-function: ease-out;
}

.js .menu--open::after {
	transform: translate3d(-100%,0,0);
	transition-delay: 0.7s;
}

.js .btn--menu-close {
	transition: opacity 0.1s;
	transition-delay: 0.3s;
}

@media screen and (max-width: 40em) {
	.btn--menu-close {
		font-size: 1.25em;
	}
}

/* Layout for search container */
.search__wraper {
	padding: 20rem;
}

.js .search__wraper {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 100%;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	background: #fff;
}

.js .search__wraper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}

.btn--search-close {
	font-size: 2em;
	position: fixed;
	z-index: 1001;
	top: 1.25em;
	left: 1.25em;
	box-shadow:none;
	z-index: 99999999;
}

.search__input {
	font-family: inherit;
	font-size: 3vw;
	line-height: 1;
	display: inline-block;
	box-sizing: border-box;
	width: 100%;
	padding: 0.05em 0;
	color: #000;
	border-bottom: 2px solid;
	border-bottom: 2px solid #6494D0;
}

.search__input::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #969696;
}

.search__input::-moz-placeholder {
	opacity: 1;
	/* Mozilla Firefox 19+ */
	color: #969696;
}

.search__input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #969696;
}

.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration {
	-webkit-appearance: none;
}

.search__input::-ms-clear {
	display: none;
}

.search__info {
	font-size: 1.5rem;
	font-weight: bold;
	display: block;
	width: 50%;
	padding: 0.85em 0;
	color: #333;
}

.search__related {
	display: flex;
	width: 35%;
	padding: 4em 0 0 0;
	pointer-events: none;
}

.search__suggestion h3 {
	font-size: 1.35em;
	margin: 0;
}

.search__suggestion h3::before {
	content: '\21FE';
	display: inline-block;
	padding: 0 0.5em 0 0;
}

.search__suggestion p {
	font-size: 1.15em;
	line-height: 1.4;
	margin: 0.75em 0 0 0;
	color: #ff4848;
}

/************************/
/* Transitions 			*/
/************************/

.js .main-wrap::after {
	transition: opacity 0.3s;
	transition-timing-function: ease-out;
}

.js .main-wrap--overlay::after {
	opacity: 1;
	transition-delay: 0s;
}

.js .search__wraper {
	pointer-events: none;
	transition: transform 0.7s;
	transition-delay: 0.4s;
	transition-timing-function: ease-out;
}

.js .search--open {
	pointer-events: auto;
	transform: translate3d(100%,0,0);
	transition-delay: 0s;
}

.js .search__wraper::after {
	transition: transform 0.7s;
	transition-timing-function: ease-out;
}

.js .search--open::after {
	transform: translate3d(100%,0,0);
	transition-delay: 0.4s;
}

.js .btn--search-close {
	transition: opacity 0.1s;
	transition-delay: 0.3s;
}

@media screen and (max-width: 40em) {
	.btn--search-close {
		font-size: 1.25em;
	}
	.search__related {
		font-size: 80%;
		width: 75%;
	}
	.search__input {
		font-size: 2em;
		width: 90%;
	}
	.search__info {
		width: 90%;
	}
}

.js .main-wrap::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0;
	background: rgba(0,0,0,0.3);
	z-index: 999;
}

/* Layout for search container */
.menu__wraper {
	padding: 5rem;
}
.menu__wraper li {
}
.menu__wraper li a {
	font-size:1.7rem;
	line-height:3;
	color:#777;
	text-transform:uppercase;
	font-weight:700;
	transition:all 0.5s ease-in-out;
	display:inline-block;
	position:relative;
}
/*.menu__wraper li a:after {*/
/*    width:0;*/
/*    height:2px;*/
/*    content:"";*/
/*    position:absolute;*/
/*    left:0;*/
/*    top:45%;*/
/*    background:#89c144;*/
/*	transition:all 0.5s ease-in-out;*/
/*}*/
/*.menu__wraper li:hover a:after {*/
/*    width:100%*/
/*}*/
.js .menu__wraper {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 100%;
	overflow: hidden;
	width: 30%;
	height: 100vh;
	background: #fff;
}

.js .menu__wraper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}

.btn--menu-close {
	font-size: 2em;
	position: fixed;
	z-index: 1001;
	top: 1.25em;
	left: 10.25em;
	box-shadow:none
}

/************************/
/* Transitions 			*/
/************************/

.js .main-wrap::after {
	transition: opacity 0.3s;
	transition-timing-function: ease-out;
}

.js .main-wrap--overlay::after {
	opacity: 1;
	transition-delay: 0s;
}

.js .menu__wraper {
	pointer-events: none;
	transition: transform 0.7s;
	transition-delay: 0.4s;
	transition-timing-function: ease-out;
}

.js .menu--open {
	pointer-events: auto;
	transform: translate3d(-100%,0,0);
	transition-delay: 0s;
}

.js .menu__wraper::after {
	transition: transform 0.7s;
	transition-timing-function: ease-out;
}

.js .menu--open::after {
	transform: translate3d(100%,0,0);
	transition-delay: 0.7s;
}

.js .btn--menu-close {
	transition: opacity 0.1s;
	transition-delay: 0.3s;
}

@media screen and (max-width: 40em) {
	.btn--menu-close {
		font-size: 1.25em;
	}
}
