@charset "UTF-8";

/* Modal BG */
.modal_bg {
	display: none;
	position: fixed;
	z-index: 98;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(51,51,51,0.5);
}

/* Layer Popup */
.layer_popup {
	display: none;
	position: fixed;
	z-index: 99;
	top: 50%;
	left: 50%;
	box-sizing: border-box;
	background-color: white;
	transform: translate(-50%,-50%);
}
.layer_popup > button.btn_close {
	position: absolute;
	width: 41px;
	height: 41px;
}
.layer_popup > button.btn_close img {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 21px;
	height: 21px;
}

/* 게시판 페이지 네비 */
.board_page_navi {
	text-align: center;
	font-size: 18px;
	margin-top: 50px;
}
.board_page_navi a {
	display: inline-block;
	line-height: 1;
}
.board_page_navi a.guide {
	margin: 0px 10px;
}
.board_page_navi a.guide:first-child {
	margin-left: 0px;
}
.board_page_navi a.guide:last-child {
	margin-right: 0px;
}
.board_page_navi a.num {
	margin: 0px 10px;
	padding-bottom: 3px;
	border-bottom: 2px solid transparent;
}
.board_page_navi a.guide + a.num {
	margin-left: 20px;
}
.board_page_navi a.num + a.guide {
	margin-left: 20px;
}
.board_page_navi a.num.active {
	color: #A50034;
	border-bottom-color: #A50034;
}

/* 검색결과없음 */
p.search_result_empty {
	margin: 200px 0px;
	padding-top: 182px;
	text-align: center;
	font-size: 30px;
	background: url(../images/template/ico_search_result_empty.png) no-repeat center top;
}

/* 공통기본버튼 */
.btn_basic {
	display: inline-block;
	width: 180px;
	padding: 15px 0px;
	box-sizing: border-box;
	letter-spacing: -0.5px;
	line-height: 1;
	text-align: center;
	color: white !important;
	border: 1px solid #A50034 !important;
	background-color: #A50034;
	transition: 0.5s ease color,0.5s ease background-color;
}
.btn_basic.dark {
	border: 1px solid #6B6B6B !important;
	background-color: #6B6B6B;
}
.btn_basic:hover,
.btn_basic:focus {
	color: #A50034 !important;
	background-color: white;
}
.btn_basic.dark:hover,
.btn_basic.dark:focus {
	color: #6B6B6B !important;
}

/* 공통 에러 표시 */
select.error,
input[type="text"].error,
input[type="password"].error,
input[type="email"].error,
input[type="tel"].error,
textarea.error {
	border-color: #EA2735;
}
p.error_msg {
	margin-top: 3px;
	color: #E91827;
	font-size: 14px;
	line-height: 18px;
}


/* 테블릿
**********************************************************/
@media all and (max-width: 1280px) {
	/* 게시판 페이지 네비 */
	.board_page_navi {
		margin-top: 40px;
	}
	
	/* 공통기본버튼 */
	.btn_basic {
		width: 140px;
		padding: 14px 0px;
	}
}


/* 모바일
**********************************************************/
@media all and (max-width: 720px) {
	/* 게시판 페이지 네비 */
	.board_page_navi {
		margin-top: 30px;
	}
	
	/* 공통기본버튼 */
	.btn_basic {
		width: 100px;
		padding: 12px 0px;
	}
}