#sticky-filters {
  position: fixed;
  top: 200px;
  right: 0;
  margin-right: -240px;
  transition: margin-right 200ms;
  width: 250px;
  z-index: 99999999;
}

#sticky-filters-mobile-toggler {
  display: inline-block;
  background: #fff;
  text-align: center;
  padding: 5px 30px;
  font-size: 12px;
  border-radius: 5px;
  transform: rotate(-90deg);
  position: absolute;
  left: -70px;
  top: calc(50% - 10px);
  font-weight: bold;
  z-index: 99998;
}

#filters {
  overflow: hidden;
  background: #fff;
  z-index: 99999999;
  padding: 30px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}

#sticky-filters:hover {
  margin-right: 0px;
}

#filters h6 {
  margin: 0;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px #f1f1f1 solid;
}

#filters label {
  cursor: pointer;
  font-size: 12px;
  line-height: 24px;
  display: block;
}

#filters label.disabled {
  opacity: 0.4;
}

#filters .fa {
  margin-right: 5px;
  color: #706fd3;
}

#filters input[type="checkbox"] {
  display: none;
}

#filters input:not(:checked) + .fa-check-square + .fa-square {
  display: inline-block;
}

#filters input:not(:checked) + .fa-check-square {
  display: none;
}

#filters input:checked + .fa-check-square {
  display: inline-block;
}

#filters input:checked + .fa-check-square + .fa-square {
  display: none;
}

#filters #filter_amount_input {
  display: block;
  text-align: center;
  width: 100%;
  font-size: 12px;
  padding: 5px 0;
  margin: 2px;
  margin-top: -10px;
  border: none;
  outline: 0;
}

#filters #range-slider {
  height: 50px;
  width: 100%;
}

#filters #range-slider #filter_amount_range {
  width: 100%;
}

#filters #range-slider .range_amount_label {
  font-size: 10px;
}

#filters #range-slider .range_min_amount_label {
  float: left;
}

#filters #range-slider .range_max_amount_label {
  float: right;
}
