/* Article-page location dropdown (variant="article" of RfqLocationDropdown). Article pages only
   load articles3.min.css, so this widget is self-styled here. White rounded pill + scrollable list. */
.rfq-art-locdd {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.rfq-art-locdd__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 26px;
  padding: 11px 22px;
  min-width: 220px;
  color: #434343;
  font-size: 15px;
  cursor: pointer;
}
.rfq-art-locdd__text {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rfq-art-locdd__caret {
  border-top: 6px solid #434343;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  flex-shrink: 0;
}
.rfq-art-locdd__menu {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  z-index: 30;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  min-width: 220px;
  width: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  max-height: 252px;
  overflow-y: auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.rfq-art-locdd__menu li a {
  display: block;
  padding: 5px 16px;
  font-size: 15px;
  color: #434343;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rfq-art-locdd__menu li a:hover {
  background: #f0f0f0;
}
.rfq-art-locdd__menu li.divider {
  height: 1px;
  margin: 5px 0;
  background: #d9d9d9;
}
.rfq-art-locdd__menu::-webkit-scrollbar {
  width: 10px;
}
.rfq-art-locdd__menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}
.rfq-art-locdd__menu::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}
