.solfinSearchClass {
	background: white url("../images/select2.png") no-repeat scroll right -22px;
    border: medium none;
    font-family: ARAGWalsheimMd,Helvetica,sans-serif;
    font-size: 16px;
    padding-right: 28px;   
    width: 100%;
}

.solfinSearchClass::-ms-clear {
  display: none;
}

.solfinSearchClass:invalid {
	box-shadow: none;
}

.deleteIcon {
	position: absolute;
    right: 30px;
    top: 10px;
	cursor: pointer;    
}

.deleteIcon:after {
	content: "X";
    color: #888;
    font-family: ARAGWalsheimMd,Helvetica,sans-serif;
    font-size: 11px;
    font-weight: bold;
}

.solfinSearchClass:not(:valid) ~ .deleteIcon {
	display: none;
}

.dynSearchDiv {
	background-color: var(--COLOR_NEUTRALS_WHITE);
    display: none;
    position: absolute;
    z-index: 10;
	
	min-height: 64px;
	min-width: 240px;
	width: 100%;

	top: 64px;
	position: absolute;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: var(--Spacing-Space-1, 8px);
	border-radius: 0px 0px 32px 32px;
	border-bottom: 2px solid var(--COLOR_BORDER_STRONG);
	border-right: 2px solid var(--COLOR_BORDER_STRONG);
	border-left: 2px solid var(--COLOR_BORDER_STRONG);
	border-top: none;
	margin-top: -2px;
	margin-left: -2px;
}

.dynSearchDiv ul {
    max-height: 300px;
    overflow-x: hidden;
	/* Scrollbar bei bedarf */
    overflow-y: auto;
    padding: 0;
	margin-block-end: 2em;
	margin-block-start: 0;
}

.dynSearchDiv li {
	min-height: 24px;
	padding: var(--SPACE_3) var(--SPACE_6);
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	min-height: 24px;
}

.dynSearchDiv li a {
    color: var(--COLOR_NEUTRALS_BLACK);
    display: block;
    font: var(--FONT_SOLFINSEARCH2_INPUT);
    letter-spacing: var(--FONT_SOLFINSEARCH2_INPUT_LETTERSPACING);
    overflow: hidden;
    text-decoration: none;
    white-space: normal;
}

.dynSearchDiv li:focus-within {
	background-color: var(--COLOR_NEUTRALS_BLACK_4PERCENT);
}

.searchResultMatch {
    text-decoration: underline;
}

.searchResultNoMatch {
    font-family: ARAGWalsheimMd,Helvetica,sans-serif;
	font-size:16px;
	color: blue;
	padding: 1px 0 2px;
}