input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1.875rem var(--white) inset !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	padding: 0;
	color: inherit;
	font-family: inherit;
	background: transparent;
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

input {
	font-family: inherit;
}

input:not([type=checkbox],[type=radio]),
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	border: .063rem solid var(--grey-one);
	margin: 0;
	width: 100%;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
	font-weight: 400;
    font-family: inherit;
    color: inherit;
	font-size: 1.25rem;
	background: var(--white);
	box-sizing: border-box;
	padding: 1rem;
}

select[multiple] {
	padding: .625rem;
}

input[type=file] {
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
}

input[type=checkbox],
input[type=radio] {
	cursor: pointer;
	margin: 0 .75rem 0 0;
	display: inline-block;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1rem;
    height: 1rem;
    border-radius: 0;
    border: 0;
    position: relative;
    vertical-align: middle;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    padding: 0;
}

label {
	font-family: inherit;
	color: inherit;
    font-weight: 400;
    font-size: 1rem;
    display: block;
    padding-bottom: .875rem;
}

select:not([multiple]) {
	cursor: pointer;
	background: var(--white) url(../svg/select.svg) right 1rem top 1.5rem no-repeat;
	background-size: auto .5rem;
	padding: 1rem 2.5rem 1rem 1rem;
}

textarea {
	height: 8rem;
	min-height: 8rem;
	min-width: 100%;
	max-width: 100%;
	width: 100%;
	resize: none;
}

input:focus,
textarea:focus {
	outline: 0;
}

select::-ms-expand {
    display: none;
}

::-ms-clear {
	display: none;
}

::-webkit-input-placeholder {
	color: inherit;
	font-family: inherit;
}

:-moz-placeholder {
	color: inherit;
	font-family: inherit;
}

::-moz-placeholder {
	color: inherit;
	font-family: inherit;
}

:-ms-input-placeholder {
	color: inherit;
	font-family: inherit;
}