body.has-global-menu {
	overflow:hidden;
	padding-right:16px;
}
.global-menu {
	position:fixed;
	z-index:100;
	left:0;
	top:0;
	/*width:100%;*/
	height:100%;
	display:-webki-flex;
	display:flex;
	align-items:stretch;
	justify-content:flex-start;
}
.global-menu * {
	box-sizing:border-box;
}

/*
@media screen and (max-width: 600px) {
	.global-menu {
		display:none!important;
	}
}
*/


/* блок переключателя меню */

.global-menu_switcher {
	background-color:#FFF;
	align-items:center;
	justify-content:center;
	width:62px;
	transition:all ease .25s;
	opacity:0;
	border-right:1px solid #eee;
	display:none;
}
.switched .global-menu_switcher {
	background-color:#FFF;
	opacity:1;
	display:-webki-flex;
	display:flex;
}

/* икнока переключателя меню */

.global-menu_switcher__icon {
	display:inline-block;
	width:36px;
	height:36px;
	background-color:white;
	border-radius:4px;
	padding:7px;
	font-size:0;
	line-height:0;
	cursor:pointer;
}
.global-menu_switcher__icon-wrap {
	position:relative;
	width:100%;
	height:100%;
}
/* икнока переключателя меню / полоски бурерброда */
.global-menu_switcher__icon-wrap span {
	position:absolute;
	left:0;
	top:0;
	height:2px;
	width:100%;
	background-color:#333;
	opacity:1;
	transition:all ease .25s;
	transform-origin:center center;
}
.global-menu_switcher__icon-wrap span:nth-child(2),
.global-menu_switcher__icon-wrap span:nth-child(3) {
	top:calc(50% - 1px);
}
.global-menu_switcher__icon-wrap span:nth-child(4) {
	top:calc(100% - 2px);
}

.switched .global-menu_switcher__icon-wrap span:nth-child(1),
.switched .global-menu_switcher__icon-wrap span:nth-child(4)
{
	opacity:0;
}
.switched .global-menu_switcher__icon-wrap span:nth-child(2) {
	transform:rotate(45deg);
}
.switched .global-menu_switcher__icon-wrap span:nth-child(3) {
	transform:rotate(-45deg);
}

/* /блок переключателя меню */

/* блок конктента меню */
.global-menu_content {
	background-color:#FFF;
	width:0;
	overflow:hidden;
	transition:all ease .25s;
}
.switched .global-menu_content {
	width:calc(100vw - 62px);
}

/* внутрений контейнер контента меню */
.global-menu_content__wrap {
	width:calc(100vw - 62px);
	max-height:100vh;
	padding:30px;
	display:-webkit-inline-flex;
	display:inline-flex;
	overflow:auto;
	line-height:normal;
	font-size:1rem;
	vertical-align:middle;
	-webkit-align-items:stretch;
	align-items:stretch;
	-webkit-flex-flow:row nowrap;
	flex-flow:row nowrap;
}
.global-menu_content__wrap-left {
	width:40%;
	-webkit-flex: 1 1 auto;
	flex: 1 1 auto;
	max-height:100vh;
	overflow:auto;
	padding:15px 0;
}
.global-menu_content__wrap-rigth {
	width:60%;
	-webkit-flex: 1 1 auto;
	flex: 1 1 auto;
	max-height:100vh;
	overflow:auto;
	padding:15px;
}
@media screen and (max-width: 800px) {
	.global-menu_content__wrap {
		-webkit-flex-flow:row wrap;
		flex-flow:row wrap;
	}
	.global-menu_content__wrap-left {
		width:100%;
		max-height:none;
		padding:30px 0 0;
		order:2;
	}
	.global-menu_content__wrap-rigth {
		width:100%;
		max-height:none;
		overflow:auto;
		padding:0;
		order:1;
	}
}

.global-menu_content__wrap ul.level-0 {
	list-style:none;
	padding:0;
	margin:0;
	width:100%;
}
