/*Css used for all trees*/

.FancySearchTree {	
	height: 100%;
	box-shadow: 0px 0px 2px rgba(200, 200, 200, 1);
	border: 1px solid #C8C8C8;
	min-height: 150px;
	overflow-y: auto;
	overflow-x: hidden;
}

.FancySearchTree .fancytree-container {
	border: none;
	box-sizing: border-box;
	max-height: 100%;
	max-width: 530px;
}

/*forcing input for fancytree to be same color accross all*/
input.fancyTreeSearchElement:focus {
	border: 1px solid #e5651a !important;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #e5651a;
	-moz-box-shadow: 0 0 3px #e5651a !important;
	-webkit-box-shadow: 0 0 3px #e5651a !important;
	outline: 0 none;
}

.FancySearchTree .fancytree-treefocus {
	border: none;
	outline: none;
}

.FancySearchTree ul.fancytree-container li {
	padding: 0 0 0 0 !important; 
}

.FancySearchTree .fancytree-node {
	display: flex;
	align-items: center;
	position: relative;
}

.FancySearchTree .fancytree-container span.fancytree-title {
	width: calc(100% - 44px);
	text-overflow: ellipsis;
	overflow: hidden;
	font-weight: 500; 
}

.FancySearchTree .fancytree-node input {
	width: calc(100% - 10px);
}
 
.FancySearchTree .textBox {
	padding-right:35px;
}

.FancySearchTree .empty-tree-results {
	text-align: center;
	vertical-align: middle;
	font-weight: 600;
	margin-top: 10%;
  }

.FancySearchTree .filter-input-textbox {
	z-index: 1;
	border-radius: 5px;
	margin-bottom: 0;
	display: inline-flex;
	width: 100%;
	line-height: 25px;
}

.FancySearchTree mark {
    color: #000!important;
    background: #ff0!important;
    padding: .2em!important;
}

/*//default css for clear btn*/
#fancySearchTreeClearBtn {
	margin-left: -25px;
	margin-top: 5px;
    z-index: 2;
    position: absolute;
}

/*Common used css*/

.FancySearchTree.sendManagerSearchTree > .fancyTreeSearchElement,
.FancySearchTree.sendManagerSearchTree > .fancyTreeSearchElement,
.FancySearchTree.sendManagerSearchTree > .lazy-container,
.FancySearchTree.sendManagerSearchTree > .search-container,

.FancySearchTree.step1FancyTree > .fancyTreeSearchElement,
.FancySearchTree.step1FancyTree > .search-container,
.FancySearchTree.step1FancyTree > .lazy-container,

.FancySearchTree.step2FancyTree > .search-container,
.FancySearchTree.step2FancyTree > .fancyTreeSearchElement,
.FancySearchTree.step2FancyTree > .lazy-container {
    position: relative !important;
}

/*//specific css for director step 1 & 2 bucket fancytree*/
 
.FancySearchTree.step2FancyTree > .clearBtn,
.FancySearchTree.step1FancyTree > .clearBtn
{
	font-size: 14px!important;
    top: 2px!important;
}

.FancySearchTree.step1FancyTree,
.FancySearchTree.step2FancyTree {
	max-height: 400px;
	overflow-x: hidden;
	overflow-y: scroll;
}

/*specific css forCreateUpdateCustomSendForm*/

.FancySearchTree.createUpdateCustomSend #fancySearchTreeClearBtn {
	top: 5px;
	position: relative;
}

.FancySearchTree.createUpdateCustomSend .filter-input-textbox {
	z-index: 1;
	border-radius: 5px;
	margin-bottom: 0;
	display: inline-flex;
}

/*Data Page tree on coordinator*/

.FancySearchTree.coordinatorDataTree {
	box-shadow: none;
	border: none;
	overflow-x: hidden;
	overflow-y: hidden;
}
 
/*buckets Page tree on send manager*/

.FancySearchTree.sendManagerSearchTree {
	overflow-x: hidden;
	overflow-y: scroll;
	max-height: 350px;
} 

.FancySearchTree.sendManagerSearchTree > #fancySearchTreeClearBtn {
	top: 5px;
}

.bootbox .modal-body .notes {
	padding-bottom: 15px;
}

.FancySearchTree .inlineShow {
	display: inline;
}

.clearBtn.inlineShow > .google-icons {  
  cursor: pointer;
  font-size: 21px;
  opacity: 1;
}