<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "ISO-8859-1";



/* Eingabefeld Suche */
input.ui-inputfield {
	width: 100% !important;
}

span.ui-autocomplete {
	width: 100% !important;
}






/* Search CheckBox: label customized (the container) */
.searchCheckBoxContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

/* Hide the browser's default checkbox */
.searchCheckBoxContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #d1d1d1;
}

/* On mouse-over, add a grey background color */
.searchCheckBoxContainer:hover input ~ .checkmark {
    background-color: #f1f1f1;
}

/* When the checkbox is checked, add a background */
.searchCheckBoxContainer input:checked ~ .checkmark {
    background-color: #d1d1d1;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.searchCheckBoxContainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.searchCheckBoxContainer .checkmark:after {
    left: 6px;
    top: 2px;
    width: 8px;
    height: 14px;
    border: solid #d4a346;
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
} 

.searchTextBoxContainer {
    box-sizing: border-box;
    height: auto;
    width: -moz-available; /* For Firefox */
    width: -webkit-fill-available;  /* For Chrome. */
    margin: 0;
    padding: 0;
    border: 0px #000 solid;
    opacity: 1;    
}

.searchTextBoxContainer .ui-inputfield {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}




.searchFullTextBoxContainer {    
    box-sizing: border-box;
    height: auto;
    width: -moz-available; /* For Firefox */
    width: -webkit-fill-available;  /* For Chrome. */
    margin: 0;
    margin-left: 35px;
    padding: 0;
    border: 1px #000 solid;
    opacity: 1;    
}

.searchFullTextBoxContainerFulltextLabel {
    margin: 0;
    margin-left: 35px;
    font-size: 75%;
}

</pre></body></html>