form {
	text-align: initial;
}

fieldset {
	border: 0;
}

label {

}
label:empty {
	display: none;
}

input,
textarea,
select {
	box-sizing: border-box;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	vertical-align: middle;
}


input[type="text"],
input[type="number"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="submit"],
input[type="tel"],
.select-style,
textarea {
	-webkit-appearance: none;
	border: 1px solid #ddd;
	border-radius: 0;
	display: inline-block;
	font-size: .9em;
	margin: .3em 0;
	padding: .6em .5em .6em .8em;
}

:disabled {
	opacity: .5;
	pointer-events: none;
}


input[type="text"],
input[type="number"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="tel"],
.select-style,
textarea {
	background-color: #FFFFFF;
}
textarea {
	min-height: 6em;
}


::-webkit-input-placeholder {
	color: #707070;
}
:-moz-placeholder {
	color: #707070;
	opacity: 1;
}
::-moz-placeholder {
	color: #707070;
	opacity: 1;
}
:-ms-input-placeholder {
	color: #707070;
}


input[type="radio"],
input[type="checkbox"] {
	display: inline-block;
	margin: .3em .5em .3em 0;
	vertical-align: top;
}


input[type="radio"] + label,
input[type="checkbox"] + label {
	display: inline-block;
	overflow: visible;
	height: auto;
	max-width: calc(100% - 4em);
}



/* image */
input[type="image"] {
	background: transparent;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	display: inline-block;
	margin: .3em 0;
	padding: .5em;
	width: auto; height: 2.44em;
	vertical-align: middle;
}
input[type="image"]:hover,
input[type="image"]:focus {

}



/* select style (requires wrapper .select-style) */
.select-style {
	padding: 0;
	margin: .3em 0;
	overflow: hidden;
	position: relative;
	vertical-align: middle;
}
	.select-style select {
		-webkit-appearance: none;
		background: none;
		border: 0;
		border-radius: 0;
		color: inherit;
		display: block;
		padding: .5em 2.5em .5em .5em;
		position: relative;
		width: calc(100% + 2em);
	}
		.select-style select option {
			color: inherit;
			padding: 0 2em 0 0;
		}
	.select-style:after {
		background: url('../images/arrow-down.svg') center/50% auto no-repeat #FFFFFF;
		content: '';
		display: block;
		pointer-events: none;
		position: absolute; top: 0; right: 0;
		width: 2em; height: 100%;
	}



.radio-style,
.checkbox-style {
	background: #FFFFFF;
	border: .2em solid #FFFFFF;
	border-radius: 50%;
	cursor: pointer;
	display: inline-block;
	margin-right: .5em;
	outline: 1px solid #d8d8d8;
	position: relative;
	transition: all .3s ease;
	vertical-align: top;
	width: 1em; height: 1em;
}
.checkbox-style {
	border-radius: .1em;
}
.radio-style.checked,
.checkbox-style.checked {
	background: #c39876;
}
	.radio-style input[type="radio"],
	.checkbox-style input[type="checkbox"] {
		display: block;
		margin: 0;
		position: absolute; top: -.2em; left: -.2em;
		width: 1em; height: 1em;
	}

