.rutanCMS .autocompleteWrap {
	position: relative;
}

.rutanCMS .autocompleteList {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: #fbfbfb;
	border-radius: 0 0 10px 10px;
	max-height: 400px;
	overflow-y: auto;
	z-index: 30;
	display: none;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.rutanCMS .autocompleteList button {
	display: block;
	width: 100%;
	text-align: left;
	border: 0;
	background: transparent;
	padding: 9px 12px;
	cursor: pointer;
	color: #1f3449;
	font-size: 14px;
	line-height: 1.25;
	margin:0;
}

.rutanCMS .autocompleteList .autocompleteOption {
	display: flex;
	align-items: center;
	gap: 10px;
	margin:0;
	border-radius: 0;
	justify-content: flex-start;
}

.rutanCMS .autocompleteAvatar {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	flex: 0 0 26px;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.06);
	color: rgba(0, 0, 0, 0.45);
}

.rutanCMS .autocompleteAvatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rutanCMS .autocompleteAvatar.fallback i {
	font-size: 13px;
	margin:0;
	color:rgba(0, 0, 0, 0.2);
}

.rutanCMS .autocompleteLabel {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color:var(--cmsTextColor);
}

.rutanCMS .autocompleteList button + button {
	border-top: 1px solid rgba(0,0,0,0.10);
}

.rutanCMS .autocompleteList button:hover {
	background: var(--cmsHighlightColor);
}

.rutanCMS .autocompleteList button:disabled {
	color: rgba(0, 0, 0, 0.5);
	cursor: default;

	&:hover{
		background:none;
	}
}
 