/*----------------------------------------------------- Rating Summary --------------------------------------------*/
.RatingSummarySection {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 50px;
}
.RatingSummarySection h1 {
  margin: 0;
  margin-right: 30px;
}
.RatingContainer {
  display: flex;
  flex-wrap: nowrap;
}
.RatingContainer .StarContainer {
  width: 30px;
  height: 30px;
  background-image: url("../images/references/icon_star_grey.svg");
  background-repeat: no-repeat;
  background-position: cover;
}
/*----------------------------------------------------- Quote Tiles --------------------------------------------*/
.QuoteTilesContainer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  float: left;
  width: 33%;
}
.QuoteTile {
  display: inline-block;
  margin: 0 0 1em;
  width: 90%;
  background-color: #f5f5f5;
  border-radius: 7px;
  margin-right: 40px;
  margin-bottom: 80px;
  padding: 20px;
  position: relative;
}
.QuoteTileContent {}
.QuoteTileContent h3 {
  font-weight: bold;
}
.QuoteTileSource {
  position: absolute;
  height: 40px;
  font-size: 14px;
  color: #000000;
  left: 80px;
  bottom: -50px;
}
.QuoteTileSource::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 50px solid #f5f5f5;
  border-left: 40px solid transparent;
  left: -55px;
  top: -10px;
}
.QuoteTileRating {
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  bottom: -30px;
  right: 10px;
}
.StarContainer {
  width: 20px;
  height: 20px;
  background-image: url("../images/references/icon_star_grey.svg");
  background-repeat: no-repeat;
  background-position: cover;
}
.StarContainer.Full {
  background-image: url("../images/references/icon_star_yellow.svg");
}
.StarContainer.Half {
  background-image: url("../images/references/icon_star_half-yellow.svg");
}
#YelpReviewsPanel .StarContainer.Full {
  background-image: url("../images/references/icon_star_red.svg");
}
#YelpReviewsPanel .StarContainer.Half {
  background-image: url("../images/references/icon_star_half-red.svg");
}
#AvvoReviewsPanel .StarContainer.Full {
  background-image: url("../images/references/icon_star_blue.svg");
}
#AvvoReviewsPanel .StarContainer.Half {
  background-image: url("../images/references/icon_star_half-blue.svg");
}