/* other form main definitions see modalconfig.js */



#Formular { 
	border: 0px solid black;
	width: 450px; 
	margin: 0px auto;
	overflow: hidden;
	padding-top: 20px;
	z-index: 1000;
	
    opacity: 0;
    transform: 			translate3d(0, -40px, 0);
    -webkit-transform: 	translate3d(0, -40px, 0);
    transition: transform 0.5s, opacity 0.5s;
    -webkit-transition:	-webkit-transform 0.5s, opacity 0.5s;    
}

#Formular label	{
	position: relative;
	border: 0px solid green;
	float: left;
	max-width: 100%;
	margin: 0;
	padding: 7px 0;
	color: #fff;
	text-align: left;
 	font-family: 'Lato', Arial, sans-serif;
}

#Formular .labelextra {
	margin-bottom: 20px; 
}

#Formular .linkespalte	{
	text-align: left;
	width: 165px;
	margin: 0 10px 0 0;
	border: 0px solid black;
	float: left;
	padding: 12px 10px 8px 10px;
}

#Formular .schritt	{
 	color:#f77d00;
 	text-transform: uppercase;
 	letter-spacing: 1px;
 	font-size: 80%;
 	font-weight: bold;	
 	padding: 10px 10px 5px 10px;
}

#Formular .rechtespalte	{
	color: #f77e00;
	border: 0px solid black;
	float: left;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 80%;
	font-weight: bold;
}

#Formular .schrittrechts	{
 	padding: 10px 10px 10px 0px;
}

#Formular .rechtespaltenormal	{
	border: 0px solid black;
	text-transform: none;
	letter-spacing: 0;
	text-align: left;
	font-size: 14px; 
	width: 240px;
	padding: 9px 0 25px 0;
	color: #fff;
	font-weight: normal;	
}

input, select, textarea {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}


/******* Input *****/

#Formular input	{
	border: 1px solid transparent;
	width: 240px;
	padding: 10px;
	font-size: 15px;
	color: #000;
	background-color: #ddd ;
	-webkit-border-radius: 3px;
       -moz-border-radius: 3px;
	    -ms-border-radius: 3px;
		    border-radius: 3px;
		    
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
		 -o-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
			transition: all 0.3s ease;			    
 	
 	outline: none;
}

#Formular input:hover	{
	background-color: #fff !important;
	color: #000;
}

#Formular input:focus	{
	background-color: #fff !important;
	border: 1px solid #f77e00 !important;
	color: #000;
	box-shadow: 0 0px 15px #ff7d00 !important;	
}

#Formular input.focused	{
	box-shadow: 0 0px 15px #ff7d00;	
}


input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: rgba(0,0,0,.6); opacity:1;
}
input:-moz-placeholder, textarea:-moz-placeholder {
    color: rgba(0,0,0,.6); opacity:1;
}
input::-moz-placeholder, textarea::-moz-placeholder {
    color: rgba(0,0,0,.6); opacity:1;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: rgba(0,0,0,.6); opacity:1;
}

/******* Select *****/

#Formular select	{
  /*** Rest wird bereits in styles.css festgelegt   ***/
  	color: #000;
  	width: 240px;
  	background-color: #ddd;
}

#Formular select:hover	{
	color: #000;
	background-color: #fff;		
}

select:active, select:focus { 
	outline: 0; 
	box-shadow: 0 0px 15px #f77e00;
	background-color: #fff;		
}


/******* Textarea *****/

#Formular textarea	{
	margin-top: 6px;
	border: 1px solid transparent;
	background-color: #ddd;	
	width: 240px;
	height: 100px;
	padding: 10px;
	font-size: 15px;	
	color: #000;
	float: left;
	-webkit-border-radius: 3px;
       -moz-border-radius: 3px;
	    -ms-border-radius: 3px;
		    border-radius: 3px;
		    
		    
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
		 -o-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
			transition: all 0.3s ease;
			
	 outline: none;		
}

#Formular textarea:hover	{
	background-color: #fff;
	color: #000;
}

#Formular textarea:focus	{
	background-color: #fff;
	border: 1px solid #f77e00;
	color: #000;
	box-shadow: 0 0px 15px #f77e00;	
}


/******* Submit *****/

#Formular .submit {
	cursor: pointer;
	-webkit-box-shadow: inset 0px 1px 0px 0px #fff, 0px 1px 7px rgba(0,0,0,.8);
	   -moz-box-shadow: inset 0px 1px 0px 0px #fff, 0px 1px 7px rgba(0,0,0,.8);
	        box-shadow: inset 0px 1px 0px 0px #fff, 0px 1px 7px rgba(0,0,0,.8);
	        
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
	background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
	background-color:#ededed;
	
	-webkit-border-radius: 5px;	
	   -moz-border-radius: 5px;
			border-radius: 5px;
	
	border:1px solid #dcdcdc;
	
	color: #444;
	text-decoration:none;
	text-shadow:1px 1px 0px #ffffff;
	text-align: center;
	height: 40px;
	width: 200px;
	padding:3px;
	margin-left: 20px;
}

#Formular .submit:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
	background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
	background-color:#dfdfdf;
}

#Formular .submit:active {
	position:relative;
	top:1px;
	cursor:pointer;
}



#Formular .success{
	padding: 5px 10px 5px 10px;
	margin: 0px auto;
	margin-top: 40%;
	border: none;
	color: #fff;
	font-size: 120%;
}

#Formular #contact_results {
	border: 0px solid white; 
	width: 100%;
 	z-index: 20000;	
}

#Formular .error {
	margin-left: 195px;
	width: 240px;
	background-color: rgba(0,0,0,.8);
		box-sizing: border-box;
	padding: 10px;
	text-align: center;
	border: none;
	font-weight: bold;
	color: #fff;
	border-bottom: 0px solid #FF0000;
	border: 0px solid black;
	-webkit-border-radius: 3px;
       -moz-border-radius: 3px;
	    -ms-border-radius: 3px;
		    border-radius: 3px;	
	 box-shadow:0 0 8px rgba(0,0,0,.85);			    

}


/******* Submit - Dankeseite *****/

#Formular .danke	{ 
 	font-family: 'Lato', Arial, sans-serif;
	color:#fff; 
	text-align: center;
	border: 1px solid #000;
}
