/**
 * @file
 * Product style TEASER.
 */
/* 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.
 */
/* HEADING */
/* TEXT & CONTENT */
.product-teaser .product-code, .product-teaser-list__title {
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

.product-teaser .product-code, .product-teaser-list__title {
  font-size: 0.875rem;
  line-height: 1.14;
}

.product-teaser-list__title {
  font-weight: 700;
}

.product-teaser .product-code__value {
  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.
 */
.product-teaser__link {
  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;
  position: relative;
  padding-right: 1.5rem;
  color: #1c1c1c;
  text-decoration: none;
}
.product-teaser__link::after {
  position: absolute;
  top: -0.2rem;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  background: url("../../../../images/icons/icon-triangle--black.svg");
  background-position: center;
}

.product-teaser:hover .product-teaser__link, .product-teaser__link:hover {
  color: #1c1c1c;
}
.product-teaser:hover .product-teaser__link::after, .product-teaser__link:hover::after {
  right: -0.25rem;
  transition: right 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation-name: slideOutRight;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

/**
 * @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 */
.product-teaser {
  max-width: 20rem;
  height: 100%;
  padding: 1.5rem 1rem;
}
.product-teaser__title-info {
  margin-bottom: 2.5rem;
  color: #000;
}
.product-teaser__title-link, .product-teaser__title-link:hover {
  color: #1c1c1c;
  text-decoration: none;
}
.product-teaser__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.product-teaser__image {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.product-teaser__image img {
  transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  width: 10rem;
  height: auto;
}
.product-teaser__cta {
  text-align: right;
}
.product-teaser__wr-link {
  text-decoration: none;
}
.product-teaser:hover .product-teaser__title {
  color: #008444;
  transition: color 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.product-teaser:hover .product-teaser__image img {
  transform: translateZ(0) scale(1.1, 1.1);
}
.product-teaser-list {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.product-teaser-list__content {
  align-items: center;
}
.product-teaser-list__image img {
  width: 100%;
  height: auto;
}
.product-teaser-list__title a {
  color: #000;
  text-decoration: none;
}
.product-teaser-list:hover .product-teaser-list__title a {
  color: #008444;
  transition: color 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.product-teaser-list:hover .product-teaser-list__image img {
  transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transform: scale(1.05);
}

/*# sourceMappingURL=components.product-teaser.css.map */
