.game-rating-wrapper {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
  user-select: none;
}

.hearts-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.bottom-border {
  border-bottom: solid rgba(var(--color-button));
}

.game-type {
  margin: 0;
  text-transform: uppercase;
  padding-left: 10px;
  border-right: solid rgba(var(--color-button));
}

.empty-heart {
  mask-image: url("./empty-heart.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: cover;
  width: 20px;
  height: 19px;
  display: block !important;
  background-color: rgba(var(--color-button));
}

.fill-heart {
  mask-image: url("./fill-heart.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: cover;
  width: 20px;
  height: 19px;
  display: block !important;
  background-color: rgba(var(--color-button));
}

.ratings-header {
  text-transform: uppercase;
  background-color: rgba(250, 30, 78, 0.13);
  display: flex;
  color: rgba(var(--color-button));
  align-items: center;
  gap: 20px;
  width: 100%;
  cursor: pointer;
  padding-left: 10px;
}

#product-ratings > .game-rating-wrapper bottom-border:last-child * {
  border-bottom: none;
}

#product-ratings {
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}
