/* CIMP-18728 - Resolve CSS conflicts & Add custom close icon to Smartbutton retailer list */
div[data-sc-type="SmartButton"] .sc-btn-retailer-wrapper {
  top: unset !important;
  bottom: 60px;
  border: unset !important;
  border-radius: 4px !important;
  overflow: hidden auto;
  max-height: 350px;
  justify-self: center;
}

div[data-sc-id][data-sc-type="SmartButton"] .custom-close-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 14px;
  cursor: pointer;
  z-index: 9999;
  color: #333;
  background: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

div[data-sc-id][data-sc-type="SmartButton"] .custom-close-btn:hover {
  background: #f2f2f2;
}
/* END CIMP-18728 */