@charset "utf-8";

#search_filter_header {
	z-index: 10;
}

.search_filter_header_inner {
	justify-content: flex-start;
	padding: 12px 0;
}

.search_filter_header_button {
	margin-left: 20px;
}

.mapsearch_filter_section {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1200px;
	z-index: 10;
}

#filter {
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	flex-wrap: nowrap;
	width: 100%;
	height: 100%;
	max-height: inherit;
	padding: 0;
	background-color: #fff;
	overflow: inherit;
}

.myfilter_container {
	position: relative;
	width: 100%;
}

.save_myfilter {
	display: none;
}

.save_myfilter.mob {
	position: absolute;
	display: block;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 0;
	box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.24);
}

.myfilter_swiper_container {
	height: 120px;
}

.filter_container {
	width: 100%;
	flex-direction: column;
}

.filter_container::before {
	display: none;
}

.filter_wrapper {
	width: 100%;
}

.filter_wrapper:nth-of-type(-n + 2) {
	border-top: 1px solid #efefef;
}

.special_filter_top {
	flex-direction: column;
}

.special_filter_desc_wrapper>p {
	font-size: 13px;
}

.filter_post_button_wrapper {
	padding: 20px 16px;
}

html[user-device="ios"] {
	overflow: hidden;
}

#map_background {
	position: relative;
	width: 100%;
	height: 100%;
	max-height: 100vh;
}

html[user-browser="safari"] #map_background {
	/*height: calc(100vh - 200px);*/
	/*max-height: calc(100vh - 200px);*/
	/*overflow: hidden;*/
}

/* 좌측 레일: 필터 사이드바 + 오버레이 형제 배치 → 필터 열리면 오버레이가 자연스럽게 우측으로 밀림 */
.mapsearch_left_rail {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	flex-shrink: 0;
	z-index: 2;
	pointer-events: none;
}

.mapsearch_left_rail>* {
	pointer-events: auto;
}

/* 좌측 패널 컨테이너: 필터/목록을 자식으로 두고, 열림 시에만 슬라이드 애니메이션 (자식은 토글로 전환만) */
.mapsearch_side_panel {
	position: relative;
	width: 425px;
	min-width: 425px;
	margin-left: -425px;
	overflow: hidden;
	flex-shrink: 0;
	height: 100%;
	transition: margin-left 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

#map_background.mapsearch_filter_open .mapsearch_side_panel {
	margin-left: 0;
}

.mapsearch_side_panel_list,
.mapsearch_side_panel_filter {
	position: absolute;
	left: 0;
	top: 0;
	width: 425px;
	height: 100%;
	overflow: auto;
}

/* 각 패널은 해당 모드일 때만 보이게(닫는 중 깜빡임 방지) */
.mapsearch_side_panel:not(.show_list) .mapsearch_side_panel_list {
	display: none;
}

.mapsearch_side_panel:not(.show_filter) .mapsearch_side_panel_filter {
	display: none;
}

.mapsearch_filter_sidebar_inner {
	width: 425px;
	height: 100%;
	overflow: auto;
	background: #fff;
	box-shadow: 2px 0 12px rgba(0, 0, 0, 0.08);
}

/* 오버레이: 패널 열리면 우측으로 밀림 */
#map_overlay_filter_container {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 14px;
	margin-top: 30px;
	margin-left: 40px;
	width: 350px;
	height: auto;
	background-color: transparent;
	flex-shrink: 0;
	transition: margin-left 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* #map_background.mapsearch_filter_open #map_overlay_filter_container {
	margin-left: 465px;
} */

.map_overlay_filter_wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}


.mapsearch_filter_addr {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 280px;
	height: 38px;
	font-size: 13px;
	font-weight: 400;
	color: #6B7684;
	border-radius: 30px;
	padding: 0 16px;
	border-radius: 30px;
	border: 1px solid rgba(237, 239, 242, 0.87);
	background: #FFF;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
	cursor: pointer;
}

.mapsearch_filter_addr.active {
	color: #2b80eb;
	border: 1px solid #2b80eb;
}

.mapsearch_filter_addr>span {
	position: relative;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	white-space: nowrap;
	margin-right: 8px;
}

.mapsearch_filter_addr>i {
	font-size: 20px;
	font-variation-settings:
		"FILL" 1,
		"wght" 400,
		"GRAD" 0,
		"opsz" 48;
}

.mapsearch_filter_addr>.mag {
	margin-left: auto;
}

#mapsearch_back_button {
	display: none;
}

.mapsearch_filter_button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	height: 38px;
	gap: 4px;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	color: #6B7684;
	padding: 0 10px;
	background-color: #fff;
	border-radius: 6px;
	border: 1px solid #EDEFF2;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
}

.mapsearch_filter_button.not_box_shadow {
	box-shadow: none;
}

.mapsearch_filter_button.circle {
	height: 32px;
	border-radius: 30px;
	padding: 8px 16px;
}

.mapsearch_filter_button.radius50 {
	border-radius: 50%;
}

.mapsearch_filter_button.s-40 {
	width: 40px;
	height: 40px;
}

.mapsearch_filter_button.s-40>i {
	font-size: 20px;
}

.mapsearch_filter_button.sold_reset_button {
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 50%;
	background-color: #6B7684;
}

.mapsearch_filter_button.sold_reset_button>i {
	font-size: 28px;
	color: #fff;
	font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 48;
}

.mapsearch_filter_button.active {
	color: #2B80EB;
	border: 1px solid #2B80EB;
	background: #EBF3FE;
}

.mapsearch_filter_button.gongmae_btn.active {
	color: #8B5CF6;
	border: 1px solid #8B5CF6;
	background: #F3EDFF;
}

.mapsearch_filter_button>i {
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
	font-size: 16px;
}

.sold_date_wrapper {
	position: relative;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
	border-radius: 15px;
	border: 1px solid #EDEFF2;
	background: #FFF;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
}

.sold_date_wrapper.active {
	display: flex;
}

.address_wrap {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	padding: 8px 12px;
	gap: 6px;
	border: 1px solid #EDEFF2;
	border-radius: 24px;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
	z-index: 2;
}

.address_wrap_icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	background-color: #EDEFF2;
	border-radius: 50%;
}

.address_wrap_icon>i {
	font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 48;
	font-size: 16px;
	color: #6B7684;
}

.address_text {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 600;
	color: #364653;
	white-space: nowrap;
}

.address_text>i {
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
	font-size: 16px;
	color: #6B7684;
}

.btn_wrap {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 2;
}

.btn_inner {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
}

.rows_button_wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.map_overlay_button_wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	height: 32px;
	padding: 8px 6px;
	color: #6B7684;
	border-radius: 6px;
	border: 1px solid #EDEFF2;
	background: #FFF;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
	cursor: pointer;
}

.map_overlay_button_wrapper.square.active {
	background-color: #6B7684;
	/* color: #fff; */
}

.map_overlay_button_wrapper.square {
	width: 40px;
	height: 40px;
	padding: 8px;
}

.map_overlay_button_wrapper.square>i {
	font-size: 22px;
	font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 48;
}

.map_overlay_button_wrapper.square.active>i {
	color: #fff;
}

.map_overlay_button_wrapper[data-filter-type="favorite"].active>i {
	font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 48;
}

.map_overlay_button_wrapper>.check_icon {
	color: #d9d9d9;
	font-size: 16px;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
}

.map_overlay_button_wrapper.active>.check_icon {
	color: #6B7684;
}

.map_overlay_button_wrapper>span {
	font-size: 13px;
	font-weight: 600;
	color: #6B7684;
}

.map_type_more_panel {
	position: absolute;
	display: none;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 24px;
	top: 0;
	right: 70px;
	width: fit-content;
	height: auto;
	padding: 16px;
	background-color: #fff;
	border-radius: 15px;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
}

.map_type_more_panel.active {
	display: flex;
}

.map_type_more_panel.column {
	flex-direction: column;
}

.map_type_more_panel_inner {
	position: relative;
	display: flex;
	flex-direction: column;
	width: fit-content;
	gap: 8px;
}

.map_type_more_panel_title {
	font-size: 12px;
	font-weight: 600;
	color: #6B7684;
	white-space: nowrap;
}

.map_type_more_panel_contents {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

/* 금액/면적 스위치 (tab_menu 스타일) */
.switch_buttons {
	display: flex;
}

.tab_menu_wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: fit-content;
	padding: 3px 4px;
	background-color: #F3F4F5;
	border-radius: 5px;
}

.tab_menu_item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	font-size: 13px;
	font-weight: 600;
	color: #b1b1b1;
	white-space: nowrap;
	padding: 6px 8px;
	border-radius: 5px;
	transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	border: none;
	background: none;
	cursor: pointer;
}

.tab_menu_item:hover {
	color: #1f2937;
}

.tab_menu_item::after {
	content: none;
}

.tab_menu_item.active::after {
	content: none;
}

.tab_menu_item.active {
	color: #1f2937;
	background-color: #fff;
	box-shadow: 0 2px 6px rgba(17, 24, 39, 0.12);
}

.map_type_button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
	overflow: hidden;
}

.map_type_button>img {
	width: 72px;
	height: 72px;
	border-radius: 20px;
	transition: all 0.1s ease;
}

.map_type_button.active>img {
	border: 3px solid #2B80EB;
}

.map_type_button>span {
	font-size: 12px;
	font-weight: 600;
	color: #6B7684;
	white-space: nowrap;
}

.favorite_btn_wrap {
	position: relative;
	width: 40px;
	height: 40px;
	margin-top: 4px;
	box-shadow: 2px 2px 2px 0 rgb(0 0 0 / 16%);
}

.favorite_btn_wrap>.favorite_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	font-size: 13px;
	font-weight: 400;
	color: #333;
	background-color: #fff;
	border-radius: 0;
}

.favorite_btn_wrap.active>.favorite_btn {
	color: #fff;
	border: 1px solid #fc3049;
}

.favorite_btn_wrap>.favorite_btn>i {
	color: #fc3049;
	font-size: 20px;
	font-variation-settings:
		"FILL" 0,
		"wght" 400,
		"GRAD" 0,
		"opsz" 40;
}

.favorite_btn_wrap>.favorite_btn>small {
	font-size: 10px;
	color: #555;
}

.favorite_btn_wrap.active>.favorite_btn>i {
	color: #fc3049;
	font-variation-settings:
		"FILL" 1;
}

.my_position_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 2px;
	background-color: #fff;
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.16);
	cursor: pointer;
}

.map_date_picker_button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-top: 4px;
	;
	border-radius: 2px;
	background-color: #fff;
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.16);
	cursor: pointer;
}

.map_date_picker_icon {
	font-size: 24px;
	font-variation-settings:
		"FILL" 0,
		"wght" 400,
		"GRAD" 0,
		"opsz" 48;
}

.zoom_wrap {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	margin-top: 20px;
}

.zoom_wrap>div {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 28px;
	font-weight: 400;
	color: #333;
	background-color: #fff;
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.16);
	cursor: pointer;
}

.zoom_wrap>div:first-child {
	margin-bottom: 4px;
}

.zoom_wrap>div:first-child::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #eee;
}

/*.my_position_btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.16);
    z-index: 2;
    cursor: pointer;
}*/
.my_position_btn img {
	width: 22px;
	height: 22px;
}

.map_multiple_button_wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	height: 40px;
	margin-top: 4px;
	background-color: #fff;
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.16);
	cursor: pointer;
}

.map_multiple_button_wrapper.on .map_btn_selected {
	display: none;
}

.map_multiple_button_wrapper.on .map_button_list {
	display: flex;
	right: 0;
	z-index: 1;
}

.map_button_list {
	display: none;
	width: 120px;
	height: 40px;
}

.map_button_list>button {
	width: 40px;
	height: 40px;
	background-color: #fff;
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.16);
	font-size: 13px;
	font-weight: 400;
	color: #333;
	border-right: 1px solid #eee;
	cursor: pointer;
}

.map_button_list>button:last-of-type {
	border-right: none;
}

.map_multiple_button_wrapper.on button.on {
	color: #fff;
	background-color: #2b80eb;
}

.map_btn_selected.state {
	/* color: #2b80eb;
	border: 1px solid #2b80eb; */
}

.map_type_btn_wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	height: 40px;
	margin-top: 8px;
	background-color: #fff;
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.16);
	cursor: pointer;
}

.map_btn_selected {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #fff;
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.16);
	font-size: 13px;
	font-weight: 400;
	color: #333;
	z-index: 1;
	cursor: pointer;
}

.map_type_list {
	display: none;
	/*position: absolute;*/
	width: 120px;
	height: 40px;
}

.map_type_btn_wrap.on .map_btn_selected {
	display: none;
}

.map_type_btn_wrap.on .map_type_list {
	display: flex;
	right: 0;
	z-index: 1;
}

.map_type_list>button {
	width: 40px;
	height: 40px;
	background-color: #fff;
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.16);
	font-size: 13px;
	font-weight: 400;
	color: #333;
	border-right: 1px solid #eee;
	cursor: pointer;
}

.map_type_list>button:last-of-type {
	border-right: none;
}

.map_type_btn_wrap.on button.on {
	color: #fff;
	background-color: #2b80eb;
}

.pin_toggle_btn_wrap {
	margin-top: 4px;
	position: relative;
	width: 40px;
	height: 40px;
	box-shadow: 2px 2px 2px 0 rgb(0 0 0 / 16%);
}

.pin_toggle_btn_wrap>.toggle_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 13px;
	font-weight: 400;
	color: #333;
	background-color: #fff;
	border-radius: 0;
}

.pin_toggle_btn_wrap.active>.toggle_btn {
	color: #fff;
	background-color: #2b80eb;
}

.transport_network_toggle_btn_wrap {
	margin-top: 4px;
	position: relative;
	width: 40px;
	height: 40px;
	box-shadow: 2px 2px 2px 0 rgb(0 0 0 / 16%);
}

.transport_network_toggle_btn_wrap.active::before {
	content: "N";
	position: absolute;
	/*display: flex;*/
	display: none;
	align-items: center;
	justify-content: center;
	top: 0;
	right: -4px;
	width: 14px;
	height: 14px;
	font-size: 10px;
	color: #fff;
	line-height: 1;
	background-color: #ff008e;
	border-radius: 50%;
	z-index: 9;
}

.transport_network_toggle_btn_wrap>.toggle_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 13px;
	font-weight: 400;
	color: #333;
	background-color: #fff;
	border-radius: 0;
}

.transport_network_toggle_btn_wrap.active>.toggle_btn {
	color: #ff008e;
	border: solid 1px #ff008e;
}

.rebuild_toggle_btn_wrap {
	margin-top: 4px;
	position: relative;
	width: 40px;
	height: 40px;
	box-shadow: 2px 2px 2px 0 rgb(0 0 0 / 16%);
}

.rebuild_toggle_btn_wrap.active::before {
	content: "N";
	position: absolute;
	/* display: flex; */
	display: none;
	align-items: center;
	justify-content: center;
	top: 0;
	right: -4px;
	width: 14px;
	height: 14px;
	font-size: 10px;
	color: #fff;
	line-height: 1;
	background-color: #2f80ed;
	border-radius: 50%;
	z-index: 9;
}

.rebuild_toggle_btn_wrap>.toggle_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 13px;
	font-weight: 400;
	color: #333;
	background-color: #fff;
	border-radius: 0;
}

.rebuild_toggle_btn_wrap.active>.toggle_btn {
	color: #2f80ed;
	border: solid 1px #2f80ed;
}

.list_type_btn_wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	height: 40px;
	margin-top: 8px;
	background-color: #fff;
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.16);
	cursor: pointer;
}

.list_btn_selected {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 13px;
	font-weight: 400;
	color: #7c56d5;
	background-color: #fff;
	border: 1px solid #7c56d5;
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.16);
	z-index: 1;
	cursor: pointer;
}

.list_type_list {
	display: none;
	width: 120px;
	height: 40px;
}

.list_type_btn_wrap.active .list_btn_selected {
	display: none;
}

.list_type_btn_wrap.active .list_type_list {
	display: flex;
	right: 0;
	z-index: 1;
}

.list_type_select_btn_wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.list_type_select_btn_wrap>label {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #fff;
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.16);
	font-size: 13px;
	font-weight: 400;
	color: #333;
	border-right: 1px solid #eee;
	cursor: pointer;
}

.list_type_select_btn_wrap>label:last-of-type {
	border-right: none;
}

.list_type_select_btn_wrap>label>span {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #364653;
}

.list_type_select_btn_wrap input {
	position: absolute;
	left: -200vw;
}

.list_type_select_btn_wrap input:checked~span {
	color: #fff;
	background-color: #7c56d5;
}

.search_result_item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
	min-width: 60px;
	background-color: #fff;
	font-size: 10px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	cursor: pointer;
}

.search_result_item:hover {
	margin-top: 0;
	animation: motion 0.4s linear 0s infinite alternate;
}

.search_result_item.motion {
	margin-top: 0;
	animation: motion 0.4s linear 0s infinite alternate;
}

.search_result_item[list_type="1"] {
	color: #2B80EB;
	border: 1px solid #2B80EB;
}

.search_result_item.jugeo {
	color: #3B5BDB;
	border: 1px solid #3B5BDB;
}

.search_result_item.office {
	color: #E8873A;
	border: 1px solid #E8873A;
}

.search_result_item.land {
	color: #364653;
	border: 1px solid #364653;
}

.search_result_item[list_type="2"] {
	color: #8B5CF6;
	border: 1px solid #8B5CF6;
}

.search_result_item::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -13px;
	width: 0;
	height: 0;
	border-top: 7px solid #fff;
	border-right: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 7px solid transparent;
	overflow: hidden;
}

.search_result_item[list_type="1"]::after {
	-webkit-filter: drop-shadow(0px 1px #2B80EB);
	filter: drop-shadow(0px 1px #2B80EB);
}

.search_result_item.jugeo::after {
	-webkit-filter: drop-shadow(0px 1px #3B5BDB);
	filter: drop-shadow(0px 1px #3B5BDB);
}

.search_result_item.office::after {
	-webkit-filter: drop-shadow(0px 1px #E8873A);
	filter: drop-shadow(0px 1px #E8873A);
}

.search_result_item.land::after {
	-webkit-filter: drop-shadow(0px 1px #364653);
	filter: drop-shadow(0px 1px #364653);
}

.search_result_item[list_type="2"]::after {
	-webkit-filter: drop-shadow(0px 1px #8B5CF6);
	filter: drop-shadow(0px 1px #8B5CF6);
}

/* 점/콘텐츠를 서로 다른 CustomOverlay로 분리 → 점 zIndex:1, 콘텐츠 zIndex:2 로 전역 순서 보장 */
.pin-content-spacer {
	margin-bottom: 6px;
}

.pin-dot-layer {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #333;
}

.pin-dot-layer.list_type_1 {
	background-color: #2B80EB;
}

.pin-dot-layer.jugeo {
	background-color: #3B5BDB;
}

.pin-dot-layer.office {
	background-color: #E8873A;
}

.pin-dot-layer.land {
	background-color: #364653;
}

.pin-dot-layer.list_type_2 {
	background-color: #8B5CF6;
}

.pin-dot-layer.list_type_molit {
	background-color: #22A5A5;
}

.content_title {
	width: 100%;
	font-size: 10px;
	font-weight: 600;
	text-align: center;
	color: #fff;
	background-color: #333;
	padding: 1px 8px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}

.search_result_item[list_type="1"] .content_title {
	background-color: #2B80EB;
}

.search_result_item.jugeo>.content_title {
	background-color: #3B5BDB;
}

.search_result_item.office>.content_title {
	background-color: #E8873A;
}

.search_result_item.land>.content_title {
	background-color: #364653;
}

.search_result_item[list_type="2"] .content_title {
	background-color: #8B5CF6;
}

.search_result_item[list_type="molit"] {
	color: #22A5A5;
	border: 1px solid #22A5A5;
}

.search_result_item[list_type="molit"]::after {
	-webkit-filter: drop-shadow(0px 1px #22A5A5);
	filter: drop-shadow(0px 1px #22A5A5);
}

.search_result_item[list_type="molit"] .content_title {
	background-color: #22A5A5;
}

.search_result_left_label_container {
	position: absolute;
	top: 0;
	left: -16px;
	width: 16px;
	min-height: 28px;
}

.search_result_left_label_wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.search_result_gongmae {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 16px;
	height: 17px;
	font-size: 10px;
	color: #fff;
	line-height: 1;
	text-align: center;
	white-space: pre-wrap;
	background-color: #7c56d5;
}

.search_result_gongmae.rent {
	height: 28px;
	background-color: #979ea9;
}

.item_count,
.item_state {
	position: absolute;
	top: -18%;
	min-width: 20px;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.7;
	text-align: center;
	padding: 0 4px;
	border-radius: 30px;
	background-color: #fff;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.06);
}

.item_count {
	left: -11px;
}

.item_state {
	left: calc(100% - 11px);
	color: #F43F5E;
	border: 0.5px solid #F43F5E;
}

.search_result_item[list_type="1"] .item_count {
	border: 0.5px solid #2B80EB;
}

.search_result_item.jugeo .item_count {
	border: 0.5px solid #3B5BDB;
}

.search_result_item.office .item_count {
	border: 0.5px solid #E8873A;
}

.search_result_item.land .item_count {
	border: 0.5px solid #364653;
}

.search_result_item[list_type="2"] .item_count {
	color: #8B5CF6;
	border: 0.5px solid #8B5CF6;
}

.search_result_item.plan .item_state {
	color: #364653;
	border: 0.5px solid #364653;
}

.item_eval_per {
	position: absolute;
	bottom: -18%;
	left: calc(100% - 11px);
	min-width: 20px;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.7;
	text-align: center;
	padding: 0 4px;
	border-radius: 30px;
	background-color: #fff;
	color: #F43F5E;
	border: 0.5px solid #F43F5E;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.06);
}

.content_content {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	padding: 2px 8px;
}

.content_area {
	font-size: 10px;
	font-weight: 600;
	opacity: 0.65;
}

.content_price {
	position: relative;
	display: flex;
	align-items: center;
	gap: 2px;
	font-size: 13px;
	font-weight: 600;
}

.content_price>small {
	font-size: 10px;
}

.cluster_bg {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
	min-width: 86px;
	padding: 4px 8px;
	background-color: #333;
	font-size: 14px;
	color: #fff;
	border-radius: 4px;
	box-shadow: 0 1px 2px #acacac;
	cursor: pointer;
}

.cluster_bg::after {
	content: "";
	display: none;
	position: absolute;
	left: 50%;
	bottom: -11px;
	transform: translateX(-50%);
	width: 22px;
	height: 12px;
	background: url(../images/common/cluster_pin.svg) no-repeat;
}

/* 교통망 노선도 관련 스타일 */
.transport_network_line_pin {
	display: block;
	font-weight: 700;
	font-size: 12px;
	color: #fff;
	line-height: 16px;
	letter-spacing: -0.07em;
	border-radius: 5px;
	padding: 2px 5px;
	border: 2px solid #000;
	background: #f04938;
	text-align: center;
	opacity: 0.9;
}

.transport_network_line_pin>p:last-child {
	font-weight: 400;
	font-size: 11px;
}

.transport_network_station_pin {
	display: block;
	padding: 3px 4px;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: -0.07em;
	border-radius: 5px;
	color: #000;
	border: 2px solid #0a3d86;
	background: #fff;
	text-align: center;
	opacity: 0.9;
}

.require_time_pin {
	color: #fff;
}

.require_time_pin>p:last-child {
	display: block;
	margin: 2px auto 1px;
	padding: 2px 4px;
	font-size: 11px;
	color: #333;
	border: 1px solid #222;
	border-radius: 0 0 3px 3px;
	background: #fff;
}

/* 목록 영역: 패널 자식이라 애니메이션 없음, 패널의 .show_list 시에만 표시 */
.mapsearch_list {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 3;
	background-color: #fff;
}

.map_list_gesture_bar {
	display: none;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 45px;
	height: 4px;
	background-color: #d9d9d9;
	border-radius: 4px;
}

.mapsearch_list_mobile_controls {
	display: none;
}

.mapsearch_list_wrapper {
	position: sticky;
	top: 0;
	z-index: 4;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: auto;
	/* padding: 32px 12px 12px 12px; */
	padding: 12px;
	border-bottom: 1px solid #f3f4f5;
}

.mapsearch_list_total_count {
	font-size: 12px;
	font-weight: 600;
	color: #6B7684;
}

.mapsearch_list .mul_list {
	width: 100%;
	border: none;
	border-bottom: 1px solid #EDEFF2;
	border-radius: 0;
	padding: 16px 0;
}

.mapsearch_list .mul_list.single {
	border: none;
	padding: 8px 16px 0 16px;
	box-shadow: none;
}

.mapsearch_list .mul_list_inner_section {
	gap: 12px;
}

.mapsearch_list .mulgun-list {
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 1px 1px 4px #bbb;
}

.mapsearch_list .mulgun-list .mul-list-img-box .mul-img {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.mapsearch_list .molit_list {
	min-height: auto;
	padding: 0;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #EAECEF;
	padding: 16px 0;
}

.mapsearch_list .molit_list .search_list_section {
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.mapsearch_list .molit_list>section>div {
	width: 100% !important;
}

.mapsearch_list .molit_list>section>div:nth-of-type(1) {
	align-items: flex-start;
}

.mapsearch_list .molit_list>section>div:nth-of-type(1) .flex_wrapper.column {
	flex-direction: row-reverse;
	gap: 4px;
}

.mapsearch_list .molit_list .use_type.molit {
	font-size: 12px;
	margin-top: 0;
}

.mapsearch_list .molit_list>section>div:nth-of-type(3) .flex_wrapper.right {
	align-items: flex-start;
	gap: 6px;
}

.search_list .list_area {
	font-size: 12px;
}

.mapsearch_list .molit_list .price {
	font-size: 16px;
}

.mapsearch_list .molit_list>section>div:nth-of-type(4) .flex_wrapper {
	width: 100%;
}

.mapsearch_list .molit_list .molit_detail_button {
	width: 100%;
	font-size: 13px;
	white-space: nowrap;
}

.mapsearch_list_container {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: calc(100% - 44px);
	padding: 0 16px 20px 16px;
	background-color: #fff;
	overflow: visible;
	z-index: 2;
}

.mapsearch_list_molit_section {
	width: 100%;
	padding: 12px 12px 0;
	background: #fff;
}

.mapsearch_list_molit_title {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin: 0 0 8px 0;
	padding: 0;
}

.mapsearch_list_banner_section {
	position: relative;
	width: 100%;
	padding: 16px 0;
	background: #fff;
	flex-shrink: 0;
}

.mapsearch_list_banner_swiper {
	overflow: hidden;
}

.mapsearch_list_banner_swiper .banner_slide {
	height: auto;
	border-radius: 8px;
	overflow: hidden;
}

.mapsearch_list_banner_swiper .banner_slide img {
	width: 100%;
	height: auto;
	display: block;
}

.mapsearch_list_banner_bullets {
	position: relative;
	text-align: center;
	margin-top: 8px;
}

.mapsearch_list_pagination_wrapper {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -35px;
	width: 150px;
	height: 30px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 14px;
	color: #364653;
	border-radius: 8px;
	background-color: #fff;
	box-shadow: 1px 2px 2px #999;
}

.mapsearch_list_pagination {
	text-align: center;
}

.mapsearch_list_arrow_prev,
.mapsearch_list_arrow_next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 30px;
	margin-top: 0;
	z-index: 10;
	cursor: pointer;
	background-size: 8px 14px;
	background-position: center;
	background-repeat: no-repeat;
}

.mapsearch_list_arrow_prev {
	background-image: url(../images/icon/next_left_black.png);
	left: 0;
	right: auto;
}

.mapsearch_list_arrow_next {
	background-image: url(../images/icon/next_right_black.png);
	right: 0;
	left: auto;
}


.map_notification {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 16px;
	background-color: #fff;
	padding: 8px 12px;
	border-radius: 24px;
	box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.16);
	z-index: 2;
}

.map_notification>i {
	font-size: 16px;
	margin-right: 4px;
	color: #777;
	font-variation-settings:
		"FILL" 0,
		"wght" 700,
		"GRAD" 0,
		"opsz" 40;
}

.map_notification>span {
	font-size: 14px;
}



/* 필터 */
.mapsearch_filter {
	width: 425px;
	height: 100%;
	z-index: 2;
}

.mapsearch_filter_trigger.change {
	color: #2B80EB;
	border: 1px solid #2B80EB;
	background: #EBF3FE;
}

.mapsearch_filter_trigger.change::before {
	content: attr(data-count);
	display: block;
	position: absolute;
	top: -8px;
	right: -8px;
	width: 16px;
	height: 16px;
	font-size: 12px;
	font-weight: 600;
	color: #2B80EB;
	border-radius: 50%;
	border: 1px solid #2B80EB;
	background-color: #fff;
}

/* PC: 사이드바 우측 세로 중앙 닫기 버튼 (left_rail 기준, 패널 열릴 때만 지도 위 플로팅) */
.mapsearch_sidebar_close_btn {
	display: none;
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #6B7684;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
}

.mapsearch_sidebar_close_btn>i {
	font-size: 28px;
	color: #fff;
	font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 48;
}

@media screen and (min-width: 1025px) {

	/* PC에서는 항상 렌더링해두고(transform/opacity)로 슬라이드 애니메이션 */
	.mapsearch_sidebar_close_btn {
		display: flex;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translate(-48px, -50%);
		opacity: 0;
		pointer-events: none;
		z-index: 10;
		transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s ease;
	}

	/* 패널이 열려 있으면(필터/목록 구분 없이) 버튼이 같이 밀려 나옴 */
	#map_background.mapsearch_filter_open .mapsearch_sidebar_close_btn {
		transform: translate(430px, -50%);
		opacity: 1;
		pointer-events: auto;
	}
}

@media screen and (max-width: 1024px) {
	.search_filter_top {
		display: none;
	}

	.zoom_wrap {
		display: none;
	}
}

/* <=900: 공통 레이아웃 + 바텀시트 동작 */
@media screen and (max-width: 900px) {
	#top {
		display: none;
	}

	.mapsearch_left_rail {
		width: 100%;
		z-index: 3;
	}

	#mapsearch_back_button {
		display: flex;
	}

	#map_overlay_filter_container {
		width: calc(100% - 24px);
		margin-left: 24px;
		margin-top: 24px;
	}

	.map_overlay_filter_wrapper {
		width: 100%;
		justify-content: flex-start;
	}

	.search_filter_top {
		display: flex;
	}

	#filter {
		height: calc(100% - 60px);
	}

	.mapsearch_filter_trigger {
		position: absolute;
		right: 0;
		margin-right: 0;
	}

	.mapsearch_list_wrapper {
		padding: 32px 12px 12px 12px;
	}

	.btn_wrap {
		top: 72px;
		right: 12px;
	}

	.mapsearch_filter_addr {
		width: 200px;
	}

	.map_list_gesture_bar {
		display: block;
		z-index: 5;
	}

	.mapsearch_side_panel {
		position: absolute;
		left: 50%;
		bottom: 0;
		width: 425px;
		min-width: 425px;
		margin-left: 0;
		height: 100%;
		transform: translate(-50%, 100%);
		transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
		pointer-events: none;
	}

	.mapsearch_side_panel.show_list {
		display: flex;
		align-items: flex-end;
		overflow: visible;
		pointer-events: none;
	}

	.mapsearch_side_panel_list {
		overflow: visible;
	}

	.mapsearch_side_panel.show_list.mapsearch_list_expanded {
		align-items: flex-end;
	}


	.mapsearch_side_panel.show_list.mapsearch_list_collapsed .mapsearch_side_panel_list {
		position: relative;
		top: auto;
		bottom: auto;
		height: 300px;
		max-height: 300px;
		border-radius: 16px 16px 0 0;
		overflow: visible;
		box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.16);
		transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.mapsearch_side_panel.show_list.mapsearch_list_expanded .mapsearch_side_panel_list {
		top: auto;
		bottom: auto;
		height: calc(100vh - 100px);
		max-height: calc(100vh - 100px);
		border-radius: 16px 16px 0 0;
		box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.18);
		transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.mapsearch_side_panel.show_list.mapsearch_list_collapsed .mapsearch_list_container {
		height: auto;
		padding-top: 0;
		padding-bottom: 16px;
		overflow: visible;
	}

	.mapsearch_side_panel.show_list.mapsearch_list_collapsed .mapsearch_list_container>*:not(:first-child) {
		display: none;
	}

	.mapsearch_side_panel.show_list.mapsearch_list_expanded .mapsearch_list_container {
		height: calc(100% - 44px);
		padding-top: 0;
		padding-bottom: 20px;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.mapsearch_side_panel.show_list .mapsearch_side_panel_list {
		will-change: height, max-height;
		pointer-events: auto;
	}

	.mapsearch_list_mobile_controls {
		position: absolute;
		display: flex;
		align-items: center;
		gap: 8px;
		top: -56px;
		right: 12px;
		z-index: 5;
		pointer-events: auto;
	}

	.mapsearch_list_mobile_button {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border: none;
		border-radius: 50%;
		background-color: #4b5563;
		color: #fff;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	}

	.mapsearch_list_mobile_button>i {
		font-size: 26px;
		font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 40;
	}

	#map_background.mapsearch_list_expanded_mobile #map_overlay_filter_container,
	#map_background.mapsearch_list_expanded_mobile .btn_wrap,
	#map_background.mapsearch_list_expanded_mobile .address_wrap {
		display: none;
	}

	#map_overlay_filter_container {
		position: relative;
		z-index: 3;
		margin-top: 24px;
		margin-left: 12px;
	}

	#map_background.mapsearch_filter_open .mapsearch_side_panel {
		width: 425px;
		transform: translate(-50%, 0);
		z-index: 6;
		pointer-events: auto;
		box-shadow: 0 0 24px rgba(0, 0, 0, 0.14);
	}

	#map_background.mapsearch_filter_open #mapsearch_side_panel.show_list {
		pointer-events: none;
	}

	#map_background.mapsearch_filter_open #mapsearch_side_panel.show_filter {
		pointer-events: auto;
	}

	#mapsearch_side_panel.show_filter {
		display: block;
		overflow: hidden;
		pointer-events: auto;
	}

	#mapsearch_side_panel.show_filter .mapsearch_side_panel_filter {
		position: relative;
		z-index: 7;
		pointer-events: auto;
		height: 100%;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	#mapsearch_side_panel.show_filter .mapsearch_side_panel_list {
		pointer-events: none;
	}

	.mapsearch_side_panel_list,
	.mapsearch_side_panel_filter {
		width: 425px;
	}

	.mapsearch_filter {
		width: 425px;
	}

	.mapsearch_filter_sidebar_inner {
		width: 425px;
	}

	.mapsearch_list_container {
		width: 425px;
	}

	#map_background.mapsearch_filter_panel_open #map_overlay_filter_container,
	#map_background.mapsearch_filter_panel_open .btn_wrap,
	#map_background.mapsearch_filter_panel_open .address_wrap {
		display: none;
	}
}

/* <=600: 모바일은 전체 폭 바텀시트 */
@media screen and (max-width: 600px) {
	.mapsearch_side_panel {
		left: 0;
		width: 100%;
		min-width: 100%;
		margin-left: 0;
		transform: translateY(100%);
	}

	#map_background.mapsearch_filter_open .mapsearch_side_panel {
		width: 100%;
		transform: translateY(0);
		box-shadow: none;
	}

	.mapsearch_side_panel.show_list.mapsearch_list_expanded .mapsearch_side_panel_list {
		box-shadow: none;
	}

	.mapsearch_side_panel_list,
	.mapsearch_side_panel_filter,
	.mapsearch_filter,
	.mapsearch_filter_sidebar_inner,
	.mapsearch_list_container {
		width: 100%;
	}

	#map_overlay_filter_container {
		margin-left: 12px;
	}

	.mapsearch_filter_trigger {
		right: 12px;
	}

	#map_background.mapsearch_filter_panel_open #map_overlay_filter_container {
		display: flex;
	}

	#map_background.mapsearch_filter_panel_open .btn_wrap {
		display: block;
	}

	#map_background.mapsearch_filter_panel_open .address_wrap {
		display: flex;
	}
}

/* <=768: 세부 크기 조정 */
@media screen and (max-width: 768px) {

	html,
	body {
		font-size: 14px;
	}

	.map_notification {}

	.map_notification>i {
		font-size: 14px;
	}

	.map_notification>span {
		font-size: 12px;
	}

	.address_wrap {
		padding: 8px 12px;
	}

	.address_wrap>img {
		height: 10px;
		margin-right: 4px;
	}

	.address_text {
		font-size: 12px;
	}

	.mapsearch_list {
		bottom: 0;
		background-color: #fff;
	}

	.cluster_bg {
		min-width: 60px;
		font-size: 12px;
	}

	/* .favorite_btn_wrap,
	.my_position_btn,
	.map_date_picker_button,
	.map_btn_selected,
	.transport_network_toggle_btn_wrap,
	.rebuild_toggle_btn_wrap,
	.zoom_wrap>div,
	.pin_toggle_btn_wrap {
		width: 36px;
		height: 36px;
		font-size: 11px;
	}

	.pin_toggle_btn_wrap>.toggle_btn,
	.rebuild_toggle_btn_wrap>.toggle_btn,
	.transport_network_toggle_btn_wrap>.toggle_btn {
		font-size: 11px;
	} */
}

@keyframes motion {
	0% {
		margin-top: 0px;
	}

	100% {
		margin-top: 7px;
	}
}

/* 모바일: input 포커스 시 iOS 자동 줌 방지 (font-size 16px 미만이면 줌됨) */
@media (max-width: 1024px) {

	#mapsearch_filter_container.mapsearch_filter_container input,
	#mapsearch_filter_container.mapsearch_filter_container select,
	#mapsearch_filter_container.mapsearch_filter_container textarea {
		font-size: 16px !important;
	}
}