CSS for SELECT-Controll

What i do wrong with the styling? i only want to change the fontsize.

https://snippet.webix.com/jdlfwfrz

The option-text are still small?
Thank you

Hello @ObiWanKenobi ,

You could use the selectors:

.slx_select .webix_el_box select {
  	font-size: 20px !important;
}

or

.webix_control.webix_el_select .webix_el_box select {
  	font-size: 20px !important;
}

it works, thank you!