/**
 * @file
 * Search common results style.
 */
/* stylelint-disable scss/at-import-partial-extension */
/* stylelint-disable scss/at-import-partial-extension */ /**
 * @file
 * Aspect ratio mixins.
 */
/**
 * @file
 * Centering mixin.
 *
 * Center an element orizontally, vertically or both, assuming the parent
 * element has relative or absolute position.
 * https://css-tricks.com/snippets/sass/centering-mixin/
 */
/**
 * @file
 * Globally used mixins and functions.
 *
 * Here you can add your custom SASS mixins or functions.
 */
/**
 * @file
 * Globally tools for images.
 */
/* stylelint-enable scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/* stylelint-disable-line scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/**
 * @file
 * Shadows variables.
 */
/**
 * @file
 * Animations elements.
 */
@keyframes slideOutRight {
  from {
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(5px, 0, 0);
  }
}
@keyframes selectedElementOpacity {
  0% {
    opacity: 100%;
  }
  10% {
    opacity: 60%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes opacityDecrease {
  from {
    opacity: 100%;
  }
  to {
    opacity: 60%;
  }
}
@keyframes selectedElementPaddingLeft {
  0% {
    padding-left: 0;
  }
  40% {
    padding-left: 0.75rem;
  }
  100% {
    padding-left: 0;
  }
}
@keyframes slideInFromRight {
  from {
    visibility: visible;
    transform: translate3d(32px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
/**
 * @file
 * All stuff for typography.
 */
.elements-results__count {
  font-family: var(--heading-font);
  font-display: optional;
}

/* HEADING */
/* TEXT & CONTENT */
.elements-results__label-inside {
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

.elements-results__count {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  line-height: 1.14;
  letter-spacing: 3.5px;
}

.elements-results__reset a {
  font-family: var(--font-family-base);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  line-height: 1.14;
  letter-spacing: normal;
}

/**
 * @file
 * Buttons elements.
 *
 * Style for buttons
 */
/**
 * @file
 * Variables for links style.
 */
/**
 * @file
 * Background elements style.
 */
/**
 * @file
 * Elements for Video.
 */
/**
 * @file
 * Cards variables element style.
 */
/**
 * @file
 * Forms variables element style.
 */
/* INLINE SEARCH FORM. */
/**
 * @file
 * Search, common elements style.
 */
/**
 * @file
 * Accordion elements variables.
 */
/* stylelint-enable scss/at-import-partial-extension */
/* stylelint-disable-line scss/at-import-partial-extension */
.elements-results__intro {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  text-align: center;
}
@media (min-width: 1440px) {
  .elements-results__searched {
    font-family: var(--font-family-base);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    font-stretch: normal;
    line-height: 32px;
    letter-spacing: normal;
  }
}
.elements-results__reset {
  margin-top: 0.5rem;
}
.elements-results__reset a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  color: #a5a5a5;
  text-decoration: none;
}
.elements-results__reset a:hover {
  color: #575757;
}
.elements-results__reset a:hover img {
  animation-name: slideOutRight;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
.elements-results__reset-label {
  margin-right: 0.5rem;
}
.elements-results__count {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-transform: uppercase;
}
@media (min-width: 1440px) {
  .elements-results__count {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.elements-results__filters .products-search-facets-form {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .elements-results__filters .products-search-facets-form {
    margin-bottom: 1rem;
  }
}
.elements-results__filters .custom-select-views-exposed-filters-wrapper {
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  .elements-results__filters .custom-select-views-exposed-filters-wrapper {
    margin-bottom: 0.5rem;
  }
}
.elements-results__label-inside {
  margin-right: 1rem;
}
@media (max-width: 767.98px) {
  .elements-results__label-inside {
    display: none;
  }
}
.elements-results__items {
  min-height: 25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .elements-results__items {
    background-color: #f5f5f5;
  }
}
.elements-results__product-item {
  margin-bottom: 1rem;
}
.elements-results__product-item .product-teaser {
  max-width: unset;
}
@media (min-width: 768px) {
  .elements-results__header {
    border-bottom: 1px solid #ededed;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
}

/*# sourceMappingURL=components.search-results.css.map */
