input,
select,
textarea {
	width: 100%;
	height: 50px;
	background: #f6f7fc;
	border: 1.5px solid #dee3f6;
	padding: 0 20px;
	font-family: "PT Serif", serif;
	font-size: 16px;
	color: #666;
	border-radius: 3px;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	box-sizing: border-box;	
}

textarea {
	height: 150px;
	padding: 15px 20px;
	line-height: 1.5;
}

input[type="checkbox"],
input[type="radio"] {
	height: 16px;
	width: 16px;
	padding: 0;
}

input[type="radio"] {
	border-radius: 50%;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
	background: #435790;
	background-size: cover;
	border-color: #3a4a77;
	outline: none;
}

input[type="checkbox"]:checked {
	background: #435790 url('../images/checkmark.svg') center center no-repeat;
	background-size: 11px auto;
}

.label-hidden {
	display: none;
}

.gfield,
.content .gfield {
	margin-bottom: 20px;
}

.gfield_html,
.content .gfield_html,
.gfield.gsection {
	margin-bottom: 0;
}

.gfield_description {
	font-style: italic;
	margin-top: 5px;
}

.ginput_counter {
	display: none;
}

.gform_wrapper .gform_body li {
	padding-left: 0;
}

.gform_wrapper .gform_body li:before {
	content: none;
}

.gform_wrapper label {
	display: none;
}

.gform_wrapper .gfield_list label {
	display: block;
	font-size: 16px;
	font-family: "PT Serif", serif;
}

.gfield_checkbox > li {
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}

.gfield.show-label > label,
.gfield h4,
.content .gfield h4 {
	display: block;
	font-size: 13px;
	color: #000;
	text-transform: uppercase;
	letter-spacing: .7px;
	font-weight: 600;
	margin: 0 0 10px;
}

.gform_wrapper input[type="checkbox"] + label,
.gform_wrapper input[type="radio"] + label {
	display: inline-block;
	margin-left: 5px;
	max-width: calc(100% - 30px);
}

.gfield_radio > li {
	display: -ms-flexbox;
	display: flex;
}

.gfield_radio > li input {
	margin-top: 4px;
}

.ginput_container_select {
	position: relative;
}

.ginput_container_select:after {
	content: "\e914";
	font-family: "libertysavingsbank" !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-align: center;
	position: absolute;
	color: #fff;
	font-size: 8px;
	background: #435790;
	border-radius: 1px;
	height: 30px;
	width: 30px;
	line-height: 31px;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	pointer-events: none;
}

.gfield_list {
	width: 100%;
}

.gfield_list_icons {
	width: 20px;
	padding: 5px 0 0px 10px;
}

.gfield_list_icons img {
	display: block;
	margin: 2px 0 6px !important;
}

.gfield_list_cell input {
	margin: 5px 0;
}

.validation_error {
    font-size: 13px;
    color: #d93236;
    text-transform: uppercase;
    letter-spacing: .7px;
    font-weight: 600;
    margin: 0 0 20px;
}

.validation_message {
    color: #d93236;
}

@media screen and (min-width: 768px) {
	.gform_fields {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: space-between;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	.gform_fields > li {
		width: calc(50% - 12px);
	}
	
	.gform_fields > .third {
		width: calc(33.33% - 16px);
	}
	
	.gform_fields .full-width,
	.gform_fields .gsection,
	.gform_fields .gfield_html {
		width: 100%;
	}
	
	.gform_footer input {
		width: auto;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
	.gform_fields .tablet-full-width {
		width: 100%;
	}
}