/* BASIC css start */


 /* 기본 체크박스를 숨깁니다. */
 input[type="checkbox"] {
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;
     width: 20px;
     height: 20px;
     position: relative;
     background-size: cover !important; 
 }

 /* 체크박스 배경 이미지 */
 input[type="checkbox"] {
     background-image: url('/design/findencc/images/m_check_Default.png') !important;
     /* 체크 안된 상태 이미지 */
 }

 /* 체크된 상태의 배경 이미지 */
 input[type="checkbox"]:checked {
     background-image: url('/design/findencc/images/m_check.png') !important;
     /* 체크된 상태 이미지 */
 }

 /* 기본 라디오박스를 숨깁니다. */
 input[type="radio"] {
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;
     width: 16px;
     height: 16px;
     position: relative;
     background-size: cover !important;  
    margin-right: 3px;
 }

 /* 라디오박스 배경 이미지 */
 input[type="radio"] {
     background-image: url('/design/findencc/images/m_radio_Default.png') !important;
     /* 체크 안된 상태 이미지 */
 }

 /* 체크된 상태의 배경 이미지 */
 input[type="radio"]:checked {
     background-image: url('/design/findencc/images/m_radio_Selected.png') !important;
     /* 체크된 상태 이미지 */
 } 
/* BASIC css end */

