Wizard Button Size

What would the CSS be to increase the size of the Wizard Next Back and Finish Button? Also when filling drop down boxes I got the text bigger but can I increase the Height of the box and also the little Clear "X" in the corner.

Dear @IT.Joe ,
Please, try the following CSS for Wizard buttons:

.wizard-footer-right button.fd-button,
.wizard-footer-left button.fd-button{
    width: 100px;
    height: 50px;
    font-size: 24px;
}

You can use the following CSS to expand height of the Lookup field, and increase the size of X:

.k-combobox .k-input {
    height: 4em !important;
}

.k-combobox .k-clear-value {
    top: 1.25rem !important;
}

.fd-form .row>.fd-field-title {
    margin: 10px 0;
}

.fd-form .fd-field-lookup .k-combobox .k-dropdown-wrap>.k-i-close {
    font-size: 32px;
}