Having an issue with the .custom-select class in Bootstrap-4. There seems to be two overlapping arrow styles:
https://i.sstatic.net/Alvpc.jpg
.custom-select {
position: center;
box-sizing: border-box;
height: auto;
padding: 10px;
font-size: 16px;
margin-bottom: 20px;
border-radiu: 2.5;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<div>
<select class="custom-select">
<option selected>Choose One...</option>
<option value="1">Boots</option>
<option value="2">Shoes</option>
<option value="3">Feet</option>
</select>
</div>
Tried adding custom CSS to match other forms but issue persists without it.
Appreciate any assistance!