#searchbox{
	min-width: 300px;
	max-width: 400px;
}
@media only screen and (max-width: 600px){
	#searchbox{
		#width: calc(100vw - 80px);
		min-width: 150px;
		max-width: 300px;
	}
}
.dropdown_list div, #searchblk{
	border: 1px solid black;
	background-color: white;
	/* position: absolute; */
	top: 100%;
	left: 0;
	z-index: 100;
	width: 100%;
}
.dropdown_list li {
	cursor: pointer;
	list-style-type: none;
	height: 50px;
	padding: 5px;
	display: flex;
	flex-direction: column;
}
.dropdown_list li span {
	font-weight: bold;
}
.dropdown_list li:hover {
	background-color: lightsteelblue;
}
.dropdown_list ul {
	margin: 0;
	padding: 0;
	width: 100%;
}
.panel {
	width: 800px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.panel input[type=text] {
	height: 30px;
	border-radius: 5px;
	border: none;
	border: 1px solid lightgray;
	font-size: 15px;
}
.sep {
	margin-top: 20px;
}