@charset "utf-8";


.checks {position: relative; text-align:left; }

.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 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: #99a1a7;
  text-shadow: 1px 1px #fff;
  background: #e9ecee;
  border-color: #adb8c0;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
}

.checks.small input[type="checkbox"] + label {
  font-size: 12px;
}

.checks.small input[type="checkbox"] + label:before {
  width: 17px;
  height: 17px;
  line-height: 17px;
  font-size: 11px;
}




.checks.etrans input[type="checkbox"] + label {
  padding-left: 30px;
}
.checks.etrans input[type="checkbox"] + label:before {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 0;
  opacity: .6;
  box-shadow: none;
  border-color: #fff;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

.checks.etrans input[type="checkbox"]:checked + label:before {
  position: absolute;
  content: "";
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity:1; 
  background: transparent;
  border-color:transparent #db0226 #db0226 transparent;
  border-top-color:transparent;
  border-left-color:transparent;
  -ms-transform:rotate(45deg);
  -webkit-transform:rotate(45deg);
  transform:rotate(45deg);
}

.no-csstransforms .checks.etrans input[type="checkbox"]:checked + label:before {
  /*content:"\2713";*/
  content: "\2714";
  top: 0;
  left: 0;
  width: 21px;
  line-height: 21px;
  color: #db0226;
  text-align: center;
  border: 1px solid #fff;
}


















/* 필수 입력 star */
span.star { display:inline-block; color:#ff6600; font-weight:300; font-size:1rem; }





/**************** 한줄 구성 라벨좌 인풋박스 (신청폼) ****************/
/****** 샘플
<div class="textbox">
<label for="cons_name">담당자명 <span class="star">*</span></label><input type="text" id="cons_name">
</div>
*******/


.textbox {position: relative;}

.textbox > label {
  position:relative ;
  display:block;
  padding: 0;  /* input 요소의 padding 값 만큼 */
  color: #000;
  cursor: text;
  font-weight:500;
  font-size:1rem;
  text-align:left; 
  margin-bottom:10px; 

}
.labeltitle_sam {color: #000;  font-weight:400; font-size:19px;  margin-bottom:20px; padding-left:5px;}

.textbox input[type="text"],
.textbox input[type="password"],
.textbox input[type="date"],
.textbox input[type="tel"],
.textbox input[type="email"] {
  width: 100%;  /* 원하는 너비 설정 */ 
  height: 45px;  /* 높이값 초기화 */
  line-height: 45px;  
  line-height : normal;  /* line-height 초기화 */
  padding: 0em 1em; /* 원하는 여백 설정, 상하단 여백으로 높이를 조절 */
  font-family: inherit;  /* 폰트 상속 */
  border: 1px solid #d4d4d4;
  border-radius: 4px;  /* iSO 둥근모서리 제거 */
  outline-style: none;  /* 포커스시 발생하는 효과 제거를 원한다면 */
  -webkit-appearance: none;  /* 브라우저별 기본 스타일링 제거 */
  -moz-appearance: none;
  appearance: none;
  font-weight:400;
  font-size:16px; 
  color: #000;
}

.textbox input[type="text"]:read-only { font-weight: 400; color: #000; background:#f5f5f5; }
.textbox input[type="date"]:read-only { font-weight: 400; color: #000; background:#f5f5f5; }



.textbox input[type="date"] { width: auto; max-width:200px;}


/**** 인풋 공간에 라디오버튼이나 체크박스가 들어갈 경우 박스 랩 처리 ****/
.inputwrap_sam { width: 100%;  /* 원하는 너비 설정 */ 
  position: relative;
  height: auto;  /* 높이값 초기화 */
  line-height : normal;  /* line-height 초기화 */
  padding:0 0 20px; 
  border-bottom: 1px solid #d4d4d4;  
}
.inputwrap_sam > p.title {
  position:relative ;
  display:block;
  padding: 0;  /* input 요소의 padding 값 만큼 */
  color: #000;
  cursor: text;
  font-weight:500;
  font-size:1rem;
  text-align:left; 
  margin-bottom:10px; 
}





/**************** 셀렉트박스 ****************/

.textbox select{
	-webkit-appearance:none; /* 네이티브 외형 감추기 */ 
	-moz-appearance:none; 
	appearance:none;
	background:url("/resources/img_client/common/select_arrow.png") no-repeat right 50%;
	background-size:26px auto;
	width: auto;  /* 원하는 너비 설정 */ 
	height: 45px;  /* 높이값 초기화 */
	line-height: 45px;  
	line-height : normal;  /* line-height 초기화 */
	padding: 0em 2.5em 0 1em; /* 원하는 여백 설정, 상하단 여백으로 높이를 조절 */
	font-family: inherit;  /* 폰트 상속 */
	border: 1px solid #d4d4d4;
	border-radius: 4px;  /* iSO 둥근모서리 제거 */
	outline-style: none;  /* 포커스시 발생하는 효과 제거를 원한다면 */
	font-weight:400;
	font-size:16px; 
	color: #000;
}
.textbox select::-ms-expand { display:none; } 




/**************** 텍스트에어리어 기본 형태 각 요소별 차별 스타일은 개별 스타일시트에서 클래스를 통한 추가 적용 ****************/
textarea { width:100%; min-height:150px; padding:20px; border:1px solid #d4d4d4;   font-family: 'Pretendard-Regular';  font-size:18px; color:#333}


/**************** 버튼 1개 가로 와이드형 ****************/
button.btn_single {  width:100%; height:60px; background:#c6252b;  color:#fff;  font-size:20px; font-weight:400; margin-top:50px;}
button.btn_single:hover { background:#333; }



/**************** 체크박스 ****************/
/****** 샘플
<div class="checkboxwrap">
	<input type="checkbox" id="cons_rulecheck"  /><label for="cons_rulecheck">개인정보 수집 및 이용 약관에 동의 합니다.</label>		
</div>
*******/

div.checkboxwrap {display:inline-block; margin-bottom:10px;  }

div.checkboxwrap input[type=checkbox] {  
    display: none;  
}
div.checkboxwrap input[type=checkbox] + label{
    display: inline-block;  
    cursor: pointer;  
    position: relative;  
    padding-left: 35px;  
    margin-right: 15px;  
    font-size: 16px;
	color:#000; 
}
div.checkboxwrap input[type=checkbox]+ label:before {     
    content: "";  
    display: inline-block;  
    width: 24px;  
    height: 24px;  
    margin-right: 10px;  
    position: absolute;  
    left: 0;  
    bottom: 0px;  
    background-color: #ccc;  
    border-radius: 2px; 
    box-shadow: inset 0px 1px 1px 0px rgba(0, 0, 0, .1), 0px 1px 0px 0px rgba(255, 255, 255, .8);  
}
div.checkboxwrap input[type=checkbox]:checked + label:before { 
    content: "\2713";  /* 체크모양 */
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);  
    font-size: 16px; 
    font-weight:800; 
    color: #fff;  
	font-weight:bold;
    background:#c6252b;
    text-align: center;  
    line-height: 23px;  
} 


/**************** 본문 목록 적요시의 체크박스 ****************/
/****** 샘플
<div class="checkboxwrap">
	<input type="checkbox" id="cons_rulecheck"  /><label for="cons_rulecheck">개인정보 수집 및 이용 약관에 동의 합니다.</label>		
</div>
*******/

div.listincert_checkbox_wrap {display:inline-block; margin-bottom:0px;  }

div.listincert_checkbox_wrap input[type=checkbox] {  
    display: none;  
}
div.listincert_checkbox_wrap input[type=checkbox] + label{
    display: inline-block;  
    cursor: pointer;  
    position: relative;  
    padding-left: 35px;  
    margin-right: 15px;  
    font-size: 16px;
	color:#000; 

}

/** 리스트에서 라벨값 없을때 추가 처리 **/
div.listincert_checkbox_wrap.nolabel input[type=checkbox] + label{
     padding-left: 0px;  
    margin-right: 0px;  
	margin-top:18px; 
}


div.listincert_checkbox_wrap input[type=checkbox]+ label:before {     
    content: "";  
    display: inline-block;  
    width: 24px;  
    height: 24px;  
    margin-right: 10px;  
    position: absolute;  
    left: 0;  
    bottom: 0px;  
    background-color: #ccc;  
    border-radius: 2px; 
    box-shadow: inset 0px 1px 1px 0px rgba(0, 0, 0, .1), 0px 1px 0px 0px rgba(255, 255, 255, .8);  
}
div.listincert_checkbox_wrap input[type=checkbox]:checked + label:before { 
    content: "\2713";  /* 체크모양 */
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);  
    font-size: 16px; 
    font-weight:800; 
    color: #fff;  
	font-weight:bold;
    background:#c6252b;
    text-align: center;  
    line-height: 23px;  
} 






/**************** 라디오버튼 ****************/
/****** 샘플
<input id="type01" type="radio" name="type" value="type01">
<label for="type01">상품/서비스 관련</label>
					
<input id="type02" type="radio" name="type" value="type02">
<label for="type02">기술 지원</label>
*******/

div.radiobox { display:inline-block; margin-bottom:10px;  }

input[type=radio] {
  display: none;
}
input[type=radio] + label{
    display: inline-block;  
    cursor: pointer;  
    position: relative;  
    padding-left: 30px;  
    margin-right: 20px;  
    font-size: 18px;
}
input[type=radio] + label:before {
  content: "";
  display: inline-block;
   width: 23px;
  height: 23px;
  border-radius: 30px;
  margin-right: 0px;
  position: absolute;
  left: -1px;
  bottom: 0px;
  background-color: #ccc;
  box-shadow: inset 0px 1px 1px 0px rgba(0, 0, 0, .1), 0px 1px 0px 0px rgba(255, 255, 255, .8);
}
input[type=radio]:checked + label:before {
    content: "\2022";
    color: #fff;
	background-color: #d50225;
    font-size: 35px;
    text-align: center;
    line-height: 14px;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + label{
    display: inline-block;  
    cursor: pointer;  
    position: relative;  
    padding-left: 30px;  
    margin-right: 20px;  
    font-size: 18px;
}
input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 23px;
  border-radius: 5px;
  margin-right: 0px;
  position: absolute;
  left: -1px;
  bottom: 0px;
  background-color: #ccc;
  box-shadow: inset 0px 1px 1px 0px rgba(0, 0, 0, .1), 0px 1px 0px 0px rgba(255, 255, 255, .8);
}
input[type=checkbox]:checked + label:before {
    content: "\2022";
    color: #fff;
	background-color: #d50225;
    font-size: 35px;
    text-align: center;
    line-height: 14px;
}


/**************** 파일업로드 ****************/

div.filebox input.upload-name {
    display: inline-block;
    height: 45px;
	line-height: 45px; 
    padding: 0 10px;
    vertical-align: middle;
    padding: 0em 1em; /* 원하는 여백 설정, 상하단 여백으로 높이를 조절 */
	font-family: inherit;  /* 폰트 상속 */
	border: 1px solid #d4d4d4;
	border-radius: 4px;
    width:calc(100% - 100px);
	font-weight:400;
	font-size:16px; 
	color: #000;
}

div.filebox label {
    display: inline-block;
	width:96px; 
    color: #fff;
    vertical-align: middle;
    background: #666;
    cursor: pointer;
    height: 45px;
	line-height: 45px;
	border-radius: 4px;
	text-align:center; 
}

div.filebox input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}


/**** 인풋 공간에 파일첨부가 들어갈 경우 박스 랩 처리 ****/
.inputwrap_filesam { width: 100%;  /* 원하는 너비 설정 */ 
  position: relative;
  height: auto;  /* 높이값 초기화 */
  line-height : normal;  /* line-height 초기화 */
  padding:0 0 0px; 
}
.inputwrap_filesam > p.title {
  position:relative ;
  display:block;
  padding: 0;  /* input 요소의 padding 값 만큼 */
  color: #000;
  cursor: text;
  font-weight:500;
  font-size:1rem;
  text-align:left; 
  margin-bottom:10px; 
}






@media screen and (max-width: 1919px) {
}

@media screen and (max-width: 1679px) {
}

@media screen and (max-width: 1439px) {
}

@media screen and (max-width: 1335px) {
}

@media screen and (max-width: 1279px) {
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
	div.filebox input.upload-name { width:100%; }
	div.filebox label {	width:100%; margin-top:5px; }
}

@media screen and (max-width: 479px) {
	.textbox > label, .labeltitle_sam, .inputwrap_sam > p.title, textarea { font-size:16px; }
	.inputwrap_filesam > p.title { font-size:16px; }
	div.checkboxwrap input[type=checkbox]:checked + label:before, input[type=radio] + label, div.checkboxwrap input[type=checkbox] + label { font-size:16px; }
}



