.searchForm{
    
}

.searchFormContainer{
    max-width: 950px;
    margin: 0 auto;
    padding: 10px 20px;
}

.searchFormGroups{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.searchFormGroup{
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}

.searchFormGroup .column-10{
    flex: 1.15;
    max-width: 354px;
}

.searchFormGroup .column-20{
    flex: 2;
}

.searchFormGroup .column-23{
    flex: 2.3;
}

.searchFormGroup .column-07{
    flex: .7;
    max-width: 200px;
}

.searchFormSelect, .searchFormInput, .searchFormRadios, .searchFormDate, .Vertreterfilters{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.searchFormSelect .selectField, .searchFormInput .inputField, .searchFormDate .inputField {
    width: 100%;
    border-radius: 8px;
    padding: 5px 14px;
    border: 1px solid rgba(209, 211, 220, 1);
    min-height: 35px;
    font-family: 'Nunito Sans';
    font-size: 15px;
    color: rgba(114, 118, 122, 1);
    max-width: 640px;
}

.exportLimit-wrap {
    gap: 8px !important;
}

.exportLimit-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.exportLimit-control .selectField {
    width: auto;
    min-width: 96px;
    border-radius: 8px;
    padding: 5px 14px;
    border: 1px solid rgba(209, 211, 220, 1);
    min-height: 35px;
    font-family: 'Nunito Sans';
    font-size: 15px;
    color: rgba(114, 118, 122, 1);
    background: #fff;
}

.searchFormSelectLabel, .searchFormInputLabel, .searchFormRadiosLabel, .searchFormDateLabel, .searchFormGroupLabel{
    min-width: fit-content;
    font-size: 15px;
}

.searchFormSelectLabel span, .searchFormInputLabel span, .searchFormRadiosLabel span, .searchFormDateLabel span, .searchFormGroupLabel span{
    min-width: fit-content;
    font-size: 15px;
}

.searchFormCheckboxes{
    gap: 4px;
    display: flex;
    flex-direction: column;
}

.searchFormCheckbox{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.searchFormCheckbox input[type="checkbox"]{
    
}

.searchFormCheckbox input[type="checkbox"] {
      width: 20px;
      height: 20px;
      cursor: pointer;
      -webkit-appearance: none;
      -moz-appearance: textfield; 
}

.searchFormCheckbox input[type="checkbox"]:before {
    background: url(/datenbank/images/icons/checkbox_empty.svg) no-repeat 0 1px;
    content: '';
    width: 20px;
    height: 20px;
    background-size: contain;
    background-position: center;
    position: absolute; 
}

.searchFormCheckbox input[type="checkbox"]:checked:before {
    background-image: url(/datenbank/images/icons/checkbox_check.svg); 
}

.searchFormCheckbox .searchFormCheckboxLabel{
    font-family: 'Nunito Sans';
    font-size: 12px;
    color: rgba(32, 34, 36, 1);
}


.searchFormRadiosWrap{
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 640px;
}

.searchFormRadio{
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.searchFormRadio span{
    font-size: 15px;
    line-height: 130%;
}

.searchFormRadio input[type="radio"]{
    width: 20px;
    min-width: 20px;
    height: 20px;
}

.searchFormDate{
    position: relative;
}

.searchFormDate:after {
      width: 65px;
      cursor: pointer;
      height: 25px;
      background-image: url(/datenbank/images/icons/calendar-2.svg);
      background-color: white;
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 16px;
      background-size: 16px;
      background-position: right;
      z-index: 1;
      background-repeat: no-repeat; 
}

.searchFormDate input{
    cursor: pointer;
}





























