hr.filter__divider {
  border: 0;
  height: 1px;
  margin: 20px 0;
  background-color: #e0e3e7;
}

.renewal_filter {
  /* width: 100%;
  border: solid 1px #e0e3e7;
  border-radius: 20px;
  background-color: #fff;
  padding: 30px;
  max-width: 300px;
  box-shadow: 0px 10px 15px #e0e3e780; */

  width: 100%;
  border: solid 1px #e0e3e7;
  border-radius: 20px;
  background-color: #fff;
  /* 300 -> 250. 목록에 카드 폭을 넘겨준 것이다(list_style.css 의 #list_renewal_wrap 주석
     참고). 좁은 화면에서는 아래 규칙이 max-width 를 100% 로 덮어쓰므로 영향이 없다 */
  padding: 26px;
  max-width: 250px;
  height: auto;
  box-shadow: 0px 10px 15px #e0e3e780;
  overflow-y: visible;
  /* padding: 3px 5px; */
}

.filter_closed_btn {
  display: none;
  cursor: pointer;
}

.renewal_filter::-webkit-scrollbar {
  width: 2px;
  margin-left: 5px;
}

.renewal_filter::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0);
  border-radius: 999px;
}

.renewal_filter:hover::-webkit-scrollbar {
  width: 2px;
  margin-left: 5px;
}
.renewal_filter:hover::-webkit-scrollbar-thumb {
  background: rgba(121, 121, 121, 0.25);
  border-radius: 999px;
}
.renewal_filter:hover::-webkit-scrollbar-track {
  background: transparent;
}

.filter__title {
  display: flex;
  align-items: center;
  justify-content: left;
  height: 25px;
}

.filter__title h2 {
  font-size: 18px;
  font-weight: 600;
  color: #3d4856;
  margin-bottom: 5px;
  padding-left: 5px;
}

.filter__icon svg.feather {
  stroke: #3d4856;
  width: 21px;
  height: 21px;
}

.filter__section-title {
  margin-bottom: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 18px;
}

.filter__section-title span {
  display: block;
  padding-left: 5px;
  color: #3d4856;
}

.filter__section-title svg.feather {
  stroke: #3d4856;
  width: 18px;
  height: 18px;
}

.filter__options {
  padding-left: 3px;
  margin-top: 15px;
}

.filter__options li {
  list-style: none;
  padding: 3px 0;
}

.filter__text {
  color: #3d4856;
  font-size: 14px;
  font-weight: 300;
  padding-left: 7px;
  padding-top: 5px;
}

.filter__options--flex {
  display: flex;
  align-items: start;
  justify-content: left;

  flex-wrap: wrap;
}

.filter__options--flex li {
  width: 45%;
}

.filter__label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: left;
}

.filter__actions {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter__actions button {
  display: flex;

  align-items: center;
  justify-content: center;
}

.filter__reset-btn {
  color: #979797;
  background-color: transparent;
  border: none;
}

.filter__reset-btn svg.feather {
  width: 18px;
  height: 18px;
}

.filter__actions .filter__set-btn {
  width: 70%;
  padding: 15px 0;
  background-color: #00a4ff;
  color: #fff;
  font-size: 21px;
  font-weight: 500;

  border-radius: 10px;
  border: solid 1px #fff;

  box-shadow: 0px 10px 15px #e0e3e780;
}

.filter__actions button span {
  padding-right: 5px;
}

.condition__text svg.feather {
  stroke: #fff;
  width: 16px;
  height: 16px;
}

#codition_list li {
  height: fit-content;
  margin-bottom: 5px;
}

#codition_list li .filter__label {
}

.condition__text {
  font-weight: 500;
  padding: 3px 7px;
  display: flex;
  align-items: center;
  justify-content: left;
  border-radius: 10px;
  margin-left: 5px;
  color: #fff;
}

#condition_01 {
  background-color: #963ed9;
}

#condition_02 {
  background-color: #51c564;
}

#condition_03 {
  background-color: #155dfc;
}

#condition_03 svg.feather {
  width: 12px;
  height: 12px;
  transform: rotate(180deg);
  fill: #fff;
}

.condition__text > span {
  padding-left: 3px;
}

.filter__label input {
  width: 16px;
  height: 16px;
}

#mobile_sort_filter {
  display: none;
}

#mobile_sort_filter .filter__text {
  width: 80%;
  padding: 0;
}

#mobile_sort_filter ul li a {
  text-decoration: none;
  color: #3d4856;
  border: solid 1px #ccc;
  text-align: center;
  padding: 3px;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
}

#mobile_sort_filter ul li a.active {
  background-color: #3b82f6;
  color: #fff;

  border: none;
}

/* 정렬 필터 섹션 스타일 */
#mobile_sort_filter .filter__options--flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 0;
  margin-top: 10px;
}

#mobile_sort_filter ul li {
  width: 48%; /* 2열 배열을 위해 너비 조정 */
}

.sort-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 34px; /* 높이 고정 (슬림하게) */
  padding: 0; /* 패딩 제거 (flex 정렬 사용) */

  font-size: 13px; /* 글자 크기 조금 작게 */
  color: #888; /* 기본 글자색 (회색) */
  background-color: #fff;

  border: 1px solid #e0e3e7; /* 연한 테두리 */
  border-radius: 50px; /* 완전 둥근 캡슐 모양 */

  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.sort-btn.active {
  background-color: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(59, 130, 246, 0.3);
}
.sort-btn:not(.active):hover {
  background-color: #f8f9fa;
  border-color: #c0c4c9;
  color: #333;
}
#mobile_sort_filter .filter__label {
  display: block;
  width: 100%;
  margin: 0;
}

.star_filter {
  display: flex;
  align-items: center;
  justify-content: left;
}

.star_filter p {
  margin-bottom: 0;
  padding-bottom: 3px;
  margin-left: 5px;
}

.star_color svg.feather {
  fill: #ffd82c;
  stroke: #ffd82c;
  width: 18px;
  height: 18px;
}

.star_none svg.feather {
  fill: #d7d7d7;
  stroke: #d7d7d7;
  width: 18px;
  height: 18px;
}
@media (max-width: 991px) {
  .filter__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .filter_closed_btn {
    display: block;
    cursor: pointer;
  }
  .renewal_filter {
    border-radius: 0;
    height: 100dvh;
    overflow: scroll;
    padding-bottom: 100px;
  }

  .filter__actions {
    position: fixed;
    bottom: 0;
    padding: 10px 20px;
    background-color: #fff;
    border-top: solid 2px #f5f5f5;
    left: 0;
    width: 100%;
    margin: 0 auto;
  }

  .renewal_filter {
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
  }

  .renewal_filter::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .filter__actions button {
    margin: 0 auto;
  }

  .mobile_hr_divider {
    border-top: solid 1px #cad2dd;
    border-bottom: solid 1px #cad2dd;
    height: 4px;

    background-color: #e0e3e7;
  }

  #mobile_sort_filter {
    display: block;
  }
  .renewal_filter_wrap {
    height: 100dvh;
    max-height: 100dvh;
  }

  #pc_none_fillter {
    display: block;
  }
}

@media (max-width: 768px) {
}
