.RatingScoreView {
	display: flex;
}
.RatingScoreView .rating,
.RatingScoreView .full-rating .stars {
	display: flex;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
	align-items: flex-start;
	gap: 3px;

	background: -webkit-linear-gradient(
			var(--color-gold_01),
			var(--color-gold_02)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: 'NexaBold';
}

.RatingScoreView .full-rating .stars {
	gap: 0;
	position: relative;
}
.RatingScoreView .full-rating .inactive {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 16px;
	background-color: #fff;
	opacity: 0.5;
}