
/* Select filter */

.select-filter {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #fff;
    width: 100%;
    height: 62px;
    color: #363636;
}
.select-filter.display ul{
    display: block;
}
.select-filter ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 99;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: white;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    overflow: hidden;
}
.select-filter .select-all {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    padding: 8px 30px;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    border-radius: 10px;
    border: 1px solid #DDDDDD;
    height: 62px;
    display: flex;
    align-items: center;
}
.select-filter .select-all:after {
    content: "\f107";
    font-family: 'fontawesome';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0,-50%);
}
.select-filter ul li a {
    color: black;
    padding: 15px 30px;
    width: 100%;
    display: block;
}
.select-filter ul li a:hover {
    background-color: rgba(0, 102, 204, 0.11);
    color: #000000;
}
.select-filter ul li.active a {
    background-color: rgba(0, 102, 204, 0.11);
    color: #000000;
}


/* Checkbox / Radio filter */

.checkbox-filter a, .radio-filter a {
    color: #000000;
    position: relative;
    padding-left: 30px;
    text-align: left;
    line-height: 1;
    font-weight: normal;
    margin: 15px 0 0;
}
.checkbox-filter a:before, .radio-filter a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #000000;
    background-color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    background-position: center;
}
/* .checkbox-filter a:before {
   border-radius: 6px;
} */
.radio-filter a:before {
   border-radius: 500px;
}
.checkbox-filter li.active a:before, .radio-filter li.active a:before {
    background-color: #000000;
    border-color: #000000;
}
.checkbox-filter li a:after, .radio-filter li a:after {
    content: '';
    opacity: 0;
}
.checkbox-filter li.active a:after, .radio-filter li.active a:after {
    content: '';
    width: 10px;
    height: 7px;
    position: absolute;
    top: 4px;
    left: 5px;
    border: 3px solid #ffffff;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* Date filter */

div#range {
    height: 5px;
    background-color: #ECECEC;
    border: none;
}
.filter-date .title-filters {
    margin-bottom: 35px;
}
.filter-date .ui-slider-range {
    background-color: #000000;
    border: none;
    z-index: 9;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    background-color: #000000;
    border: 5px solid #ECECEC;
    border-radius: 500px;
    top: -12px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 9;
}
#range > span > span {
    position: absolute;
    top: -33px;
    font-size: 16px;
    font-weight: 700;
    font-family: Lato;
    left: -10px;
    color: #9A9A9A;
}
.filter-date {
    margin-bottom: 20px;
    margin-top: 50px;
}

/* Search filter */

.filter-search .icone-input {
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 3px 5px;
}

/* Reset filter */

#reset-filter a {
    color: #f40a0a;
}

/* Pagination */

#container-async_filtres .pagination {
    display: flex;
    justify-content: center;
    padding-left: 15px;
    border-top: 1px solid rgba(154, 154, 154, 0.1);
    border-bottom: 1px solid rgba(154, 154, 154, 0.1);
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
}
#container-async_filtres .pagination .page-prev {
    position: absolute;
    left: 0;
}
#container-async_filtres .pagination li > * {
    border: none!important;
    color: #9A9A9A;
    font-size: 24px;
    line-height: 1;
}
#container-async_filtres .pagination li .prev, #container-async_filtres .pagination li .next {
    font-size: 20px;
}
#container-async_filtres .pagination li .next {
    position: absolute;
    right: 0;
}
#container-async_filtres .pagination li > *:hover{
    background-color: transparent;
    color: black;
}
#container-async_filtres .pagination li > *.current {
    color: #000000;
}
