.rating {
	overflow: hidden;
	width: 265px;
	margin: 0 auto;
}
.rating:not(:checked) > input {
	display: none;
}
.rating:not(:checked) > label {
	float: right;
	width: 16px;
	padding: 0;
	cursor: pointer;
	font-size: 16px;
	line-height: 16px;
	color: lightgrey;
	text-shadow: 1px 1px #bbb;
}
.rating:not(:checked) > label:before {
	content: '★';
}
.rating > input:checked ~ label {
	color: gold;
	text-shadow: 1px 1px #c60;
}
.rate-area > label:active {
	position: relative;
}
@media all and (max-width: 482px) {
	.rating {
	display: table-footer-group;
	}
	.rating:not(:checked) > label {
		width: auto;
	}
}