/** Shopify CDN: Minification failed

Line 196:8 Expected identifier but found whitespace
Line 196:10 Unexpected "{"
Line 196:19 Expected ":"
Line 196:45 Expected ":"

**/
.section-page-filters-wrapper {
  display: flex;
  justify-content: space-between;
}

.filter__heading-desktop, .filter__heading-mobile {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: left;
  min-width: fit-content;
}

.filter__heading-mobile {
  position: relative;
  padding-right: 1.5rem;
}

.filter__heading-mobile .icon {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  right: -.5rem;
  top: calc(50% - .9rem);
}

.filter__heading-mobile .icon path {
  stroke-width: 1;
}

.filter__wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media screen and (max-width: 989px) {
  .section-page-filters-wrapper {
    display: block;
    position: relative;
  }
  .filter__heading-desktop {
    display: none;
  }
  .filter__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  filter-buttons {
    display: flex;
    flex-direction: column;
  }
  filter-buttons:not([open]) {
    height: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
  }
  search-field:not([open]) input {
    pointer-events: none;
    transform: translateX(100%);
  }
}

@media screen and (min-width: 990px) {
  .filter__heading-mobile {
    display: none;
  }

  filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

/* Buttons */

filter-buttons {
  max-height: 150rem;
  transition: all 500ms ease-in-out;
}

.filter-button {
  appearance: none;
  text-decoration: none;
  background: #FFF;
  cursor: pointer;
  width: fit-content;
  min-width: fit-content;
  padding: 9px 24px;
  border-radius: 60px;
  text-transform: uppercase;
  border: 1px solid var(--color-warm-grey);
  letter-spacing: 2.2px;
  font-size: 1.2rem;
}

.filter-button:focus-visible {
  outline: 2px solid var(--color-monin-brown);
}

.more-filters-button {
  text-decoration: underline;
  text-underline-offset: .2rem;
  cursor: pointer;
  font-size: 1.4rem;
}

.filter-button.active {
  background: var(--color-monin-brown);
  color: #FFF;
}
.filter-button.active span {
  color: #FFF;
}

@media screen and (max-width: 989px) {
  .filter-button {
    margin-bottom: 1.2rem;
  }
}

/* Search field */

search-field {
  display: block;
  position: relative;
  overflow: hidden;
}

search-field input {
  appearance: none;
  border: 1px solid rgba(0,0,0,.3);
  width: 100%;
  height: 4rem;
  padding-left: 1.5rem;
  padding-right: 4rem;
  border-radius: .4rem;
  transition: all .3s ease-in-out;
}

search-field input:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
  overflow-clip-margin: 0.3rem !important;
}

search-field .icon {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  right: 1rem;
  top: calc(50% - 1.4rem);
}

.search__wrapper.no-filters {
  margin-left: auto;
}

@media screen and (max-width: 749px) {
  .filter__wrapper {
    padding-bottom: 4rem;
  }
}

@media screen and (min-width: 750px) {
  search-field {
    min-width: 25rem;
  }
}

@media screen and (max-width: 749px) {
  .search__wrapper:not(.no-filters) {
    position: absolute;
    right: 2rem;
    top: .5rem;
    width: 50vw;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .search__wrapper:not(.no-filters) {
    position: absolute;
    right: 2rem;
    top: {{ section.settings.padding_top }}px;
    width: 50vw;
  }
}
