body {
	margin: 0;
	padding: 0;
	background: #262626;
}

.rating {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotateY(180deg);
	display: flex;
}

.rating input {
	display: none;
}

.rating label {
	display: block;
	cursor: pointer;
	width: 30px;
	/*background: #ccc;*/
}

.rating label:before {
	content: '\f005';
	font-family: fontAwesome;
	position: relative;
	display: block;
	font-size: 30px;
	color: #0000FF;
}

.rating label:after {
	content: '\f005';
	font-family: fontAwesome;
	position: absolute;
	display: block;
	font-size: 30px;
	color: #fa0202;
	top: 0px;
	opacity: 0;
	transition: .5s;
	text-shadow: 0 2px 5px rgba(253, 252, 252, 0.5);
}

.rating label:hover:after,
.rating label:hover~label:after,
.rating input:checked~label:after {
	opacity: 1;
}
