/* Make sure that if the first item is selected, the text in the drop down is gray. the first tiem in the dropdown should also be gray. */
#CompanySize[data-selected-val=""], #CompanySize option:first-child {
    color:var(--color-grey);
}

/* Make sure all but the first option has black text */
#CompanySize option:not(:first-child) {color:black;}