.rating-container {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 24px;
}

.total-rating {
	font-size: 12px;
	opacity: 0.55;
	align-self: start;
	margin-left: 24px;
}

.rating-value {
	align-self: center;
	font-size: 56px;
}

.stars {
	color: var(--gp-star-color);
	font-size: 18px;
	display: flex;
	justify-content: center;
}

.progress-bars {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.rate-container {
	width: 33%;
	align-items: center;
	display: flex;
	flex-direction: column;
}

.bar-wrapper {
	align-self: center;
	display: flex;
	gap: 12px;
	width: 80%;
}

.bar-wrapper p {
	font-size: 12px;
	width: 12px;
}

.bar {
	border-radius: 8px;
	align-self: stretch;
	justify-self: stretch;
	flex-grow: 1;
	position: relative;
	width: 100%;
	height: 8px;
	background-color: var(--gp-border-medium);
	margin-top: 5px;
}

.fill {
	border-radius: 8px;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: var(--gp-primary);
}
