/**/
.suggestions-suggestions {
	color: var(--text);
	position: absolute;
	background: #ffffff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-all-small);
	cursor: pointer;
	z-index: 2;
	overflow-y: auto;
	width: max-content;
	min-width:290px;
	max-width: calc(100vw - 20px);
	max-height: calc(100vh / 2);
	scrollbar-width: thin;
}
.suggestions-suggestion {
	font: var(--font);
	text-align: left;
	font-size: 0.95rem;
	padding: 3px 10px;
	overflow: hidden;
}
.suggestions-suggestion:hover {
	background: var(--menu-button-bg-hover);
}
.suggestions-suggestion strong {
	color: var(--brand);
}
.suggestions-promo {
	display: none !important;
}