.pick-list  {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	text-align: center;
}
.pick-list:before {
	content: '\f00b';
	font-family: FontAwesome;
}
.pick-list[data-value="forms_pickImageURL"]:before {
	content: '\f03e';
}


.custom-combobox-toggle {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	cursor: pointer;
}

.custom-combobox-toggle .ui-icon:before {
	content: '\f0d7';
	font-family: FontAwesome;
}

.autocomplete-block .pick-list:before {
	content: '\f002';
	
}
.autocomplete-block.valid .pick-list:before {
	content: '\f00c';
	
}
.autocomplete-block .pick-list:hover:before {
	content: '\f00b';
}

.autocomplete-block .field-value {
	display: inline-block;
	cursor:pointer;
}

.autocomplete-block .pick-list.showBusy:before {
	content: '\f110';
	animation: busyRotate 2s infinite;
	display: inline-block;
}

@keyframes busyRotate {
  100% {
    transform: rotate(360deg);
  }
}

.ui-autocomplete.two-columns li { display: table-row-group; }

.ui-autocomplete.two-columns a { display: table-row !important; }

.ui-autocomplete.two-columns .list-column { display: table-cell; white-space:pre }