/* CSS 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 {
	float: left;
}
 
.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: 40px;
    line-height: 1;
    text-align: center;
    text-decoration: inherit;
    vertical-align: top;
    width: 30px;
}

/* Ende CSS Sterne Bewertung */

.rating-container {
	display: none;
	overflow: hidden;
	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;
	padding: 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: 200px;
	height: 200px;
	-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;
}

.rating-img {
	width: 200px;
	height: 200px;
}

.rating-arguments {
	width: 73%;
	margin: 5px;
}

.rating-pro, .rating-contra {
	float: left;
	margin-left: 5%;
	width: 45%;
}

.pro-heading, .contra-heading {
	margin-top: 10px;
	font-size: 20px;
	font-weight: bold;
}

.review {
	padding: 0 10px 10px 10px;
}

.middle {
	display: flex;
	flex-flow: row;
}

/* beinhaltet Sterne- und Balkenbewertung und den Button */
.bottom {
	float: left;
	width: 100%;
	border-top: 1px solid #d5d5d5;
	padding: 0 10px 0 10px;
}

.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: #ccc;
	border: 0px solid #ddd;
	border-radius: 5px;
}

.rating-bar {
	height: 15px;
	border-radius: 5px;
	background-color: green;
}

.rating-result {
	font-size: 20px;
	font-weight: bold;
	padding: 10px 0 0 0;
}

a.button-btn1 {
	float: right;
	display: block;
	width: auto;
	margin: -4px 10px 10px 0;
	overflow: hidden;
    position: relative;
    text-decoration: none;
    box-sizing: border-box;
    font-size: 20px;
    font-weight: normal;
    box-shadow: 0 9px 18px rgba(0,0,0,0.2) !important;
    -webkit-box-shadow: 0 9px 18px rgba(0,0,0,0.2) !important;
    -moz-box-shadow: 0 9px 18px rgba(0,0,0,0.2) !important;
    text-align: center;
    border-radius: 50px;
    padding: 10px 40px;
    color: black;
    background-color: #f0c14b;
}

@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-top: 30px 0 10px 5px;
	}

}