Lookup field - .k-combobox .k-dropdown-wrap

Hi,
I'm wondering if it's possible to take the dropdown arrow on the specific lookup and have it on the left side instead of the right.

From this:

to this:

I know it's just adding: flex-direction: row-reverse here:
image
, but I can't figure out how to overwrite it, beacuse if I add it to CSS it acts like nothing happened and default kendo.css is overwriting it.

Any suggestions?
Thx Michal.

.k-combobox .k-dropdown-wrap {
flex-direction: row-reverse !important;
}

added !important and now it works.