/* css für Sternebewertung */
@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 Sternebewertung*/



/* Unser Container */
.rating-container {
	display: none;
	/* Alles verstecken, was ausserhalb des Container ist. z.B. wenn das bild vergrößert wird*/
	overflow: hidden;
	
	border: 1px solid #d5d5d5;
	border-radius: 5px;
	margin-bottom: 20px;
	
		/* Erstellt mit css3gen.com */
	-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);
}

/* Hintergrundfarbe Titel-Zeile */
.rating-title-bg{
	background-color: #e6e6e6;
}

/* Titel Text */
.rating-title{
	font-size: 200%;
	padding: 10px 5px 10px 5px;
}

.rating-image-and-arguments{
	width:100%;
}
.rating-image{
	float: left;
	width: 35%;
	
	/*width: 150px;
	height: 200px;
	
	/* Erstellt mit css3gen.com 
	-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{
	padding-top: 45px;
	padding-left: 60px;
	
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
	
} 

.rating-image-class{
	width: 150px;
	max-width:250px;
	max-height:250px;
	
	-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;
}

.rating-arguments{
	float: right;
	width: 65%;
	
}

.rating-pro, .rating-contra{
	float: left;
	margin-left: 5%;
	width: 45%;
}

.pro-heading, .contra-heading{
	margin-top: 10px;
	font-size: 20px;
	font-weight: bold;
}

/* Beinhaltet die Sterne und Balken bewertung 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;
	width: 45%;
	margin: 15px 0 0 10px;
}

.rating-bar-bg {
	width: 100%;
	height: 15px;
	background-color: #d7dbdc;
	border: 1px solid #b7b9ba;
	border-radius: 5px;
}

.rating-bar {
	height: 14px;
	border-radius: 4px;
	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: #000000 !important;
	font-size: 22px;
	padding: 10px;
	text-shadow: 0px 0px 0px rgba(30, 30, 30, 0.8);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	/*background: rgb(244, 184, 44);
	background: -moz-linear-gradient(90deg, rgb(244, 184, 44) 0%, rgb(244, 184, 44) 0%);
	background: -webkit-linear-gradient(90deg, rgb(244, 184, 44) 0%, rgb(244, 184, 44) 0%);
	background: -o-linear-gradient(90deg, rgb(244, 184, 44) 0%, rgb(244, 184, 44) 0%);
	background: -ms-linear-gradient(90deg, rgb(244, 184, 44) 0%, rgb(244, 184, 44) 0%);
	background: linear-gradient(0deg, rgb(244, 184, 44) 0%, rgb(244, 184, 44) 0%); */
	-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: #ffffff !important;
}

@media only screen and (max-width: 500px) {
	
	.rating-image{
		width: 100%;	
	}
	.rating-image-class{
		margin: 0;
	}
	
	.rating-arguments{
		float:left;		
		margin: 5px 0 0 0;
		width: 100%;
		
	}
	
	.rating-pro, .rating-contra{
		clear:both;

	}
	
	.image-transition{
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	
}

}

@media only screen and (max-width: 450px) {
	
	a.button-btn1{
		float: left;
		margin: 30px 0 5px 5px;
	}
	
	
}

















