.check-design {
    /* 실제 체크박스는 화면에서 숨김 */ 
    position: absolute;
    width: 1px; 
    height: 1px; 
    font-size: 0;
    padding: 0; 
    margin: -1px; 
    overflow: hidden; 
    clip:rect(0,0,0,0); 
    border: 0;
}

.radio-design {
    /* 실제 라디오버튼은 화면에서 숨김 */ 
    position: absolute;
    width: 1px; 
    height: 1px; 
    font-size: 0;
    padding: 0; 
    margin: -1px; 
    overflow: hidden; 
    clip:rect(0,0,0,0); 
    border: 0;
}

.radio-design + label::before {
    content: '';
    position: relative; 
    display: inline-block; 
    cursor: pointer;
    background-image: url("/public/images/main/ic_unchecked.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    margin-right: 4px;
    vertical-align: middle;
}

.radio-design:checked + label::before {
    content: '';
    position: relative; 
    display: inline-block; 
    cursor: pointer;
    background-image: url("/public/images/main/ic_checked.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    margin-right: 4px;
    vertical-align: middle;
}