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],[type=submit]),
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: .3125rem;
	border: 0;
	margin: 0;
	width: 100%;
	transition: all .25s ease-in-out;
	font-weight: 700;
    font-family: "Barlow", system-ui;
    text-transform: uppercase;
    color: var(--dark-green-one);
	font-size: 1rem;
	box-sizing: border-box;
	padding: var(--inner-half) var(--inner);
	background: var(--grey-op-10);
	min-height: 2.875rem;
}

input[type=submit] {
	min-width: 7.5rem;
}

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: 1rem;
    border: .063rem solid var(--grey-op-25);
    position: relative;
    vertical-align: middle;
    transition: none;
    padding: 0;
}

input[type=checkbox]:checked,
input[type=radio]:checked {
	background: var(--light-green-one);
}

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: var(--grey-op-10);
	background-image: url(../svg/select.svg);
	background-position: right var(--inner) center;
	background-repeat: no-repeat;
	background-size: auto .75rem;
	padding: var(--inner-half) calc(var(--inner-double) + .75rem) var(--inner-half) var(--inner);
	min-height: 2.875rem;
}

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

}