.review-card {
	border: 1px solid var(--card-border-color);
	border-radius: 5px;
	max-height: 424px;
	display: block;
	color: #000000;
}
.review-user-name {
	font-size: 20px;
}

.review-stars{
	display: flex;
	justify-content: center;
}

.review-stars .star {
	font-size: 35px;
	color: #FDC530;
}
.review-stars .star.empty {
	color: lightgray;
}

.review-text {
	font-size: 15px;
	line-height: 18px;
	max-height: 195px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 10;
	-webkit-box-orient: vertical;
	box-sizing: border-box;
}
.review-card:hover {
	cursor: pointer;
	box-shadow: 3px 7px 20px -8px rgb(0, 0, 0, 0.7);
	transition: all .3s;
	color: #000000;
	text-decoration: none;
}

