https://i.sstatic.net/G2deM.png
Is there a way to remove the background color on hover and replace it with a different color?
.drp-policydetails {
border: 1px solid #dddddd;
background-color: #ffffff;
}
<div className="form-group">
<select className="form-control drp-policydetails">
<option hidden>-- Select One --</option>
<option>123456789</option>
<option>789232323</option>
</select>
</div>