#gbform {
	font-size: 1.0em;
	/*line-height: 1.4em;*/
}
#gbform h1 {
	font-size: 1.6em;
	/*line-height: 2em;*/
}
#gbform h2 {
	font-size: 1.2em;
	/*line-height: 2em;*/
}
#gbform p {
	font-size: 1em;
	clear: left;
	/*line-height: 2em;*/
}
#gbform br {
	clear: left;
}
#gbform label {
	width: 120px;
	float: left;
}

#gbformauswahl label {
	width: 120px;
	float: left;
}

#gbform .BEWhead {
	/*background-color: #666666;*/
	padding:5px;
	color: #999999;
}
#gbform .BEWhead .bewertung {
	float: right;
}
#gbform .BEWbody {
	/*background-color: #D6D6D6;*/
	padding: 5px;
	font-size: 1em;
	margin-bottom: 20px;
	border-bottom:1px solid #999999;
}
#gbform .BEWbody .mail {
	text-align: right;
	clear: both;
}
#gbform .BEWbody .bilder {
	/*background-color: #EAEAEA;*/
	font-weight:bold;
	/*padding: 5px;*/
}
#gbform .BEWbody .bilder .bilderanzeige {
	background-color: #FFFFFF;
	padding: 5px;
	border: 1px solid #cccccc;
	border-radius:5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-top: 10px;
}
.neu {
	float: right;
	/*background-color: #0273bb;*/
	background-color:#1d5283;
	margin-bottom:10px;
}
.neu a {
	padding:10px;
	font-size: 1.1em;
	color: #ffffff;
	font-weight:bold;
	text-decoration:none;
	display:block;
}
.neu a:hover {
	padding:10px;
	float: right;
	background-color: #ac5258;
	color: #ffffff;
	font-weight:bold;
	text-decoration:none;
	display:block;
}

.neu input {
	padding:10px;
	font-size: 1.1em;
	color: #ffffff;
	font-weight:bold;
	text-decoration:none;
	display:block;
	background-color:#1d5283;
	border:0;
}
.neu input:hover {
	padding:10px;
	float: right;
	background-color: #ac5258;
	color: #ffffff;
	font-weight:bold;
	text-decoration:none;
	display:block;
	cursor:pointer;
}
#gbform .filter .halb {
	width: 50%;
	float: left;
}
#gbform .filter {
	/*background-color: #0273bb;*/
	/*background-color:#1d5283;*/
	font-size: 0.85em;
	/*color: #FFFFFF;*/
	padding: 10px;
}
#gbformauswahl .inputbox {
	width: 150px;
	background: #fff;
	border: 1px solid #ccc;
	padding: 6px 12px;
	
}
#gbformauswahl #filtern {
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
}

#zentrieren {
	width: 350px;
	height: 180px;
	text-align: center;
	border: 1px solid #000;
	background-color: #CCCCCC;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -175px;
	margin-top: -90px;
	z-index: 1001;
	color: #333333;
	padding: 10px;
	font-size: 13px;
	line-height: 22px;
	visibility: hidden;
 }
 
 #formularDESIGN  {
	border: 1px dashed #999999;
	background-color: #CCCCCC;
	padding-top: 0.5em;
	padding-left: 0.5em;
	margin-top: 1em;
	margin-bottom: 1em;
	background-image: url(bg-form.gif);
	background-repeat: repeat-x;
	padding-right: 0.5em;
}

.sowero-produkt-bewertung{
	margin:5px 0;
}

.sowero-produkt-bewertung span{
	font-size:1.1em;
	display: block;
	float:left;
	margin-left:10px;
	font-weight:bold;
}

.sowero-produkt-bewertung span.small{
	font-size:1.0em;
	display: block;
	float:left;
	margin-left:10px;
	font-weight:normal;
}

.rating {
	display: block;
	float:left;
	height: 20px;
	width: 100px;
}

use {
	&:nth-child(2) {
		transform: translate(20px);
	}
	&:nth-child(3) {
		transform: translate(40px);
	}
	&:nth-child(4) {
		transform: translate(60px);
	}
	&:nth-child(5) {
		transform: translate(80px);
	}
}

.sowero-produkt-bewertung input{
	display: block;
	float:left;
	margin-right:10px;
}

.gbform_hr{
	margin-top: 15px;
	border:0;
	border-bottom:1px solid #999999;
}

.dropdown {
	float:left;
	position: relative;
	font-size: 14px;
	color: #333;
	width:300px;
	
	.dropdown-list {
		padding: 8px;
		background: #fff;
		position: absolute;
		top: 30px;
		left: 2px;
		right: 2px;
		box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .15);
		transform-origin: 50% 0;
		transform: scale(1, 0);
		transition: transform .15s ease-in-out .15s;
		max-height: 66vh;
		overflow-y: scroll;
	}
	  
	.dropdown-option {
		display: block;
		padding:5px 5px;
		opacity: 0;
		transition: opacity .15s ease-in-out;
		width:250px !important;
	}
	
	.dropdown-label {
		display: block;
		height: 16px;
		background: #fff;
		border: 1px solid #ccc;
		padding: 6px 12px;
		line-height: 1;
		cursor: pointer;
		width:95% !important;
		
		&:before {
		  content: "\2BC6";
		  float: right;
		}
	}
	
	&.on {
	   .dropdown-list {
			transform: scale(1, 1);
			transition-delay: 0s;
		  
			.dropdown-option {
				opacity: 1;
				transition-delay: .2s;
			}
		}
		
		.dropdown-label:before {
			content: "\2BC5";
		}
	}
	
	[type="checkbox"] {
		position: relative;
		top: -1px;
		margin-right: 4px;
	}
}

.filter_label{
	line-height:30px;
}