.autocomplete {
	/*the container must be positioned relative:*/
	position: relative;
	display: inline-block;
	background-color: white;
	/* max-height: 16px; */
}

/* Vaadin text field white background */
vaadin-text-field {
	background-color: white;
	padding: 2px 5px;
}

vaadin-text-field::part(input-field) {
	background-color: white;
}

.autocomplete-normal {
	margin-left: 10px;
}

input {
	/*  border: 1px solid transparent; */
	/* background-color: #f1f1f1; */
	background-color: white;
	padding: 10px;
}

input[type=text] {
	background-color: white;
	width: 100%;
}

.autocomplete-items {
	position: absolute;
	border: 1px solid #ebebeb;
	border-bottom: none;
	border-top: none;
	z-index: 9;
	top: 100%;
	left: -1px;
	margin-top: 1px;
	max-height: 305px;
	overflow: auto;
	right: -39px;
	margin-bottom: 10px;
	max-height: calc(100vh - 200px);
	box-shadow: 0 1px #F5F5F5;
	box-sizing: border-box;
	box-shadow: 0 1px #F5F5F5;
}

.autocomplete-items div {
	padding: 10px;
	cursor: pointer;
	background-color: #fff;
	border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
	/*when hovering an item:*/
	background-color: #F5F5F5;
	font-weight: 600;
}

.autocomplete-active {
	/*when navigating through the items using the arrow keys:*/
	background-color: /* DodgerBlue */ #ebebeb !important;
	font-weight: 600;
	/* color: #ffffff; */
}