/****************************** CONTACT PYLON ***************************/
.rutanCMS ul.contactTree {
	width: 100%;
	padding: 10px 0 50px 12px;
	overflow-y: auto;
	overflow-x: hidden;
	height: 100%;
}

.rutanCMS ul.contactTree,
.rutanCMS ul.contactChildren {
	list-style: none;
	margin: 0;
	padding-left: 12px;
}

.rutanCMS ul.contactTree > li {
	margin-bottom: 2px;
}

.rutanCMS .contactItem label {
	position: relative;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 4px;
	line-height: 26px;
	cursor: default;
}

.rutanCMS .contactItem label i {
	font-size: 16px;
	color: var(--cmsSecondaryColor);
	width: 16px;
	text-align: center;
	flex-shrink: 0;
}

.rutanCMS .contactItem.company > label > i {
	color: var(--cmsHighlightColor);
}

.rutanCMS .contactItem a.label {
	color: var(--cmsMainColor);
	text-decoration: none;
	padding: 0 5px 1px;
	border-radius: 4px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.rutanCMS .contactItem:hover > label a.label,
.rutanCMS .contactItem:hover > label a.fold {
	color: var(--cmsHighlightColor);
}

.rutanCMS .contactItem.active > label a.label {
	background: rgba(0,0,0,0.15);
}

.rutanCMS .contactItem a.fold {
	color: var(--cmsMainColor);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	flex-shrink: 0;
}


.rutanCMS .contactItem .foldSpacer {
	display: inline-block;
	width: 16px;
	flex-shrink: 0;
}

.rutanCMS ul.contactChildren {
	padding-left: 20px;
	margin-bottom: 4px;
}

.rutanCMS ul.contactChildren .contactItem label {
	line-height: 24px;
}

/****************************** CONTACT LIST CONTAINER ***************************/
.rutanCMS div.contactList {
	overflow-x: hidden;
	overflow-y: scroll;
	height: 100%;
	width: calc(100% + 25px);
}

.rutanCMS .pylonEmptySearch {
	padding: 14px 14px 0 14px;
	color: rgba(0, 0, 0, 0.45);
	font-size: 13px;
}

.rutanCMS .searchInputWithClear { position: relative; }
.rutanCMS .searchInputWithClear .inputGroup { position: relative; }
.rutanCMS .searchInputWithClear .searchClear {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	padding: 4px;
	cursor: pointer;
	opacity: 0.5;
	display: none;
}
.rutanCMS .searchInputWithClear.hasValue .searchClear { display: block; }
.rutanCMS .searchInputWithClear .searchClear:hover { opacity: 1; }
 
