/*
 * -------------------------------------------------------------------------
 * FORM
 * -------------------------------------------------------------------------
*/

/*
 * -------------------------------------------------------------------------
 * ELEMENTE
 * -------------------------------------------------------------------------
*/

input[type=text], input[type=email], select {
    /*width: 300px;
	line-height: 26px;
	height: 26px;
    box-sizing: border-box;*/
    padding: 0 20px;
    margin: 0;
    display: inline-block;
    border-radius: 4px;
	font-size: 13px;
	/*
	outline: none;
	border-top-style: hidden;
	border-right-style: hidden;
	border-left-style: hidden;
	border-bottom-style: groove;
	background-color: #eee;
	*/
}

input[type=submit] {
	background-color:#FF8C00;
    color: white;
	line-height: 18px;
	height: 26px;
	padding: 2px 25px;
    font-size: 13px;
    margin: 0;
	border: 1px solid;
	border-color: #d16546 #ca4e2a #ca5d3d #ca4e2a;
	-webkit-box-shadow: inset 0 1px 1px 0 rgba(255,255,255,0.5), 0px 1px 1px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: inset 0 1px 1px 0 rgba(255,255,255,0.5), 0px 1px 1px 0px rgba(0,0,0,0.15);
	box-shadow: inset 0 1px 1px 0 rgba(255,255,255,0.5), 0px 1px 1px 0px rgba(0,0,0,0.15);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
	-webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
	text-transform: uppercase;
	bottom: 0;
	/*width: 35%;*/
}

input[type=submit]:hover {
	background-color: #FFA73C;
}

input::placeholder {
	font-size: 14px;
	color: silver;
}

textarea::placeholder {
	font-size: 14px;
	color: silver;
}

/*
input:placeholder-shown {
    border: 2px solid red;
}
*/

input::-webkit-input-placeholder { color:silver; transition: color 1s; }
input::-moz-placeholder { color:silver; transition: color 1s }
input:-ms-input-placeholder { color:silver; transition: color 1s}
input:-moz-placeholder { color:silver; transition: color 1s }

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }
input:focus:-moz-input-placeholder { color:transparent; }

/* ELEMENTE END  xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */


/*
 * -------------------------------------------------------------------------
 * KONTAKTFORMULAR
 * -------------------------------------------------------------------------
*/

#wrapper_kontakt input[type="text"]:invalid, #wrapper_kontakt input[type="email"]:invalid {
	/*border-left: 3px solid red;*/  /* Roter Rand bei fehlerhafter Eingabe */
}
#wrapper_kontakt input[type="text"]:required:empty, #wrapper_kontakt input[type="email"]:required:empty { /* Das Feld ist Pflichtfeld, aber leer */
	/*border-left: 3px solid #F00;*/
  	/*border-style: dashed;*/
}
#wrapper_kontakt input[type="text"]:valid, #wrapper_kontakt input[type="email"]:valid {
	/*border-left: 3px solid green; */
  	/*border: 2px solid green;*/ /* Grüner Rand bei korrekter Eingabe */
}

.eingabefeld_kontakt {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666666;
	height: 40px;
	width: 100%;
    border: 1px solid #ccc;
}
/*
.eingabefeld_kontakt_verpflichtend {
	margin: 3px 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666666;
	height: 40px;
	width: 100%;
    border: 1px solid #ccc;
    border-left: 3px solid #F00;
}

.eingabefeld_kontakt_alert {
	margin: 3px 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666666;
	height: 40px;
	width: 100%;
    border: 1px solid #F00;
    border-left: 3px solid #F00;
}
*/
.eingabefeld_kontakt_textarea {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666666;
	padding: 8px 20px;
	margin: 3px 0;
	height: 250px;
	width: 100%;
	max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
	resize: none;
}

.eingabefeld_kontakt_select {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666666;
	height: 40px;
	width: 100%;
	max-width: 100%;
    border: 1px solid #ccc;
	background: white;
	padding: 0 14px;
    border-radius: 5px;
    /*box-shadow: 4px 4px #ccc;*/
}

.text_form {
	padding: 0 0 5px 5px;
}
/* KONTAKTFORMULAR ENDE  xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */