/**
 * Axelor Business Solutions
 *
 * Copyright (C) 2005-2016 Axelor (<http://axelor.com>).
 *
 * This program is free software: you can redistribute it and/or  modify
 * it under the terms of the GNU Affero General Public License, version 3,
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
.nav-tree,
.nav-tree * {
	box-sizing: border-box;
}

.nav-tree ul,
.nav-tree li {
	list-style: none;
}

.nav-tree li > ul {
	display: none;
	margin: 0;
}

.nav-tree li.open > ul {
	display: block;
}

.nav-tree li.animate > ul  {
	display: block;
	height: 0;
	position: relative;
	overflow: hidden;
	transition: all .35s ease;
}

.nav-tree li > a {
	color: #a7b1c2;
	text-decoration: none;
	outline: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 1);
	font-weight: 600;
}

.nav-tree li > a,
.nav-tree li > a:focus {
	background: transparent;
}

.nav-tree li > a > .nav-image,
.nav-tree li > a > .nav-icon {
	margin-right: 6px;
	width: 28px;
	height: 28px;
	float: left;
	display: inline-block;
	margin-top: -4px;
	border-radius: 4px;
}

.nav-tree li > a > .nav-icon {
	padding: 4px 7px;
	text-shadow: -1px 1px 5px rgba(0, 0, 0, 0.15);
	text-align: center;
}

.nav-tree li > a * {
	position: relative;
}

.nav-tree li > a:hover,
.nav-tree li.active > a {
	color: #fff;
	background-color: #293846;
}

.nav-tree > li {
	overflow: hidden;
	border-left: 0;
}

.nav-tree > li.open,
.nav-tree > li.active {
	background-color: #293846;
}

.nav-tree > li.open {
	border-left: 4px solid #16a765;
	transition: all .35s ease;
}

.nav-tree li.folder > a::after {
	font-family: "FontAwesome";
	font-size: 10px;
	content: "\f053";
	position: absolute;
	right: 16px;
	z-index: 2;
}

.nav-tree li.folder.animate > a::after {
	-webkit-transform: rotate(-90deg);
	   -moz-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
	transition: all .35s ease;
}

.nav-tree li.folder.open.animate > a::after {
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
	transition: all .35s ease;
}

.nav-tree li.folder.open > a::after {
	-webkit-transform: rotate(-90deg);
	   -moz-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
}

.nav-tree li.tagged > a::after {
	content: none;
}

.nav-tree span.nav-tag {
	float: right;
	text-transform: uppercase;
	text-shadow: none;
	line-height: 1;
	font-size: 10px;
	padding: 3px 8px;
	border-radius: .25em;
}

.nav-tree > li > ul > li:last-child {
	margin-bottom: 10px;
}

.nav-tree li > a {
	padding: 7px 8px;
}

/* 1st level */
.nav-tree > li > a {
	padding: 11px 8px;
}

/* 2nd level */
.nav-tree > li > ul > li > a {
	padding-left: 42px;
}

/* 3rd level */
.nav-tree > li > ul > li > ul > li > a {
	padding-left: 52px;
}

/* 4th level and beyond */
.nav-tree > li > ul > li > ul > li > ul li > a {
	padding-left: 62px;
}
