My select input's focus color is not changing, and I'm struggling to figure out the proper override.
.form-control:focus {
border-color: inherit;
-webkit-box-shadow: none;
box-shadow: none;
}
.forma #kome {
border-color: #8e8e8e;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
text-align-last: center;
cursor: pointer;
color: #000000;
-webkit-appearance: none;
background: transparent url("http://icons.iconarchive.com/icons/mahm0udwally/all-flat/16/User-icon.png") no-repeat 15px center;
}
.forma select :focus {
border-color: #2a6dc9 !important;
}
<form class="center-block forma" action="" method="post">
<div class="form-group">
<select class="form-control" id="kome" name="kome">
<option value=" disabled selected ">Choose</option>
<option value="smth"> smth </option>
<option value="smth2"> smth2 </option>
</select>
</div>
</form>