/* ==================
  Colors
================= */
/* ==================
  Max content widths
================= */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.projekt_leistungen_filter {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  gap: 3rem;
}
.projekt_leistungen_filter .filter_item {
  position: relative;
  cursor: pointer;
}
.projekt_leistungen_filter .filter_item .px_filter_text {
  position: relative;
  font-size: 2rem;
  z-index: 2;
}
.projekt_leistungen_filter .filter_item.active::before {
  content: "" !important;
  position: absolute !important;
  background-repeat: no-repeat !important;
  right: 0;
  left: 0;
  margin: 0 auto;
  background-image: url("/wp-content/uploads/2024/08/orange_star-1.svg");
  background-position: center;
  background-size: contain;
  transform-origin: center;
  animation: rotate 10s linear infinite;
  /* duration, easing, repeat */
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .projekt_leistungen_filter .filter_item.active::before {
    width: 10rem;
    height: 10rem;
    top: -3.5rem;
  }
}
/*# sourceMappingURL=https://pixeltypen.de/wp-content/build/scss_library/80d9be9d1f49e72caf45fa8ede60e28a8b29746c.css.map */