/************************ product teaser  ***************************/
/*********************** grid gaps ***********************/
/******* teaserItem grid layout since 09.23 *********/
.wsTeaserGrid .carouselItem .carouselContent {
  display: grid;
  gap: 6px 12px;
  line-height: 1.2;
  padding: 36px;
  grid-template-areas: "item1 item3" "item2 item2" "item4 item4" "item5 item5";
}
.wsTeaserGrid .carouselItem .carouselContent .productName {
  min-height: 3em;
}
.wsTeaserGrid .carouselItem .carouselContent .carouselImg {
  height: 180px;
  overflow: hidden;
  justify-self: center;
}
.wsTeaserGrid .carouselItem .carouselContent .carouselImg img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
}
.wsTeaserGrid .carouselItem .carouselContent .productLifeCycle {
  justify-self: right;
}
.wsTeaserGrid .carouselItem .carouselContent .teaserPrice {
  text-align: center;
  min-height: 3em;
  display: grid;
  grid-template-areas: "priceInstead" "priceNormal";
}
.wsTeaserGrid .carouselItem .carouselContent .teaserPrice .priceInstead {
  grid-area: priceInstead;
  min-height: 1.5em;
}
.wsTeaserGrid .carouselItem .carouselContent .teaserPrice .priceNormal {
  grid-area: priceNormal;
}
.wsTeaserGrid .carouselItem .carouselContent .teaserPrice .discount,
.wsTeaserGrid .carouselItem .carouselContent .teaserPrice .vatText {
  display: none;
}
@media (max-width: 1600px) {
  .wsTeaserGrid .carouselItem .carouselContent {
    padding: 24px;
  }
}
@media (max-width: 1024px) {
  .wsTeaserGrid .carouselItem .carouselContent {
    padding: 16px;
  }
}
@media (max-width: 576px) {
  .wsTeaserGrid .carouselItem .carouselContent {
    padding: 12px;
  }
}
.teaserHead {
  line-height: 1.5;
  grid-template-areas: ". item1 item1 item1  item1 item1 item1 item1 item1 item1  item1 item1 item1  .";
}
.teaserHead h2 {
  text-align: center;
  margin: 0;
}
/*** grid layout since 04 2020 ****/
.wsTeaserGrid {
  display: grid;
  gap: 16px;
}
.wsTeaserCol2 {
  grid-template-columns: 1fr 1fr;
}
.wsTeaserCol3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.wsTeaserCol4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
/***** end grid *****/
.wsTeaserContainer {
  text-align: center;
  width: 100%;
  margin: 16px 0 32px 0;
}
.wsTeaser {
  display: inline-block;
  padding: 20px 10px;
  text-align: left;
  overflow: hidden;
  position: relative;
}
.wsTeaserBrand {
  height: 18px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: no-wrap;
}
.wsTeaserImg {
  padding-top: 10px;
  height: 180px;
  max-width: 250px;
  width: 100%;
  margin: auto;
}
.wsTeaserImg img {
  width: auto;
  max-height: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.wsTeaserName {
  width: 100%;
  margin: 4px 0 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wsTeaserText {
  text-align: center;
  margin: 10px 0;
  height: 48px;
  overflow: hidden;
}
.wsTeaser .priceInstead {
  position: relative;
  z-index: 10;
  font-size: 0.9em;
}
.wsTeaserPrice {
  width: 100%;
  height: 45px;
  position: relative;
}
.wsTeaserPrice .price {
  font-weight: bold;
}
.wsTeaserPrice .priceNormal {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.wsTeaserPrice .priceInstead,
.wsTeaserPrice .priceBlock {
  float: right;
}
@media (max-width: 1200px) {
  .wsTeaserCol4 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .wsTeaserCol3,
  .wsTeaserCol4 {
    grid-template-columns: 1fr 1fr;
  }
  .priceLabel {
    display: none;
  }
}
/*@media (max-width: 768px ) {

	.wsTeaserCol3,
	.wsTeaserCol4{
		grid-template-columns:1fr 1fr;
	}

}*/
@media (max-width: 576px) {
  .teaserHead {
    grid-template-areas: ". item1 item1 item1  item1 item1 item1  .";
  }
  .wsTeaserCol3,
  .wsTeaserCol4 {
    grid-template-columns: 1fr;
  }
}
