#collection .main-col .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
#collection .main-col .top-filters {
  padding: 0;
}

.active-filters .title {
  white-space: nowrap;
  align-content: center;
  margin-right: 8px;
}
.active-filters .filters-inner:not(.d-none) {
  display: flex;
}
.active-filters .active-items {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.active-filters .active-items .active-item {
  background: #f7f6f2;
  padding: 8px;
}
.active-filters .active-items .active-item a {
  margin-left: 16px;
}
@media (min-width: 992px) {
  #collection .collection-row .side-nav-col {
    width: 320px;
    padding-right: 20px;
  }
  #collection .collection-row .main-col {
    min-width: calc(100% - 320px);
    max-width: calc(100% - 320px);
  }
  .top-filters.side-filters li .filter-title i,
  .main-col .top-filters li .filter-title i,
  .top-filters.side-filters li .filter-title i:before,
  .main-col .top-filters li .filter-title i:before   {
    transition: all 0.3s ease-in-out;
  }
  .top-filters.side-filters li.active .filter-title i:before,
  .main-col .top-filters li.active .filter-title i:before   {
    transform: rotate(180deg);
  }
  .top-filters.side-filters ul .items {
    position: inherit;
  }
  #collection .top-filters ul li.active .items {display:none;}
}