@charset "UTF-8";
/**
 * CONTENTS
 *
 * SETTINGS
 * Config...............Project-level configuration and feature switches.
 * Core.................inuitcss’ core and setup settings.
 * Global...............Project-wide variables and settings.
 *
 * TOOLS
 * Font-size............A mixin which guarantees baseline-friendly line-heights.
 * Clearfix.............Micro clearfix mixin.
 * Hidden...............Mixin for hiding elements.
 * Sass MQ..............inuitcss’ default media query manager.
 *
 * GENERIC
 * Box-sizing...........Better default `box-sizing`.
 * Normalize.css........A level playing field using @necolas’ Normalize.css.
 * Reset................A tiny reset to complement Normalize.css.
 * Shared...............Sensibly and tersely share some global commonalities
 *                      (particularly useful when managing vertical rhythm).
 *
 * ELEMENTS
 * Page.................Set up our document’s default `font-size` and
 *                      `line-height`.
 * Headings.............Very minimal (i.e. only font-size information) for
 *                      headings 1 through 6.
 * Images...............Base image styles.
 * Tables...............Simple table styles.
 *
 * OBJECTS
 * Wrapper..............Page constraint object.
 * Layout...............Generic layout module.
 * Media................Image- and text-like content side by side. The
 *                      poster-child of OOCSS.
 * Flag.................Table-layout-based advancement on the Media object.
 * List-bare............Lists with no bullets or indents.
 * List-inline..........A list whose items all site in a line.
 * Box..................Simple boxing abstraction.
 * Block................Image-on-top-of-text object.
 * Ratio................A container for maintaining aspect ratio of content.
 * Crop.................Provide a cropping context for media (images, etc.).
 * Table................Classes for manipulating `table`s.
 * Pack.................Pack items into available horizontal space.
 *
 * COMPONENTS
 * Buttons..............An example button component, and how it fits into the
 *                      inuitcss framework.
 *
 * UTILITIES
 * Clearfix.............Bind our clearfix onto a utility class.
 * Widths...............Simple width helper classes.
 * Headings.............Reassigning our heading styles to helper classes.
 * Spacings.............Nudge bits of the DOM around with these spacing
 *                      classes.
 * Responsive-Spacings..Enhances the function of normal spacings for
 *                      responsive usage.
 * Print................Reset-like styles taken from the HTML5 Boilerplate.
 * Hide.................Helper classes to hide content
 */
/* General
========================================================================== */
/* General
========================================================================== */
/* Fractions
========================================================================== */
/* Ratios
========================================================================== */
/* Breakpoints
========================================================================== */
/*==========================================================================
  #COLORS
  ========================================================================== */
/* Color Palette
========================================================================== */
/* Color Options
========================================================================== */
.l-layout--product-catalog #sidebar--left,
.path-products #sidebar--left,
.path-taxonomy #sidebar--left {
  order: -1;
}
@media (min-width: 46.25em) {
  .l-layout--product-catalog #sidebar--left,
.path-products #sidebar--left,
.path-taxonomy #sidebar--left {
    order: -1;
  }
}

#catalog-page {
  background-color: #eae6f2;
  height: 100%;
}

.c-product-card {
  margin: 6px;
  padding: 12px;
  text-align: center;
  color: var(--primary-color);
  background-color: var(--white-color);
  box-shadow: 0 0 0 0 #ccc;
  height: 100%;
  position: relative;
  border-radius: 0.3rem;
  display: flex;
  flex-direction: column;
}
.c-product-card:hover {
  box-shadow: 0 0.5rem 0.5rem 0 #ccc;
  transition: all 300ms ease-in-out;
}
.c-product-card__image {
  margin: auto;
  width: 100%;
}
.c-product-card__title {
  margin: 0;
  font-size: 1rem;
  flex-grow: 1;
  height: unset !important;
}
@media (min-width: 46.25em) {
  .c-product-card__title {
    font-size: 1rem;
  }
}
@media (min-width: 81.25em) {
  .c-product-card__title {
    font-size: 1.25rem;
  }
}
.c-product-card__offers {
  position: absolute;
  max-width: 65px;
  top: 6px;
  right: 6px;
  z-index: 1;
}

.c-catalog-header {
  background-color: #fff;
  border-radius: 0.3rem;
  margin: 6px 0 -12px 0;
  padding: 6px;
}
@media (min-width: 61.25em) {
  .c-catalog-header {
    margin: 0px 0px -12px 0px;
  }
}
@media (max-width: 46.24em) {
  .c-catalog-header__title {
    font-size: 1rem;
  }
  .c-catalog-header__title h1 {
    font-size: 1rem;
  }
}
.c-catalog-header__description {
  font-size: 0.75rem;
  max-height: initial;
}
.c-catalog-header__description:after {
  position: initial;
}
.c-catalog-header__description--hidden {
  overflow: hidden;
  max-height: 5rem;
  position: relative;
}
.c-catalog-header__description--hidden:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
  content: "";
}
.c-catalog-header__description p {
  margin-bottom: 12px;
}
.c-catalog-header__show-more-less {
  text-align: right;
  font-size: 0.75rem;
  font-weight: bold;
}
.c-catalog-header__show-more-less .less,
.c-catalog-header__show-more-less .more {
  display: none;
}
.c-catalog-header__controls {
  padding: 12px 0;
  border-top: 0.1rem solid var(--light-grey-color);
  border-bottom: 0.1rem solid var(--light-grey-color);
}
.c-catalog-header__controls form {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.c-catalog-header__controls form .form-actions {
  display: none;
}
.c-catalog-header__controls form > div {
  flex: 1 1 auto;
}
.c-catalog-header__controls form > div:nth-child(n+2) {
  text-align: right;
}
.c-catalog-header .button.form-submit {
  display: none;
}

.c-product-facets {
  white-space: nowrap;
}
@media (max-width: 46.24em) {
  .c-product-facets {
    display: none;
  }
}
.c-product-facets h1,
.c-product-facets h2,
.c-product-facets h3,
.c-product-facets h4,
.c-product-facets h5 {
  margin: 0;
}
.c-product-facets .c-product-facets__header {
  cursor: pointer;
}
.c-product-facets .c-product-facets__content {
  background-color: var(--white-color);
}

@media (min-width: 61.25em) {
  .c-catalog-header .fa-filter {
    display: none;
  }
}
.c-product-rating {
  position: relative;
  display: inline-block;
}
.c-product-rating__stars {
  color: var(--primary-color);
}
.c-product-rating__stars--overlay {
  position: absolute;
  left: 0;
  top: 0;
  clip-path: inset(0 40% 0 0);
}
.c-product-rating__score {
  font-size: 0.75rem;
}

.c-product-price__main {
  color: var(--black-color);
}
.c-product-price__rrp {
  display: block;
  color: var(--black-color);
  filter: brightness(50%);
}
.c-product-price__strike {
  position: relative;
  display: inline-block;
}
.c-product-price__strike::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 45%;
  right: 0;
  border-bottom: 0.1rem solid red;
  transform: rotate(-10deg);
}

.c-product-offers {
  display: flex;
  flex-direction: column;
}
.c-product-offers__offer {
  display: flex;
}

/*# sourceMappingURL=product-list.css.map */
