Issue: When hovering over the dropdown items in the country list, I'm encountering a gray background color that I'd like to remove while still maintaining the functionality of the dropdown. Despite attempting to set background-color: transparent !important;, the gray color persists.
Solutions Attempted: I've tried setting background-color: transparent !important; on .iti__country-list .iti__country:hover and experimenting with different background colors and even 'initial', but none of these solutions have been effective.
<div class="form-field">
<label for="phone">Phone Number<span class="required">*</span></label>
<ngx-intl-tel-input
class="ngx-tel-input"
[preferredCountries]="['us', 'gb']"
[enableAutoCountrySelect]="true"
[enablePlaceholder]="true"
[searchCountryFlag]="true"
[searchCountryField]="[SearchCountryField.Name, SearchCountryField.DialCode]"
[selectedCountryISO]="CountryISO.UnitedStates"
[separateDialCode]="true"
formControlName="mobileNumber"
></ngx-intl-tel-input>
</div>
/* CSS Styles */
.ngx-tel-input .iti {
width: 99% !important;
}
.ngx-tel-input input {
width: 100% !important;
padding-left: 60px !important;
height: 74px;
border-radius: 61px;
background-color: rgba(217, 217, 217, 0.23);
border: 1px solid #CDC9C9;
}
/* Other CSS Rules... */