.filters__wrapper {
  margin: 0;
}

.categ-2025__cta {
  height: auto;
  margin: 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .categ-2025__cta {
    padding: 0 !important;
  }
}

.categ-2025__cta .d-flex {
  column-gap: 0.5rem;
}

.categ-2025__cta .categ-link,
.categ-2025__cta .button {
  overflow: visible;
}

.categ-2025__cta .categ-link{
	width : max-content;
}

.categ-2025__cta .button.-secondary, .categ-2025__cta .button.-secondary:active {
  max-height: none !important;
  max-width: none !important;
  min-width: auto !important;
  min-height: auto !important;
  width: auto !important;
  /* padding: 0.25rem 0.5rem !important; */
  /* font-size: 0.78rem; */
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  color: rgb(0, 0, 0);

  text-transform: uppercase;
}

.categ-2025__cta .button.-secondary:hover, .categ-2025__cta .button.-secondary.-active, .categ-2025__cta .button.-secondary:active:hover, .categ-2025__cta .button.-secondary:active.-active {
  background: transparent !important;
  color: #000 !important;
  text-decoration: none;
  border: 1px solid rgb(0, 0, 0) !important;
  color: rgb(0, 0, 0);
}

@media (max-width: 1023px) {
  .categ-2025__cta .freescroll {
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    padding: 0 1.5rem;
  }

  .categ-2025__cta .freescroll:not(.stop-anim)>* {
    animation-name: shake;
    animation-duration: 4s;
    animation-iteration-count: 1;
    animation-delay: 2s;
  }

  .categ-2025__cta .freescroll>* {
    flex: none !important;
  }

  .categ-2025__cta .freescroll::-webkit-scrollbar {
    display: none;
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-80px);
  }

  30% {
    transform: translateX(30px);
  }

  40% {
    transform: translateX(-20px);
  }

  50% {
    transform: translateX(0px);
  }
}