.native-filter {
  text-align: left;
}
.native-filter--multi:after {
  display: none !important;
}
.native-filter__details {
  position: relative;
  width: 100%;
}
.native-filter__summary {
  list-style: none;
  cursor: pointer;
  font-size: 14px !important;
  text-transform: uppercase !important;
  font-weight: bold;
  padding: 19px 50px 18px 24px;
  min-height: 64px;
  border: 1px solid #e4e3db;
  background: #fff;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  color: #000;
}
.native-filter__summary::-webkit-details-marker, .native-filter__summary::marker {
  display: none;
}
.native-filter__summary:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--color--primary);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.native-filter__summary:hover, .native-filter__summary:focus, .native-filter__summary:focus-visible {
  background: var(--color--primary);
  color: #fff;
  outline: 2px solid var(--color--primary);
  outline-offset: 2px;
}
.native-filter__summary:hover:after, .native-filter__summary:focus:after, .native-filter__summary:focus-visible:after {
  color: #fff;
}
.native-filter__summary-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.native-filter__details[open] .native-filter__summary {
  background: var(--color--primary);
  color: #fff;
}
.native-filter__details[open] .native-filter__summary:after {
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}
.native-filter--has-value .native-filter__summary {
  box-shadow: inset 0 -3px 0 var(--color--primary);
}
.native-filter__panel {
  position: absolute;
  z-index: 30;
  left: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #e4e3db;
  max-height: min(320px, 60vh);
  min-width: 100%;
  width: max-content;
  max-width: min(22rem, 90vw);
  overflow-y: auto;
  text-align: left;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
}
.native-filter__fieldset {
  border: 0;
  margin: 0;
  padding: 4px 0;
  min-width: 0;
}
.native-filter__option {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  font-size: 13px;
  text-transform: none;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}
.native-filter__option:hover, .native-filter__option:focus-within {
  background: #f4f2ec;
}
.native-filter__option input[type=checkbox],
.native-filter__option .native-filter__checkbox {
  position: absolute !important;
  left: 12px;
  top: 50%;
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  z-index: 2;
  cursor: pointer;
  transform: translateY(-50%);
}
.native-filter__option label {
  position: relative;
  display: block;
  margin: 0 !important;
  padding-left: 26px;
  cursor: pointer;
  width: 100% !important;
  text-align: left;
  font-weight: 700;
  white-space: normal;
}
.native-filter__option label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  border: 1px solid #aeaeae;
  border-radius: 2px;
  background: #fff;
  transform: translateY(-50%);
}
.native-filter__option input:checked + label:before {
  border-color: var(--color--primary);
  background-color: var(--color--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.56.75L2.97 4.36 1.43 2.81 0 4.26l2.97 2.99L8 2.19z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px 8px;
}
.native-filter__option input:focus-visible + label:before {
  outline: 2px solid var(--color--primary);
  outline-offset: 2px;
}
.native-filter--single {
  min-width: 0;
  position: relative;
}
.native-filter--single:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--color--primary);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}
.native-filter--single:hover:after {
  color: #fff;
}
.native-filter__select {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 64px !important;
  min-height: 64px !important;
  max-height: 64px !important;
  margin: 0 !important;
  padding: 0 50px 0 24px !important;
  border: 1px solid #e4e3db !important;
  background-color: #fff !important;
  background-image: none !important;
  box-sizing: border-box;
  font-size: 14px !important;
  font-weight: bold;
  line-height: 62px;
  text-transform: uppercase !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #000;
  cursor: pointer;
}
.native-filter__select:hover, .native-filter__select:focus {
  background-color: var(--color--primary) !important;
  color: #fff !important;
}

.sidebar__filtre form .selectReset .resetFilter {
  appearance: none;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  padding: 0;
  text-transform: uppercase;
}

@media (max-width: 48em) {
  .native-filter__summary,
  .native-filter__select {
    width: 100% !important;
    background: #fff;
  }
  form .native-filter .native-filter__select {
    padding: 0 50px 0 24px !important;
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
  }
}
form .native-filter input[type=checkbox] {
  position: absolute !important;
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  max-width: 14px !important;
  padding: 0 !important;
  opacity: 0 !important;
}

.sidebar__filtre form .selectdiv.native-filter--single:after {
  top: 50% !important;
  right: 20px !important;
  margin-left: 0 !important;
  transform: translateY(-50%);
}

.sidebar__filtre form .native-filter__select {
  height: 64px !important;
  min-height: 64px !important;
  max-height: 64px !important;
  padding: 0 50px 0 24px !important;
  width: 100% !important;
  max-width: 100% !important;
}
