.filters {
  box-shadow: 0 5px 15px rgba(109, 105, 170, 0.2);
  background-color: #ffffff;
  padding: 25px 0;
  margin: -20px 0 20px;
}
.filters__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.filters__link {
  position: relative;
  color: #000033;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  border-radius: 17px;
  padding: 8px 24px 9px;
  border: 1px solid #d5dce0;
  margin: 5px;
  transition: 0.4s ease-in-out;
}
.filters__link--clicked .icon {
  transform: rotate(180deg);
}
.filters__link .icon {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 10px;
  height: 6px;
  fill: #551f7a;
  display: none;
}

@media (max-width: 767px) {
  .filters__link .icon {
    display: block;
  }
}
.filters__link--active {
  background-color: #f6f7f6;
  color: #53376f;
  font-weight: 700;
}
.filters__link:after {
  display: block;
  content: attr(title);
  font-weight: 700;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
}
.filters__link:hover {
  color: #551f7a;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 767px) {
  .filters__link {
    width: 100%;
  }
  .filters__link--passive {
    display: none;
  }
}
