/******* Do not edit this file *******
Woody ad snippets CSS and JS
Saved: Dec 22 2020 | 01:42:12 */
	/*Submit Button General*/
	input[id^="gform_submit_button"] {
		background-color: #227b3c;
		color: #ffffff;
		font-weight: 600;
		padding: 5px 35px;
		border-radius: 5px;
		border: 1px solid #227b3c;
		-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.45);
		-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.45);
		box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.45);
		transition: background-color 0.5s ease;
	}

	/*Submit Button Hover General*/
	input[id^="gform_submit_button"]:hover {
		background-color: #2dad52;
		transition: background-color 0.5s ease;
	}
	/*Submit Button Focus General*/
	input[id^="gform_submit_button"]:focus {
		outline-width: 2px;
		outline-color: black;
	}
	/*Contact Us Form, Fix Submit Button*/
	@media only screen and (max-width: 640px) {
		body #gform_wrapper_1 .gform_footer input[type=submit] {
			margin: auto!important;
			float: clear!important;
		}	
	}
	@media only screen and (min-width: 641px) {
		body #gform_wrapper_1 .gform_footer input[type=submit] {
			float: right;
			margin: -85px 15px 0 0!important;
		}	
	}

