How to change arrow style in <select>
. Changing background, font color or all border stuff is simple but how to change the "arrow" in? When i changed font color content color changed but the arrow stay black.
.language-choice{
margin-top: 10px;
color: #719dd1;
border-color: #719dd1;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border-width: 2px;
}
<select class="language-choice">
<option value="en">English</option>
<option value="pl">Polish</option>
</select>