/*회원관련 체크박스 아이콘*/
.checkbox-btn {padding-left:20px; font-size:15px; color:#333; line-height:26px;}
.checkbox-btn input[type='checkbox'] {position: absolute; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: 0; opacity: 0;}
.checkbox-btn label {display: inline-block; position: relative; padding-left: 15px; cursor: pointer; max-width: 100%;}
.checkbox-btn label:after { position: absolute; font-family: 'FontAwesome'; content: "\f00c";  width: 24px; height: 24px; left: 3px; top: 0; margin-left: -20px; padding-left: 3px; padding-top: 1px; font-size: 14px; color: #ddd;}
.checkbox-btn label:before { content: ""; position: absolute; width: 26px; height: 26px; left: 0; margin-left: -20px; border: 1px solid #ddd; border-radius: 50%; background-color: #fff; -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out; -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out; transition: border 0.15s ease-in-out, color 0.15s ease-in-out;}
.checkbox-btn input[type="checkbox"]:checked + label::after {font-family: 'FontAwesome'; content: "\f00c"; color: #fff; }
.checkbox-btn input[type="checkbox"]:checked + label::before {background-color: #005fca; border-color: #005fca;}
