@charset "utf-8";

#form_suche {
    background-color: var(--app-background);
    padding: 1.5rem;
}

#form_suche input[type="checkbox"]:checked::before {
    /*-webkit-appearance: checkbox;*/
    /*-moz-appearance:  checkbox;*/
    /*-o-appearance: checkbox;*/
    /*appearance: auto;*/
    content: '\2713';
    top: -.3em;
    left: .1em;
    position: absolute;
}

#form_suche input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 0;
    border-radius: 4px;
    outline: none;
    /*transition-duration: 0.3s;*/
    background-color: var(--app-light);
    height: 1em;
    width: 1em;
    position: relative;
    top: .1em;
    cursor: pointer;
}

#form_suche input[type="checkbox"] {
    font-family: "Arial", serif !important;
    margin-bottom: 0;
}

#form_suche input[type="checkbox"]:active {
    border: 2px solid #34495E;
}

#form_suche label, #form_suche .label {
    margin-left: 0;
    padding-left: 0;
}

#form_suche input {
    height: 30px;
    padding-top: 0;
    padding-bottom: 0;
}

#form_suche div.chosen-container {
    padding-left: 0;
    padding-right: 0;
    width: 100% !important;
    margin: 0;
}

#form_suche div.chosen-container ul.chosen-choices {
    background-image: unset;
    border: 0;
    padding: 0 5px 0 1rem;
}

#form_suche input {
    border-radius: 0;
    border: 0;
}
@charset "utf-8";
/*!
    Source - https://stackoverflow.com/a/45200961
    Posted by esther kay, modified by community. See post 'Timeline' for change history
    Retrieved 2026-02-12, License - CC BY-SA 3.0
*/

/****** Rating Starts *****/

.rating {
    border: none;
    float: left;
}

.rating > input {
    display: none;
}

.rating > label:before {
    margin: 5px;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

.rating > .half:before {
    content: "\f089";
    position: absolute;
}

.rating > label {
    color: #ddd;
}

.rating > input:checked ~ label,
.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
    color: #FFD700;
}

.rating > input:checked + label:hover,
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label,
.rating > input:checked ~ label:hover ~ label {
    color: #FFED85;
}

.rating > label {
    float: right
}


