.rating-teaser {
  padding: 20px;
  background-color: #fff;
  border-radius: 4px;
  margin: 20px 10px;
  max-width: 450px;
}
.rating-teaser__img {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 5px;
  position: relative;
}
.rating-teaser__img:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background-color: #000;
  opacity: 0.2;
}
.rating-teaser__img img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.rating-teaser__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 0 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -10px;
}
.rating-teaser__content > * {
  margin: 10px;
}
.rating-teaser__rating {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50px;
          flex: 1 1 50px
}
.rating-teaser__rating li {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.rating-teaser__rating li:last-child {
  margin-right: 0;
}
.rating-teaser__rating li svg {
  fill: #7b7b7b;
  width: 100%;
  height: 100%;
}
.rating-teaser__rating li.rate-up svg {
  fill: var(--orange);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .rating-teaser__rating li {
    background-image: url(/images/components/icons/star-2.png);
    background-repeat: no-repeat;
    background-position: center;
  }
  .rating-teaser__rating li.rate-up {
    background-image: url(/images/components/icons/star-1.png);
    background-repeat: no-repeat;
    background-position: center;
  }
}
