input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1.875rem #fff 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;
	background: transparent;
}

input[type=text],
input[type=email],
input[type=password],
input[type=color],
input[type=date],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=range],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=week],
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 2rem;
	border: .063rem solid #B6E810;
	margin: 0;
	width: 100%;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	font-family: 'Roboto',serif;
	color: #002147;
	font-size: 1rem;
	padding: .4375rem 1rem;
	font-weight: 400;
	background: #fff;
	box-sizing: border-box;
}

input[type=checkbox],
input[type=radio] {
	cursor: pointer;
	margin: -.375rem .5rem 0 0;
	display: inline-block;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: .875rem;
    height: .875rem;
    border-radius: .875rem;
    border: .063rem solid #B6E810;
    background: #fff;
    position: relative;
    vertical-align: middle;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    padding: 0;
}

input[type=radio]:checked,
input[type=checkbox]:checked {
	background: #B6E810;
}

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

select {
	cursor: pointer;
	background: url(../svg/select.svg) right .75rem top .25rem no-repeat;
	background-size: 1rem auto;
	padding: .4375rem 2.75rem .4375rem 1rem;
}

.select-italics select {
	font-style: italic;
}

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

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) {

	.ginput_recaptcha iframe {
	   transform:scale(0.75);
	   -webkit-transform:scale(0.75);
	   transform-origin:0 0;
	   -webkit-transform-origin:0 0
	}

}