`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;
	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: .063rem solid var(--grey-two) !important;
	margin: 0;
	width: 100%;
	transition: all .25s ease-in-out;
	font-weight: inherit;
    font-family: inherit;
    color: var(--black) !important;
	font-size: 1rem;
	box-sizing: border-box;
	padding: var(--inner-third) var(--inner);
	background: var(--grey-one) !important;
}

select[multiple] {
	padding: var(--inner-half);
}

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

input[type=checkbox],
input[type=radio] {
	cursor: pointer;
	margin: 0 var(--inner-half) 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;
    transition: none;
    padding: 0;
}

label {
	font-family: inherit;
	color: inherit;
    font-weight: 400;
    font-size: 1rem;
    display: block;
    padding-bottom: var(--inner-half);
}

select:not([multiple]) {
	cursor: pointer;
	background-color: transparent;
	background-image: url(../svg/select.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: auto .5rem;
	padding: var(--inner-half) 2.5rem var(--inner-half) var(--inner);
}

textarea {
	height: 8rem !important;
	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;
}


@media only screen and (max-width: 48em) {

	input:not([type=checkbox],[type=radio]), textarea, select {
		font-size: 1rem;
	}

}