/*체크박스 라디오버튼 스타일*/
	/*체크박스 디자인 설정*/

.checks {position: relative;}

.checks input[type="checkbox"] {  
  position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip:rect(0,0,0,0);
   border: 0
}
.checks input[type="checkbox"] + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.checks input[type="checkbox"] + label:before { 
  content: ' ';
  display: inline-block;
  width: 21px; 
  height: 21px; 
  line-height: 21px;
  margin: -2px 8px 0 0;
  text-align: center; 
  vertical-align: middle;
  background: #fafafa;
  border: 1px solid #cacece;
  border-radius : 3px;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
}
.checks.checks-s input[type="checkbox"] + label:before{
  width: 15px; 
  height: 15px; 
  line-height: 15px;
  margin: -2px 8px 0 0;
}
.checks input[type="checkbox"] + label:active:before,
.checks input[type="checkbox"]:checked + label:active:before {
  box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

.checks input[type="checkbox"]:checked + label:before { 
  content: '\2714'; 
  color: #be0000;
  text-shadow: 1px 1px #fff;
  background: #e9ecee;
  border-color: #adb8c0;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.02), inset 0px -15px 10px -12px rgba(0,0,0,0.02), inset 15px 10px -12px rgba(255,255,255,0.1);
}
