
/*//////////////////////////
//// MOBILE-OPTIMIZED 	////
//// CSS-RESET 		////
//// 2017 BY C.SCHOEPP	//*/	
	
html {	
	height:100%;
	padding:0;
	margin:0;

	/* Disables zooming IEmobile */
    	-ms-content-zooming: none; 

	/* Disable any special actions on tap/touch 
   	touch-action: none;   	
	-ms-touch-action: none;		*/	

}

body {	
	height:100%;
	padding:0;
	margin:0;

	/* Prevents text selection 
	-webkit-user-select: none;  	 	
	-moz-user-select: none; 	
	-ms-user-select: none; 		
  	user-select: none;*/	

	/* Prevents blue highlighting.*/  
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
					
	/* Says yes to render-power */
	text-rendering: optimizeLegibility !important;					
	
	/* Normalizes fonts */		
	-webkit-font-smoothing: antialiased !important;		
}   /*
body::-webkit-scrollbar {
 width: 15px;
    background-color: rgba(0,0,0,0);
    
}
body::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,.2);
  border-radius:10px;
  outline: none; 
}*/
input,email,textarea,button{

	/* Resets IOS-Settings
    	-webkit-appearance: none;*/
	border-radius:3px;
}
a:link,a:hover,a:visited,a:active{
	text-decoration:none;
	
}
/*// END OF RESET 	////
//////////////////////*/

/*//////////////////////
////BOOTSTRAP-FIX/////
@media (min-width: 1200px)
.container {
    width: 1140px;
    max-width: unset;
}

@media (min-width: 992px)
.container {
    width: 960px;
    max-width: unset;
}
@media (min-width: 768px)
.container {
    width: 720px;
    max-width: unset;
}
@media (min-width: 576px)
.container {
    width: 540px;
    max-width: unset;
}
*/