@charset "UTF-8";

/* input 초기화 */
input[type='checkbox']{ display:none; }
/* (체크박스, 텍스트) 정렬 맞추기 */
.checkbox_label { display:flex; align-items:center;}
/* 체크박스 디자인 */
.checkbox_icon::before { content:''; display:block; margin-right:5px; display:inline-block; width:25px; height:25px; background-color:transparent; border:1px solid #555; box-sizing:border-box; position:relative; cursor:pointer; }
/* checked */
.checkbox_label input:checked + .checkbox_icon::before {
/*   transition: all 0.15s ease; */
	content:"✔"; background:#7ab7f1; font-size:14px; color:#fff; text-align:center; line-height:25px;
  border:none;
}
.checkbox_text { font-size:18px; font-weight:400; line-height:45px; color:#666; }

/* input 초기화 */
input[type='radio']{ display:none; }
/* (체크박스, 텍스트) 정렬 맞추기 */
.radio_label { display:flex; align-items:center;}
/* 체크박스 디자인 */
.radio_icon::before { content:''; display:block; margin-right:5px; display:inline-block; width:25px; height:25px; border-radius:3px; background-color:transparent; border:1px solid #555; box-sizing:border-box; position:relative; cursor:pointer; }
/* checked */
.radio_label input:checked + .radio_icon::before {
/*   transition: all 0.15s ease; */
	content:"✔"; background:#7ab7f1; font-size:14px; color:#fff; text-align:center; line-height:25px; border-radius:3px;
  border:none;
}
.radio_text { font-size:18px; font-weight:400; line-height:45px; color:#666; }