
/***********************/
/***** 게시판 버튼 스타일 *****/
/***********************/
.btn_wrap {
	margin-top: 50px;
	text-align: center;
}
.btn_list {
	display: inline-block;
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: 10px 30px;
	font-size: 16px;
    border: 1px solid;
    border-radius: 2px;
    border-color: #03121d;
    background-color: #041827;
    color: #fff !important;
    font-weight: 400;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    vertical-align: middle;
}
.btn_list:hover {
	color: #fff;
}
.btn_list.more {
	background: transparent;
	color: #000;
}
.btn_list.more:hover {
	color: #000;
}
/***********************/
/***** 테이블 타입 게시판 스타일 *****/
/***********************/
table.list {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	color: #212529;
}
table.list th, table.list td {
	font-size: 15px;
    text-align: center;
}
table.list th {
	padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #e5e5e5;
    border-top: 1px solid #000;
    color: #000;
}
table.list tbody td {
	position: relative;
	padding: 1rem;
	vertical-align:middle;
	word-wrap: break-word;
	border-bottom: 1px solid #e5e5e5;
}
table.list tbody td.tit {
	text-align: left;
}
table.list tbody td a:hover {
	text-decoration: underline;
}
.board-contents {
	background: #f8f8f8;
}
table.list tbody tr.collapse {
	background: #f8f8f8;
}
.pagination {
	margin: 30px auto;
	text-align: center;
	    justify-content: center;
}

/***********************/
/***** 카드타입 게시판 스타일 *****/
/***********************/
.lib_list_wrap {
	border-top: 3px solid #1b1b1b;
	padding:30px 0;
}
.card_wrap {
	position: relative;
	background: #fff !important;
	border-radius: 7px;
	overflow: hidden;
	height: 100%;
    box-shadow: 4px 12px 30px 6px rgb(0 0 0 / 9%);
	-webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.card_wrap:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.card_wrap:hover {
	-webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    box-shadow: 4px 12px 20px 6px rgb(0 0 0 / 18%);
}

.card_wrap .card_img {
	position: relative;
	overflow: hidden;
}
.card_wrap .card_img .image {
	display: block;
	width: 100%;
	padding-top: 75%;
	background: #ccc;
	background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
	-webkit-transition: all .3s cubic-bezier(0.4, 0, 0.25, 1);
    transition: all .3s cubic-bezier(0.4, 0, 0.25, 1);
}
.card_wrap .card_contents {
	position: relative;
	padding: 30px 15px;
	z-index: 1;
}
.card_wrap .card_contents .card_cate {
	font-size: 1.25rem;
	font-weight: 300;
	margin-bottom: 15px;
	line-height: 1;
}
.card_wrap .card_contents .card_title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.5px;
	word-break: keep-all;

	overflow: hidden;
    text-after-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.card_wrap .card_contents .card_date {
	display: block;
	margin-top: 15px;
	color: #bebebe;
	line-height: 1;
}

/***********************/
/***** 게시판 view 스타일 *****/
/***********************/
.view_wrap {
	text-align: left;
}
.view_title {
	font-size: 20px;
	position: relative;
    padding: 30px;
    margin-top: 30px;
    border-top: 3px solid #1b1b1b;
    border-bottom: 1px solid #e5e5e5;
}
.view_title h2 {
    position: relative;
}
.view_info {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
	font-size: 16px;
	font-weight: 300;
}
.view_body {
	padding: 30px;
	border-bottom: 1px solid #e5e5e5;
	line-height: 1.8;
	min-height: 400px;
}
.view_body img {
	text-align: center;
	margin-bottom: 30px;
}
.view_bottom {
	
}

/***********************/
/***** 고객문의 스타일 *****/
/***********************/
.request_wrap {
	max-width: 900px;
	margin: 0 auto;
	border-top: 3px solid #121212;
}
.request_input_wrap {
    padding: 18px 0;
    border-bottom: 1px solid #dedede;
}
.input_title {
	float: left;
	font-size: 14px;
    width: 150px;
    color: #000;
    padding: 7px 0 0 15px;
}
.input_user {
	overflow: hidden;
	font-size: 14px;
    vertical-align: middle;
}
.input_user input[type=text], .input_user select, .input_user textarea {
    width: 100%;
    height: 36px;
    border: 1px solid #cccccc;
    font-size: 14px;
}
.input_user input.tel_txt {
    width: 100%;
    margin: 0 10px;
}
.input_user input.subject {
    
}
.input_user input.tel_txt:first-child {
    margin-left: 0;
}
.input_user textarea {
    width: 100%;
    height: 202px;
    resize: none;
    padding: 15px;
}
.required {
	position: relative;
}
.required:after {
	content: '*';
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	color: #B00020;
	margin-left: 5px;	
}
.agree_area {
	text-align: right;
	padding: 15px;
	background: #ecf4fd;
}
.agree_link {
	text-decoration: underline;
	color: #528ce3;
}
.agree_link:hover {
	text-decoration: underline;
	color: #528ce3;
}
#error_msg {
	color: #e32a39;
	font-size:14px;
	font-weight: 500;
	text-align:center;
	padding: 15px;
}
.agree_modal .agree_intro {
	background: #ecf4fd;
	padding: 15px;
	margin-bottom: 15px;
}
.agree_modal > h3 {
	color: #000;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    border-top: 1px solid #dedede;
    padding-top: 25px;
}
.agree_modal > p {
	line-height: 1.6;
	color: #555;
}