.vdotspanx {
  border-left: 2px dotted #ccc;
}

.filters {
  box-shadow: 0px -5px 20px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.filter_radio {
  display: inline-flex;
  text-wrap: nowrap;
  gap: 8px;
}

.filter_slide {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.filter_splitter {
  border-left: 2px dotted #ccc;
}

.filterbox {
  width: calc(50% - 1px);
  vertical-align: top;
  padding: 20px;
  box-sizing: border-box;
}

.filterbox_smaller{
  width: calc(33% - 1px);
  vertical-align: top;
  padding: 20px;
  box-sizing: border-box;
}

.filterboxfull_item {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.filterboxfull {
  padding: 30px 20px 20px 20px;
  box-sizing: border-box;
  display: flex;
  column-gap: 10px;
  flex-wrap: wrap;
}

.filter_title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.filterboxfull_title {
  font-size: 16px;
  font-weight: bold;
}

.filter_subtitle {
  font-size: 12px;
  font-weight: bold;
  margin-top: 15px;
  color: #7e7e7e;
}

#filter_opener {
  padding: 5px 0 20px 10px;
  cursor: pointer;
  display: flex;
  font-size: 13px;
}

.hid_elem {
  transition: all 0.5s ease-out;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.unhid_elem {
  transition: all 0.5s ease-out;
  opacity: 1;
  max-height: 1000px;
}

.flex_br {
  flex-basis: 100%;
  height: 0;
}

@media screen and (max-width: 480px) {
  .filters {
    flex-direction: column;
  }

  .filter_title {
    text-align: center;
  }

  .filterbox {
    width: 100%;
  }

  .filter_splitter {
    border-bottom: 2px dotted #ccc;
  }

  #filter_opener {
    justify-content: center;
  }

  .filterbox_smaller{
    width: 100%;
    vertical-align: top;
    padding: 20px;
    box-sizing: border-box;
  }

  .vdotspanx {
    display: none;
  }

  .filterboxfull_item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
  }
}


.filter_range_lt {
  width: 33px;
  height: 20px;
  text-align: center;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid #CCC;
}

.customSlider {
  flex-grow: 1;
  top: -7px;
}

.customSlider-track {
  top: 5px;
  height: 3px;
  background: var(--track-color);
}

.customSlider-track.customSlider-track-1 {
  background: var(--main-color);
}

.customSlider-thumb {
  cursor: pointer;
  background: var(--main-color);
  width: 7px;
  height: 7px;
  border-radius: 10px;
  outline: none;
  top: 3px
}

.customSlider-thumb:hover {
  box-shadow: 0 0 0 10px var(--main-color-hover);
}

.filter_row {
  display: flex;
  align-items: center;
  min-height: 25px;
}

.filter_title2 {
  width: 120px;
  font-size: 13px;
  display: inline-block;
}

.filter_select_box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-left: 11px;
  max-height: 100px;
  overflow-y: auto;
}

.filter_select_option {
  margin-top: 3px;
  vertical-align: top;
  cursor: pointer;
  display: inline-block;
  margin-right: 15px;
  max-width: 180px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter_select_option_name {
  vertical-align: top;
  display: inline-block;
  margin-top: 3px;
  margin-left: 8px;
  font-weight: 700;
}

.sort_title {
  font-size: 150%;
  margin-left: 5px;
}