/*****************************************************************
* Gridnine AB http://www.gridnine.com
* Project: Ticket Brokerage
* Legal notice: (c) Gridnine AB. All rights reserved.
*
* searchable-select.css
*
* Stil for de sokbara dropdownsen i admin (searchable-select.js).
* Egen .ss-* namnrymd sa inget krockar med ticketbrokerage.css,
* standard.css eller jquery-ui.css.
*****************************************************************/

.ss-wrap {
	position: relative;
	display: inline-block;
	vertical-align: middle;
}

.ss-input {
	font: inherit;
	font-size: 12px;
	padding: 2px 4px;
	border: 1px solid #a9a9a9;
	background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0h8L4 5z' fill='%23666'/%3E%3C/svg%3E") no-repeat right 5px center;
	padding-right: 16px;
	box-sizing: border-box;
	max-width: 100%;
}

.ss-input:focus {
	border-color: #1a4f8b;
	outline: none;
}

.ss-list {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	margin: 1px 0 0 0;
	padding: 0;
	list-style: none;
	min-width: 100%;
	max-width: 480px;
	max-height: 320px;
	overflow-y: auto;
	overflow-x: hidden;
	background: #fff;
	border: 1px solid #a9a9a9;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
	text-align: left;
}

/* Satts av JS nar listan inte far plats nedanfor inputen. */
.ss-above {
	top: auto;
	bottom: 100%;
	margin: 0 0 1px 0;
}

.ss-list li {
	padding: 3px 8px;
	font-size: 12px;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ss-option {
	cursor: pointer;
}

.ss-current {
	font-weight: bold;
}

.ss-active {
	background: #1a4f8b;
	color: #fff;
}

.ss-empty {
	color: #777;
	font-style: italic;
	cursor: default;
}
