
/********** mnu ***********/



/*** total ***/

.mnu > ul {
	display: block;
	position: relative;
	list-style: none;
}

.mnu > ul > li {
	display: inline-block;
	position: relative;
}


nav.mnu {
    z-index: 999;
    box-sizing: border-box;	
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

nav.mnu > ul {
    z-index: 990;
}


/********** mnu ***********/

nav.mnu ul ul {
		list-style: none;
}

/*********** menu position ***********/

nav.mnu ul ul{
	visibility:hidden;
	opacity:0;
	position: absolute;
}

nav.mnu ul li:hover > ul{
	visibility:visible;
	opacity:1;
}

nav.mnu > ul > li > ul {
	top: calc(100% - 999px);
}

nav.mnu > ul > li > ul.center {
	left: 50%;
}

nav.mnu > ul > li > ul.left {
	right: 0%;
}

nav.mnu > ul > li > ul.right {
	left: 0%;
}

nav.mnu > ul > li > ul:before {
	content: "";
    display: block;
    position: absolute;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: calc(999px + 25px - 1px);
}

nav.mnu > ul > li > ul.center:before {
    left: calc(-50% - 1px);
}

nav.mnu > ul > li > ul.right:before, nav.mnu > ul > li > ul.left:before {
    left: calc(-0% - 1px);
}


nav.mnu > ul > li > ul > li {
    top: calc(999px + 25px);
}

nav.mnu > ul > li > ul.center > li {
	left: -50%;
}

nav.mnu > ul > li > ul.right > li, nav.mnu > ul > li > ul.left > li {
	left: -0%;
}

nav.mnu ul ul li, nav ul ul a {
	display: block;
	position: relative;
	white-space: nowrap;
}

nav.mnu li.right ul {
	top: 0;
	left: calc(100% + 2px);
}

nav.mnu li.left ul {
	top: 0;
	right: calc(100% + 2px);
}

/*********** Hidden **************/
nav.mnu ul, nav.mnu ul:before {
	z-index: 1001;
}

nav.mnu ul li {
	z-index: 1002;
}

.hidden-box {
	display: block;
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	left: 0;
	z-index: 1;
	margin-top: 50px;
}

nav.mnu:hover > .hidden-box {
	visibility: visible;
}


.hidden-box:hover {
	z-index: 10000!important;
	visibility: hidden!important;
	-webkit-transition: visibility .7s step-end;
	-moz-transition: visibility .7s step-end;
	-ms-transition: visibility .7s step-end;
	-o-transition: visibility .7s step-end;
	transition: visibility .7s step-end;
}

/*********** submenu design ***********/

nav.mnu li > ul:before,  nav.mnu li.left > ul, nav.mnu li.right > ul, nav > ul > li > ul {
	margin: 0;
	padding: 0;
}


nav.mnu > ul > li > ul:before, nav.mnu ul ul ul {
    background: #fff;
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.49);
	border-radius: 3px;
}

nav.mnu ul ul li:first-child {
    border-radius: 3px 3px 0px 0px;
}

nav.mnu ul ul li:last-child {
    border-radius: 0px 0px 3px 3px;
}
    
nav.mnu > ul > li > ul:before,  nav > ul > li > ul {
	margin: 30px 0 0 0;
}

nav.mnu ul ul li.right ul {
    margin: 0 0 0 30px;
}

nav.mnu ul ul li.left ul {
    margin: 0 30px 0 0;
}

nav.mnu li:hover > ul:before,  nav.mnu li.left:hover > ul, nav.mnu li.right:hover > ul, nav > ul > li:hover > ul {
	margin: 0;
	padding: 0;
}

nav.mnu li > ul:before,  nav.mnu li.left > ul, nav.mnu li.right > ul, nav > ul > li > ul {
    transition: all .2s ease-in-out;	
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

nav.mnu > ul > li > ul > li:nth-last-of-type(odd) {}	
nav.mnu > ul > li > ul > li:nth-last-of-type(even) {}	


nav.mnu ul ul a {
/*	height: 40px;
	line-height: 40px;
	padding: 0px 25px;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 16px;*/
}

nav.mnu ul ul a {
	clear: both;
    color: #bd866d;
    display: block;
	position: relative;
    padding: 0px 20px;
    height: 40px;
    line-height: 40px;
	text-align: center;
	text-decoration: none;
    white-space: nowrap;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;	
}

nav.mnu ul ul li > a:hover, nav ul ul li:hover > a {
	color: white;
}

nav ul ul li:hover {
    background: #bd866d;
}
	
/*** return Arrow ***/

/* 1 level */
	
nav.mnu > ul > li > ul > li:first-child > a:after {
	content: '';
    display: block;
    position: absolute;
    top: -25px;
    border: 12px solid transparent;
    border-bottom-color: rgba(245, 245, 245, 1);
}

nav.mnu > ul > li > ul.center > li:first-child > a:after {
    left: calc(50% - 12px);
}

nav.mnu > ul > li > ul.left > li:first-child > a:after {
    right: calc(0% + 12px);
}


nav.mnu > ul > li > ul.right > li:first-child > a:after {
    left: calc(0% + 12px);
}

	
nav.mnu > ul > li > ul > li:first-child > a:hover:after, nav.mnu > ul > li > ul > li:first-child:hover > a:after {
		border-bottom-color: #bd866d; 
	}

/* 2 level right*/

nav.mnu ul ul li.right ul li:first-child > a:before {
	content: '';
    display: block;
    position: absolute;
	right: 100%;
	top: 50%;
	margin-top: -10px;
	border: 10px solid transparent;
	border-right-color: rgba(245, 245, 245, 1);
	}
	
nav.mnu ul ul li.right ul li:first-child > a:hover:before, nav.mnu ul ul li.right ul li:first-child:hover > a:before {
	border-right-color: rgba(255, 209, 51, 1); 
	}


/* 2 level left*/

nav.mnu ul ul li.left ul li:first-child > a:after {
	content: '';
    display: block;
    position: absolute;
	left: 100%;
	top: 50%;
	margin-top: -10px;
	border: 10px solid transparent;
	border-left-color: rgba(245, 245, 245, 1);
	}
	
nav.mnu ul ul li.left ul li:first-child > a:hover:after, nav.mnu ul ul li.left ul li:first-child:hover > a:after {
	border-left-color: #bd866d; 
	}

	
/*** end return arrow ***/
	

/************ Arrow *************/

nav.mnu > ul > li > a.arrow:after {
	content: "";
    display: block;
    position: absolute;
    border: 6px solid transparent;
    border-top-color: inherit;
    z-index: 999;
    height: 0;
    width: 0;
    left: calc(50% - 6px);
    top: 80%;
}

nav.mnu li.right > a.arrow:after {
  content: "";
  display: block;
  position: absolute;
  height: 0;
  width: 0;
  top: calc(50% - 6px);
  right: 2%;
  border: 6px solid transparent;
  border-left-color: inherit;
}

nav.mnu li.left > a.arrow:after {
  content: "";
  display: block;
  position: absolute;
  height: 0;
  width: 0;
  top: calc(50% - 6px);
  right: 95%;
  border: 6px solid transparent;
  border-right-color: inherit;
}

/************ Transfer *************/

nav.mnu > ul > li > a.arrow:hover:before, nav.mnu > ul > li:hover > a.arrow:before {
	content: "";
    display: block;
    position: absolute;
	width: 100%;
	height: 100%;
	top: 100%;
	left: 0%;
}

nav.mnu li.right > a.arrow:hover:before, nav.mnu li.right:hover > a.arrow:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 5%;
}

nav.mnu li.left > a.arrow:hover:before, nav.mnu li.left:hover > a.arrow:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	right: 5%;
}


