* {box-sizing: border-box;}


label{
	font-size:16px;
}

.input_tit{
	font-size:16px;
	margin-bottom:7px;
	font-weight: 500;
}

.input_text {
  width: 100%;
  padding: 12px;
  border: navajowhite;
  border-bottom: 2px solid #222;
  /* border-radius: 4px; */
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  font-size:14px;
}

.input_select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

.input_textraea{
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}





/* 체크박스 커스텀 s */
.check_container {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  margin-right:20px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.check_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

.check_container:hover input ~ .checkmark {
  background-color: #ccc;
}

.check_container input:checked ~ .checkmark {
  background-color: #ef4c23;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.check_container input:checked ~ .checkmark:after {
  display: block;
}

.check_container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* 체크박스 커스텀 e */







/* 라디오 커스텀 s */
.radio_container {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  margin-right:20px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radiomark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

.radio_container:hover input ~ .radiomark {
  background-color: #ccc;
}

.radio_container input:checked ~ .radiomark {
  background-color: #2196F3;
}

.radiomark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio_container input:checked ~ .radiomark:after {
  display: block;
}

.radio_container .radiomark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
/* 라디오 커스텀 e */




select{
/*ios대응*/
-webkit-appearance: none;
-moz-appearance: none; 
appearance: none;

/*화살표 배경 넣기*/
background: url('../images/sel_arr.png') no-repeat 96% 50% #fff; /*화살표 select박스 오른쪽 중앙 배치,배경 흰색*/
background-size: 10px;
}
select::-ms-expand{ 
display:none; /* 화살표 없애기 for IE10, 11*/
}