



#tell_in .inq_form_Area {
    background: none;
    box-shadow: none;
    padding: 0px;
}
.info_txt {
	color:#111;
	font-family: Pretendard;
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	margin-bottom:20px;
}

.info_txt.first {
	margin-top:80px;
}
#tell_in .inq-field label {color:#999;}
#tell_in .inq-field label::before {display:none;}
#tell_in .inquiry_right_box {
    width: 100%;
    max-width: inherit;
    padding: 0;
    background: rgba(255, 255, 255, 0.75);
}

#tell_in textarea {
    resize: none;
    width: 100%;
    padding: 20px;
    border: 1px solid #EEE;
    box-sizing: border-box;
    font-family: Pretendard;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
	max-height: 300px;
}

#tell_in textarea::placeholder {
	color: #999999;
	font-family: Pretendard;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
}


.txt_inq {
	margin:80px 0 20px;
}


#tell_in  .inq_bottom {
    display: flex;
	margin-top:20px;
	flex-direction: row;
    justify-content: flex-start;
}

.inq_bottom label {
	display:flex;
	bottom: inherit;
	margin-left: 0px;
	position:relative;
	align-items: center;
	align-items: flex-end;
}

.inq_bottom label::before {
	display:none;
}

.check {
	color:#333;
	font-family: Noto Sans KR;
	font-size: 15px;
	font-weight: 400;
	line-height: 22px;
	padding-left:8px;
	cursor: pointer;
}


.inq_bottom #pricheck {
    position: relative;
	height: 14px;
    width: 14px;
    margin: 0;
	cursor: pointer;
}

#tell_in .inq_bottom input::before {
    content: '';
    width: 16px;
    height: 16px;
    top: 50%;
    left: 0;
    position: absolute;
    transform: translateY(-50%);
    /* background: url(../img/checkbox.png) no-repeat center/cover; */
    background-color: #fff;
    border: 1px solid #BBB;
	box-sizing: border-box;
}

#tell_in .inq_bottom input[type="checkbox"]:checked:after {
    content: '';
    top: 50%;
    left: 0px;
    width: 16px;
    height: 16px;
    background: red;
	position: absolute;
    transform: translateY(-50%);
    background: url(/public/img/check_box_c.png) no-repeat center/cover;
	background-color: #ffff;
}
#tell_in .inq_bottom input:focus {border-bottom:none;}

.cs_txt {
    color: #999;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    font-family: Pretendard;
    margin-left: 6px;
	padding-top: 4px;
    text-decoration: underline;
}

#tell_in .send_btn {
	width:240px;
	height:74px;
	border:1px solid #01B5DC;
	background:#01B5DC;
	
	margin:0 auto;
	margin-top:100px;
	display: flex;
    justify-content: center;
    align-items: center;
	transition:all 0.3s;
}


.inquiry_right_box .send_t {color:#fff;}

.send_t {
	color: #01B5DC;
	font-family: Pretendard;
	font-size: 22px;
	font-weight: 600;
	line-height: 26px;
}

#tell_in .send_btn:hover {background:#039BD0;}
#tell_in .send_btn:hover .send_t {color:#fff;}


.selectBox2 * { box-sizing: border-box; }
.selectBox2 {
	margin-top:30px;
	position: relative;
	height: 39px;
	border-radius: 4px;
	border-bottom:1px solid #EEE;
	background: url(/public/img/select-nav-arrow.png) no-repeat 95% 50%;
	cursor: pointer;
}
.selectBox2 .label {
	display: flex;
	align-items: center;
	width: 100%;
	height: inherit;
	border: 0 none;
	outline: 0 none;
	padding-left: 0px;
	background: transparent;
	cursor: pointer;
  
  	color:#999;
	font-family: Pretendard;
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
	letter-spacing: 0px;
	text-align: left;
	paddig-right:0;
}

.selectBox2 .optionList {
  position: absolute; 
  top: 38px;
  left: 0;
  width: 100%;
  background: #fff;
  color: #555;
  list-style-type: none;
  padding: 0;
  overflow: hidden;
  height: 0;
  transition: .3s ease-in;
}
/* .selectBox2 .optionList:focus {border:none;} */
.selectBox2 .optionList::-webkit-scrollbar {width: 6px;}
.selectBox2 .optionList::-webkit-scrollbar-track {background: transparent; }
.selectBox2 .optionList::-webkit-scrollbar-thumb {background: #F8F8F8; border-radius: 45px;}
.selectBox2 .optionList::-webkit-scrollbar-thumb:hover {background: #F8F8F8;}

.selectBox2.active .optionList {
	z-index:1;
	height:auto;
	max-height: 500px;
	border: 1px solid #EEE;
	box-shadow: 0px 5px 20px 0px #0000001a;
}

.selectBox2 .optionItem {
	font-family: Pretendard;
	font-size: 17px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0px;
	text-align: left;
	color:#555;

	border-bottom: 1px solid #eee;
	padding: 15px 20px 15px;
	transition: .1s;
}
.selectBox2 .optionItem:hover {background: #F8F8F8;}
.selectBox2 .optionItem:last-child {border-bottom: 0 none;}


@media (max-width:991px) {
	.selectBox2 .label {font-size:17px; line-height:26px;}

	.info_txt {
		font-size: 16px;
		line-height: 25px;
		margin-bottom: 19px;
	}
	
	
	.info_txt.first {
		margin-top: 30px;
		margin-bottom:0;
	}
	#tell_in .inq-field label { font-size: 17px; line-height: 26px;}
	#tell_in .inq_form_Area {padding: 0;}
	
	.txt_inq {
		margin: 60px 0 20px;
	}
	#tell_in .inq_bottom input[type="checkbox"]:checked:after, 
	#tell_in .inq_bottom input::before {top:78%;}
	
	#tell_in .send_btn {
		width: 100%;
		height: 66px;
		background: #039BD0;
		margin-top: 50px;
	}
	
	#tell_in .inq_bottom {
		padding-bottom:0;
	}
	
	.send_t {
		font-size: 18px;
		line-height: 22px;
	}
	
	.selectBox2 .optionItem {
		font-size:14px;
		line-height:18px;
		padding: 13px 17px 13px;

		font-size: 17px;
		font-weight: 400;
		line-height: 20px;
		letter-spacing: 0px;
		text-align: left;


	}
}


@media (max-width:767px){
	#tell_in .selectBox2 {height:60px; margin-top:0;}
	#tell_in .selectBox2 .optionList {top:60px;}
	#tell_in textarea::placeholder {font-size: 14px;}
}

/* =============== 구인구직 =============== */


#search_job label {
	color:#999;	
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
}


#search_job label::before {display:none;}


.inq-field.adress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EEE;
}

.on_addr label {
    line-height: 1.4rem;
    font-size: 1.2rem;
    color: #222222;
    top: 0px;
}

.add_btn {
    top: 20px;
    position: absolute;
    right: 0px;
    padding-top: 0px;
}

.search_add {
	color:#01B5DC;
	padding:7px 15px;
	border:1px solid #01B5DC;
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	cursor:pointer;
}


/* .addresss */













