﻿/* Mailform */

h9{
	color:var(--text2-color);
}
input:focus, select:focus, textarea:focus, thefield:focus; {
	outline:1px solid #ffff99;
	background-color:rgba(0, 0, 0, 0.3);
	color:black;

} 
.mf-input {
border: 1px solid ;
border-color:var(--border-line-color);
background-color: #999;
margin-bottom: 5px;

}

.feedbackform{
	padding: 5px;
	font-family: Arial;
	background-image: url(../mail/elemente/mailform.jpg);
	background-repeat: no-repeat;
}

div.fieldwrapper{ /*field row DIV (includes two columns- Styled label column and 'thefield' column)*/
	width: 550px; /*width of form rows*/
	overflow: hidden;
	padding-top: 3px;
	padding-right: 0;
	padding-bottom: 3px;
	padding-left: 0;
	list-style-type: square;
	text-align: left;
	font-family: Arial;
	font-size: 0.9em;
	font-weight: normal;
}

div.fieldwrapper label.styled{ /* label elements that should be styled (left column within fieldwrapper DIV) */
	float: left;
	width: 150px; /*width of label (left column)*/
	text-transform: none;
	margin-right: 15px; /*spacing with right column*/
	font-family:  Arial;
	font-size: 0.85em;
	text-align: left;

}

div.fieldwrapper div.thefield{ /* DIV that wraps around the actual form fields (right column within fieldwrapper DIV) */
	float: left;
	margin-bottom: 5px;
		border: 1px solid ;	
		border-color:var(--border-line-color);
		outline:0;
}

div.fieldwrapper div.thefield input[type=text]{ /* style for INPUT type="text" fields. Has no effect in IE7 or below! */
	width: 250px;
	background-image: url('../mail/platzhalter3.png');
	background-repeat:no-repeat;
		background-color:rgba(0, 0, 0, 0.2));
		border: 1px solid ;
		border-color:var(--border-line-color);
		outline:0;
		inline:0;
}
div.fieldwrapper_rot div.thefield input[type=text]{ /* style for INPUT type="text" fields. Has no effect in IE7 or below! */
	width: 250px;
	background-image: url('../mail/platzhalter3r.png');/*rot gekennzeichnete Eingabefelder*/
	background-repeat:no-repeat;
		background-color:rgba(0, 0, 0, 0.2));
		border: 1px solid ;
		border-color:var(--border-line-color);
		outline:0;
}
div.fieldwrapper_wei div.thefield input[type=text]{ /* style for INPUT type="text" fields. Has no effect in IE7 or below! */
	width: 250px;
	background-image: url('../mail/platzhalter3.png');/*rot gekennzeichnete Eingabefelder*/
	background-repeat:no-repeat;
		background-color:rgba(0, 0, 0, 0.2));
		border: 1px solid ;
		border-color:var(--border-line-color);
		outline:0;
}
div.fieldwrapper div.thefield textarea{
	/* style for TEXTAREA fields. */
	width: 500px;
	height: 160px;
	font-family: Arial;
	background-image: url('../mail/platzhalter3r.png');
	background-repeat:no-repeat;
	background-color:rgba(0, 0, 0, 0.2));
		border: 1px solid ;
		border-color:var(--border-line-color);
		outline:0;
}
div.buttonsdiv{ /*div that wraps around the submit/reset buttons*/
margin-top: 5px; /*space above buttonsdiv*/
outline:0;
}

div.buttonsdiv input{ /* style for INPUT fields within 'buttonsdiv'. Assumed to be form buttons. */
width: 150px;
background: #e1dfe0;
outline:0;
}
.but {
	height: 30px;
	width: 120px;
	margin: 10px ;
    padding: 8px 8px 8px 8px;
	background-color: rgba(221, 221, 221, 0.5);
		background-color: #ffffff;
	text-align: center;
	line-height: 10px;
    text-decoration: none;
    font-size: 18px;
    color: green;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
	cursor:pointer;

}

.but:hover {
	background-color: rgba(49, 102, 108, 0.5);
    color: red;
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
	transition-duration: 0.4s;
	cursor:pointer;	
}

