@charset "utf-8";

/*
 * Mailform Pro patch
 * Fix submit button text rendering (white-string) on iOS Safari.
 * The @supports rule limits this patch to browsers
 * supporting the iOS-specific touch-callout property.
 */

@supports (-webkit-touch-callout: none) {
	#mailformpro button[type="submit"],
	#mailformpro input[type="submit"],
	#mailformpro button[type="reset"],
	#mailformpro input[type="reset"] {
		color: #333 !important;
		-webkit-text-fill-color: #333 !important;
		text-shadow: 0 1px 0 #fff !important;
	}
}
