/*
 * Suggestion popup styles for the signup "Business Registration Country" field.
 *
 * The field uses the bundled jQuery autocomplete plugin (js/jquery/jquery.autocomplete.js)
 * instead of a native <datalist>, because not all mobile browsers display native
 * <datalist> popups. These are the standard class names emitted by that plugin.
 */

.autocomplete-suggestions {
	box-sizing: border-box;
	border: 1px solid #999;
	background: #fff;
	cursor: default;
	overflow: auto;
	-webkit-box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.3);
	box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.3);
	text-align: left;
	font-size: 1.7rem;
	line-height: 1.4;
	z-index: 100;
	/* stay above the accordion content */
}

.autocomplete-suggestion {
	padding: 6px 8px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border-bottom: 1px solid #eee;
}

.autocomplete-no-suggestion {
	padding: 6px 8px;
	font-style: italic;
}

.autocomplete-selected {
	background: #f0f0f0;
}

.autocomplete-suggestions strong {
	font-weight: bold;
	color: #000;
}