#more-nav-2
{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	width: 100%;
	font-size: inherit;
	margin: 0;
	padding: 0;
	background: transparent;
	list-style:none;
	opacity: 0;
	visibility: hidden;
}

#more-nav-2.active {
	opacity: 1;
	visibility: visible;
}

#more-nav-2 ul
{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: auto;
	margin: 0;
	padding: 0;
	background: #fff;
	list-style:none;
}

#more-nav-2 li {
	position: relative;
	padding:5px 15px;
}

#more-nav-2 li.nav-item {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	padding: 5px 30px 5px 5px;
	margin-right: 1rem;
	background: var(--theme-color-grey-light);
	border-radius: 50px;
}

#more-nav-2 .nav-item-img {
	width: 38px;
	min-width: 38px;
	margin-right: 15px;
}
#more-nav-2 .nav-item-img img {
	width: 100%;
	max-width: 100%;
	border-radius: 50%;
}

#more-nav-2 svg {
	width: 1em;
	height: auto;
	margin-left: 5px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

#more-nav-2 > li > a:hover svg,
#more-nav-2 > li:hover > a svg {
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

/*Links*/
#more-nav-2 a
{
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	position: relative;
	color: inherit;
	padding: 0;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

/*Root items*/
#more-nav-2 li a.root-item
{
	position: relative;
	color:inherit;
}

/*Item-parents*/
#more-nav-2 a.parent svg
{
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

/*Denied items*/
#more-nav-2 a.denied
{
	background: url(images/lock.gif) center right no-repeat;
}

/*Child-items: hover*/
#more-nav-2 li:hover
{
	background: var(--theme-skit-color) !important;
	color: inherit;
}

#more-nav-2 li:hover > a
{
	color: #fff;
}

/*Sub-menu box*/
#more-nav-2 li ul
{
	position:absolute;
	top:100%;
	display:none;
	height:auto;
	width: auto;
	background:#fff;
	padding: 1rem;
	border-radius: 5px;
	-webkit-box-shadow: 0 5px 10px 3px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0 5px 10px 3px rgba(0, 0, 0, 0.10);
	box-shadow: 0 5px 10px 3px rgba(0, 0, 0, 0.10);
	z-index:500;
}

/*Sub-menu item box*/
#more-nav-2 li li
{
	position: relative;
	width:100%;
	margin: 0.5rem 0;
}

/*Item link*/
#more-nav-2 li ul a
{
	text-align:left;
}

#more-nav-2 li ul ul
{
	top: 0;
	left: 100%;
}

#more-nav-2 > li:last-child ul {
	right: 0;
}

#more-nav-2 > li:last-child ul ul {
	left: auto;
	right: 100%;
}

#more-nav-2 li:hover ul ul,
#more-nav-2 li:hover ul ul ul,
#more-nav-2 li:hover ul ul ul ul,
#more-nav-2 li:hover ul ul ul ul ul
{
	display:none;
}

#more-nav-2 li:hover ul,
#more-nav-2 li li:hover ul,
#more-nav-2 li li li:hover ul,
#more-nav-2 li li li li:hover ul,
#more-nav-2 li li li li li:hover ul
{
	display:block;
}

#more-nav-2 .more-2 {
	padding: 0;
}

#more-nav-2 .more-2:hover {
	background: transparent !important;
}

#more-nav-2 .more-2 > a {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: inherit;
	background: var(--theme-color-grey-light);
	border-radius: 50%;
}

#more-nav-2 .more-2:hover > a,
#more-nav-2 .more-2 > a:hover {
	color: #fff;
	background: var(--theme-skit-color) !important;
}

#more-nav-2 .more-2 .more-2-arrow {
	position: relative;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

#more-nav-2 .more-2 .more-2-arrow:before,
#more-nav-2 .more-2 .more-2-arrow:after {
	position: absolute;
	content: '';
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

#more-nav-2 .more-2 .more-2-arrow:before {
	top: -8px;
}

#more-nav-2 .more-2 .more-2-arrow:after {
	bottom: -8px;
}

#more-nav-2 .more-2 a.root-item svg
{
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

@media all and (max-width: 1399px){
	#more-nav-2
	{
		-webkit-justify-content: flex-end;
		justify-content: end;
	}
}