.b24-wanted-hub {
  width: min(1084px, 94vw);
  margin: 14px auto 4px;
  position: relative;
  z-index: 40;
  display: flex;
  justify-content: flex-start;
  direction: rtl;
}
.b24-wanted-trigger {
  appearance: none;
  border: 1px solid #c9d8e8;
  background: #fff;
  border-radius: 12px;
  min-width: 190px;
  height: 48px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #073a70;
  font: 800 14px/1.2 inherit;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(7, 58, 112, 0.08);
  transition: 0.18s ease;
}
.b24-wanted-trigger:hover,
.b24-wanted-trigger[aria-expanded="true"] {
  border-color: #0b74de;
  box-shadow: 0 6px 18px rgba(11, 116, 222, 0.14);
  transform: translateY(-1px);
}
.b24-wanted-trigger svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #0b74de;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.b24-wanted-trigger .b24-wanted-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1;
}
.b24-wanted-trigger strong {
  font-size: 14px;
}
.b24-wanted-trigger small {
  font-size: 10.5px;
  color: #66809a;
  font-weight: 700;
}
.b24-wanted-trigger .b24-chevron {
  font-size: 18px;
  color: #66809a;
  transition: transform 0.18s;
}
.b24-wanted-trigger[aria-expanded="true"] .b24-chevron {
  transform: rotate(180deg);
}
.b24-wanted-menu {
  position: absolute;
  top: 56px;
  right: 0;
  width: 290px;
  max-height: 440px;
  overflow: auto;
  background: #fff;
  border: 1px solid #d5e0eb;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 45px rgba(15, 40, 70, 0.18);
  display: none;
}
.b24-wanted-menu.open {
  display: block;
  animation: b24WantedOpen 0.15s ease-out;
}
@keyframes b24WantedOpen {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.b24-wanted-menu-head {
  padding: 9px 10px 8px;
  border-bottom: 1px solid #edf2f7;
  margin-bottom: 5px;
}
.b24-wanted-menu-head strong {
  display: block;
  color: #102f50;
  font-size: 14px;
}
.b24-wanted-menu-head small {
  color: #74899d;
  font-size: 11px;
}
.b24-wanted-option {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 9px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
  color: #183b5d;
  font: 750 13px/1.25 inherit;
  cursor: pointer;
}
.b24-wanted-option:hover,
.b24-wanted-option:focus-visible {
  background: #eef6ff;
  color: #075fae;
  outline: none;
}
.b24-wanted-option svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.b24-wanted-option:first-of-type {
  font-weight: 900;
  color: #075fae;
}
@media (max-width: 700px) {
  .b24-wanted-hub {
    margin: 10px auto 2px;
  }
  .b24-wanted-trigger {
    width: 100%;
    min-width: 0;
  }
  .b24-wanted-menu {
    right: 0;
    left: 0;
    width: auto;
    max-height: 55vh;
  }
}
