.d_ratingStars {
	display: flex;
	align-content: center;
	justify-content: center;
	margin-bottom: 20px;
}

.d_ratingStar {
	width: 20px;
	height: 20px;
	background: url('star-full.svg');
	background-repeat: no-repeat;
}

.d_ratingStar.star-half {
	background: url('star-half.svg');
}

.d_ratingStar.star-empty {
	background: url('star-empty.svg');
}

.d_ratingStar.star-error {
	background: url('star-error.svg');
}

.d_ratingStar:not(:last-of-type) {
	margin-right: 2px;
}