body .gform_wrapper .ginput_container_consent input[type=checkbox] {
    opacity: 0;
    position: absolute;   
}

body .gform_wrapper .ginput_container_consent input[type=checkbox] + label {
    position: relative;
    margin-top: 10px;
    padding-top: 8px;
    padding-left: 65px;
    cursor: pointer;
    display: inline-block;
    min-height: 40px;
    font-weight: 500;
}

body .gform_wrapper .ginput_container_consent input[type=checkbox] + label:before,
body .gform_wrapper .ginput_container_consent input[type=checkbox] + label:after {
    content: '';
    position: absolute;
    left: 0;
    z-index: 1;
    -webkit-transition: .2s;
    transition: .2s;
}

body .gform_wrapper .ginput_container_consent input[type=checkbox]:not(:checked) + label:after {
	content: '\f00c';
	font-family: 'fontawesome 5';
	font-size: 18px;
	padding: 6px 11px;
	color: #f1f1f1;
    width: 40px;
    height: 40px;
    top: 0px;
    background-color: #fffbfb;
  	border: 1px solid #f1f1f1;
  	border-radius: 5px;
  	box-shadow: inset 0 3px 5px 0 rgba(239, 239, 239, 0.1);
}

body .gform_wrapper .ginput_container_consent input[type=checkbox]:checked + label:after {
    content: '\f00c';
	font-family: 'fontawesome 5';
	font-size: 18px;
	padding: 5px 10px;
	color: #f4a137;
    width: 40px;
    height: 40px;
    top: 0px;
    background-color: rgba(237, 224, 217, 0.1);
  	border: 2px solid #f4a137;
  	border-radius: 5px;
  	box-shadow: inset 0 3px 5px 0 rgba(239, 239, 239, 0.1);
}