.rating-vote {
	display: flex;
	align-items: center;
	gap: 5px;
	font-weight: 400;
	font-size: 12px;
	text-align: center;
	color: #535353;
}
.theme-black .rating-vote {
	color: #8c8c8c;
}
.rating-vote-plus:hover,
.rating-vote-minus:hover {
	cursor: pointer;
}
.theme-black .rating-vote-plus svg path,
.theme-black .rating-vote-plus svg path {
	stroke: #8c8c8c;
}
.rating-vote-plus:hover svg path,
.rating-vote-plus.rating-vote-plus-active svg path {
	stroke: #DC2E2E;
	fill: #DC2E2E;
}
.rating-vote-minus {
	display: none;
}
.rating-vote-plus {
	display: flex;
}
.rating-vote-result-minus::before {
	content: '-';
}