.filter_offcanvas .checkbox_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter_offcanvas {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.filter_offcanvas .offcanvas-header {
  background: #fff;
  padding: 15px 20px;
  border-top-right-radius: 20px;
  box-shadow: 0px 3px 6px #00000029;
}

.filter_offcanvas .offcanvas-header .offcanvas-title {
  font-size: 16px;
}

.filter_offcanvas .checkbox_item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
}

.filter_offcanvas .checkbox_item input {
  width: 18px;
  height: 18px;
}

.filter_offcanvas .range_slider_box {
  padding-top: 5px;
}

.filter_offcanvas .range_value {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.filter_offcanvas .offcanvas-footer {
  background: #fff;
  border-bottom-right-radius: 20px;
}

.filter_offcanvas .accordion-button {
  font-weight: 600;
}

.filter_offcanvas .accordion-button:not(.collapsed) {
  background: #fff4da;
  color: #000;
  box-shadow: none;
  /* padding: 15px 10px; */
  font-size: 15px;
}

.filter_offcanvas .accordion-button:focus {
  box-shadow: none;
}

.filter_offcanvas .offcanvas-footer .Black_btn_holder,
.filter_offcanvas .offcanvas-footer .Black_btn_holder .Black_Btn {
  width: 100%;
}

.filter_offcanvas .custom_range_slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 20px;
  background: #f5b3b3;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}

/* WEBKIT TRACK */

.filter_offcanvas .custom_range_slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 20px;
  background: #ccc;
}
.filter_offcanvas .checkbox_item input[type="checkbox"] {
  accent-color: #000; /* Black */
}
/* WEBKIT THUMB */

.filter_offcanvas .custom_range_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #000;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  margin-top: -6px;
  transition: 0.3s;
}

.filter_offcanvas .custom_range_slider:hover::-webkit-slider-thumb {
  transform: scale(1.1);
}

/* FIREFOX */

.filter_offcanvas .custom_range_slider::-moz-range-track {
  height: 6px;
  border-radius: 20px;
  background: #f5b3b3;
}

.filter_offcanvas .custom_range_slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #c40000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
