/* css for Uber Property rating system */

.up-comments-rating {
	border: none;
	padding: 0;
	margin-left: 0;
	margin-top: 0;
}

.up-rating label {
	display: inline-block;
}

.up-rating-container {
	/* remove inline-block whitespace */
	font-size: 0;
	/* flip the order so we can use the + and ~ combinators */
	unicode-bidi: bidi-override;
	direction: rtl;
}

.up-rating-container * {
	font-size: 1.4rem;
}

.up-rating-container > input {
	display: none;
}

.up-rating-container > input + label {
	/* only enough room for the star */
	font-family: 'dashicons';
	display: inline-block;
	overflow: hidden;
	text-indent: 9999px;
	width: 1.2em;
	white-space: nowrap;
	cursor: pointer;
	margin: 0;
}

.up-rating-container > input + label:before {
	display: inline-block;
	text-indent: -9999px;
	content: "\f154";
	color: #888;
	font-size: 1.2em;
}

.up-rating-container > input:checked ~ label:before,
.up-rating-container > input + label:hover ~ label:before,
.up-rating-container > input + label:hover:before {
	content: "\f155";
	color: #e52;
	text-shadow: 0 0 1px #333;
}

.up-rating-container > .star-cb-clear + label {
	text-indent: -9999px;
	width: .5em;
	margin-left: -.5em;
}

.up-rating-container > .star-cb-clear + label:before {
	width: .5em;
}

.up-rating-container:hover > input + label:before {
	content: "\f154";
	color: #888;
	text-shadow: none;
}

.up-rating-container:hover > input + label:hover ~ label:before,
.up-rating-container:hover > input + label:hover:before {
	content: "\f155";
	color: #e52;
	text-shadow: 0 0 1px #333;
}

.up-rated-in-comment-wrap {
	
}

.up-average-rating {
	margin-top: 0.5em;
}

.up-average-rating .up-rating-out-of {
	padding-left: 0.5em;
}

.up-rated-in-comment-wrap > div, 
.up-average-rating > div {
	line-height: 1;
	display: inline-block;
	vertical-align: middle;
}

ol.comment-list #commentform .up-comments-rating-label,  
ol.comment-list #commentform .up-comments-rating {
	display: none;
}