DatePicker Overlap issue in IE

Has anyone seen this overlapping issue in IE?

I’m no CSS wizard, but I hacked and slashed and got the below addition to fix this.

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS styles go here */
    .picker-wrapper .picker-columns .picker-opts-right .picker-opts {
          max-width:none !important; 
          min-width:350px !important;
   }
}