/* css für sterne bewertung */
@font-face {
	font-family: "dashicons";
	src: url("../fonts/dashicons.eot");
}

@font-face {
	font-family: "dashicons";
	src: url(data:application/x-font-woff;charset=utf-8;base64,/* !! Large amount of data removed, see wp-includes/css/dashicons.css for complete data !! */) format("woff"),
		url("../fonts/dashicons.ttf") format("truetype"),
		url("../fonts/dashicons.svg#dashicons") format("svg");
	font-weight: normal;
	font-style: normal;
}

.star-rating .star-full:before {
    content: "\f155";
}

.star-rating .star-half:before {
    content: "\f459";
}

.star-rating .star-empty:before {
    content: "\f154";
}

.star-rating .star {
	padding: 5px 0 0 5px;
    color: #FFBB00;
    display: inline-block;
    font-family: dashicons;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    height: 30px;
    line-height: 1;
    text-align: center;
    text-decoration: inherit;
    vertical-align: top;
    width: 30px;
}

/* ende css für sterne bewertung */

/* unser container */
.rating-container {
	display:none;
	overflow:hidden;
	/* Rahmen durchgezogen mit 1 Pixel under der Farbe d5d5d5 */
	border: 1px solid #d5d5d5;
	border-radius: 5px;
	margin-bottom: 20px;
	-webkit-box-shadow: 2px 2px 3px 0px rgba(122, 125, 127, 0.75);
	-moz-box-shadow:    2px 2px 3px 0px rgba(122, 125, 127, 0.75);
	box-shadow:         2px 2px 3px 0px rgba(122, 125, 127, 0.75);
}

.rating-title {
	font-size: 200%;
	font-weight: bold;
	/* innerer Abstand oben, rechts, unten, links */
	padding: 10px 5px 10px 5px;
}

.rating-title-bg {
	background-color: #e6e6e6;
}

/*
.rating-image {
	float: left;
	width:150px;
	-webkit-box-shadow: 2px 2px 3px 0px rgba(122, 125, 127, 0.75);
	-moz-box-shadow:    2px 2px 3px 0px rgba(122, 125, 127, 0.75);
	box-shadow:         2px 2px 3px 0px rgba(122, 125, 127, 0.75);
	margin: 5px 0 10px 0;
}

.image-transition {
	margin-left:100px;
	margin-top: 30px;
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	-o-transform: scale(2);
	transform: scale(2);
}
*/

.rating-image {
	width:35%;
}

.rating-pro, .rating-contra {
	float:left;
	margin-left: 5%;
	width: 45%;
}

.pro-heading, .contra-heading {
	margin-top: 10px;
	font-size: 20px;
	font-weight: bold;	
}

.middle {
	display: flex;
	flex-flow: row;
}

/* beeinhaltet die Sterne-und Balkenbewertung und den Button */
.bottom {
	float:left;
	width: 100%;
	border-top: 1px solid #d5d5d5;
	
}

.rating-percent-number {
	float:left;
	margin: 6px 0 0 20px;
	font-size: 120%;
	font-weight: bold;
}

.rating-percent {
	float: left;
	margin: 15px 0 0 10px;
	width:45%;
}

.rating-bar-bg {
	width:100%;
	height:15px;
	background-color: #D7DBDC;
	border: 0px solid #B7B9BA;
	border-radius: 5px;
}

.rating-bar {
	height: 15px;
	border-radius: 5px;
	background-color: green;
}

.rating-result {
	padding: 5px 0 0 5px;
	font-size: 20px;
	font-weight: bold;
}

a.button-btn1 {
	float:right;	
	text-decoration: none !important;
	font-weight: bold;
	margin: 0 10px 10px 0;
	color: rgb(0, 0, 0);
	font-size: 22px;
	padding: 5px 10px 5px 10px;
	text-shadow: 0px 1px 0px rgba(30, 30, 30, 0.82);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	/*
	background: rgb(255, 141, 12);
	background: -moz-linear-gradient(90deg, rgb(255, 141, 12) 100%, rgb(169, 190, 146) 70%);
	background: -webkit-linear-gradient(90deg, rgb(255, 141, 12) 100%, rgb(169, 190, 146) 70%);
	background: -o-linear-gradient(90deg, rgb(255, 141, 12) 100%, rgb(169, 190, 146) 70%);
	background: -ms-linear-gradient(90deg, rgb(255, 141, 12) 100%, rgb(169, 190, 146) 70%);
	background: linear-gradient(0deg, rgb(255, 141, 12) 100%, rgb(169, 190, 146) 70%);
	*/
	-webkit-box-shadow: 0px 2px 1px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    0px 2px 1px rgba(50, 50, 50, 0.75);
	box-shadow:         0px 2px 1px rgba(50, 50, 50, 0.75);
}

a.button-btn1:hover {
	color: #fff;
}

@media only screen and (max-width: 500px) {

	.middle {
		display: flex;
		flex-flow: column;
	}
	
	.rating-pro, .rating-contra {
		width: 100%;
	}

}

@media only screen and (max-width: 450px) {
	
	a.button-btn1 {
		float:left;
		margin: 30px 0 10px 5px;
	}

}





