Sometimes you need to apply specific styles to Safari, in order to accomplish that you can use this hack:
@media not all and (min-resolution:.001dpcm) {
@supports (-webkit-appearance:none) {
...Your Css specific to safari code here
}
}