Mobiscroll Calender change cursor to pointer

For our desktop application, our designers want the hand pointer when hovering over our date picker input. I’ve tried to apply the cursor: pointer style, but it does not work, so I assume there is a different way of achieving this?

I’ve figured this out. In case others are wondering, you need to target the mbsc-input within the mbsc-calendar.

.mbsc-mobiscroll.mbsc-input {
input {
cursor: pointer;
}
}