#filterBar {
  position: relative;
}/* ─────────────────────────────────────── */
/* SEARCH FIELD & CHIPS                   */
/* ─────────────────────────────────────── */
.search-field {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 5px;
  gap: 10px;
  max-width: 600px;
}

.search-icon {
  color: #22334a;
  font-size: 16px;
}

#chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex-grow: 1;
}

.chip {
  background-color: #0E264A;
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  font-family: "BentonSans", Sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.775px;
}

.chip {
    background-color: #0E264A;
    color: white;
    padding: 1px 12px;
    border-radius: 3px;
    display: flex
;
    align-items: center;
    font-family: "BentonSans", Sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.775px;
}

.chip .remove-chip {
  margin-left: 8px;
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
  font-size: 12px;
}

.submit-btn {
  background: none !important;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #22334a !important;
}
.submit-btn:hover {
     color: #fff !important;
     background: #22334a !important;
}
/* ─────────────────────────────────────── */
/* FILTER POPUP                           */
/* ─────────────────────────────────────── */
.filter-popup {
  position: absolute;
  background: #1a1a3a;
  color: white;
  padding: 0;
  border-radius: 0;
  min-width: 340px;
  min-height: 200px;
  z-index: 1000;
  display: none;
  font-family: "BentonSans", Sans-serif;
}

.filter-popup.active {
  display: block;
}

.filter-popup .close-popup {
  position: absolute;
  top: 16px;
  right: 16px;
  color: white;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  font-family: sans-serif;
}

.filter-popup .popup-title {
  font-family: "freight-big-pro", Sans-serif;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 4px;
}

.filter-popup .popup-subtitle {
  font-family: "BentonSans", Sans-serif;
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slider-wrapper {
  margin: 20px 0;
}

.labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 10px;
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.actions button {
    background: none;
    border: 1px solid white;
    color: white;
    padding: 6px 14px 4px;
    cursor: pointer;
    font-family: "BentonSans", Sans-serif;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 0;
}

/* ─────────────────────────────────────── */
/* noUiSlider Custom Styling              */
/* ─────────────────────────────────────── */
.noUi-target {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  height: 4px;
  position: relative;
  direction: ltr;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.noUi-base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.noUi-origin {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}

.noUi-handle {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: -8px;
  left: -10px;
  background-color: #c09a3b;
  border: none;
  box-shadow: none;
  cursor: pointer;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.noUi-horizontal {
  height: 4px;
}

.noUi-horizontal .noUi-handle {
/*
  top: -8px;
  left: -10px;
*/
}
.noUi-horizontal .noUi-handle {
    width: 15px;
    height: 15px;
/*
    right: -12px;
    top: -7px;
*/
    border-radius: 100%;
    background: #c09a3b;
    border: 0;
    box-shadow: none;
}

.noUi-stacking .noUi-handle {
  z-index: 10;
}

.noUi-state-tap .noUi-origin {
  -webkit-transition: left 0.3s, top 0.3s;
  transition: left 0.3s, top 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

.noUi-connect {
  background: #c09a3b;
}

/* Remove default handle lines */
.noUi-handle::before,
.noUi-handle::after {
  display: none;
}


.noUi-horizontal .noUi-handle {
  position: absolute !important;
  width: 20px !important;
  height: 20px !important;
  left: 100% !important;
  top: -8px !important;
  transform: translateX(-50%) !important;
  background-color: #c09a3b !important;
  border: none !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  cursor: pointer !important;
  z-index: 2 !important;
}

.noUi-handle-upper,
.noUi-touch-area {
  all: unset;
}
.filter-popup.align-left {
  left: 0 !important;
}

.popup-content {
    padding: 2rem;
}
.filter-popup .popup-title {
    font-family: "freight-big-pro", Sans-serif;
    font-size: 2rem 3rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

.actions {
    display: flex
;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 2rem;
    background: url(https://sothebysroatan.wpenginepowered.com/wp-content/uploads/2025/06/siggles.png) no-repeat center top / 100%;
    padding: 2rem 3rem
}

.noUi-connects {
    border-radius: 0;
}

.noUi-horizontal {
    height: 4px;
    border: 0;
}

.noUi-horizontal {
    height: 4px;
    border: 0;
    background: white;
}
.slider-label {
    text-transform: uppercase;
    margin-bottom: 1rem;
    margin-left: -9px;
    font-size: 14px;
}

.slider-group {
    margin: 0.5rem 10px;
}
.cb-search-wrap{
    border-bottom: 1px rgba(255,255,255,0.14) solid;
    padding: 10px 0;
}
.cb-search-wrap {
    display: flex;
    color: white !important;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
.cb-search-wrap .cb-search {
    background: none;
    border: none;
    outline: none;
    font-family: "BentonSans", Sans-serif;
    font-size: 14px;
    padding: 10px 0;
}
.cb-search-wrap i,
.cb-search-wrap .cb-search
{
    color: white;   
}
.cb-search-wrap i {
    color: white;
    margin-right: 12px;
}

@media(max-width: 621px){
    .chip {
        padding: 2.5px 5px;
        border-radius: 1px;
        display: flex;
        font-size: 9px;
        letter-spacing: 0.2px;
        line-height: 1em;
    }
}