/**
 * TABLE OF CONTENTS
 *
 * SETTINGS
 * Global..................Globally-available variables and config.
 *
 * TOOLS
 * Mixins..................Useful mixins.
 *
 * COMPONENTS
 *
 *
 * MODULES
 *
 */
/*------------------------------------*\
  #SETTINGS
\*------------------------------------*/
/**
 * 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
\*------------------------------------*/
/*------------------------------------*\
  #HORIZONTAL-SPACING
\*------------------------------------*/
/*------------------------------------*\
  #BREAKPOINTS
\*------------------------------------*/
/*------------------------------------*\
  #TRANSITIONS
\*------------------------------------*/
/*------------------------------------*\
  #TOOLS
\*------------------------------------*/
/**
 * 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
\*------------------------------------*/
.search-results--is-category {
  border-top: solid 0.0625rem #E1E1E1; }

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

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

.search-results__section {
  position: relative; }
  .search-results__section:not(.toggle--active) {
    display: none; }

.search-results--null-tab {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem; }

.search-results--null__form {
  margin-top: 3.875rem; }

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

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

.back-to-top {
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  position: fixed;
  bottom: 0px;
  width: 55px;
  height: 55px;
  overflow: hidden;
  right: 25px;
  background-color: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px;
          box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px;
  border-radius: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
  font-weight: bold;
  -webkit-transition: all 213ms ease-in-out;
  transition: all 213ms ease-in-out; }
  .back-to-top.show {
    opacity: 1;
    bottom: 150px;
    visibility: visible;
    -webkit-transition: all 213ms ease-in-out;
    transition: all 213ms ease-in-out; }
    .back-to-top.show:hover {
      opacity: 0.7; }

@media (min-width: 48rem) {
  .search-results--null-page {
    margin-top: 6.25rem; } }

@media (max-width: 47.9375rem) {
  .search-results {
    padding-top: 1.5rem; }
  .search-results--null-page {
    margin-top: 3rem; } }

@media (min-width: 48rem) {
  .search-results__toolbar {
    z-index: 2;
    padding-top: 1rem;
    padding-bottom: 1rem;
    -webkit-box-shadow: inset 0 -.0625rem 0 0 transparent;
            box-shadow: inset 0 -.0625rem 0 0 transparent;
    -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow, -webkit-box-shadow;
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in; }
    .search-results__toolbar.fixit--active {
      left: 0;
      -webkit-transition-duration: 213ms;
              transition-duration: 213ms;
      -webkit-box-shadow: inset 0 -0.0625rem 0 0 #E1E1E1;
              box-shadow: inset 0 -0.0625rem 0 0 #E1E1E1; } }

@media (max-width: 47.9375rem) {
  .search-results__toolbar {
    margin-bottom: 1.25rem; }
  .search-results__toolbar-sticky {
    z-index: 2;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 1.125rem; } }

.refinement__icon-collapsed,
.refinement__icon-expanded {
  margin-left: auto; }

.refinement__color,
.refinement__size {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }

.refinement__list .refinement__list {
  padding-left: 0.5rem; }

.refinement__list:not(:first-child) {
  margin-top: 1.125rem; }

.refinement__list-item:not(:last-child) {
  margin-bottom: 1.15em; }

.refinement__boolean-item:not(:last-child) {
  margin-bottom: 0.75em; }

.refinement__chip-item,
.refinement__swatch-color-item {
  margin-right: 0.625rem;
  margin-bottom: 0.625rem; }

.applied-refinements__item:not(:last-child) {
  margin-right: 0.625rem;
  margin-bottom: 0.5rem; }

.refinement__header {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem; }
  .refinement__header.refinement--active .refinement__icon-collapsed {
    display: none; }
  .refinement__header.refinement--active .refinement__icon-expanded {
    display: initial; }

.refinement__icon-expanded {
  display: none; }

.refinement__content {
  padding-bottom: 2rem; }
  .refinement__content:not(.refinement--active) {
    display: none; }

.refinement.d-none {
  display: none; }

@media (min-width: 48rem) {
  .search-col__refinements {
    overflow: hidden;
    -webkit-transition: opacity 213ms ease-out 213ms, visibility 213ms ease-out 213ms, max-width 213ms ease-out, padding 213ms ease-out;
    transition: opacity 213ms ease-out 213ms, visibility 213ms ease-out 213ms, max-width 213ms ease-out, padding 213ms ease-out; }
    .search-col__refinements.set--refinements-hidden-small-up {
      max-width: 0;
      max-height: 100vh;
      padding: 0;
      pointer-events: none;
      -webkit-transition: opacity 107ms ease-out, visibility 107ms ease-out, max-width 213ms ease-out 107ms, padding 213ms ease-out 107ms;
      transition: opacity 107ms ease-out, visibility 107ms ease-out, max-width 213ms ease-out 107ms, padding 213ms ease-out 107ms;
      opacity: 0;
      visibility: hidden; }
  .refinement-bar {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
  .refinement-bar__toggle:not(.set--refinements-hidden-small-up) .refinement-bar__toggle-show {
    display: none; }
  .refinement-bar__toggle.set--refinements-hidden-small-up .refinement-bar__toggle-show {
    display: initial; }
  .refinement-bar__toggle.set--refinements-hidden-small-up .refinement-bar__toggle-hide {
    display: none; }
  .refinement-bar__body {
    padding-bottom: 1.25rem; }
  .refinement {
    border-bottom: solid 0.0625rem #cdcdcd; }
  .refinement__type {
    font-weight: 700; }
  .refinement__content {
    margin-top: 0.85rem; }
  .applied-refinements__list {
    margin-bottom: 1.25rem; } }

@media (max-width: 47.9375rem) {
  .sort-bar,
  .refinement-bar {
    z-index: 10;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 75vh;
    padding-top: 3.75rem;
    padding-bottom: 4.5rem;
    background-color: #FFF;
    opacity: 1;
    visibility: inherit;
    -webkit-transition-property: opacity, visibility, -webkit-transform;
    transition-property: opacity, visibility, -webkit-transform;
    transition-property: opacity, visibility, transform;
    transition-property: opacity, visibility, transform, -webkit-transform;
    -webkit-transition-duration: 213ms;
            transition-duration: 213ms;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out; }
    .sort-bar:not(.set--refinements-shown-small),
    .refinement-bar:not(.set--refinements-shown-small) {
      opacity: 0;
      visibility: hidden;
      -webkit-transform: translate3d(0, 100%, 0);
              transform: translate3d(0, 100%, 0);
      -webkit-transition-duration: 107ms;
              transition-duration: 107ms;
      -webkit-transition-timing-function: ease-in;
              transition-timing-function: ease-in; }
  .refinement-bar__head,
  .refinement-bar__footer {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #FFF; }
  .refinement-bar__head {
    z-index: 1;
    top: 0;
    padding-top: 1.4rem;
    padding-bottom: 1.125rem;
    border-bottom: solid 0.0625rem #cdcdcd; }
  .refinement-bar__footer {
    bottom: 1.125rem; }
  .refinement-bar__body {
    overflow-y: auto;
    max-height: calc(75vh - 8.25rem); }
  .refinement {
    border-top: solid 0.0625rem #cdcdcd; }
  .refinement__type {
    font-weight: 500; }
  .refinement__content {
    padding-bottom: 2rem; }
  .applied-refinements__list {
    margin-bottom: 2.25rem; } }

.top-filter .slick-initialized .slick-slide {
  height: auto; }

.top-filter .top-filter-slide {
  visibility: hidden; }
  .top-filter .top-filter-slide.slick-initialized {
    visibility: visible; }

.top-filter .list-catagory {
  text-align: center; }

.top-filter .size-small .form-check-label {
  max-width: 140px; }

.top-filter .size-small img {
  width: 100%;
  max-width: 140px; }

.top-filter .size-medium .form-check-label {
  max-width: 150px; }

.top-filter .size-medium img {
  width: 100%;
  max-width: 150px; }

.top-filter .size-large .form-check-label {
  max-width: 160px; }

.top-filter .size-large img {
  width: 100%;
  max-width: 160px; }

.top-filter .form-check-label {
  padding: 0;
  text-align: center;
  display: inline-block; }
  .top-filter .form-check-label:before {
    display: none; }
  .top-filter .form-check-label:after {
    display: none; }
  .top-filter .form-check-label img {
    border: 2px solid transparent;
    margin-bottom: 0.5rem; }
  .top-filter .form-check-label.set--checked {
    color: inherit; }
    .top-filter .form-check-label.set--checked img {
      border: 2px solid #14100B;
      border-radius: 4px; }
  .top-filter .form-check-label h4 {
    font-size: 0.75rem; }

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


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