.accordion {
  padding: 0;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-item:last-child {
  border-bottom: none;
}
.accordion-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease-in-out;
  padding: 4px 0;
  width: 100%;
}

.accordion-content {
  flex-wrap: wrap;
  opacity: 0;
  overflow: hidden;
  max-height: 0;
  transition: opacity 0.4s ease-in-out, max-height 0.4s ease-in-out;
  padding: 0;
  display: none;
}

.accordion-content.show {
  opacity: 1;
  max-height: 1000px;
}
.accordion-header.active .toggle {
  transform: rotate(180deg);
}

.accordion-header .toggle {
  color: var(--blue);
  width: 32px;
  height: 32px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion:hover .toggle {
  background-color: var(--color-bg-2);
}

.accordion:hover .accordion-header {
  color: var(--blue);
}

.filter-active {
  border: 2px solid var(--blue);
  position: relative;
}

.filter-number {
  background-color: white;
  padding: 2px;
  z-index: 5;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 5;
}

.filter-number > * {
  background-color: var(--blue);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 160%;
}
