@charset "utf-8";


/*------------------------------------
  skin-color 
------------------------------------*/
.top-line{
	border-top:2px solid var(--black);
}


/*------------------------------------
  board-btn 
------------------------------------*/
.btn-md {
    min-width: 6rem;
}


/*------------------------------------
  badge
------------------------------------*/
.badge-new{
	font-family: "Montserrat", "Pretendard", sans-serif;
	font-weight: 700;
	background-color:#fab000;
	color:#fff;
	font-size: 0.725rem;
	letter-spacing:0;
	height: 1.25rem;
	line-height: 1.25rem;
	padding:0 0.425rem;
	vertical-align:middle;
	border-radius: 50rem;
	margin-top:-0.2rem;
	-webkit-animation:pulse-new 1.5s 1s ease infinite;
	animation:pulse-new 1.5s 1s ease infinite;
}
@-webkit-keyframes pulse-new {
 0% {
  opacity:1
 }
 50% {
  opacity:0
 }
 to {
  opacity:1
 }
}
@keyframes pulse-new {
 0% {
  opacity:1
 }
 50% {
  opacity:0
 }
 to {
  opacity:1
 }
}

.notice{
	background:var(--primary);
	display: inline-block;
	padding: 0.3em 0.5em 0.35em;
	font-size: 80%;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: 0.25rem;
}
.badge-comment{
	display:inline-block;
	font-size: 0.825rem;
	line-height: 1.25rem;
	color:#fff;
	font-weight:700;
	padding:0 0.425rem;
	border-radius:0.2rem;
	background-color:#c5c6c7;
	margin:-0.2rem 0 0 0.5rem;
	height:1.25rem;
	min-width:1.25rem;
	text-align:center;
	vertical-align: middle;
	position:relative;
}
.badge-comment:empty{
	display:none;
}
.badge-reply{
	display:inline-block;
	width:1rem;
	height:.5rem;
	border-left:2px dotted #999;
	border-bottom:2px dotted #999;
	vertical-align: middle;
	margin:-.5rem .25rem 0 0;
}

.icon-secret::after{
	content: '\e966';
	font-family: xeicon !important;
	display: inline-block;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-right: 0.25em;
}

.text-reply{
	font-family: "Montserrat", "Pretendard", sans-serif;
	color: var(--primary);
	font-size: 0.875em;
	display: inline-block;
}


/*------------------------------------
  board-search
------------------------------------*/
.board-search{
	max-width:560px !important;
	margin:0 auto 2rem !important;
	border:1px solid var(--border) !important;
	border-radius: 50rem !important;
	position:relative !important;
	padding: 0.1rem 0.5rem !important;
}
.board-search input.form-control, 
.board-search select{
	border:none !important;
	font-size:1rem !important;
	background-color: transparent;
}
.board-search input.form-control{
	width:calc(100% - 3em) !important;
}
.board-search input.form-control:focus, 
.board-search select:focus {
    border-color: none !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}
.board-search .btn-search{
	position:absolute;
	top:0;
	right:0.5em;
	height: 100%;
	width:2.8rem;
	border:none;
	color:var(--black);
	font-size:1.5rem;
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-align: center !important;
	align-items: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}
.board-search::after{
	content:'';
	position:absolute;
	left:33.888888%;
	top:50%;
	width:1px;
	height:1.2rem;
	background:#e5e5e5;
	transform: translate(0, -50%);
}
.board-search input:-webkit-autofill,
.board-search input:-webkit-autofill:hover, 
.board-search input:-webkit-autofill:focus,
.board-search textarea:-webkit-autofill,
.board-search textarea:-webkit-autofill:hover,
.board-search textarea:-webkit-autofill:focus,
.board-search select:-webkit-autofill,
.board-search select:-webkit-autofill:hover,
.board-search select:-webkit-autofill:focus {
  border:none;
  -webkit-text-fill-color: #555;
  -webkit-box-shadow: none;
  transition: background-color 5000s ease-in-out 0s;
}
@media (min-width: 992px) {
	.board-search{
		width:80%;
	}
	.board-search{
		padding:0.25rem 0.5rem !important;
		margin-bottom: 4em!important;
	}
	.board-search::after{
		left:28%;
	}
	.board-search input.form-control{
		margin-left: 1rem;
	}
}
@media (max-width: 991px) {
	.board-search select{
		font-size:1rem;
	}
}


/*------------------------------------
  default-new-list
------------------------------------*/
table.default-list {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1rem;
	background-color: transparent;
	box-sizing: content-box;
}
table.default-list th,
table.default-list td{
	position:relative;
	vertical-align: middle;
	text-align:center;
}
table.default-list th{
	border-bottom:1px solid var(--border-light);
	font-weight:500;
	color:#222;
	font-size:1.05rem;
	padding:1.55rem 1rem;
}
table.default-list td{
	font-weight:400;
	font-size:1rem;
	position:relative;
	vertical-align:top;
	border-bottom:1px solid var(--border-light);
	padding:1.35rem 1rem;
}
table.default-list td a{
	color:#222;
	font-size:1.05rem;
	font-weight:500;
}
table.default-list tbody tr:hover{
	background:var(--bg-light);
}
table.default-list tr.row-notice td.text-num span{
	display:inline-block;
	background-color: var(--primary);
	padding:0.325rem 0.625rem;
	border-radius:50rem;
	color:#fff;
	font-weight:700;
	font-size:0.75rem;
	line-height:1.1;
	font-family: "Montserrat", "Pretendard", sans-serif;
}
table.default-list td .text-reply{
	margin-left: 0.375em;
}
/* 비밀번호 입력 */
table.default-list ._popup_pass{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1050;
	background: rgba(0, 0, 0, 0.75);
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 1.5em;
}
table.default-list ._popup_pass .pop_board_pass {
	background-color: var(--white);
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 0.625em;
	width: 100%;
	max-width: 450px;
}
table.default-list .pop_board_pass .form-inline{
	width: 100%;
	padding: 1em 1.5em 2em;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: start;
	align-items: start;
}
table.default-list .pop_board_pass .form-inline label{
	font-weight: 700;
	color: var(--black);
}
table.default-list .pop_board_pass .form-control{
	height: calc(2.25rem + 6px);
    padding: 0.375rem 0.75rem;
	width: 100%;
}
table.default-list .pop_board_pass .btn-area {
	width: 100%;
	padding: 1em;
	margin: 0 !important;
	border-top: 1px solid var(--border-light);
	text-align: center;
}
table.default-list .pop_board_pass .btn-area .btn{
	font-size: 0.9375rem;
}


@media (max-width: 991px) {
	table.default-list colgroup,
	table.default-list thead{
		display:none;
	}
	table.default-list td{
		padding:0;
		font-weight:300;
	}
	table.default-list td > a{
		display:block;
		font-size:1rem;
		line-height:1.4;
		font-weight:400;
		padding:1.2rem 3.5rem 1.2rem .8rem;
	}
	table.default-list td > a::after{
		content: '';
		display: block;
		position:absolute;
		right:1rem;
		top:50%;
		width: 9px;
		height: 9px;
		border-right: 0.075rem solid #b0b0b0;
		border-top: 0.075rem solid #b0b0b0;
		margin:-5px 0 0 0 ;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	table.default-list div.row-mobile{
		font-size:0.875rem;
		color:#999;
		margin-top:.5rem;
		font-weight:300;
	}
	table.default-list div.row-mobile > span{
		display:inline-block;
	}
	table.default-list div.row-mobile > span::after{
		content:'';
		display:inline-block;
		vertical-align:middle;
		width:1px;
		height:.75rem;
		background-color:#ddd;
		margin:0 .8rem .15rem 1rem; 
	}
}



/*------------------------------------
  board-view
------------------------------------*/
.board-view > div{
	font-size:1rem;
	padding:1.5em 1px;
	border-bottom:1px solid var(--border-light);
	margin: 0;
}
.board-view .row .col:first-of-type {
	font-weight: 700;
}
.board-view .row-title{
	padding:2.5rem 1px;
}
.board-view .row-title h4{
	font-weight:500;
	color:var(--black);
	font-size:1.175rem;
	line-height: 1.4;
	margin-bottom:0;
	word-break:keep-all;
}
.board-view .row-title h4:lang(en) {
	font-weight: 600;
	font-family: 'Open Sans', 'Pretendard', sans-serif;
	letter-spacing: -0.0375em;
}
.board-view .row-title .con-info{
	color:var(--gray-300);
	font-size:0.925rem;
	letter-spacing:-0.02rem;
	font-family: 'Open Sans', 'Pretendard', sans-serif;
	margin-bottom:1rem;
}
.board-view .row-title .bar::after{
	content:'';
	display:inline-block;
	vertical-align:middle;
	width:1px;
	height:.625rem;
	background-color:var(--gray-200);
	margin:0 .8rem .15rem 1rem; 
}
.board-view .row-file a{
	position: relative;
	display:inline-block;
	font-size:0.875em;
	margin:.2rem .4rem .2rem 0;
	border:1px solid var(--border-light);
	padding:.375em 2.75em .375em 0.75em;
	background:var(--bg-light);
	border-radius:0.375em;
}
.board-view .row-file a::after {
	content: '\e258';
	position:absolute;
	right: 0.5em;
	top: 50%;
	font-family: var(--material-symbols);
	font-size: 1.275em;
	font-weight: 500;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.board-view .row-content{
	min-height:15rem;
	padding:2.5rem 0;
	display: block;
	position:relative;
}
.board-view .row-content img{
	max-width:100%;
	height:auto;
}
.board-view .row-content .video_wrap{
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
	margin-bottom:3rem;
}
.board-view .row-content .video_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 이전글/다음글 */
.board-view .row-next > div:first-child{
	color:var(--gray-300);
}
.board-view .row-next > div:last-child{
	color:var(--gray-300);
	font-weight:300;
}
.board-view .row-next > div:first-child::after{
	content:'\f0d8';
	display:inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size:0.85rem;
	margin-left:1rem;
	color:#a5a5a5;
}
.board-view .row-next:last-child > div:first-child::after{
	content:'\f0d7';
}
.board-view .row-next a{
	color:var(--black);
}
@media (max-width: 992px) {
	.board-view > div{
		padding:1.3rem 0;
		font-size:1rem;
	}
	.board-view .row-title, 
	.board-view .row-content{
		padding:1.75rem 0;
	}
	.board-view .row-next > div{
		padding:0;
	}
	.board-view .row-title h4{
		font-size:1.1rem;
	}
	.board-view .row-title div{
		font-size:0.975rem;
	}
	/* 이전글/다음글 */
	.board-view .row-next > div:first-child{
		margin-bottom:.5rem;
	}
}

/*------------------------------------
  comment
------------------------------------*/
/* 댓글등록 폼 */
.comment-write{
	border:1px solid var(--border-light);
	background:var(--bg-light);
	padding:1.5rem;
	position:relative;
}
.comment-write .btn-area{
	margin-top:1rem;
}
@media (max-width: 992px){
	.comment-write .btn-area .btn{
		width:100%;
	}
}

/* 댓글 리스트 */
.comment-list dl{
	border-bottom:1px solid var(--border-light);
}
.comment-list dl dt{
	font-size:1.1rem;
	color:var(--black);
	font-weight:500;
}
.comment-list dl dd.col-data{
	font-size:0.9rem;
	color:var(--gray-300);
	letter-spacing:0;
}
.comment-list dl dd.con_comment{
	margin:0;
	padding:0.5rem 15px 1rem;
}
.comment-list .pop_comment_pass,
.comment-list .pop_comment_content{
	padding:10px 15px 20px;
}
.comment-list li.comment-none{
	border-bottom:1px solid var(--border-light);
	text-align:center;
	padding-bottom:1rem;
}

/*------------------------------------
  board-write 
------------------------------------*/
.board-write label.col-form-label{
	color:var(--black);
	font-weight:500;
}
.board-write > div{
	padding:1rem 0 1.7rem;
	border-bottom:1px solid var(--border-light);
	margin-bottom:0;
}
.board-write .require::after {
    content: '*';
    display: inline-block;
    margin: -2px 0 0 3px;
    color: #de4f41;
    vertical-align: top;
}
/* 첨부파일 */
.board-write .file-list{
	border-top:1px dotted var(--border-light);
	margin:0;
	padding:.6rem 0;
}
.board-write .file-list label.col-form-label span{
	display: inline-block;
	padding: 0.4rem 0.5rem;
	background:#777;
	border-radius: 0.2rem;
	font-size:0.9rem;
	color:#fff;
	font-weight: 500;
	line-height: 1;
}

@media (min-width: 992px) {
	.board-write > div{
		padding:1.125rem 0;
	}

	/* 첨부파일 */
	.board-write .file-list:first-child{
		border-top:none;
		padding-top:0;
	}
}

/*------------------------------------
  faq_new 
------------------------------------*/
.faq-list{
	border-top:1px solid var(--black);
}
.faq-list dl{
	margin:0;
	padding:0 !important;
	position:relative;
}
.faq-list dl dt a{
	display:block;
	padding:1.75rem 3.5rem 1.65rem;
	font-size:1rem;
	font-weight:500;
	color:var(--black);
	border-bottom:1px solid var(--border-light);
}
.faq-list dl dt a::before{
	content:'Q';
	display:block;
	position:absolute;
	left:1rem;
	top:1.45rem;
	font-family: 'Montserrat', sans-serif;
	font-weight:800;
	font-size:1.35rem;
	color:var(--primary);
}
.faq-list dl dt a.control::after{
	content: '';
	display: block;
	position:absolute;
	right:1.5rem;
	top:2.15rem;
	width: 9px;
	height: 9px;
	border-right: 2px solid var(--black);
	border-top: 2px solid var(--black);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-moz-transition:all 0.3s linear;
	-webkit-transition:all 0.3s linear;
	-o-transition:all 0.3s linear;
	-ms-transition:all 0.3s linear;
	transition:all 0.3s linear;
}
.faq-list dl dt a.control.collapsed::after{
	top:2.05rem;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
	vertical-align:middle;
	-moz-transition:all 0.3s linear;
	-webkit-transition:all 0.3s linear;
	-o-transition:all 0.3s linear;
	-ms-transition:all 0.3s linear;
	transition:all 0.3s linear;
}
.faq-list dl dd div{
	padding:2rem 1.5rem 2rem 3.5rem;
	border-bottom:1px solid var(--border-light);
	background:var(--bg-light);
	position:relative;
}
.faq-list dl dd div::before{
	content:'A';
	display:block;
	position:absolute;
	left:1.05rem;
	top:1.7rem;
	font-family: 'Montserrat', sans-serif;
	font-weight:800;
	font-size:1.35rem;
	color:var(--black);
}
.faq-list .comment-none{
	padding:1.25rem 5rem;
	margin:0;
	text-align:center;
	border: solid var(--border-light);
	border-width:0 1px 1px 1px;
}
@media (min-width: 1200px){
	.faq-list dl dt a{
		padding:1.75rem 5rem 1.65rem;
		font-size:1.05rem;
	}
	.faq-list dl dt a::before{
		left:1.75rem;
		top:1.35rem;
	}
	.faq-list dl dt a::after{
		right:1.75rem;
	}
	.faq-list dl dd div{
		padding:2rem 2.5rem 2rem 5rem ;
	}
	.faq-list dl dd div::before{
		left:1.85rem;
		top:1.7rem;
	}
}


/*------------------------------------
  gallery_new 
------------------------------------*/
.gallery-list ul {
	margin-left: -0.75em;
	margin-right: -0.75em;
}
.gallery-list li{
	/* padding-left: 0.75em;
	padding-right: 0.75em; */
	margin-bottom:3rem;
}
.gallery-list li.no-data{
	-ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
	text-align:center;
}
.gallery-list li a{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	width:100%;
	height:100%;
	position: relative;
	overflow:hidden;
}
.gallery-list .gallery-img-wrap{
	position: relative;
}
.gallery-list .gallery-img-wrap {
	position: relative;
	overflow: hidden;
	border-radius: var(--border-radius);
}
.gallery-list .gallery-img{
	position:relative;
	width: 100%;
    height: 0;
	padding-top: 76%;
	background-color: var(--bg-light);
}
.gallery-list .gallery-img img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-object-fit: cover;
	z-index: 5;
}
.gallery-list .gallery-img::before {
	content: 'NO IMAGE';
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	font-family: "Montserrat", "Pretendard", sans-serif;
	font-weight: 800;
	font-size: 1.125em;
	color: var(--gray-200);
}
.gallery-list .gallery-img::after{
	content:'';
	position: absolute;
	z-index:10;
	left:0;
	top:0;
	width:100%;
	height:100%;
	border:1px solid rgba(0, 0, 0, 0.05);
	border-radius: var(--border-radius);
}
.gallery-list .gallery-content{
	-ms-flex: 1 1 auto;
    flex: 1 1 auto;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	position:relative;
	z-index:10;
	padding:1.7rem 0;
	border-bottom:1px solid var(--black);
}
.gallery-list .gallery-content .gallery-title{
	font-size: 1.175rem;
	font-weight:500;
	line-height: 1.750rem;
	color: var(--black);
	word-break: break-all;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	width:100%;
	overflow: hidden;
}
.gallery-list .gallery-content .info-area {
	-ms-flex: 1 1 auto;
    flex: 1 1 auto;
	margin-top: 1.5em;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: end;
	align-items: end;
}
.gallery-list .gallery-content .gallery-data{
	font-size:0.975rem;
	letter-spacing:0;
	color:var(--gray-300);
	margin:0;
	line-height: 1.4;
}
.gallery-list .gallery-content-banner{
	border:solid var(--border-light);
	border-width:0 0 0px;
	padding:1.5rem 1rem;
}
.gallery-list .gallery-content-banner .gallery-title{
	font-size: 1.250rem;
	line-height: 1.750rem;
	color: #333333;
	word-break: break-all;
	margin-bottom: 1.0rem;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	width:100%;
	overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
	.gallery-list a .gallery-img-wrap::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.4);
		opacity: 0;
		z-index: 9;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
	.gallery-list a .gallery-img-wrap::after {
		content: '';
		position: absolute;
		top: 35%;
		left: 50%;
		width: 3.625em;
		height: 3.625em;
		border-radius: 50%;
		background: var(--primary) url('/public/images/board/icon-more.png')no-repeat 50%/ 80%;  
		opacity: 0;
		z-index: 10;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
	.gallery-list a:hover .gallery-img-wrap::before {
		opacity: 1;
	}
	.gallery-list a:hover .gallery-img-wrap::after{ 
		opacity: 1;
		top: 50%;
	}
}

@media (min-width: 1200px) {
	.gallery-list ul{
		margin-left:-1.625em;
		margin-right:-1.625em;
	}
	.gallery-list li{
		/* padding-left:1.625em;
		padding-right:1.625em; */
		margin-bottom:4rem;
	}
	.gallery-list .gallery-content{
		padding:2rem 0 2rem;
	}
}

/* 제품 갤러리 */
.gallery-list.gallery-product .gallery-img {
	padding-top: 90%;
}

/* 인증서 갤러리 */
.gallery-list.gallery-certificate .gallery-img-wrap{
	border-radius: 0.625em;
}
.gallery-list.gallery-certificate .gallery-img {
	padding-top: 145%;
}
.gallery-list.gallery-certificate .gallery-img::after {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 0.625em;
}
.gallery-list.gallery-certificate .gallery-title {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
	white-space: normal;
	overflow: visible; 
	text-overflow: clip;  
	-webkit-line-clamp: unset;
	line-clamp: unset;
}



/* VOD 갤러리 */
.gallery-list.vod-list .gallery-img{
	border-radius: var(--border-radius);
	overflow: hidden;
}
.gallery-list.vod-list .gallery-img img{
}















/*------------------------------------
	gallery-vertical
------------------------------------*/
.gallery-list.gallery-vertical li::after{
	content:'';
	position: absolute;
	z-index:0;
	left:15px;
	top:0;
	width:calc(100% - 30px);
	height:100%;
	box-shadow:5px 5px 12px 0 rgba(0, 0, 0, 0.08);
}
.gallery-list li.no-data::after{
	content:'';
	display:none;
}
.gallery-list.gallery-vertical li a::before{
	border-color:var(--border-light);
}
.gallery-list.gallery-vertical .gallery-img{
	padding-top:140%;
}
.gallery-list.gallery-vertical .gallery-content{
	padding:1rem;
	color:var(--black);
	border-color:var(--border-light);
	margin-top:-2px;
	background:#fff;
}
@media (min-width: 768px) {
	.gallery-list.gallery-vertical .gallery-content{
		padding:1.2rem 1rem 1.4rem;
		font-size:1.12rem;
	}
}


/*------------------------------------
	company-banner
------------------------------------*/
.compay-banner-list a{
	display:block;
	border:1px solid #ddd;
	border-radius:0.5rem;
	box-shadow: 0 10px 10px -5px  rgba(0, 0, 0, .05);
}
.compay-banner-list .gallery-img{
	position:relative;
	padding: 0.5rem 0;
	/*padding-top:40%;*/
}
.compay-banner-list .gallery-img > div{
	position:absolute;
	top:0.6rem;
	left:0.6rem;
	width:calc(100% - 1.2rem);
	height:calc(100% - 1.2rem);
	background-size:contain !important;
}
.compay-banner-list a:hover img {
    transform: scale(1.07);
}
.compay-banner-list .banner-title{
	background-color:#f8f8f8;
	border-bottom-left-radius:0.5rem;
	border-bottom-right-radius:0.5rem;
	border-top:1px solid var(--border-light);
	padding:.7rem;
}
.compay-banner-list .no-image{
	display:flex;
	width: 220px;
	height: 100px;
	justify-content: center;
	align-items: center;
	font-size:1.8rem;
	font-weight:bold;
	color:#bbb;
	margin:.7rem auto;
}


/*------------------------------------
  qna-list - PC
------------------------------------*/
table.qna-list {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1rem;
	background-color: transparent;
	box-sizing: content-box;
}
table.qna-list th,
table.qna-list td{
	position:relative;
	vertical-align: middle;
	text-align:center;
	padding:2rem 0.5rem;
}
table.qna-list th{
	border-bottom:1px solid var(--border-light);
	font-weight:500;
	color:#222;
	font-size:1.15rem;
}
table.qna-list td{
	font-weight:300;
	font-size:1.1rem;
	position:relative;
	border-bottom:1px solid var(--border-light);;
}
table.qna-list td a{
	color:#222;
	font-size:1.2rem;
	font-weight:500;
}
table.qna-list tbody tr:hover{
	background:#fafafa;
}
table.qna-list tr.row-notice td.text-num span{
	display:inline-block;
	background-color: var(--primary);
	padding:0.35rem 0.8rem 0.45rem;
	border-radius:50rem;
	color:#fff;
	font-weight:500;
	font-size:1rem;
	line-height:1;
}
/* 비밀번호 입력 */
table.qna-list ._popup_pass{
	padding:1rem;
	border:5px solid var(--border-light);
	background:#fff;
	text-align:center;
	margin:1rem 0 0;
}

@media (max-width: 992px) {
	table.qna-list colgroup,
	table.qna-list thead{
		display:none;
	}
	table.qna-list td{
		padding:0;
		font-weight:300;
	}
	table.qna-list td > a{
		display:block;
		font-size:1.1rem;
		font-weight:400;
		padding:1.2rem 3.5rem 1.2rem .8rem;
	}
	table.qna-list td > a::after{
		content: '';
		display: block;
		position:absolute;
		right:1rem;
		top:50%;
		width: 9px;
		height: 9px;
		border-right: 0.075rem solid #b0b0b0;
		border-top: 0.075rem solid #b0b0b0;
		margin:-5px 0 0 0 ;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	table.qna-list div.row-mobile{
		font-size:0.9rem;
		color:#999;
		margin-top:.5rem;
		font-weight:300;
	}
	table.qna-list div.row-mobile > span{
		display:inline-block;
	}
	table.qna-list div.row-mobile > span::after{
		content:'';
		display:inline-block;
		vertical-align:middle;
		width:1px;
		height:.75rem;
		background-color:#ddd;
		margin:0 .8rem .15rem 1rem; 
	}
	/* 비밀번호 입력 */
	table.qna-list ._popup_pass{
		margin:0 3.5rem 1.2rem .8rem;
		padding:1rem;
		border:1px solid var(--border-light);
		background:#fff;
		text-align:center;
	}
	table.qna-list ._popup_pass .btn-area{
		display:block;
		width:100%;
		margin-top:.8rem;
	}
}


/*------------------------------------
  qna-list - Mobile
------------------------------------*/
.qna-list-m li a{
	display:block;
	border:1px solid var(--border-light);
	border-radius:0.4rem;
	padding:1rem 1.25rem 1.25rem;
	margin-bottom:1.5rem;
	font-size:0.85rem;
	color:#222;
}
.qna-list-m .top-area{
	border-bottom:1px solid var(--border-light);
	padding-bottom:1rem;
}
.qna-list-m li .text-cate{
	background:#0090d5;
	border-radius:50rem;
	padding:0.25rem 1rem;
	color:#fff;
	font-weight:700;
	font-size:0.9rem;
}
.qna-list-m .text-title{
	font-size:0.95rem;
}
.qna-list-m .text-data{
	color:#999;
}
.qna-list-m .pro-info{
	background:#fafafa;
	padding:0.75rem 1rem;
	border: solid var(--border-light);
	border-width:0 1px 1px;
}


.txc-image {
	cursor: pointer;
}



/* ckeditor에서 사용되는 css */

/* editor 영역 내 bullet */
/* .ck.ck-editor__editable {
	padding: 0 40px;
} */

/* view > bullet */
/* .row-content ul:not(.todo-list), 
.ck.ck-editor__editable ul:not(.todo-list) {
	list-style: disc;
}

.row-content ul:not(.todo-list) li,
.ck.ck-editor__editable ul:not(.todo-list) li {
	list-style: inherit;
}

.row-content ul:not(.todo-list) li,
.ck.ck-editor__editable ul:not(.todo-list) li {
	list-style: inherit !important;
}

.row-content pre ul,
.row-content pre li,
.ck.ck-editor__editable pre ul,
.ck.ck-editor__editable pre li {
	list-style: none !important;
} */

/* view > checkbox 보이게 */
/* .row-content input[type=checkbox] {
	display: inline-block;
} */

/* view > image 위치 */
figure.image {
	text-align: center !important;
}

figure.image-style-block-align-right {
	text-align: right !important;
}

figure.image-style-block-align-left {
	text-align: left !important;
}

/* imgae_resized 있을 경우 */
figure.image.image_resized {
	margin: 0 auto;
}

figure.image.image_resized.image-style-block-align-right {
	margin-right: 0;
}

figure.image.image_resized.image-style-block-align-left {
	margin-left: 0;
}
._display_none {
	display: none;
}


/* history */
#history_area:lang(ko) .text-en{
	display: none;
}
#history_area:lang(en) .text-ko {
	display: none;
}
.his-list-wrap .his_text{
	margin: 3em 0 2em;
	opacity: 0;
	transform: translateY(50px);
}
.his-list-wrap .his_text p{
	color: var(--gray-800);
}
.his-list-wrap .his_text p:nth-child(1){
	font-family: var(--font-en);
	color: var(--primary);
	text-transform: uppercase;
	font-weight: 800;
}
.his-list-wrap .his_text p:nth-child(2) {
	color: var(--black);
	font-family: var(--font-en);
	font-size: 1.75em;
	font-weight: 800;
	margin: 0.25em 0 0.75em;
}
.his-list-wrap .his_text.text-en p:nth-child(2) {
	font-family: var(--font-en);
}

.his-list-wrap .his_cont {
	position: relative;
	padding-bottom: 2em;
}
.his-list-wrap .his_cont::after {
	content: '';
	position: absolute;
	top: 1.5em;
	bottom: 0;
	left: 15px;
	width: 1px;
	background-color: var(--border-light);
	z-index: -1;
	opacity: 0;
 	animation: his-line 1s linear forwards;
	-webkit-animation: his-line 1s linear forwards;
}
.his_listbox{
	opacity: 0;
	transform: translateY(50px);
}
.his_listbox .his_box{
	padding-left: 1.5em;
	margin-bottom: 1.5em;
	position: relative;
}
.his_listbox .his_box::before{
	content: '';
	position: absolute;
	top: 1.2em;
	left: -4px;
	width: 9px;
	height: 9px; 
	border: 2px solid var(--primary);
	outline: #fff solid 1px;
	box-shadow: 0 0 0 3px var(--primary);
	border-radius: 50%;
	z-index: 1;
}
.his_listbox .his_box p {
	font-family: var(--font-en);
	color: var(--primary);
	font-weight: 700;
	font-size: 2rem;
}

.his_listbox .his_box dl {
	display: -ms-flexbox;
	display: flex;
	line-height: 130%;
	padding: 0.375em 0;
}
.his_listbox .his_box dl dt {
	color: var(--black);
	font-family: var(--font-en);
	font-weight: 800;
	letter-spacing: 0;
	-ms-flex: 0 0 4.5em;
	flex: 0 0 4.5em;
	max-width: 4.5em;
}

.his_listbox .his_box dl dt a {
	color: var(--black);
}

.his_listbox .his_box dl dd {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

@media (min-width: 1200px) {
	.his-list-wrap .his_text {
		margin-top: 4em;
	}
	.his-list-wrap .his_cont {
		padding-top: 4em;
		padding-bottom: 3em;
	}
	.his-list-wrap .his_cont::after {
		top: 0;
	}
	.his_listbox .his_box {
		padding-left: 2.5em;
		margin-bottom: 3em;
		position: relative;
	}
	.his_listbox .his_box p {
		margin-bottom: 0.375em;
	}
}
@media (min-width: 1480px) {
	.his-list-wrap .his_text {
		margin-top: 6em;
	}
	.his-list-wrap .his_text p {
		font-size: 1.25em;
		letter-spacing: -0.045em;
	}
	.his-list-wrap .his_text p:nth-child(1) {
		font-size: 1.175em;
	}
	.his-list-wrap .his_text p:nth-child(2) {
		font-size: 2.5em;
		letter-spacing: -0.0375em;
		margin: 0.5em 0 1em;
	}
	.his-list-wrap .his_cont {
		padding-top: 7em;
		padding-bottom: 5em;
	}
	.his_listbox .his_box{
		padding-left: 3.5em;
	}
	.his_listbox .his_box::before {
		top: 1.35em;
		left: -5px;
		width: 11px;
		height: 11px;
	}
	.his_listbox .his_box p {
		font-size: 2.25em;
		letter-spacing: -0.05em;
	}
}

@keyframes his-line {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}