/*------------------------------------*\
  #GLOBAL
\*------------------------------------*/
/*------------------------------------*\
  #CUSTOM SETUP

  Mixins ................. custom mixins without inheriting of accelerator
  Variables .............. variables to override accelerator ones with !default
  Fonts .................. client fonts definition

\*------------------------------------*/
/**
 * Position definition
 *
 * Example of utilization
 * @include absolute(top 1rem left 2rem);
 */
/*md
@no-stat

# Scheme

## Greyscale

```html_example
    <div class="styleguide__section-colors">
        <div class="bg--white">
            <span>$white</span>
            #ffffff
        </div>
        <div class="bg--grey-1">
            <span>$grey-1</span>
            #f8f8f8
        </div>
        <div class="bg--grey-2">
            <span>$grey-2</span>
            #e9e8e1
        </div>
        <div class="bg--grey-3">
            <span>$grey-3</span>
            #eeeeee
        </div>
        <div class="bg--grey-4">
            <span>$grey-4</span>
            #c4c4c4
        </div>
        <div class="bg--grey-5">
            <span>$grey-5</span>
            #999999
        </div>
        <div class="bg--black text-color--white">
            <span>$black</span>
            #000000
        </div>
    </div>
```

## Colors

```html_example
    <div class="styleguide__section-colors">
        <div class="bg--beige">
            <span>$beige</span>
            #f5f5dc
        </div>
        <div class="bg--green text-color--white">
            <span>$green</span>
            #00503f
        </div>
        <div class="bg--blue text-color--white">
            <span>$blue</span>
            #4D96E7
        </div>
        <div class="bg--red text-color--white">
            <span>$red</span>
            #e60000
        </div>
        <div class="bg--start-white text-color--black">
            <span>$start-white</span>
            #efefe8
        </div>
    </div>
```

*/
/*------------------------------------*\
  #TYPOGRAPHY
\*------------------------------------*/
/*------------------------------------*\
  #BREAKPOINTS
\*------------------------------------*/
/*------------------------------------*\
  #ELEMENT-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HEADER-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #TOOLTIP ELEMENTS
\*------------------------------------*/
/*------------------------------------*\
  #HORIZONTAL-SPACING
\*------------------------------------*/
/*------------------------------------*\
  #TRANSITIONS
\*------------------------------------*/
/*------------------------------------*\
  #FONT WEIGHTS
\*------------------------------------*/
/*------------------------------------*\
  #HEADER SPECIFIC
\*------------------------------------*/
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "Newtime R";
  src: url("../fonts/newtime/medium/NewtimeR-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "Newtime R Book";
  src: url("../fonts/newtime/book/NewtimeR-Book.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-weight: 900;
  font-style: normal;
  font-family: "Newtime R Heavy";
  src: url("../fonts/newtime/heavy/NewtimeR-Heavy.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "Catalogue";
  src: url("../fonts/cataloguell/regular/CatalogueLLWeb-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "Catalogue Italic";
  src: url("../fonts/cataloguell/italic/CatalogueLLWeb-Italic.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "TimesNow";
  src: url("../fonts/timesnow/semilight/JHATimesNow-SemiLight.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "TimesNow Italic";
  src: url("../fonts/timesnow/semilight/JHATimesNow-SemiLightItalic.woff2") format("woff2");
  font-display: swap;
}
/*------------------------------------*\
  #ACCELERATOR BASICS

  Variables .............. default variables setting up with !default
  Misins ................. basic mixins

\*------------------------------------*/
/**
 * Returns the value of the `$key` value of a provided `$map`.
 */
/**
 * Uses `getProperty()` to return a value from the `$colors` map.
 */
/**
 * Uses `getProperty()` to return a value from the `$breakpoints` map.
 */
/*------------------------------------*\
  #TYPOGRAPHY
\*------------------------------------*/
/*------------------------------------*\
  #COLORS
\*------------------------------------*/
/*------------------------------------*\
  #ELEMENT-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HEADER-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HORIZONTAL-SPACING
\*------------------------------------*/
/*------------------------------------*\
  #BREAKPOINTS
\*------------------------------------*/
/*------------------------------------*\
  #TRANSITIONS
\*------------------------------------*/
/**
 * Responsive Mixin
 * This mixin is designed for a _cleaner_ first approach
 * This means that css isn't overridden but rather replaced for
 * different viewport widths; making it easier to inspect/debug css
 *
 * Usage:
 * @include media-query(exclude-medium)    { ... }
 * @include media-query(medium-up-to-site) 	   { ... }
 * ... etc
 */
/**
 * [Adds styles to allow an element's height scale proportionatelly]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 */
/**
 * [Calculates the percentage aspect ratio (what % height is compared to the width)]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * *****REMEMBER TO USE MARGIN OR PADDING AND NOT TOP/BOTTOM******
 * [Calculates the center of an element in relation to a provided width and height.
 * Useful to place an absolute element at the center of another when
 * the positioned element cannot be the target's child ]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * [In the  awful case you can't use Flexbox to vertically align something]
 * @param  {[type]} $transform:       false         [Use transforms to align instead of the absolute trick]
 * @param  {[type]} $pos:             absolute      [position type]
 * @param  {[type]} $posAdj:          0             [position adjustment. If $transform is true, this value only affects the 'top' property.]
 * @param  {[type]} $alignHorizontal: false         [Includes horizontal alignment]
 */
/**
 * Generate Enumerated Class
 * Iterates from 0 to the specified length and generates classes that set the specified property
 * @param  {[String]} $classname:       required      [Required: Specify the class name]
 * @param  {[String]} $property:        $classname    [Optional: Specify the enumerated property (if it's different from the name of the class)]
 * @param  {[Number]} $length:          10            [Optional: Specify the end of the loop]
 * @param  {[String]} $units:           null          [Optional: specify units to append to the enumerated property]
 */
/**
* [Strip the pesky units from values]
* @param  {[Number]} $value
*/
/**
* [Fluid Type]
*/
/*------------------------------------*\
  #COMPONENTS
\*------------------------------------*/
.main--search-show {
  margin-top: 0;
}

.search-results {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 0;
}

.search-results__container {
  min-height: 30rem;
}

.search-results__footer {
  position: relative;
  margin-top: 3.25rem;
}

.search-results__section {
  position: relative;
}

.search-results--null-page {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.empty-category {
  margin-top: -1.5rem;
}

.search-results--null__form {
  position: relative;
  margin-top: 1.75rem;
}

.search-results--null__description {
  margin-top: 0.625rem;
}

.search-results--null__help {
  margin-top: 2rem;
}

.search-results__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.search-results__breadcrumbs {
  white-space: nowrap;
}
.search-results__breadcrumbs .breadcrumbs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.search-results__breadcrumbs .breadcrumbs__anchor {
  font-size: 0.75rem;
}

.search-results__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-results__list {
  width: 100%;
}

.search-results__header-top {
  padding: 1rem;
}

.search-results__count,
.search-results__header {
  padding: 0 1.5rem;
}

.search-result__categories {
  padding-bottom: 2rem;
}

@media (max-width: 125rem) {
  .search-result__categories {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 63.9375rem) {
  .search-results {
    margin-top: 0;
    padding: 0;
  }
  .search-results__header {
    padding-bottom: 0;
  }
  .search-results__count {
    padding: 1rem 1rem 0;
  }
  .search-results__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 1rem 1rem 0;
    height: 12rem;
  }
  .search-results__breadcrumbs {
    margin-top: 1rem;
    line-height: 1rem;
  }
}
@media (min-width: 48rem) {
  .search-results__list {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .search-results__inner {
    border: 0;
  }
  .search-results__breadcrumbs .breadcrumbs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .search-results__breadcrumbs .breadcrumbs__anchor {
    font-size: 1rem;
  }
  .search-result__categories .content-tile__description {
    display: none;
  }
  .search-result__categories .content-tile .content-tile__actions {
    margin-top: 0;
  }
}
@media (max-width: 79.9375rem) {
  .search-result__categories {
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 63.9375rem) {
  .search-result__categories {
    padding-right: 0;
  }
}
@media (min-width: 80rem) {
  .search-results__main {
    padding-top: 4.9375rem;
  }
  .search-results__header-top {
    padding: 0 1.5rem 2rem;
  }
  .search-result__categories {
    padding-bottom: 2rem;
  }
}
/*------------------------------------*\
  #SEARCH SORT DROPDOWN
\*------------------------------------*/
.search-results__sort-dropdown::after {
  content: "";
  width: 0.0625rem;
  height: 1rem;
  background-color: #000;
}

@media (min-width: 64rem) {
  .sort-dropdown {
    --refinement-rail: 8.875rem;
    position: fixed;
    top: 0;
    right: calc(37.1875rem * -1);
    bottom: 0;
    background: #FFF;
    height: 100vh;
    -webkit-transition: right 640ms ease;
    transition: right 640ms ease;
    width: 37.1875rem;
    z-index: 101;
  }
  .sort-dropdown.toggle--active {
    right: 0;
  }
}
@media (max-width: 63.9375rem) {
  .sort-dropdown {
    --refinement-rail: 6.875rem;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    background: #FFF;
    z-index: 101;
    width: 100vw;
    -webkit-transition: 640ms ease;
    transition: 640ms ease;
  }
  .sort-dropdown:not(.toggle--active) {
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
.sort-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  display: none;
  opacity: 0.2;
  z-index: 3;
}
.toggle--active + .sort-backdrop {
  display: block;
}

.sort-dropdown__head {
  padding: 2rem 1.5rem 0;
}
@media (max-width: 63.9375rem) {
  .sort-dropdown__head {
    padding: 1.5rem 1rem 0;
  }
}

.sort-dropdown__title {
  width: undefined;
  width: calc(var(--refinement-rail) - 3rem);
}
@media (max-width: 63.9375rem) {
  .sort-dropdown__title {
    width: undefined;
    width: calc(var(--refinement-rail) - 1rem);
  }
}

.sort-dropdown__count {
  margin-right: auto;
}

.sort-dropdown__body {
  padding: undefined;
  padding: 3rem 1.5rem 3.5rem calc(var(--refinement-rail) - 1rem);
}
@media (max-width: 63.9375rem) {
  .sort-dropdown__body {
    padding: undefined;
    padding: 1rem 1.5rem 3.5rem var(--refinement-rail);
  }
}
.sort-dropdown__body .dropdown-box__item {
  padding: 1rem;
}
.sort-dropdown__body .dropdown-box__anchor {
  line-height: 1.5rem;
}
.sort-dropdown__body .dropdown-box__anchor.selected {
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  text-decoration-thickness: 0.0625rem;
}

.list-view-switch__icon--selected {
  display: none;
}
.set--active .list-view-switch__icon--selected {
  display: block;
}

.set--active .list-view-switch__icon--unselected {
  display: none;
}

.refinement-bar {
  --refinement-rail: 8.875rem;
  position: relative;
  background: #FFF;
  height: 100vh;
  padding-top: 2rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  z-index: 2;
}
@media (max-width: 63.9375rem) {
  .refinement-bar {
    --refinement-rail: 6.875rem;
  }
}
@supports (height: 100dvh) {
  .refinement-bar {
    height: 100dvh;
  }
}

.refinement-bar__head {
  padding: 0 1.5rem;
}
@media (max-width: 63.9375rem) {
  .refinement-bar__head {
    padding: 0 1rem;
  }
}

.refinement-bar__title {
  width: undefined;
  width: calc(var(--refinement-rail) - 1.5rem);
}
@media (max-width: 63.9375rem) {
  .refinement-bar__title {
    width: undefined;
    width: calc(var(--refinement-rail) - 1rem);
  }
}

.refinement-bar__count {
  margin-right: auto;
}

.state--refinements-opened .search-results__aside--active {
  -webkit-transition: none;
  transition: none;
}

.refinement-bar__body {
  position: relative;
  padding-left: undefined;
  padding-left: var(--refinement-rail);
  padding-bottom: 2rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #FFF;
  overflow-x: hidden;
  overflow-y: auto;
}
.refinement-bar__body::-webkit-scrollbar {
  display: none;
}

.refinement-bar__footer {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  border-top: 0.03125rem solid #000;
}

.refinement-bar__footer-clear {
  width: undefined;
  width: var(--refinement-rail);
}

.refinement-bar__footer-apply {
  border-width: 0 0 0 0.03125rem;
}

.refinement {
  padding: 0 0 1rem;
}
.refinement:not(:first-child) {
  border-top: 0.03125rem solid #000;
}
@media (max-width: 63.9375rem) {
  .refinement {
    padding: 0 0 0.75rem;
  }
}
.refinement .refinement__header,
.refinement .subrefinement__header {
  padding: 1rem 1.5rem 0 1rem;
}
@media (max-width: 63.9375rem) {
  .refinement .refinement__header,
  .refinement .subrefinement__header {
    padding: 0.75rem 1rem 0;
  }
}

.refinement__icon-close {
  display: none;
}

.refinement--active > .refinement__icon-open {
  display: none;
}
.refinement--active > .refinement__icon-close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.refinement__content {
  display: none;
  padding: 2rem 0 0 1rem;
}
@media (max-width: 63.9375rem) {
  .refinement__content {
    padding: 1.5rem 0 0 1rem;
  }
}
.refinement__content.refinement--active {
  display: block;
}

.refinement__content.subrefinements .refinement {
  margin-left: 2rem;
  border-top: 0.03125rem solid #000;
}
@media (max-width: 63.9375rem) {
  .refinement__content.subrefinements .refinement {
    margin-left: 1rem;
  }
}

.subrefinement__icon-minus {
  display: none;
}

.subrefinements .refinement--active > .subrefinement__icon-plus {
  display: none;
}
.subrefinements .refinement--active > .subrefinement__icon-minus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.refinement__size,
.refinement__list {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media (max-width: 47.9375rem) {
  .refinement__size,
  .refinement__list {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
.refinement__size.refinement__sustainability_filter, .refinement__size.refinement__readyToShip,
.refinement__list.refinement__sustainability_filter,
.refinement__list.refinement__readyToShip {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
}

.refinement__list .refinement__list {
  padding-left: 1.875rem;
}
.refinement__list:not(:first-child) {
  margin-top: 1.25rem;
}
.refinement__list.refinement__color, .refinement__list.refinement__print {
  padding: 0.5rem 0 1rem;
}
.refinement__list.refinement__color .swatch--border, .refinement__list.refinement__print .swatch--border {
  border-radius: 50%;
  padding: 0.1875rem;
  border: 0.0625rem solid transparent;
}
.refinement__list.refinement__color .swatch--border.selected, .refinement__list.refinement__print .swatch--border.selected {
  border-color: #000;
}
.refinement__list.refinement__color .swatch--color.selected::after, .refinement__list.refinement__print .swatch--color.selected::after {
  display: none;
}

.refinement__boolean-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 1rem;
  -webkit-column-break-inside: avoid;
     page-break-inside: avoid;
          break-inside: avoid;
}
.refinement__boolean-item.refinement__boolean-item--swatch {
  padding-bottom: 0.5rem;
}
.refinement__boolean-item .refinement__item.set--checked span:not(.refinement__item-description) {
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  text-decoration-thickness: 0.0625rem;
}

.refinement__boolean-item .swatch--color {
  border: 0;
}

.refinement__swatch-color-item {
  margin-right: 0.625rem;
  margin-bottom: 0.625rem;
  padding-left: 1px;
}

.refinement__swatch-color-item .swatch--color,
.refinement__swatch-color-item .swatch--print,
.refinement__boolean-item .swatch--color,
.refinement__boolean-item .swatch--print {
  height: 1.5rem;
  width: 1.5rem;
  border: none;
}
.refinement__swatch-color-item .swatch--color:after,
.refinement__swatch-color-item .swatch--print:after,
.refinement__boolean-item .swatch--color:after,
.refinement__boolean-item .swatch--print:after {
  display: none;
}
.refinement__swatch-color-item .swatch--color img,
.refinement__swatch-color-item .swatch--print img,
.refinement__boolean-item .swatch--color img,
.refinement__boolean-item .swatch--print img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
}
.refinement__swatch-color-item .swatch--print::after,
.refinement__boolean-item .swatch--print::after {
  color: #FFF;
}
.refinement__swatch-color-item .swatch--color__link:hover .swatch--color:after, .refinement__swatch-color-item .swatch--print__link:hover .swatch--color:after,
.refinement__boolean-item .swatch--color__link:hover .swatch--color:after,
.refinement__boolean-item .swatch--print__link:hover .swatch--color:after {
  border: 0;
}
.refinement__swatch-color-item .swatch--color-multi, .refinement__swatch-color-item .swatch--print,
.refinement__boolean-item .swatch--color-multi,
.refinement__boolean-item .swatch--print {
  background-size: cover;
  background-repeat: no-repeat;
}
.refinement__swatch-color-item .swatch--color-multi,
.refinement__boolean-item .swatch--color-multi {
  background-image: url("../images/multi-refinement.jpeg");
}
.refinement__swatch-color-item .swatch--print-trend,
.refinement__boolean-item .swatch--print-trend {
  background-image: url("../images/prints/trend.jpg");
}
.refinement__swatch-color-item .swatch--print-dots,
.refinement__boolean-item .swatch--print-dots {
  background-image: url("../images/prints/dots.jpg");
}
.refinement__swatch-color-item .swatch--print-sparkle,
.refinement__boolean-item .swatch--print-sparkle {
  background-image: url("../images/prints/sparkle.jpg");
}
.refinement__swatch-color-item .swatch--print-abstract,
.refinement__boolean-item .swatch--print-abstract {
  background-image: url("../images/prints/abstract.jpg");
}
.refinement__swatch-color-item .swatch--print-floral,
.refinement__boolean-item .swatch--print-floral {
  background-image: url("../images/prints/floral.jpg");
}
.refinement__swatch-color-item .swatch--print-striped,
.refinement__boolean-item .swatch--print-striped {
  background-image: url("../images/prints/striped.jpg");
}
.refinement__swatch-color-item .swatch--print-check,
.refinement__boolean-item .swatch--print-check {
  background-image: url("../images/prints/check.jpg");
}
.refinement__swatch-color-item .swatch--print-animal,
.refinement__boolean-item .swatch--print-animal {
  background-image: url("../images/prints/animal.jpg");
}
.refinement__swatch-color-item .swatch--print-fruit,
.refinement__boolean-item .swatch--print-fruit {
  background-image: url("../images/prints/fruit.jpg");
}
.refinement__swatch-color-item .swatch--print-tiedye,
.refinement__boolean-item .swatch--print-tiedye {
  background-image: url("../images/prints/tiedye.jpg");
}
.refinement__swatch-color-item .swatch--print-solid,
.refinement__boolean-item .swatch--print-solid {
  background-color: #000;
}

.refinement-category__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 0;
  white-space: nowrap;
}
.refinement-category__header .refinement-category__header-selections {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #000;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.refinement-category__header .refinement-category__header-selections--active::before {
  margin: 0 0.25rem 0 0;
  color: #000;
  content: ":";
}

.refinement__header-icon {
  height: 1.125rem;
  width: 1.125rem;
}

.refinement__header-icon + .refinement__header-value {
  text-decoration: underline;
}

.applied-refinements__item:hover .refinement__header-value {
  text-decoration: none;
}

.refinements-quick {
  white-space: nowrap;
}

.search-results__bar {
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: calc(2.75rem + 2rem);
  background: #FFF;
  z-index: 2;
  padding: 0.5625rem 1.5rem;
}
.search-results__bar.set--non-clickable {
  pointer-events: none;
}

.applied-refinements {
  overflow-x: auto;
}
.applied-refinements::-webkit-scrollbar {
  display: none;
}

.applied-refinements__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.applied-refinements__list .refinement__header-icon {
  height: 1rem;
  width: 1rem;
}

@media (max-width: 63.9375rem) {
  .applied-refinements--inline .applied-refinements__list {
    padding: 0.625rem 1rem;
  }
  .refinement-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 11;
    width: 100vw;
    height: 100vh;
    -webkit-transition: 640ms ease;
    transition: 640ms ease;
    padding-top: 1.5rem;
    overflow: hidden;
  }
  @supports (height: 100dvh) {
    .refinement-bar {
      height: 100dvh;
    }
  }
  .refinement-bar:not(.refinement-bar--active) {
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .search-results__bar {
    padding: 1rem;
    overflow-y: hidden;
    overflow-x: auto;
  }
  .search-results__bar.toggle--active {
    overflow-y: visible;
    overflow-x: clip;
  }
  .search-results__bar::-webkit-scrollbar {
    display: none;
  }
  .applied-refinements {
    overflow-x: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .applied-refinements::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 64rem) {
  .search-results__aside {
    position: fixed;
    top: 0;
    right: calc(37.1875rem * -1);
    bottom: 0;
    background: #FFF;
    height: 100vh;
    -webkit-transition: right 640ms ease;
    transition: right 640ms ease;
    width: 37.1875rem;
    z-index: 101;
  }
  .search-results__aside--active {
    right: 0;
  }
  .refinement-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    display: none;
    opacity: 0.2;
    z-index: 1;
  }
  .search-results__aside--active .refinement-backdrop {
    display: block;
  }
  .refinement-sort__item {
    margin-top: 1.5rem;
  }
  .refinement-sort__item:first-child {
    margin-top: 0;
  }
  .refinement-sort__link {
    position: relative;
    padding-left: 1.8125rem;
  }
  .refinement-sort__link::before {
    position: absolute;
    top: -3px;
    left: 0;
    border-radius: 100%;
    border: 1px solid #000;
    content: "";
    height: 1.1875rem;
    width: 1.1875rem;
  }
  .refinement-sort__link--selected::after {
    position: absolute;
    top: 0;
    left: 3px;
    background: #000;
    border-radius: 100%;
    content: "";
    height: 0.8125rem;
    width: 0.8125rem;
  }
  .search-results__bar .applied-refinements {
    margin-left: auto;
    height: 1.875rem;
  }
  .applied-refinements__list {
    gap: 0.75rem 1rem;
  }
  .search-results__aside .applied-refinements__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 80rem) {
  .search-results__bar {
    top: calc(3.25rem + 2rem);
  }
}
@media (min-width: 129.0625rem) {
  .search-results__header-top,
  .search-results__bar,
  .search-results__count,
  .search-results__header {
    padding-left: 0;
    padding-right: 0;
  }
}
.search-results__list .product-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 0.0625rem;
}
.search-results__list .product-grid.set--loading:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  z-index: 1;
  background: rgba(255, 255, 255, 0.7);
}
.search-results__list .product-grid:not(.product-list__grid--slot) .product-grid__item {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  max-width: 100%;
}
.search-results__list .search-results__footer {
  grid-column: 1/-1;
}
.search-results__list .product-grid__item {
  margin-bottom: 0.8125rem;
}
.search-results__list .product-grid__item--interrupter {
  margin-bottom: 0;
}
@media (min-width: 64rem) {
  .search-results__list .product-grid__item--interrupter {
    grid-column: span 1;
    grid-column: span var(--interrupter-col-size, 1);
  }
  .search-results__list .product-grid__item--interrupter.product-grid__item--interrupter-columns-1 .content-tile__img {
    aspect-ratio: 100/133;
  }
  .search-results__list .product-grid__item--interrupter.product-grid__item--interrupter-columns-2 .content-tile__img {
    aspect-ratio: 100/66.4;
  }
  .search-results__list .product-grid__item--interrupter.product-grid__item--interrupter-columns-2.product-grid__item--interrupter-rows-2 {
    grid-row: span 2;
  }
  .search-results__list .product-grid__item--interrupter.product-grid__item--interrupter-columns-2.product-grid__item--interrupter-rows-2 .content-tile__img {
    aspect-ratio: calc(50vw / (66.5vw + 6.5rem));
  }
}
@media (min-width: 64rem) and (min-width: 125.0625rem) {
  .search-results__list .product-grid__item--interrupter.product-grid__item--interrupter-columns-2.product-grid__item--interrupter-rows-2 .content-tile__img {
    aspect-ratio: 100/143.3;
  }
}
@media (min-width: 64rem) {
  .search-results__list .product-grid__item--interrupter.product-grid__item--interrupter-columns-4 .content-tile {
    margin: 0 0 0;
    margin: var(--spacing-top-desktop, 0) 0 var(--spacing-bottom-desktop, 0);
  }
}
@media (max-width: 63.9375rem) {
  .search-results__list .product-grid__item--interrupter {
    grid-column: span 2;
  }
  .search-results__list .product-grid__item--interrupter .content-tile {
    margin: 0 0 0;
    margin: var(--spacing-top-mobile, 0) 0 var(--spacing-bottom-mobile, 0);
  }
}
@media (min-width: 64rem) {
  .search-results__list .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

#refinement-shopTheStore {
  padding: 1rem 1.5rem 0.75rem 2rem;
}
@media (max-width: 63.9375rem) {
  #refinement-shopTheStore {
    padding: 0.5rem 1rem 0.75rem 2rem;
  }
}

.sts-container {
  position: relative;
  overflow: hidden;
  padding-top: 0.75rem;
}

.sts-content:not(:empty) {
  padding-top: 2.5rem;
}
@media (max-width: 63.9375rem) {
  .sts-content:not(:empty) {
    max-height: calc(100vh - 25.5rem);
    overflow-y: auto;
  }
  @supports (height: 100dvh) {
    .sts-content:not(:empty) {
      max-height: calc(100dvh - 25.5rem);
    }
  }
  .sts-content:not(:empty)::-webkit-scrollbar {
    display: none;
  }
}

.sts-store__label {
  cursor: pointer;
  height: 1.5rem;
}
.sts-store__label:before {
  top: 0;
  left: 0;
  height: 0.75rem;
  width: 0.75rem;
  margin: 0.375rem;
}

.sts-store__input:checked + .sts-store__label:after {
  top: 0;
  left: 0;
  height: 0.5rem;
  width: 0.5rem;
  margin: 0.5rem;
  -webkit-transform: none;
          transform: none;
}

.sts-store__address.toggle--active .sts-store__address-icon {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.sts-store__address-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.sts-store__address-content:not(.toggle--active) {
  display: none;
}

.search-results__content-item:not(:last-child) {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: solid 0.0625rem #eeeeee;
}

/*# sourceMappingURL=searchMain.css.map*/