/*Drop Down Menu Styling*/
.dropdownmenu {
	width:100%;
	flex:0 0 auto;
	position: relative;
}
.autocomplete-list {
	position: absolute;
	list-style-type: none;
	margin: 0;
	margin-top: 5px;
	padding:0;
	border: solid #353839;
	border-width: 1px;
	border-radius: 0.5rem;
	background-color: #FFF;
	width: 100%;
	max-height: 200px;
	overflow-y: auto;
}

.autocomplete-list li {
	padding: 10px;
	margin: 5px;
	border: solid #dee2e6;
	border-width: 1px;
	border-radius: 0.5rem;
	background-color: #FFF;
	width: calc(100% - 30px);
	cursor: pointer;
}
.autocomplete-list li:hover {
	background: #f4f0ec;
	color: #666699;
}
/*Drop Down Menu Styling*/