Hello There,
Thanks for writing in! Please find this block of code in your customizer;
.x-searchform-overlay {
background-color: #2d2d2d;
opacity: 0.8;
filter: alpha(opacity=80);
}
You need to replace that code and use this instead:
.x-searchform-overlay {
background-color: #2d2d2d;
background-color: rgba(0,0,0,0.5);
}
.x-searchform-overlay .cfc-h-tx {
color: #fff !important;
}
Hope this would help.