@charset "utf-8";

/* placeholder */
/*Chrome, Firefox, Opera, Safari 20.1+*/
input::placeholder {
	color: #a8aaad !important;
	opacity: 1; /*firefox*/
}
/*Firefox*/
input:-moz-input-placeholder {
	color: #a8aaad !important;
}
/*IE 10-11*/
input:-ms-placeholder {
	color: #a8aaad !important;
}
input:-ms-input-placeholder {
	color: #a8aaad !important;
}
/*Microsoft Edge*/
input::-ms-placeholder {
	color: #a8aaad !important;
}

/* button */
.btn {
	display: inline-block;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}
.btn_round {
	display: inline-block;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}
.btn_circle {
	display: inline-block;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}

/* button - size */
.btn_xs {
	padding: 4px 6px;
	font-size: 1.3rem; line-height: 1em;
}
.btn_sm {
	padding: 5px 5px;
	font-size: 1.4rem; line-height: 1em;
}
.btn_md {
	padding: 0 10px;
	height: 35px;
	font-size: 1.5rem; line-height: 35px;
}
.btn_lg {
	padding: 0 20px;
	height: 35px;
	font-size: 1.5rem; line-height: 35px;
}

/* button - color */
.btn_default {
	color: #fff;
	background-color: #005aab;
}
.btn_skyblue {
	color: #fff;
	background-color: #55ade3;
}
.btn_lightblue {
	color: #071631;
	background-color: #ceddeb;
}
.btn_gray {
	color: #071631;
	background-color: #e1e1e1;
}
.btn_disabled {
	color: #898989;
	background-color: #fff;
	border: 1px solid #898989;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	cursor: default;
}

/* button - border */
.btn_bo_gray {
	color: #474747;
	border: 1px solid #474747;
}

/* button - floating button */
.btn_fr {
	float: right;
}
.section_tit_lg + .btn_fr.btn_md {
	margin-top: -52px;
}

/* button - kind */
.btn_readmore {
	display: inline-block;
	padding-right: 30px;
	color: #071631; 
	background: url(../../images/client/formstyle/btn_readmore.png) no-repeat right center;
}
.btn_search {
	padding-left: 50px; padding-right: 25px;
	height: 35px;
	font-size: 1.5rem; line-height: 35px;
	background-image: url(../../images/client/formstyle/btn_search.png);
	background-repeat: no-repeat;
	background-position: 25px center;
	background-size: 18px;
}


/* input - radio */
.radio_row {
	display: inline-block;
	margin: 2px 10px 2px 0;
	font-size: 1.5rem;
}
.radio_row label {
	display: inline-block;
	padding: 2px 0 2px 25px;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 16px;
	background-image: url(../../images/client/formstyle/icon_radio_off.png);
	cursor: pointer;
}
.radio_row input:checked + label {
	background-image: url(../../images/client/formstyle/icon_radio_on.png);
}

/* input - checkrow */
.check_row {
	margin: 2px 10px 2px 0;
	font-size: 1.5rem;
}
.check_row > input {
	display: none;
}
.check_row label {
	display: inline-block;
	padding: 2px 0 2px 22px;
	background-repeat: no-repeat;
	background-position: left 5px;
	background-image: url(../../images/client/formstyle/icon_check_off.png);
}
.check_row label:hover {
	cursor: pointer;
}
.check_row input:checked + label {
	background-image: url(../../images/client/formstyle/icon_check_on.png);
}

/* form 공통 */
.form_style {
	padding: 0 10px;
	line-height: 35px; font-size: 1.5rem; color: #464646;
	background-color: #fff;
	border: 1px solid #c2cad2;
	box-sizing: border-box;
}
input[type="text"].form_style {
	height: 35px;
	border: 0;
}
input[type="text"].form_style:read-only {
	background: #f2f2f2;
}

/* textarea */
textarea.form_style{
	width: 100%;
	padding: 8px;
	line-height: 1.5em;
	border: 1px solid #c2cad2;
}

/* input - 검색창 */
.naming_input {
	position: relative;
	background: #fff;
	border: 1px solid #e1e1e1;
}
.naming_input label {
	position: relative;
	float: left;
	display: inline-block;
	padding: 0 6px;
	color: #23316e; font-size: 1.5rem; line-height: 33px;
}
.naming_input label:after {
	position: absolute; right: 0;
	content: "|";
	color: #23316e; 
}
.naming_input input {
	padding: 0 8px 0 8px;
	width: 100%; height: 33px;
	font-size: 1.4rem; line-height: 33px;
	border: none;
}
.naming_sm_input {
	padding-left: 80px;
}
.naming_sm_input label {
	margin-left: -80px;
	width: 80px;
}

/* tab */
.tab_list {
	width: 100%; height: 54px;
	margin-bottom: 15px;
	position: relative;
	font-size: 0; line-height: 0;
	border-bottom: 1px solid #d7d7d7;
}
.tab_list li {
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.tab_list li a {
	display: block;
	margin-top: 2px;
	min-width: 150px; padding: 0 10px;
	font-size: 1.6rem; line-height: 50px; text-align: center; color: #929292;
	background-color: #fff;
	border: 1px solid #d7d7d7;
	border-bottom: 0;
	-webkit-transition: all 0.3;
	-moz-transition: all 0.3;
	-o-transition: all 0.3;
	transition: all 0.3;
	cursor: default;
}
.tab_list li a.on {
	margin-top: 0;
	color: #55ade3; font-weight: 500;
	border-top: 4px solid #77c3f2;
}



/* paging */
.paging_wrap {
	width: 100%;
	text-align: center;
	padding: 30px 0 0; line-height: 0; font-size: 0;
	vertical-align: top;
}
.paging_wrap div {
	display: inline-block;
}
.page_con_left {
	margin-right: 16px;
}
.page_con_right {
	margin-left: 16px;
}
.paging_wrap a{
	display: inline-block;
	margin: 0 10px; padding: 0 2px;
	vertical-align: top;
	font-size: 1.6rem; font-weight: 600; line-height: 26px; 
	letter-spacing: -1px;
	cursor: pointer;
}
.paging_wrap a.active {
	color: #204845;
	border-bottom: 1px solid #204845;
}
.paging_wrap a.page_con{
	margin: 0 2px;
	width: 30px; height: 30px;
	text-indent: -9999px;
	border-left: 0;
	background-color: #fff;
	background-position: center center;
	background-repeat: no-repeat;
	border: 1px solid #e1e1e1;
}
.paging_wrap a.pre_page {
	margin-right: 10px;
	background-image: url(../../images/client/formstyle/btn_page_prev.png);
}
.paging_wrap a.first_page {
	background-image: url(../../images/client/formstyle/btn_page_first.png);
}
.paging_wrap a.next_page {
	margin-left: 10px;
	background-image: url(../../images/client/formstyle/btn_page_next.png);
}
.paging_wrap a.last_page {
	background-image: url(../../images/client/formstyle/btn_page_last.png);
}

/* 첨부파일 */
.attach_file_wrapper {
	position: relative;
	padding: 15px;
	background: #fff;
	border: 1px solid #d7d7d7;
}
.attach_file_box {
	display: inline-block;
	margin: 8px 2px 0 2px;
	width: 120px; height: 120px;
}
.attach_file_box input{
	display: none;
}
.attach_file_box .attach_file {
	/* 파일첨부 박스 */
	position: static;
	display: inline-block;
	padding: 65px 0 0 0;
	width: 100%; height: 100%;
	color: #03178c; font-weight: 500; font-size: 1.5rem; text-align: center;
	background: url(../../images/client/formstyle/icon_addfile.png) no-repeat 50% 29px;
	border: 3px dashed #cbdfe8;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}


.file_thumbnail {
	position: relative;
	overflow: hidden;
	display: inline-block;
	margin-top: 8px;
	width: 120px;
	background-color: #fff;
	border: 1px solid #d7d7d7;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.file_thumbnail a {
	display: block;
	width: 100%; 
}
.file_thumbnail .thumbnail_img {
	position: relative;
	width: 100%; height: 93px;
	overflow: hidden
}
.file_thumbnail .thumbnail_img img {
	position: absolute; top: 50%; left: 50%;
	width: 120%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.file_thumbnail a span {
	overflow: hidden;
	display: block;
	width: 100%; height: 25px;
	padding-left: 15px;
	background: #f2f2f2 url(../../images/client/formstyle/icon_attachfile.png) no-repeat 3px center;
	font-size: 1.3rem; line-height: 25px; white-space: nowrap;
	text-overflow: ellipsis;
}
.file_thumbnail .btn_del {
	position: absolute; top: 5px; right: 5px; z-index: 10;
	display: inline-block;
	width: 20px; height: 20px;
	text-indent: -9999px;
	background: url(../../images/client/formstyle/btn_del.png) no-repeat;
}

/* 첨부파일 링크 */
.downfile_wrapper {
	margin-bottom: 10px; padding: 10px 20px;
	background-color: #edf0f3;
}
.downfile_wrapper strong {
	position: relative;
	display: inline-block;
	margin-right: 10px; padding: 0 13px 0 30px;
	font-weight: 600; vertical-align: top;
	background-repeat: no-repeat; background-position: left center;
	background-image: url(../../images/client/formstyle/icon_fileform.png);
}
.downfile_wrapper strong:after {
	position: absolute; top: 0; right: 0;				
	content: "|";
	color: #c2cad2;`
}
.downfile_link {
	display: inline-block;
	padding: 0 10px 0 22px;
	color: #60b3dd; font-weight: 600;
	background: url(../../images/client/sub/icon_file_included.png) no-repeat left 3px;
}


@media only screen and (max-width:1279px){}
@media only screen and (max-width:1080px){}
/*================================ hover(pc) ================================ */
@media screen and (min-width:1025px){

	/* button - color hover */
	.btn_default:hover {
		background-color: #01427c;
	}
	.btn_skyblue:hover {
		background-color: #4096cb;
	}
	.btn_lightblue:hover {
		background-color: #a5c2dd;
	}
	.btn_gray:hover {
		background-color: #bfbfbf;
	}

	/* paging hover */
	.paging_wrap a:hover {
		color: #204845;
		border-bottom: 1px solid #204845;
	}
	.paging_wrap a.page_con:hover {
		border-bottom: 1px solid #e1e1e1;
	}
	
	/*  첨부파일 링크 hover */
	.downfile_link:hover {
		text-decoration: underline;
	}
	
}
/*================================ //hover(pc) ================================ */
@media only screen and (max-width:1024px){
	
	/* 버튼 */
	/* button - size 1024 */
	.btn_md {
		height: 30px;
		line-height: 30px;
	}
	.btn_lg {
		height: 30px;
		line-height: 30px;
	}
	
	/* button - kind 1024 */
	.btn_readmore {
		padding-right: 25px;
		font-size: 1.4rem;
		background-size: 18px;
	}
	
	/* tab 1024 */
	.tab_list {
		height: 44px;
	}
	.tab_list li a {
		min-width: 120px;
		line-height: 40px;
	}
	
	/* 첨부파일 링크 1024 */
	.downfile_wrapper {
		padding: 8px 10px;
	}
	.downfile_wrapper strong {
		padding-left: 22px;
		background-size: 15px;
	}
	.downfile_link {
		padding-left: 20px;
		background-size: 14px;
	}
	
}
@media only screen and (max-width:768px){
	
	
	/* input - radio 768 */
	.radio_row label {
		padding-left: 18px;
		background-size: 14px;
	}
	
	/* input - checkrow 768 */
	.check_row label {
		padding-left: 19px;
		background-size: 14px;
	}
	
	/* tab 768 */
	.tab_list {
		height: 40px;
	}
	.tab_list li a {
		min-width: 80px;
		font-size: 1.5rem; line-height: 36px;
	}
	
	/* paging 768 */
	.paging_wrap {
		padding: 15px 0 0;
	}
	
	/* 첨부파일 링크 1024 */
	.downfile_wrapper strong {
		display: block;
		margin-bottom: 5px;
	}
	.downfile_wrapper strong:after {
		position: static;
		margin-left: 5px;
	}
}
@media only screen and (max-width:480px){
	
	/* paging 480 */
	.page_con_left {
		margin-right: 10px;
	}
	.page_con_right {
		margin-left: 10px;
	}
	.paging_wrap a {
		margin: 0 8px;
	}
	
	
	
	
	
	
	
	
	
	
	
}