.m-filter-dropdown {
  position: relative;
}
.m-filter-dropdown.dropdown-open .icon {
  transform: rotate(180deg);
}
.m-filter-dropdown__trigger {
  cursor: pointer;
}
.m-filter-dropdown__content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgb(var(--color-background));
  box-shadow: 0 0.5rem 2rem rgb(var(--color-black)/10%);
  padding: 1rem 2rem;
  z-index: 10;
  max-height: 30rem;
  overflow: auto;
}
.m-filter-dropdown__content.open {
  display: block;
  width: max-content;
}
.m-filter-dropdown .icon {
  transform: rotate(0deg);
  transition: transform var(--default-transition-timing) var(--default-transition-easing);
}
