body{
	color: #272727!important;
	background-color: transparent;
    font-family: "Open Sans", Sans-serif;
    font-size: 1.7em;
    font-weight: 400;
    line-height: 1.4em;
	text-transform: none;
}
label {
    font-weight: 400;
}
.form {
	margin-right: -5px;
}
.flex-row{
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
	clear: left;
}
.form-field.required label.field-label:after {
	content: ' *';
}
.form-field {
	padding-left: 0!important;
    padding-right: 5px !important;
	margin-bottom: 5px;
}
.form-field .error, .errors{
	color: red;
}
.gdrp-checkbox {
	margin-top: 24px;
	font-size: 0.8em;
    line-height: 18px;
    margin-left: 5px;
}
.pd-checkbox span.value > span {
	width: 100%;
}
@media (min-width: 420px){
	.pd-checkbox span.value > span {
		width: 50%;
	}
}
.pd-checkbox.gdrp-checkbox label.inline {
	display: inline;
}
input[type=text], select, textarea {
	border-radius: 0;
	display: block;
	width: 100%;
	height: 50px;
    padding: 20px 10px 5px 13px;
	font-size: 1em;
	line-height: 1.42857;
	color: #272727;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, input[type=tel]:focus, select:focus {
    border-color: #2f9638;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}
span.description a {
    color: #2f9638!important;
}
.pd-textarea span.description, .pd-text span.description{
	font-style: italic;
    font-size: 0.8em;
}
.pd-textarea textarea{
	width: 100%;
    height: 100px;
}
.pd-radio input{
	margin: 5px 5px;
}
.pd-radio .value span {
	margin-right: 10px;
}

/* Custom Checkbox */
input[type=checkbox] { display:none; } /* to hide the checkbox itself */
input[type=checkbox] + label:before {
    width: 20px;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
input[type=checkbox] + label svg{
	display: none;
}
input[type=checkbox] + label:before { font-family: "Font Awesome 5 Pro";content: "\f0c8"; } /* unchecked icon */
input[type=checkbox] + label:before { letter-spacing: 10px; } /* space between checkbox and label */
input[type=checkbox]:checked + label:before { font-family: "Font Awesome 5 Pro";content: "\f14a"; color: #2f9638!important; } /* checked icon */
input[type=checkbox]:checked + label:before { letter-spacing: 5px; } /* allow space for check mark */

.pd-checkbox .field-label {
	display: block;
}
.pd-checkbox:not(.gdrp-checkbox) span.value span {
	display: inline-block;
    padding: 0 10px 0 0;
}

/* Custom Submit Button */
input[type='submit'] {
    color: #fff;
    background-color: #A2C861;
    border-color: #A2C861;
    padding: 5px 10px!important;
    border-radius: 0!important;
    border: 1px solid transparent;
    line-height: 1.42857;
}
input[type='submit']:hover, input[type='submit']:focus {
	color: #fff;
    background-color: #2f9638;
    border-color: #2f9638;
}

/* New Form Style with always 50/50 cols */
/*
.force-col-sm-6 {
	width: calc(50% - 3px);
	display: inline-block;
}
.col-sm-12.force-col-left.salutation select {
	width: calc(50% - 7px);
}
*/
.form-field.salutation .field-label {
	display: none;
}
/* New floating labels */
.form-field:not(.pd-checkbox, .pd-radio) label {
	color: #27272799;
	transition: all 0.3s;
	font-size: 1em;
	padding: 0 0;
	position: absolute;
	margin-left: 20px;
    top: 12px;
	font-weight: 400;
	line-height: 1.55em;
    pointer-events: none;
}
.form-field.pd-checkbox, 
.form-field.pd-radio {
	display: flex;
    flex-direction: column-reverse;
}
.form-field:not(.pd-checkbox, .pd-radio).pd-select label, 
.form-field:not(.pd-checkbox, .pd-radio).active label, 
.form-field:not(.pd-checkbox, .pd-radio) input:not(:placeholder-shown) ~ label,
.form-field:not(.pd-checkbox, .pd-radio) input:-webkit-autofill ~ label
{
	font-size: 0.8em;
	top: 2px !important;
	margin-left: 13px !important;
}