Need help Changing color of Dropdown background

My Currency dropdowns background is transparent and i cant seem to change the color of it, is there any code that would be able to fix this? i would like it to be black

Website: Desirestreetwear.co

@Desire4 Please follow below steps to Changing color of Dropdown background. Let me know whether it is helpful for you.

  1. From admin, go to “Online stores” → “Themes”.
  2. Click action button from the current theme and select “Edit code”.
  3. Go to “base.css” file and paste the below code at the bottom of the file and save changes.
    NOTE: You can change the background color and text color as per you need.
.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__button,
.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__list {
    background: #ffffff;
}

.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__button .icon-caret,
.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__list .disclosure__item .disclosure__link,
.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__list .disclosure__item .disclosure__link .localization-form__currency {
    color: #000000 !important;
}

Result will be like,

Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.