/* 실제 checkbox 목록 숨김 (값은 유지) */
.rx_ev_checkbox, .bottomsheet_checkbox {
  display: none;
}

/* 가상의 input 박스 */
.checkbox_input {
  min-height: 44px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  cursor: pointer;
  background: #fff;
}

/* 아무것도 선택 안 됐을 때 */
.checkbox_input .placeholder {
  color: #aaa;
}

/* 선택된 값 칩 */
.checkbox_input .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 13px;
  color:#333;
}

.checkbox_input .chip .x {
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 14px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  font-size: 12px;
}



/* 기본 li 스타일 */
.bottomSheet .select-option li{
  position: relative;
  padding: 14px 14px 14px 46px; /* 왼쪽 체크 아이콘 공간 */
  cursor: pointer;
  user-select: none;
  color: #333;
  border-bottom: 0px dotted #b9a6ff;   /* 점선 구분(원하면 삭제) */
}



/* 2단 배치(필요하면) */
.bottomSheet .select-option.sheet_col2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.bottomSheet .select-option.sheet_col2 li {
	border-top:0px !important;
}