a, input, select, textarea{
	transition: 0.3s ease-in 0s;
	-moz-transition: 0.3s ease-in 0s;
	-webkit-transition: 0.3s ease-in 0s;
	outline: none;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="file"],
select {
	background: #f5f5f5;
	height: 50px;
	padding: 0 15px;
	border: 1px solid #ccc;
	width: 100%;
	box-sizing: border-box;

	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
}

input[type="file"]{
	padding: 8px;
}

select {
	width:100%;
	background: #f5f5f5 url(select.png) right no-repeat;
}

textarea {
	background: #f5f5f5;
	padding: 15px;
	border: 1px solid #ccc;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;

	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	outline: none;
}

input:hover, select:hover, textarea:hover,
input:focus, select:focus, textarea:focus {
	border:1px solid #aaa;
}

input[type="submit"] , button[type="submit"] {
	width: 100%;
	background:	#a41e22;
	color: #fff;
	cursor: pointer;
	font-size: inherit;
	height: 50px;
	border: none;
	
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

input[type="submit"]:hover {
	background: #dc3c41;
	color: #fff;
}


input[type="checkbox"],
input[type="radio"]{
	width: 20px;
	height: 20px;
	border: 1px solid #000;
	appearance: none;
	-webkit-appearance: none;
	display: inline-block;
	vertical-align: middle;
	background-position: center;
	transition: .2s;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	margin:0;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked{
	border: 1px solid #ec1c23;
	background: #ec1c23 url(../img/check.png) center no-repeat;
}

input[type="checkbox"] ~ label,
input[type="radio"] ~ label {
	display: inline-block;
	vertical-align: middle;
}