Text Size of Dropdown Items

I can't get the text size to increase on the form. The Label and other text in controls and fields seem to increase. I tried using CSS and that didn't work. Is there a way to do this?

Dear @IT.Joe,
Sure, please, try adding the following code to CSS editor:

.k-list .k-item{
    font-size:20px;
}

Thank you for the response. I did that..do I have to add k-list and k-item in the Class of the dropdown?

Nevermind I got it. Is there a CSS that will change the default font size for the whole form?

Dear @IT.Joe,
You can try this, for example:

.fd-form *{
    font-size:20px !important;
}