.item-favo {
	width: 24px;
	height: 24px;
	margin: 10px 20px;
	background-image: url(../img/review/favourite_thin.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.item-favo-on {
	background-image: url(../img/review/favourite.png);
}
.item-name {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.7rem;
	padding: 0 20px;
}
.item-price {
	display: flex;
	align-items: flex-end;
	gap: 4px;
	font-size: 0.8rem;
	padding: 0 20px;
}
.item-price span {
	font-size: 0.5rem;
}
.item-label {
	font-size: 0.8rem;
	padding: 10px 20px 5px 20px;
}
.item-text {
	font-size: 0.7rem;
	padding: 0 20px 5px 20px;
	overflow: hidden;
	word-break: break-all;
}
.item-cart {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.6rem;
	padding: 10px 20px 0 20px;
}
.item-count-btn {
	display: flex;
	align-items: center;
	font-size: 0.6rem;
	gap: 12px;
}
.item-count-btn div:nth-child(2) {
	width: 24px;
	height: 24px;
	background-image: url(../img/plus_minus/minus.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.item-count-btn div:nth-child(3) {
	font-size: 1rem;
}
.item-count-btn div:nth-child(4) {
	width: 24px;
	height: 24px;
	background-image: url(../img/plus_minus/plus.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.item-cart-caution {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.6rem;
	padding: 10px 20px 0 20px;
}
.item-reviews {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 10px 20px 0 20px;
}
.item-reviews {
	font-size: 0.6rem;
}
.item-reviews .stars {
	display: flex;
	align-items: center;
}
.item-reviews .stars div {
	
}
.item-reviews .btn {
	background: black;
	color: white;
	font-size: 0.4rem;
	padding: 2px 8px;
	border-radius: 2px;
}
.item-review {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 0 20px;
	font-size: 0.6rem;
	gap: 4px;
	margin-bottom: 20px;
}
.item-review .stars {
	display: flex;
	align-items: center;
}
.item-review .stars div {
	
}
.item-review .name {
}
.item-review .account {
}
.item-review .report {
	opacity: 0.6;
}