@charset "UTF-8";
/* CSS Document */
	
	
/* Radio Button und Checkbox Styles */
/* Formulare Standard Styles überschreiben */
input {
  	-webkit-appearance: none;
  	-moz-appearance: none;
  	appearance: none;
  	border:none;
  	border-radius: 0;
  	font-size: 1em;
	width: 95%;
	} 
/* Formulare Standard Styles überschreiben für ie8 */
input[type='checkbox'],
input[type='radio'] {
  	width:auto;
  	float:left;
  	margin-right: .75em;
  	background:transparent;
  	border:none;
	}
input[type='checkbox']:checked,
input[type='checkbox']:not(:checked),
input[type='radio']:checked,
input[type='radio']:not(:checked) {
  	background: transparent;
  	position: relative;
  	visibility: hidden;
  	margin:0;
  	padding:0;
	}
input[type='checkbox'] + label,
input[type='radio'] + label {
  	cursor: pointer;
	}
/* Formulare neu aufbauen */
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	padding: 0.3em 0.7em 0.3em 0.7em;
	background-size: 35px;
	background-position: 97% 50%;
	background-repeat: no-repeat;
	margin: 0 0 10px 0;
	box-sizing: border-box;
	}
input {
	padding: 0.3em 0.7em 0.3em 0.7em;
	width: 95%;
	margin: 0 0 10px 0;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 17px;						/* Schriftgröße */	
	border: solid 0 #000;					/* Border: Art/Stärke/Farbe */
	background-color: rgb(200,207,214);	/* Hintergrundfarbe */	
	color: #000;							/* Schriftfarbe */
	border-radius: 3px;						/* Border Rundung */				/* " */
	transition: all  0.5s ease;
	-webkit-transition: all 0.5s ease;
	}
input[type="submit"] {
	padding: 0.3em 0.7em 0.3em 0.7em;
	width: 95%;
	margin: 0 0 0 0;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: all  0.5s ease;
	-webkit-transition: all 0.5s ease;
	font-size: 17px;						/* Schriftgröße */
	background-color: #fffff;	/* Hintergrundfarbe */
	color: #fff;							/* Schriftfarbe */
	border: solid 0 #000;					/* Border: Art/Stärke/Farbe */
	cursor: auto;
	-webkit-border-radius:0;
	-moz-border-radius: 0;
	border-radius: 0;
	}
input:hover {
	background-color: rgb(155,120,60);		/* Hintergrundfarbe */
	color: #fff;
	}
textarea { width: 95%; }	
	
button[type="submit"] {
	padding: 0.3em 0.7em 0.3em 0.7em;
	width: 95%;
	margin: 0 0 0 0;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: all  0.5s ease;
	-webkit-transition: all 0.5s ease;
	font-size: 17px;						/* Schriftgröße */
	background-color: rgb(65,95,110);	/* Hintergrundfarbe */
	color: #fff;							/* Schriftfarbe */
	border: solid 0 #000;					/* Border: Art/Stärke/Farbe */
	cursor: auto;
	-webkit-border-radius:0;
	-moz-border-radius: 0;
	border-radius: 0;
	}
button:hover {
	background-color: rgb(155,120,60);		/* Hintergrundfarbe */
	color: #fff;
	}





checkbox-custom, .radio-custom {
    opacity: 0;
    position: absolute;   
	}
.checkbox-custom, .checkbox-custom-label, .radio-custom, .radio-custom-label {
    display: inline-block;
    margin: 0;
    cursor: pointer;
	}
.checkbox-custom + .checkbox-custom-label:before, .radio-custom + .radio-custom-label:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    padding: 2px;
    margin-right: 3px;
	}
.radio-custom + .radio-custom-label:before {
    border-radius: 50%;
	}
.checkbox-custom:focus + .checkbox-custom-label, .radio-custom:focus + .radio-custom-label {
  	outline: 1px solid #ccc; 
	}
.radio-custom-label {
	margin-right: 10px;
	}
	


	
	
.checkbox-custom:checked + .checkbox-custom-label:before {
    background: rgb(155,120,60);			/* Checkbox aktive Farbe */
	}
.radio-custom:checked + .radio-custom-label:before {
    background: rgb(155,120,60);			/* Radiobutton aktive Farbe */
	}
.checkbox-custom + .checkbox-custom-label:before, .radio-custom + .radio-custom-label:before {
    background: #eaeaea;					/* Buttons Innenfarbe */
    border: 4px solid rgb(195,160,100);					/* Buttons Randfarbe */
	}
	
.formcontrol {
	height: 1px;
	width: 1px;
	padding: 0;
	margin: 0;
	}


