/* - RESET CSS - */
/* Setzt alle CSS Werte im Browser auf Standard zurück */

* {
	-webkit-font-smoothing: antialiased !important;
	-webkit-text-size-adjust: none !important;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none !important;
}

*::-moz-selection {
	background: #121212;
	color: #fff;
}

*::selection {
	background: #121212;
	color: #fff;
}

input::-moz-focus-inner {	
	border: 0;
	padding: 0;
}

select::-moz-focus-inner {	
	border: 0;
	padding: 0;
}

input,
select,
textarea {
	border-radius: 0;
}

input[type=text],
input[type=password],
select,
textarea {
	-webkit-appearance: none;
}