/**
 * Venue autocomplete dropdown.
 *
 * A light popover with dark text so it reads the same over the dark public site
 * and the light admin. Positioned in the document body by the script, so it is
 * kept out of any overflow-clipped parent.
 */
.deckbill-ac-menu {
	list-style: none;
	margin: 4px 0 0;
	padding: 4px 0;
	background: #fff;
	color: #1d2327;
	border: 1px solid #c3c4c7;
	border-radius: 6px;
	box-shadow: 0 6px 20px rgba( 0, 0, 0, 0.18 );
	max-height: 280px;
	overflow-y: auto;
	z-index: 100000;
	font-size: 14px;
	line-height: 1.4;
}

.deckbill-ac-item {
	padding: 8px 12px;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.deckbill-ac-item.is-active,
.deckbill-ac-item:hover {
	background: #2271b1;
	color: #fff;
}
