/* BASIC css start */
.tx_ch input[type="checkbox"] {
  /* 브라우저 기본 체크박스 UI 제거 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;  
  width: 11px;
  height: 11px;
  background-color: #acacac !important; 
  border: 0px;
  cursor: pointer;
  vertical-align: middle;
  outline: none;
  margin-right: 3px;
  border-radius: 50%; 
  margin-top:-2px;
  position: relative; /* 체크표시를 위한 위치 기준 */
}

.tx_ch input[type="checkbox"]:checked {
  background-color: #acacac; 
}

.tx_ch input[type="checkbox"]:checked::after {
  content: '\2713'; /* 체크 표시 (✔) */
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px; /* 필요시 조정 */
}



/* BASIC css end */

