.catalog-filters {
  margin-bottom: 35px; }
  .catalog-filters__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; }
    @media (max-width: 766.75px) {
      .catalog-filters__inner {
        margin-right: -15px;
        overflow: auto;
        flex-wrap: nowrap; }
        .catalog-filters__inner::-webkit-scrollbar {
          width: 6px;
          height: 6px; }
        .catalog-filters__inner::-webkit-scrollbar-thumb {
          border-radius: 5px;
          background: #ccc;
          background: var(--gray_bg_black);
          border: 1px solid #fff;
          border-color: var(--black_bg_black); }
        .catalog-filters__inner::-webkit-scrollbar-track {
          border-radius: 5px; } }

.catalog-filter {
  padding: 7px 15px 9px 15px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color ease 0.3s;
  background-color: #f8f8f8;
  color: #000000;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  border-radius: 50px; }
  .catalog-filter:hover {
    color: #fff;
    background-color: #8a6048; }
  .catalog-filter.active {
    color: #fff;
    background-color: #000000; }
  .catalog-filter span {
    white-space: nowrap; }
