/* POP-UP FILTRE */
#filterSelection {
    position: absolute;
    right: 20px;
    top: 150px;
}

#openSidebar {
    background-color: #ffffff;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    padding: 5px;
    height: 50px;
    width: 50px;
}

#imgFilter {
    width: 40px;
    height: 40px;
}

.button-reinit {
    margin: 10px;
    font-style: italic;
    color: #ffffff;
    border-color: #246FB5;
    border: 1px solid;
    background-color: #246FB5;
    padding: 5px;
}

.w3-input-filter{
    border: 1px solid #777777;
}

.filter-not-match{
    color: red;
    font-style: italic;
}

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: -400px;
    background-color: #f1f1f1;
    padding: 20px;
    overflow-x: hidden;
    transition: 0.5s;
}

.sidebar.open {
    width: 275px;
    right: 0px;
}

#closeSidebar {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

#reinitFilter{
    position: absolute;
    bottom: 10px;
    right: 150px;
}