/* 카테고리 */
.category-wrap {
	position: relative;
	width: 100%; 
	background: #fff; 
	border-top: 1px solid #ddd;
}
/* 상단 메뉴 */
.top-menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	padding: 0 20px; 
	box-sizing: border-box;
	border-bottom: 1px solid #ddd;
}
.menu-actions { flex-shrink: 0; }
.btn-back {
	display: inline-flex;
	align-items: center;
	justify-content: center; 
	width: 30px; 
	height: 30px;
}
.btn-back .material-symbols-rounded {
  font-size: 30px; font-weight: 400; line-height: 1; }
.top-menu > ul { display: flex; align-items: center; margin: 0; padding: 0;  list-style: none;}
.top-menu > ul li { float: right; margin-left: 40px;	text-align: right;}
.top-menu > ul li a { display: block;}

/* 1차 탭 (해외여행 / 국내여행) */
.categoryTab-btn {
  position: sticky;
  display: flex;
  justify-content: space-between;
  gap:10px;
  top: 0;
  width: 100%;
  height: 120px;
  padding: 30px 20px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  z-index: 1000;
}
.categoryTab-btn .tab {
  flex: 1;
  width:50%;
  height: 54px;
  text-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  border-radius: 50px;
  border: 1px solid #ddd;    
  cursor: pointer;
  /*z-index: 10;*/
}
.categoryTab-btn .tab > a {
	display: flex;
	justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 16px;
  line-height: 1;
  color: #111;
  font-weight: 400;
}
.categoryTab-btn .tab.selected { background: #06b986; border:none;}
.categoryTab-btn .tab.selected > a { color: #fff; font-weight: 500;}

/* 탭 콘텐츠 공통 */
.category-panels {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  z-index: 100000;
}
.panel {display: none; position: relative; width: 100%; height: auto;}
.panel.selected {display: block;}
.place_list {position: relative; width: 100%; height: auto; background-color: #fff;}

/* 왼쪽 메뉴 (m2) */
.place_list > .tabs {
	top: 0;
  left: 0;
  width: 40%;
  max-width: 40%;
  height: auto;
  min-height: 100vh;
  background: #f6f6f6;
  color: #000;
  overflow: visible;
}
.tabs li { cursor: pointer; }
.tabs li a { display: block; padding: 16px 20px; font-size: 16px; color: #333; }
.tabs .selected { background: #fff; font-weight: 500; color: #000; }
.tabs .selected > a { font-weight: bold; color: #09b095; }

/* 오른쪽 서브 메뉴 (m3) */
.panel_2depth {
	position: absolute;
  top: 0;
  left: 40%;
  width: 60%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  /*padding: 16px; 
  z-index: 10;*/
  display: none;
  max-height: calc(100vh - 120px);
 	overflow-y: auto;
}
.place_items {
	clear:both;
  position: absolute;
  top: 0;
  left: 40%;
  width: 60%;  
}
.place_items li {
	position: relative; 
}
.place_items > li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 15px;
  color: #000;
  position: relative;
}
.place_items li a::after {
  content: '';
  flex-shrink: 0;
  display: inline-block;
  width: 14px;
  height: 14px;
  right:0;
  background-image: url(/images/btn_arrow_right.png);
}


/* 반응형 대응 */
@media (max-width: 760px) {
   .tabs li a {
	    font-size: 15px;
	}
  }
/* 미디어쿼리 */
@media all and (max-width:480px) {
	.categoryTab-btn {
		height: 100px;
		padding: 20px 20px;
	}
	.category-panels {
	top: 100px;
	}
}