/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 12 2025 | 13:59:23 */
/* Versteckt die 1_Inhouse Option in der Dropdown-Liste */
#category option[value="32"] {
    display: none !important;
}
 
/* Falls die ID in anderen Bereichen unterschiedlich ist, nutzen wir auch den Inhalt */
select option:contains("1_Inhouse") {
    display: none !important;
}
 
/* Für den Fall, dass die Option über andere Methoden gerendert wird */
option[value="32"],
.select2-results__option:contains("1_Inhouse") {
    display: none !important;
}
 
/* Allgemeine Selektoren für "1_Inhouse" */
a:contains("1_Inhouse"),
span:contains("1_Inhouse"),
li:contains("1_Inhouse"),
div:contains("1_Inhouse"):not(.filter-item),
.cat-item-32,
.category-1_inhouse,
a[href*="category/1_inhouse"],
a[href*="cat=32"] {
    display: none !important;
}
 