/** Easy Tree style */
.easy-tree {
	padding: 0px 0px 0px 20px;
	margin-top: 10px;
}
.easy-tree button{
	font-size: 14px;
	font-weight: 400;
	color: #FFFFFF;
	text-align: center;
	line-height: 30px;
	display: inline-block;
	background: #054F87;
	border: none;
	text-transform: uppercase;
	padding: 1px 15px;
}
.easy-tree > ul {
    padding-left: 15px;
}
.easy-tree li {
    list-style-type: none;
    margin: 0;
    padding: 10px 5px 0 5px;
    position: relative
}
.easy-tree li::before, .easy-tree li::after {
    content: '';
    left: -30px;
    position: absolute;
    right: auto
}
.easy-tree li::before {
    border-left: 1px solid #d8d8d8;
    bottom: 50px;
    height: 100%;
    top: 0;
    width: 1px
}
.easy-tree li::after {
    border-top: 1px solid #d8d8d8;
    height: 20px;
    top: 25px;
    width: 35px
}
.easy-tree>ul>li::after,.easy-tree>ul>li::before {
    border: 0
}
.easy-tree li:last-child::before{
	height: 25px;
}
.easy-tree li > span {
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    display: inline-block;
    padding: 5px 10px;
    text-decoration: none
}
.easy-tree li.parent_li > span {
    cursor: pointer
}
/*.easy-tree li.parent_li > span:hover, .easy-tree li.parent_li > span:hover + ul li span {*/
    /*background: #f3f3f3;   */
/*}*/

.easy-tree li.parent_li > span:hover {
    background: #f3f3f3;
}
.easy-tree li > span > a {
    color: #333;
    text-decoration: none;
}
.glyphicon{
	margin-right: 7px;
}
.easy-tree li[data-href] > span:hover{
	background: #fff;
}
.easy-tree li[data-href] > span a{
	color: #000;
	text-decoration: none;
}
.easy-tree li[data-href] > span a:hover{
	color: #000;
	text-decoration: none;
}

.black{
    color: black;
}

.tree-icon{
    max-height: 22px;
    max-width: 22px;
    margin-bottom: 5px;
}

.tree-mL5px{
    margin-left: 5px;
}