I want to style this element:
This is working:
input[class*=\"mysl
The selector you're looking for is
input.myslider[type=range]
Your current code looks for children elements and doesn't target the appropriate element.