I would like to stylize select input. I added my own arrow from url. I did it changing background in select input. I have problem, because the arrow is too close to the edge. I want to transform background a bit from edge but I do not know how to do this. Maybe you have a better way to solve this problem. Now it looks like this: https://i.stack.imgur.com/gc02K.jpg.
<select>
<option value="one">One</option>
<option value="two">Two</option>
<option value="three">Three</option>
</select>
select{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
appearance:none;
background: url("../assets/icon-dropdown-active.svg") no-repeat right white;
}