/**
* combobox v0.6.20 (2019-10-14): jQuery combobox plugin | by Patrick Camphuijsen
  * 
 */

.combobox {
	min-height: 18px;
	margin-right: 20px;
	margin-bottom: 1px;
	position: relative;
}

.combobox .combobox-message {
	line-height: 20px;
	height: 20px;
}

.combobox > .combobox-display {
	position: relative;
	min-height: 18px;        
	width: inherit;
}

.combobox > .combobox-display > .combobox-value {
	position: relative;
	top: 0px;
	left: 0px;
	padding-bottom: 0px;
	font-size: 9pt;
	background: transparent;
}

.combobox > .combobox-display > .combobox-placeholder {
    position: absolute;
    top: 3px;
    left: 2px;
	color: #bbb;
	font-size: 9pt;
	background: transparent;
	overflow: hidden;	
}

.combobox > .combobox-display > .combobox-value {
	min-height: 18px;
}

.combobox.combobox-list-permanent > .combobox-display > .combobox-value, 
.combobox.combobox-list-permanent > .combobox-display > .ui-input-text  > .combobox-value {
	padding: 0px 2px;
}

.combobox > .combobox-display > .combobox-icon {
	width: 8px;
	min-height: 16px;
	position: absolute;
	right: 5px;
	top: 2px;
}

.combobox > .combobox-display > .ui-input-text + .combobox-icon {
	right: -2px;
	top: 4px;
	width: 25px;
	min-height: 16px;
	position: absolute;
}

.combobox-icon.up-arrow:not(.icon) {
    cursor: pointer;
}

.combobox-icon.up-arrow:not(.icon):after {
	content: "\25b2";
	font-size: 7pt;
}

.combobox-icon.down-arrow:not(.icon){
    cursor: pointer;
}

.combobox-icon.down-arrow:not(.icon):after {
    content: "\25bc";
	font-size: 7pt;
}

.combobox-icon.icon.combobox-wait {
	background: url(../images/loading.gif) center no-repeat;
	background-size: 14px;
}

.combobox > .combobox-list {
	position: absolute;
	margin-left: 1px;
	margin-top: 3px;
	overflow-x: hidden;
	overflow-y: auto;	
	z-index: 1000;
}

.combobox > .combobox-list:not(.ui-widget) {
	background: white;
}

.combobox.combobox-list-permanent > .combobox-list {
	position: inherit;
}

.combobox > .combobox-list .combobox-item {
	padding: 5px 10px;
	clear: both;
	min-height: 12px;
 	display: inline-block;
	float: left;
	width: 100%;
}

.combobox > .combobox-list .combobox-item:hover {
	background: rgba(80%,80%,80%,.25);
}

.combobox > .combobox-list .combobox-item.combobox-selected,
.combobox > .combobox-list .combobox-item.combobox-current {
	background: rgba(80%,80%,80%,.5);
}

.combobox > .combobox-list .combobox-item .combobox-prompt, 
.combobox > .combobox-list .combobox-item .combobox-select {
	float: left;
}

.combobox > .combobox-list .combobox-item .combobox-select {
	margin-top: 0px;
}

.combobox > .combobox-list .combobox-item .combobox-indent {
	height: 100%;
	float: left;
}

.combobox ul.combobox-choices > li.combobox-choice .combobox-icon-close {
	cursor: pointer;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAB3RJTUUH3gsVCzgVguD2sgAAAK1JREFUGNON0D1KRAEQA+BvZMVuBd8d7PwDm61FS+9hKRYiqAew3MIbiPexFxsvYCO4grFwnrxyB6ZICJNMKom1poVbuMJJkpFb4BLzJGatP8cZTqvqA5+46QM7uKskqmrANQ7wjZ8WveAxyVuNGauqsMRuu7zjIskKNiZx9zFM8HZzf4faeoFbzNpuheOO8ZzkaXxm1vuKe3zhAXvY/K+ncx5hmOA5Dkdc6xb+C2UsTEJtsEllAAAAAElFTkSuQmCC) center no-repeat;
	width: 8px;
	height: 8px;
	left: 3px;
	padding: 4px;
}

.combobox ul.combobox-choices > li.combobox-choice.combobox-border .combobox-icon-close {
    left: -1px;
    padding: 10px 7px;
    position: relative;
}

.combobox ul.combobox-choices > li.combobox-choice {
	float: left;
	padding: 1px 4px;
	position: relative;
	margin-right: 3px;
	margin-bottom: 3px;
}

.combobox ul.combobox-choices > li.combobox-choice .combobox-choice-value, .combobox ul.combobox-choices > li.combobox-choice .combobox-icon-close {
	float: left;
}

.combobox ul.combobox-choices {
	margin: 0;
	margin-top: 3px;
	padding: 0;
	border: 0;
	display: block;
}

.combobox > .combobox-list.combobox-border,
.combobox ul.combobox-choices > li.combobox-choice.combobox-border {
	border: 1px solid #ccc;
	border-radius: 3px;
}

.combobox ul.combobox-choices > li.combobox-choice {
	list-style: none;
	display: inline-flex;
}
.combobox ul.combobox-choices > li.combobox-choice.combobox-border {
	background: rgb(80%,80%,80%);
}

.combobox ul.combobox-choices > li.combobox-choice.combobox-border.combobox-highlight {
	background: rgb(96%,96%,96%);
}

.combobox .combobox-item .combobox-texthighlight {
	font-weight: bold;
}
