@charset "utf-8";
/* **************************************************************************************
* 반응형 스킨 사용자/제작자 CSS
************************************************************************************** */

/* [eDENT] 프론트 AJAX 로딩 오버레이 */
#ajaxLoadingLayer {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 50000;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

/* [OWL] 4192 모바일 헤더에 마이페이지, 장바구니 아이콘 상시 노출 */
@media only screen and (max-width:767px) {
	.layout_header .resp_top_myapge,
	.layout_header .resp_top_cart {
		display: block;
		flex-shrink: 0;
	}
	.layout_header .resp_top_cart {
		position: relative;
		/* [OWL] 4248 position:relative 로 되살아나는 absolute 시절 오프셋 무력화 */
		right: auto;
		top: auto;
		width: 22px;
		height: 22px;
		padding-left: 0;
		background-position: center center;
		background-size: 22px;
	}
	.layout_header .resp_top_cart .cart_cnt2 {
		position: absolute;
		top: -6px;
		right: -6px;
		margin-top: 0;
		height: 16px;
		min-width: 16px;
		padding: 0 4px;
		box-sizing: border-box;
		font-size: 10px;
		line-height: 17px;
	}
}
/* 479px 이하는 헤더가 flex 에서 block 으로 바뀌어 아이콘이 로고 아래로 떨어짐 */
@media only screen and (max-width:479px) {
	.layout_header .resp_top_myapge,
	.layout_header .resp_top_cart {
		position: absolute;
		top: 25px;
		margin: 0;
	}
	.layout_header .resp_top_myapge {
		right: 44px;
	}
	.layout_header .resp_top_cart {
		right: 12px;
	}
}

/* [OWL] 4192 PC버전 보기 전환 버튼 */
.layout_footer .view_pc_switch,
.view_pc_switch .label_pc {
	display: none;
}
@media only screen and (max-width:767px) {
	.layout_footer .view_pc_switch {
		display: block;
	}
}
.view_pc .layout_footer .view_pc_switch {
	display: block;
}
.view_pc .view_pc_switch .label_pc {
	display: inline;
}
.view_pc .view_pc_switch .label_mobile {
	display: none;
}

/* [OWL] 4248 좁은 폭에서 키워드 문구가 중간에서 줄바꿈되는 것 방어 */
#searchModule .search_keyword {
	overflow: hidden;
}
#searchModule .search_keyword li {
	flex-shrink: 0;
}
#searchModule .search_keyword li a {
	white-space: nowrap;
}