I found it.
.mctb-close { display: none !important; } will hide it everywhere.
You can also only hide it on smaller screens, like this:
@media all and (max-width: 700px) {
.mctb-close { display: none !important; }
}
for anyone wondering how to do it.