.content > .filter-bar:not(#b24DynamicFilter) {
  display: none !important;
}
#b24DynamicFilter {
  display: block !important;
  position: sticky;
  top: 14px;
  align-self: flex-start;
  width: var(--b24-results-filter-width, 220px);
  max-height: calc(100vh - 28px);
  overflow: auto;
  background: #fff;
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(30, 97, 175, 0.08);
  padding: 14px 12px 76px;
  direction: rtl;
  scrollbar-width: thin;
  z-index: 12;
}
#b24DynamicFilter.is-visible {
  display: block !important;
}
#b24DynamicFilter .b24-df-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0 2px 11px;
  border-bottom: 1px solid #edf1f6;
}
#b24DynamicFilter .b24-df-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #17263a;
  line-height: 1.55;
}
#b24DynamicFilter .b24-df-head svg {
  width: 19px;
  height: 19px;
  color: #3476c4;
  flex: none;
}
#b24DynamicFilter .b24-df-group {
  margin: 0 0 12px;
}
#b24DynamicFilter .b24-df-group > label,
#b24DynamicFilter .b24-df-legend {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  color: #26364b;
}
#b24DynamicFilter input,
#b24DynamicFilter select {
  width: 100%;
  height: 39px;
  border: 1px solid #d7e0ec;
  border-radius: 8px;
  background: #fff;
  color: #22334a;
  font: 500 12px/1.2 inherit;
  padding: 0 10px;
  outline: none;
  box-sizing: border-box;
}
#b24DynamicFilter input:focus,
#b24DynamicFilter select:focus {
  border-color: #3476c4;
  box-shadow: 0 0 0 3px rgba(52, 118, 196, 0.1);
}
#b24DynamicFilter input::placeholder {
  color: #a5afbd;
}
#b24DynamicFilter .b24-df-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
#b24DynamicFilter .b24-df-features {
  border-top: 1px solid #edf1f6;
  padding-top: 12px;
  margin-top: 4px;
}
#b24DynamicFilter .b24-df-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}
#b24DynamicFilter .b24-df-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 8px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fbfcfe;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  color: #33445b;
  line-height: 1.45;
}
#b24DynamicFilter .b24-df-check:hover {
  border-color: #b8d0ea;
  background: #f5f9ff;
}
#b24DynamicFilter .b24-df-check input {
  width: 15px;
  height: 15px;
  min-width: 15px;
  margin: 1px 0 0;
  accent-color: #3476c4;
  box-shadow: none;
}
#b24DynamicFilter .b24-df-actions {
  position: sticky;
  bottom: -76px;
  margin: 14px -12px -76px;
  padding: 10px 12px 12px;
  background: linear-gradient(to top, #fff 76%, rgba(255, 255, 255, 0.92));
  border-top: 1px solid #e8eef6;
  z-index: 3;
}
#b24DynamicFilter .b24-df-submit {
  width: 100%;
  height: 43px;
  border: 0;
  border-radius: 8px;
  background: #3476c4;
  color: #fff;
  font: 800 13px/1 inherit;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(52, 118, 196, 0.22);
}
#b24DynamicFilter .b24-df-submit:hover {
  background: #1e61af;
}
#b24DynamicFilter .b24-df-clear {
  width: 100%;
  border: 0;
  background: transparent;
  color: #64748b;
  font: 700 11px/1 inherit;
  padding: 9px 0 0;
  cursor: pointer;
}
#b24DynamicFilter .b24-df-empty {
  font-size: 11px;
  color: #718096;
  padding: 8px;
  border: 1px dashed #dbe4f0;
  border-radius: 8px;
  text-align: center;
}
@media (max-width: 900px) {
  #b24DynamicFilter {
    position: static;
    width: 100%;
    max-height: none;
  }
}
