@media screen and (min-width: 320px) and (max-width: 767px) {
	
	/***************************
	 *** CAPTCHA-HINWEIS OFF ***
	 ***************************/
	#captcha_hinweis{
		display: none;
	}
	
	#kontakt_form_container{
		display: block;
		position: relative;
		box-sizing: border-box;
		
		width: 100%;
		height: auto;
		
		margin-bottom: 30px;
	}
	
	/*******************************
	 *** CONTAINER LINK + RECHTS ***
	 *******************************/
	#kontakt_container_links, 
	#kontakt_container_rechts{
		display:block;
		position:relative;
		box-sizing:border-box;
		
		width: 100%;

		height: auto;
	}
	#kontakt_container_rechts{
		margin-right: 0px;
	}
	
	/*******************************
	 *** INPUT-FELDER + TEXTAREA ***
	 *******************************/
    input[type=text], 
	textarea{
        display: block;
        position: relative;
        box-sizing: border-box;
        
        width: 100%;
        height: 40px;
        
        margin-top: 10px;
        padding: 4px;
		padding-left: 10px;
        
        border-radius: 0px;
        
        border: 2px solid #000000;
        
        background-color: #ffffff;
        
        color: #000000;
        font-family: inherit;
        font-size: 16px;
        
        line-height: 25px;
    }
    textarea{
        height: 240px;
    }

	/******************************
	 *** SENDEN BUTTON (a-LINK) ***
	 ******************************/
	#kontakt_container_rechts a.senden_button{
		display: block;
		position: relative;
		box-sizing: border-box;

		width: 100%;
		height: 40px;
		
		margin-top: 10px;
		
		line-height: 36px;
		font-size: 18px;
		font-weight: 600;
		color: #000000;
		text-decoration: none;
		letter-spacing: 1px;
		text-transform: uppercase;
		text-align: center;
		
		border: 2px solid #000000;
		border-radius: 8px;

		background-color: #004389;
		background-image: linear-gradient(to top, #004389, #ffffff);
	}
	#content #kontakt_container_rechts a.senden_button:hover{
		background-color: #004389;
		background-image: linear-gradient(to bottom, #004389, #ffffff);
		
		cursor: pointer;
	}

	/****************************************
	 *** VOR DEM SENDEN:                  ***
	 *** 'EIN MOMENT BITTE...' EINBLENDEN ***
	 ****************************************/
	#einen_moment_bitte{
		display: none;
		position: fixed;
		box-sizing: border-box;
		
		top: 80px;

		width: 100%;
		padding-top: 80px;
		padding-bottom: 80px;
		
		text-align: center;
		color: #000000;
		font-size: 50px;
		font-weight: 700;
		
		background-color: rgba(255 ,255 ,255 , .6);
		
		z-index: 5;
	}
}