#searchOverlay * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#searchOverlay #close {
	position:absolute;
	right:10px;
	top:10px;
	cursor:pointer;
	background-image:url('/page/_webpics/buttons/overlay-close.svg');
	background-size:cover;
	width:50px;
	height:50px;
	}

#searchOverlay {
	background-color:rgba(0,0,0,0.8);
	position:fixed;
	z-index:30000;
	top:0;
	left:0;
	width:100%;
	height:100%;
display:none;
}
#searchOverlay .inSet {
	top:0;
	left:0;
	width:100%;
	height:100%;
		display:flex;
	align-items: center;
	justify-content: center;
	padding:30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}

#searchOverlay .searchBox {
	padding:20px;
	width:700px;
}

#searchOverlay .titel {
	font-size:25pt;
	line-height:36px;
	color:#fff;
	text-align:center;
	padding:20px;
}

#searchOverlay .searchInlay {
	background-color:#fff;
	width:100%;
	display:block;
	border-radius:10px;
	padding:20px;
}
#searchOverlay .searchInlay .titel {
	font-size:14pt;
	line-height:23px;
	color:#000;
	padding: 20px 10px 10px 10px;
	font-weight:bold;
}
#searchOverlay .searchInlay #searchInput {border-radius:5px;background-color:#eee;overflow:hidden;}
#searchOverlay .searchInlay table {width:100%;}
#searchOverlay .searchInlay td {padding:0 0;}
#searchOverlay .searchInlay ::-webkit-input-placeholder { color:#888; }
#searchOverlay .searchInlay ::-moz-placeholder { color:#888; } /* firefox 19+ */
#searchOverlay .searchInlay :-ms-input-placeholder { color:#888; } /* ie */
#searchOverlay .searchInlay input:-moz-placeholder { color:#888; }

#searchOverlay .searchInlay input#term:focus {
	border: none;
	outline: none;
}

#searchOverlay .searchInlay #term {
	background-color:#eee;
	outline: none !important;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width:100%;
	border:none;
	height:40px;
	margin-right:0;
	padding-left:15px;
	font-size:13pt;
}
#searchOverlay .searchInlay #sbutton {
	background-image:url('/_webpics/buttons/lupe-icon-procamed.svg');
	background-repeat:no-repeat;
	background-position:center;
	background-color:#eee;
	cursor:pointer;
	font-size:13pt;
	width:50px;
	border-radius:0;
	border:0;
}

#searchOverlay .searchInlay .suggestions a {
	display:block;
	color:#000;
	text-align:center;
	font-size:14pt;
	line-height:30px;
	}
#searchOverlay .searchInlay .suggestions a:hover {
	color:#0082c8
	}


@media  only screen and (max-width: 650px) {
#searchOverlay .inSet {
	padding:0px;
	}
	#searchOverlay .searchBox {
	padding:10px;
}
	}