/* .treedoc div[data-angular-treeview] { */
/* 	left: -26px; */
/* 	position: relative; */
/* } */

div[data-angular-treeview] {
  /* prevent user selection */
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;

  /* default */
  font-family: Tahoma;
  font-size:14px;
  color: #555;
  text-decoration: none;
}

div[data-tree-model] ul {
  margin: 0;
  padding: 0;
  list-style: none; 
  border: none;
  overflow: hidden;
}

div[data-tree-model] li {
  position: relative;
  line-height: 26px;
}

div[data-tree-model] li .expanded {
  height: 38px;
  display: inline-block;	
  padding: 1px 25px;
  background-image: url("../assets/images/icon_small-folder-arrow.png"); 
/*   background-image: url("../assets/images/icon_folder.png"); */
  background-repeat: no-repeat;
  bottom: 0px;
  background-size: contain;
}

div[data-tree-model] li .collapsed {
	height: 38px;
  display: inline-block;	
  padding: 1px 25px;
/*   background-image: url("../assets/images/icon_small-folder.png"); */
background-image: url("../assets/images/icon_folder.png");
  background-repeat: no-repeat;
  bottom: 0px;
  background-size: contain;
}

div[data-tree-model] li .normal 
{
  height: 38px;
  display: inline-block;	
  padding: 1px 17px;
/*   background-image: url("../assets/images/icon_small-folder.png"); */
/*   background-image: url("../assets/images/folder.png"); */
  background-repeat: no-repeat;
  bottom: 0px;
  background-size: contain;
}

.treeImage > div
{
	width: 42px;
	height: 40px;		
	padding: 0 5px 0 5px;
}

.treeImage > div svg
{
    width: 75%;
}


.small .treeImage > div
{
	width: 28px;	
}

.medium .treeImage > div
{
	width: 38px;	
}

.badgeImg
{
	height: 34px;
	width: 42px;
}

.treeImage
{
	position: relative;	
	padding-top: 4px;
}

div[data-tree-model] li i, div[data-tree-model] li span {
	position: relative;
	cursor: pointer;
/* 	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;	
	display: inline-block;
	width: 70%; */
}
.treeNode{
	padding-left: 40px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.treeNode.selected
{
	background-color: #d1d1d1;
}
.treeNode.unselected
{
	
}

.treeNode-name-div
{
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 350px;
  display: inline-block;
}

