#biens_filter_form input[type="radio"],
#biens_filter_form input[type="checkbox"]
{
    display: none;
}
#biens_filter_form input[type="radio"] + label,
#biens_filter_form input[type="checkbox"] + label
{
    padding: 0 1em;
    margin: 0 1em;
    border-radius: 6px;
    color: #F0F0F0;
    background-color: gray;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
}
#biens_filter_form input[type="radio"]:checked + label,
#biens_filter_form input[type="checkbox"]:checked + label
{
    background-color: #32B342;
}
#biens_filter_form input[type="checkbox"] + label:before
{
    content: '\2610';
}
#biens_filter_form input[type="checkbox"]:checked + label:before
{
    content: '\2611';
}

.secteurs_search_result {
    position: absolute;
    width: 20em;
    text-align: left;
    background-color: white;
    border: 1px solid #C0C0C0;
}
#biens_filter_form .list
{
    font-size: 0.8em;
}
.list_item {
    color: black;
    padding: 0 2em;
    border-bottom: 1px solid #C0C0C0;
    cursor: pointer;
}
.list_item:hover {
    background-color: black;
    color: #F0F0F0;
}
#filter_popup_find_button.busy {
    background-color: #D2D2D2;
    color: rgba(0, 0, 0, 0);
    background-image: url('../pics/wait.gif');
    background-repeat: no-repeat;
    background-position: center center;
}
