/* Text input */
body .gform_wrapper.gravity-theme .gfield input, 
body .gform_wrapper.gravity-theme .gfield select {
	padding: 12px 14px;
	border: 0;
	background-color: #f0f0f0;
	font-size: 14px;
}

/* Textarea */
body .gform_wrapper.gravity-theme .gfield textarea {
	padding: 12px 14px;
	border: 0;
	background-color: #f0f0f0;
	font-size: 14px;
}

/* Checkbox */
body .gform_wrapper.gravity-theme .gfield .gfield_checkbox .gchoice {
	margin-bottom: 10px;
}

body .gform_wrapper.gravity-theme .gfield .gfield_checkbox input[type=checkbox] {
	position: absolute;
	visibility: hidden;
	opacity: 0;
}

body .gform_wrapper.gravity-theme .gfield .gfield_checkbox input[type=checkbox] + label {
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

body .gform_wrapper.gravity-theme .gfield .gfield_checkbox input[type=checkbox] + label::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	margin-right: 10px;
	border: 1px solid #f0f0f0;
	background-color: #fff;
	transition: all .3s ease;
}

body .gform_wrapper.gravity-theme .gfield .gfield_checkbox input[type=checkbox]:checked + label::before {
	content: '';
	border: 1px solid #ffdc00;
	background-color: #ffdc00;
}

body .gform_wrapper.gravity-theme .gfield .gfield_checkbox input[type=checkbox] + label::after {
	content: '';
	display: block;
	position: absolute;
	left: 4px;
}

body .gform_wrapper.gravity-theme .gfield .gfield_checkbox input[type=checkbox]:checked + label::after {
	content: '\f00c';
	font-family: 'FontAwesome 5 Pro';
	color: #fff;
}

/* Radio */
body .gform_wrapper.gravity-theme .gfield .gfield_radio .gchoice {
	margin-bottom: 10px;
}

body .gform_wrapper.gravity-theme .gfield .gfield_radio input[type=radio] {
	position: absolute;
	visibility: hidden;
	opacity: 0;
}

body .gform_wrapper.gravity-theme .gfield .gfield_radio input[type=radio] + label {
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

body .gform_wrapper.gravity-theme .gfield .gfield_radio input[type=radio] + label::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	margin-right: 10px;
	border: 1px solid #f0f0f0;
	border-radius: 50%;
	background-color: #fff;
	transition: all .3s ease;
}

body .gform_wrapper.gravity-theme .gfield .gfield_radio input[type=radio]:checked + label::before {
	content: '';
	border: 1px solid #ffdc00;
}

body .gform_wrapper.gravity-theme .gfield .gfield_radio input[type=radio] + label::after {
	content: '';
	display: block;
	position: absolute;
	left: 4px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: #fff;
	transition: all .3s ease;
}

body .gform_wrapper.gravity-theme .gfield .gfield_radio input[type=radio]:checked + label::after {
	content: '';
	background-color: #ffdc00;
}

/* Consent */
body .gform_wrapper.gravity-theme .gfield .ginput_container_consent input[type=checkbox] {
	position: absolute;
	visibility: hidden;
	opacity: 0;
}

body .gform_wrapper.gravity-theme .gfield .ginput_container_consent input[type=checkbox] + label {
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

body .gform_wrapper.gravity-theme .gfield .ginput_container_consent input[type=checkbox] + label::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	margin-right: 10px;
	border: 1px solid #f0f0f0;
	background-color: #fff;
	transition: all .3s ease;
}

body .gform_wrapper.gravity-theme .gfield .ginput_container_consent input[type=checkbox]:checked + label::before {
	content: '';
	border: 1px solid #ffdc00;
	background-color: #ffdc00;
}

body .gform_wrapper.gravity-theme .gfield .ginput_container_consent input[type=checkbox] + label::after {
	content: '';
	display: block;
	position: absolute;
	left: 4px;
}

body .gform_wrapper.gravity-theme .gfield .ginput_container_consent input[type=checkbox]:checked + label::after {
	content: '\f00c';
	font-family: 'FontAwesome 5 Pro';
	color: #fff;
}

/* Button */
@media ( max-width: 641px ) {
	body .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
		line-height: 1;
		min-height: unset;
	}
}
