.wr-root-menu{
	height: 100%;
}

#root-menu{
	height: 100%;
	max-width: 100%;
	padding-left: 0;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#root-menu li{
	height: 100%;
	float: left;
}
#root-menu li:before{
	content:"";
}
#root-menu li a{
	height: 100%;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 25px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 15px;
	-moz-transition: color 0.2s ease-in;
	-webkit-transition: color 0.2s ease-in;
	-o-transition: color 0.2s ease-in;
	transition: color 0.2s ease-in;
}
#root-menu li a:hover{
	color: #bcbad2!important;
}
#root-menu li a.root-item-selected{
	border-bottom: 4px solid #EB5B3F;
	padding-top: 4px;
}

/* mobile */

.wr-root-menu .mobile-link{
	display: none;
	position: relative;
    z-index: 50;
    width: 80px;
    height: 100%;
    cursor: pointer;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;	
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.mobile-hdr-top{
	display: none;	
}

@media screen and (max-width: 795px){
	.wr-root-menu .mobile-link{
	    display: -webkit-box;
	    display: -ms-flexbox;
	    display: flex;
	}
	#root-menu{
		display: none;
		position: fixed;
		width: 100vw;
		height: 100vh;
		padding: 30% 20px;
		background: rgb(2,0,36);
		background: -o-linear-gradient(99deg, rgba(2,0,36,1) 0%, rgba(31,28,88,1) 70%, rgba(79,34,120,1) 100%);
		background: linear-gradient(351deg, rgba(2,0,36,1) 0%, rgba(31,28,88,1) 70%, rgba(79,34,120,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024",endColorstr="#4f2278",GradientType=1);
		z-index: 50;
		top: 0;
		right: -10%;
		opacity: 0;
		-moz-transition: all 0.2s ease-in;
		-webkit-transition: all 0.2s ease-in;
		-o-transition: all 0.2s ease-in;
		transition: all 0.2s ease-in;
	}
	#root-menu.opened{
		opacity: 1;
		right: 0;
		display: block!important;
	}
	#root-menu li{
		float: initial;
	}
	#root-menu.opened ~ .mobile-link{
		/*margin-right: 15px;*/
	}
	#root-menu.opened li{
		text-align: center;
		height: auto;
	}
	#root-menu.opened li a{
		font-size: 160%;
		padding: 4% 50px;
		line-height: initial;
		display: inline-block;
		font-weight: 700;
	}
	#root-menu.opened li a.root-item-selected{
		border: none;
		/*border-left: 1px solid #EB5B3F;*/
		/*border-right: 1px solid #EB5B3F;*/
		/*border-radius: 20px;*/
		color: #EB5B3F !important;
	}
	.mobile-hdr-top{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		position: absolute;
		bottom: 15%;
		left: 0;
		width: 100%;
	}
	.mobile-hdr-top > div{
		margin-bottom: 25px;
	}
	.mobile-hdr-top span, .mobile-hdr-top a{
		font-size: 130%; 
	}
}