
#search_result_container{
	min-width: 400px;
	max-width: 500px;
	min-height: 100px;
	max-height: 60vh;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	background-color: white;
	border-radius: 5px;
	position: fixed;
	overflow: clip;
	z-index: 9;
	display: none;
}

#search_result_html{
	min-height: 66px;
	max-height: calc(60vh - 34px);
	overflow-y: auto;
}
#search_result_html > a{
	color: #407ab3;
	font-size: 15px;
	text-shadow: none;
	display: block;
	border-top: 0.5px solid #ededed;
	border-bottom: 0.5px solid #ededed;
}
#search_result_html > a.selected{
	background-color: #f1f1f1;
}

#search_result_html > hr{
	border-width: 0.5px;
	border-color: gray;
	opacity: 0.1;
}

#search_result_footer{
	color: gray;
	padding: 10px 30px;
	border-top: 0.5px solid gray;
	text-shadow: none;
	font-size: 11px;
}

.search_span{
	position: relative;
}

.search_span--navbar{
	width: 15vw;
	min-width: 130px;
	max-width: 260px;
	margin-top: 10px;
	margin-right: 10px;
	float: right;
}

.search_span--menu{
	display: none;
}
.search_span--menu .search_input{
	height: 15px;
	font-size: 16px;
}
.search_span--menu .search_icon{
	top: 0px;
	margin: 0.5em !important;
}

.search_input{
	height: 10px;
	width: calc(100% - 55px);
    position: relative;
    border-radius: 15px;
    border: 1px solid gray;
	font-size: 12px;
	padding: 7px 14px;
	padding-left: 33px;
}
.search_icon{
	position: absolute;
    left: 3px;
	color: gray !important;
    font-size: 14px !important;
    text-shadow: none !important;
	margin: 8px !important;
	pointer-events: none;
}

.result_title{
	color: black;
	font-size: 17px;
	font-weight: bold;
	padding-bottom: 5px;
}

.result_link{
	overflow-wrap: anywhere;
	font-size: 10px;
	opacity: 0.6;
}
.result_container{
	margin: 15px 30px;
}
.v{
	font-size: 7px;
}

@media only screen and (max-width: 1400px){
	#search_result_container{
		width: 200px;
		min-width: 330px;
	}
	#search_result_html > a{
		font-size: 13px;
	}
	.result_title{
		font-size: 15px;
	}
}

@media only screen and (max-width: 1200px){
	#search_result_container{
		min-width: 250px;
	}
	.search_span{
		margin-top: 0px;
	}
	.search_input {
		width: calc(100% - 40px);
		font-size: 11px;
		padding: 5px;
		padding-left: 27px;
	}
	.search_icon{
		top: 1px;
		font-size: 12px !important;
		margin: 7px !important;
	}
}

@media only screen and (max-width: 800px){
	#search_result_container{
		min-width: 220px;
	}
}
@media only screen and (max-width: 500px){
	.search_span--navbar{
		display: none;
	}
	.search_span--menu{
		display: block;
	}
}
