@charset "utf-8";

@import './reset.css';
@import './common.css';

@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 100 900;
  src: url('../fonts/PretendardVariable.woff2') format('woff2');
}
/* ======================== s: navbar ======================== */
.navbar {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 6rem;
    height: 100vh;
    padding: 3rem 0;
    border-right: 1px solid #D9D9D9;
    background: #fff;
}
.navbar ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}
.navbar ul li {
    position: relative;
}
.navbar ul li .icon {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    color: #D9D9D9;
}
.navbar ul li .icon svg {
    height: 100%;
}
.navbar ul li .icon:hover {
    color: #595959;
}
.navbar ul li.active .icon {
    color: var(--primary-color);
}
/* .navbar ul li.apt.active .icon {
    color: var(--primary-color);
}
.navbar ul li.house.active .icon {
    color: #1A237E;
}
.navbar ul li.villa.active .icon {
    color: #2962FF
}
.navbar ul li.office.active .icon {
    color: #00A86B
}
.navbar ul li.land.active .icon {
    color: #FB8C00
}  */
.navbar ul li.mo-ham {
    display: none;
}
.navbar ul li .tooltip {
    position: absolute;
    left: 0;
    top: 50%;
    padding: 1rem;
    margin-left: 3.3rem;
    /* margin-top: 0.4rem; */
    border-radius: 0.7rem;
    white-space: nowrap;
    font-weight: 500;
    font-size: 1.2rem;
    box-shadow: 0.2rem 0.2rem 0.7rem 0 rgba(0,0,0,0.1);
    pointer-events: none;
}
.navbar ul li .tooltip.hover {
    border: 0.1rem solid #E5E5E5;
    opacity: 0;
    transform: translateY(-50%) translateX(-1rem);
    background-color: #fff;
    transition: all 0.2s ease;
}
.navbar ul li .icon:hover + .tooltip.hover {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
.navbar ul li .tooltip.clicked {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(-50%) translateX(-1rem);
    font-weight: 600;
    color: #fff;
    background-color: var(--primary-color);
    transition: all 0.2s ease;
}
.navbar ul li.active .tooltip.clicked.show {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}
.navbar ul li .tooltip.clicked .close {
    width: 0.8rem;
    height: 0.8rem;
    background-image: url(../images/ico_close_x.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-color: unset;
}
/* .navbar ul li.apt .tooltip.clicked {
    background-color: var(--secondary-color);
}
.navbar ul li.house .tooltip.clicked {
    background-color: #1A237E;
}
.navbar ul li.villa .tooltip.clicked {
    background-color: #2962FF
}
.navbar ul li.office .tooltip.clicked {
    background-color: #00A86B
}
.navbar ul li.land .tooltip.clicked {
    background-color: #FB8C00
} */
/* ======================== e: navbar ======================== */


/* ======================== s: sidebar-panel ======================== */
.sidebar-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 6rem;
    z-index: 99;
    max-width: 38rem;
    width: 100%;
    height: 100vh;
    border-right: 1px solid #D9D9D9;
    background-color: #fff;
    z-index: 99;
    transform: translateX(0);
    transition: transform 0.3s ease;
}
.sidebar-panel.open {
    transform: translateX(-100%);
}
.panel-header {
    flex-shrink: 0;
}
.panel-header .logo {
    padding: 2rem;
    border-bottom: 0.1rem solid #F0F0F0;
    background-color: #fff;
}
.panel-header .search-wrap {
    padding: 1.5rem;
    border-bottom: 0.1rem solid #F0F0F0;
    background-color: #fff;
}
.panel-header .search-input {
   position: relative;
}
.panel-header .search-input input {
    width: 100%;
    padding: 1.5rem 4rem 1.5rem 1.5rem;
    border-radius: 0.7rem;
    font-size: 1.6rem;
    background-color: #F7F7F7;
}
.panel-header .search-input input:focus {
    box-shadow: none;
}
.panel-header .search-input .btn-search {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 1.7rem;
    height: 1.7rem;
    background-image: url(../images/ico_search.svg);
    background-repeat: no-repeat;
}
.panel-header .recent-searches {
    position: absolute;
    left: 0;
    top: 14.1rem;
    z-index: 100;
    width: 100%;
    height: calc(100% - 14rem);
    background-color: rgba(0,0,0,0.5);
}
.panel-header .recent-searches .recent-list {
    background-color: #fff;
}
.panel-header .recent-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    margin: 0 1.5rem;
    border-bottom: 0.1rem solid #ddd;
}
.panel-header .recent-list li .btn-recent {
    display: flex;
    align-items: center;
    width: calc(100% - 2.8rem);
}
.panel-header .recent-list li svg {
    color: #949494;
}
.panel-header .recent-list li p {
    width: 100%;
    padding: 0 0.4rem;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px;
}
.panel-header .recent-list li .date {
    font-size: 12px;
    color: #949494;
}
.panel-header .recent-list li .btn-remove {
    width: 2rem;
    height: 2rem;
    background-image: url(../images/ico_close_x_b.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.panel-body {
    flex-grow: 1;
    position: relative;
    height: 100%;
    overflow-y: auto;
}
.panel-body .summary {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 0.1rem solid #F0F0F0;
}
.summary .summary-info {}
.summary .summary-info .info {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 2rem;
}
.summary .summary-info .info span {
    padding-left: 1rem;
    font-weight: 500;
    font-size: 1.6rem;
}
.summary .summary-info .info span b {
    font-weight: 600;
    color: var(--primary-color);
}
.summary .btn-filter {
    align-self: flex-end;
    width: 1.6em;
    height: 1.6em;
    background-image: url(../images/ico_filter.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.card-container {}
.card-container .card-list {
    display: flex;
    flex-direction: column;
}
.card-container .card-list .card-item {
    padding: 2rem 1.5rem;
    border-bottom: 0.1rem solid #F0F0F0;
}
.card-container .card-list .card-item .card-images {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 18rem;
}
.card-container .card-list .card-item .card-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-item .card-images .card-images-swiper {
    width: 100%;
    height: 22rem;
    border-radius: 1rem;
}
.card-item .card-images .card-images-swiper .swiper-slide {
    background-color: #E5E5E5;
}
.card-item .card-images .card-images-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-item .card-images .card-images-swiper .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background-color: #F0F0F0;
}
.card-item .card-images .card-images-swiper .btn::before {
    content: '';
    width: 0.8rem;
    height: 1rem;
    background-image: url(../images/ico_swiper_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.card-item .card-images .card-images-swiper .btn.prev {
    transform: translateY(-50%) rotate(180deg);
}
.card-item .card-images .card-images-swiper .btn.next {
    left: auto;
    right: 1.2rem;
}
.card-item .card-images .watch {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 10;
}
.card-item .card-details {
    position: relative;
    padding-top: 1rem;
}
.card-item .card-details .status-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-item .card-details .category {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    font-weight: 500;
    font-size: 1.6rem;
    color: #8C8C8C;
}
.card-item .card-details .category span {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--primary-color);
}
.card-item .card-details .title {
    padding-top: 1rem;
    line-height: 1.2;
    text-align: left;
    font-weight: 500;
    font-size: 1.8rem;
    word-break: break-all;
}
.card-item .card-details .title:hover {
    text-decoration: underline;
}
.card-item .card-details .price {
    display: block;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 2rem;
}
.card-item .card-details .details-info {
    padding-top: 1rem;
}
.card-item .card-details .details-info ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.card-item .card-details .details-info ul li {
    flex-basis: calc(50% - 0.5rem);
    font-weight: 500;
    font-size: 1.4rem;
    color: #737373;
}
.card-item .card-details .details-info ul li:nth-child(1),
.card-item .card-details .details-info ul li:nth-child(2) {
    flex-basis: 100%;
}
.card-item .card-details .details-info ul li span {
    display: inline-block;
    min-width: 4rem;
    margin-right: 1.5rem;
}
.card-item .card-details .tag-group {
    padding-top: 1.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.card-item .card-details .tag-group span {
    font-weight: 500;
    font-size: 1.4rem;
    color: #C9C9C9;
}
.card-item .card-details .tag-group span::before {
    content: '#';
}
.card-item .card-details .tag-group span:not(:last-child)::after {
    content: ' · ';
}
.card-item .card-details .btn-listing-more {
    position: absolute;
    right: 0;
    top: 2rem;
    padding: 0.5rem 1rem;
    border: 0.1px solid var(--primary-color);
    border-radius: 0.5rem;
}
.card-item .card-details .btn-listing-more span {
    font-weight: 700;
    font-size: 1.2rem;
}
/* 실거래 매물 상세화면 */
.listing-detail .btn-back {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
    width: 4rem;
    height: 4rem;
    background-color: #424242;
    background-image: url(../images/ico_close_x.svg);
    background-repeat: no-repeat;
    background-size: 2rem 2rem;
    background-position: center;
}
.listing-images-area .listing-images {
    height: 22rem;
    background-color: #E5E5E5;
}
.listing-images-area .listing-images img {
    height: 100%;
}
.listing-images-area .listing-images-swiper {
    portion: relative;
    width: 100%;
    height: 100%;
}
.listing-images-area .listing-images-swiper .swiper-slide img {
    height: 100%;
    object-fit: cover;
}
.listing-images-area .listing-images-swiper .btn {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 1.4rem;
    height: 1.6rem;
}
.listing-images-area .listing-images-swiper .btn.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}
.listing-images-area .listing-images-swiper .prev {
    left: 1.5rem;
    transform: rotate(-180deg);
}
.listing-images-area .listing-images-swiper .next {
    right: 1.5rem;
}
.listing-images-area .tab-btns {
    display: flex;
    gap: 0;
    height: auto;
    padding: 0;
    border-radius: 0;
    background-color: unset;
}
.listing-images-area .tab-btns .tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5rem;
    padding: 0;
    line-height: 0;
    border-radius: 0;
    border-bottom: 1px solid #D9D9D9;
    font-weight: 500;
}
.listing-images-area .tab-btns .tab.active {
    box-shadow: unset;
    border-color: var(--active-color);
    color: var(--active-color);
}
.listing-summary {
    position: relative;
    padding: 2rem 1.5rem;
    border-bottom: 0.1rem solid #E5E5E5;
}
.listing-summary .btn-noti {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    padding: 0.7rem 1rem 0.7rem 3.2rem;
    border: 0.1rem solid #E5E5E5;
    border-radius: 0.7rem;
    font-weight: 500;
    font-size: 1.2rem;
    background-image: url(../images/ico_noti.svg);
    background-repeat: no-repeat;
    background-size: 1.6rem 1.6rem;
    background-position: center left 1rem;
}

.listing-summary .info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.listing-summary .listing-num {
    padding: 0.4rem 0.5rem;
    line-height: 1;
    border-radius: 0.5rem;
    border: 0.1rem solid #E5E5E5;
    font-weight: 500;
    font-size: 1.2rem;
    color: #424242;
}
.listing-summary .listing-date {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--primary-color);
}


.listing-summary .tit {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.8rem;
}
.listing-summary .address-area {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    font-size: 1.4rem;
    color: #737373;
}
.listing-summary .address-area .copy {
    display: inline-block;
    width: 1.2rem;
    height: 1.4rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    background-image: url(../images/ico_copy.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.listing-summary .address-area .btn-road-name {
    padding: 0.3rem 1rem 0.3rem 2.6rem;
    border: 0.1rem solid #E5E5E5;
    border-radius: 0.7rem;
    margin-right: 0.6rem;
    font-weight: 500;
    font-size: 1.2rem;
    background-color: #fff;
    background-image: url(../images/ico_change.svg);
    background-repeat: no-repeat;
    background-size: 1.2rem 1.2rem;
    background-position: center left 0.8rem;
}
.listing-summary .desc {
    margin-top: 1rem;
    line-height: 1.5;
    font-size: 1.4rem;
}
.listing-summary .btn-more {
    width: auto;
    height: auto;
    margin-top: 1rem;
    font-weight: 500;
    font-size: 1.2rem;
    color: #8C8C8C;
}
.listing-summary .btn-more::before {
    content: none;
}
.sticky-menus {
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
    margin: 0 !important;
}
.listing-menus-swiper {
    border-bottom: 0.1rem solid #737373;
    background-color: #fff;
}
.listing-menus-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
    line-height: 4.4rem;
    font-weight: 500;
    font-size: 1.4rem;
    cursor: pointer;
}
.listing-menus-swiper .swiper-slide.active {
    border-bottom: 0.2rem solid var(--active-color);
    font-weight: 700;
    color: var(--active-color);
}
.btn-toggle {
    position: absolute;
    right: -6rem;
    bottom: 0;
    width: 6rem;
    padding: 1rem;
    font-weight: 500;
    font-size: 1.4rem;
    color: #fff;
    background-color: var(--primary-color);
    z-index: 99;
}
/* 실매물 상세 화면 */
.verified-listing .listing-summary {}
.verified-listing .listing-summary .listing-num {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 0.5rem;
    border-radius: 0.5rem;
    border: 0.1rem solid #E5E5E5;
    font-size: 1.2rem;
}
.verified-listing .listing-summary .listing-date {
    padding-left: 0.5rem;
    vertical-align: middle;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--primary-color);
}
/* 면적 선택 팝업 */
.area-select-popup {
    display: none;
}
.area-select-popup.show {
    display: block;
}
.area-select-popup .area-list {}
.area-select-popup .area-list li a {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 2.5rem;
    border-bottom: 0.1rem solid #E5E5E5;
}
.area-select-popup .area-list li strong {
    font-weight: 600;
    font-size: 1.6rem;
}
.area-select-popup .area-list li strong span {
    font-weight: 500;
    font-size: 1.4rem;
    color: #8C8C8C;
}
.area-select-popup .area-list li p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.2rem;
}
.area-select-popup .area-list li p span {
    margin-right: auto;
    padding-left: 1rem;
}
.area-select-popup .area-list li p em {
    padding-left: 1rem;
    font-weight: 600;
}
.area-select-popup .area-list li .area-group{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
/* ======================== e: sidebar-panel ======================== */

/* ======================== s: section-contents ======================== */
.listing-contents {
    background-color: #E5E5E5;
}
.listing-contents .section {
    /* 상단 고정 메뉴의 높이가 180px라면 그보다 조금 더 여유 있게 설정 */
    /* 이 수치를 조절하면서 "중앙" 느낌을 맞추세요 */
    scroll-margin-top: 180px; 
}
.sc-listing {}
.sc-listing .info {
    padding-bottom: 3rem;
}
.sc-listing .listing-price {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--primary-color);
}
.sc-listing .info-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.sc-listing .info-list li {
    flex-basis: 50%;
    font-weight: 500;
    font-size: 1.4rem;
    color: #424242;
}
.sc-listing .tag-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.sc-listing .tag-group span {
    padding: 0.4rem 1rem;
    border: 0.1rem solid #E5E5E5;
    border-radius: 0.5rem;
    line-height: 1;
    font-weight: 500;
    font-size: 1.2rem;
    color: #424242;
}
.sc-listing-info .listing-list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding-bottom: 1.5rem;
}
.sc-listing-info .listing-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.sc-listing-info .listing-list li .img {
    width: 18rem;
    height: 12rem;
    border-radius: 1rem;
    background-color: #eee;
}
.sc-listing-info .listing-list li .info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.sc-listing-info .listing-list li .info strong {
    font-weight: 600;
    font-size: 1.6rem;
}
.sc-listing-info .listing-list li .info p {
    font-size: 1.4rem;
}
.sc-listing-info .listing-list li .stats .likes {
    color: #8C8C8C
}
.sc-listing-info .listing-list li .stats .likes::before {
    color: #8c8c8c;
}
.sc-listing-info .btn-listing-more {
    display: block;
    width: 100%;
    height: 4.5rem;
    line-height: 4.5rem;
    border-top: 0.1rem solid #F0F0F0;
    text-align: center;
    font-size: 1.4rem;
    color: #8C8C8C;
}
/* 매물 목록 리스트화면 */
.side-detail-layer {
    position: absolute;
    left: 44rem;
    top: 0;
    width: 38rem;
    height: 100%;
    z-index: 40;
    overflow-y: auto;
}
.side-detail-layer.left-0 {
    left: 0;
}
.listing-detail  {
    position: absolute;
    left:0;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: #fff;
}
.listing-all-views {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: #fff;
}
.listing-all-views.show, .listing-detail.show {
    display: block;
}
.listing-all-views .sc-listing-info {
    overflow-y: auto;
    height: calc(100% - 10.4rem);
}
.listing-all-views .summary {
    display: flex;
    flex-direction: column;
}
.listing-all-views .summary .summary-head {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}
.listing-all-views .summary .summary-head .btn-back {
    position: absolute;
    left: 0;
    top: 0;
    width: 1rem;
    height: 1.9rem;
    background-image: url(../images/ico_btn_back.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.listing-all-views .summary .summary-head .title {
    text-align: center;
    font-weight: 600;
    font-size: 1.8rem;
}
.listing-all-views .summary .summary-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.listing-all-views .summary .summary-info .info {
    font-weight: 500;
    font-size: 1.6rem;
}
.listing-all-views .sc-listing-info .listing-list {
    gap: 0;
}
.listing-all-views .listing-list li {
    display: block;
}
.listing-all-views .listing-list li a {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 0.1rem solid #F0F0F0;
}
.listing-all-views .listing-list li .stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
}
.listing-all-views .listing-list li .watch {
    color: #8C8C8C;
}
.listing-all-views .listing-list li .watch::before {
    background-image: url(../images/ico_eye_b.svg);
}
.listing-all-views .listing-list li .like {
    color: #8C8C8C;
}
.sc-deal-price .max-content {
    max-height: 45rem;
}
.sc-deal-price .tab-container {}
.sc-deal-price .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.sc-deal-price .tab-panel > .tab-btns {
    display: flex;
    margin-bottom: 1.5rem;
}
.sc-deal-price .tab-btns .tab {
    flex: 1;
}
.sc-deal-price .gragh-info {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.sc-deal-price .gragh-info div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 9.6rem;
    border: 0.1rem solid #E5E5E5;
    border-radius: 0.7rem;
}
.sc-deal-price .gragh-info .tit {
    padding-bottom: 0.3rem;
    font-weight: 500;
    font-size: 1.5rem;
}
.sc-deal-price .gragh-info .tit em {
    font-weight: 700;
}
.sc-deal-price .gragh-info p {
    padding-bottom: 0.5rem;
    font-size: 1.4rem;
    color: #8C8C8C;
}
.sc-deal-price .gragh-info strong {
    font-weight: 600;
    font-size: 1.6rem;
}
.sc-deal-price .gragh-info.monthly {
    align-items: center;
    flex-wrap: wrap;
}
.sc-deal-price .gragh-info.monthly > p {
    padding-bottom: 0;
}
.sc-deal-price .gragh-info.monthly strong {
    flex-basis: 100%;
}
.sc-deal-price .gragh {
    margin-bottom: 1.5rem; 
}
.sc-deal-price .no-data {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 4rem;
    color: #8c8c8c;
}
.sc-unit-info .sc-contents, .sc-unit-info .select-group {
    padding-bottom: 1.5rem;
}
.sc-apt-price .select-group {
    margin-bottom: 1.5rem;
}
.sc-building-age {}
.sc-building-age .summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 7.8rem;
    padding-left: 8.5rem;
    border: 0.1rem solid #E5E5E5;
    border-radius: 1rem;
    background-image: url(../images/ico_building.svg);
    background-repeat: no-repeat;
    background-size: 5rem 5rem;
    background-position: center left 1.5rem;
}
.sc-building-age .summary P {
    font-weight: 500;
    font-size: 1.4rem;
}
.sc-building-age .summary P span {
    font-weight: 700;
    font-size: 1.6rem;
}
.sc-building-age .info {
    padding: 1.5rem;
    line-height: 1.4;
    border-radius: 1rem;
    font-weight: 500;
    font-size: 1.6rem;
    background-color: #F7F7F7;
}
.sc-building-age .info span {
    font-size: 1.4rem;
}
.sc-land-plan, .sc-building-age {
    padding-bottom: 1.5rem;
}
.sc-maint-fee .fee-swiper {
    margin: 1.5rem 0;
}
.sc-maint-fee .fee-swiper .swiper-slide .title {
    padding-bottom: 1.5rem;
    border-bottom: 0.1rem solid #E5E5E5;
    text-align: center;
    font-weight: 500;
    font-size: 1.6rem;
}
.sc-maint-fee .fee-swiper .prev,
.sc-maint-fee .fee-swiper .next {
    top: 1rem;
    width: 1rem;
    color: #424242;
}
.sc-maint-fee .tab-btns {
    display: flex;
    gap: 0.6rem;
    margin: 2rem 0 1.5rem;
    background-color: unset;
}
.sc-maint-fee .tab-btns .tab {
    flex: 1;
    height: 3.6rem;
    border-radius: 0.7rem;
    border: 0.1rem solid #E5E5E5;
}
.sc-maint-fee .tab-btns .tab.active {
    border-color: var(--active-color);
    font-weight: 600;
    color: var(--active-color);
}
.sc-maint-fee .common-table {}
.sc-maint-fee .common-table tr th {
    min-width: 15rem;
}
.sc-infra .traffic-swiper .swiper-slide {
    flex: 1;
    white-space: nowrap;
}
.sc-infra .infra-list-area .txt {
    padding-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.2rem;
}
.sc-infra .infra-list-area .infra-list {
    border-top: 0.1rem solid #E5E5E5;
}
.sc-infra .infra-list-area .infra-list li {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 0.1rem solid #E5E5E5;
    cursor: pointer;
}
.sc-infra .infra-list-area .infra-list li::before {
    content: '';
    display: inline-block;
    margin-right: 1rem;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: #737373;
}
.sc-infra .infra-list-area .infra-list li.subway::before {
    width: 1.2em;
    height: 1.5em;
    -webkit-mask-image: url(../images/ico_subway.svg);
    mask-image: url(../images/ico_subway.svg);
}
.sc-infra .infra-list-area .infra-list li.bus::before {
    width: 1.8em;
    height: 1.4em;
    -webkit-mask-image: url(../images/ico_bus.svg);
    mask-image: url(../images/ico_bus.svg);
}
.sc-infra .infra-list-area .infra-list li.school::before {
    width: 1.8em;
    height: 1.6em;
    -webkit-mask-image: url(../images/ico_school.svg);
    mask-image: url(../images/ico_school.svg);
}
.sc-infra .infra-list-area .infra-list li.amenities::before {
    width: 1.5em;
    height: 1.7em;
    -webkit-mask-image: url(../images/ico_cart.svg);
    mask-image: url(../images/ico_cart.svg);
}
.sc-infra .infra-list-area .infra-list li p {
    font-weight: 500;
    font-size: 1.4rem;
    color: #595959;
}
.sc-infra .infra-list-area .infra-list li p:last-child {
    margin-left: auto;;
}
.sc-infra .infra-list-area .infra-list li:hover p {
    text-decoration: underline;
    color: #424242;
}
.sc-infra .infra-list-area .infra-list li:hover::before {
    background-color: #424242;
}
.sc-infra .infra-list-area .infra-list li p span {}


.sc-review {}
.sc-review .tab-container {
    margin-bottom: 1.5rem;
}
.sc-review .tab-btns {
    display: flex;
    margin-bottom: 1rem;
}
.sc-review .tab-btns  .tab {
    flex: 1;
}
.sc-review .ai-reviews-list {
    padding: 1rem;
    border-radius: 1.6rem;
    background-color: #F7F7F7;
}
.sc-review .ai-reviews-list li {
    padding: 1rem;
    border-bottom: 0.1rem solid #E5E5E5;
    font-size: 1.4rem;
    color: #595959;
    background-color: #fff;
}
.sc-review .resident-reviews {
    border-top: 0.1rem solid #F0F0F0;
}
.sc-review .resident-reviews li {
    padding: 1.5rem 0;
    border-bottom: 0.1rem solid #F0F0F0;
}
.sc-review .resident-reviews li .name {
    padding-bottom: 0.5rem;
    font-size: 1.2rem;
}
.sc-review .resident-reviews li .date {
    padding-bottom: 1rem;
    font-size: 1.2rem;
    color: #8C8C8C;
}
.sc-review .resident-reviews li .review {
    font-size: 1.4rem; 
}
.sc-review .resident-reviews li .stats {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}
.sc-review .resident-reviews li .stats .likes {
    color: #8C8C8C;
}
.sc-review .resident-reviews li .stats .likes::before {
    background-image: url(../images/ico_heart02.svg);
}
.sc-review .resident-reviews li .stats .comments {
    margin-left: 1rem;
}
.sc-review .resident-reviews li .stats .btn-reply {
    margin-left: 1.5rem;
    font-size: 1.2rem;
    color: #8C8C8C;
}
/* ======================== e: section-contents ======================== */

/* ======================== s: map-container ======================== */
.map-container {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.map-container .map-area {
    display: flex;
    width: 100%;
    height: 100%;
}
.map-container .map-area .map {
    width: 100%;
    height: 100%;
}
.map-container .map-area .pano {
    width: 50%;
    height: 100%;
}
.map-container .map-area .map .marker {
    min-width: 7rem;
}
.map-container .map-area .map .marker .tit {
    padding: 0.3rem;
    border-radius: 0.4rem;
    text-align: center;
    font-size: 1.2rem;
}
.map-container .map-area .map .marker .date {
    padding: 0.3rem 0;
    text-align: center;
    font-size: 1.1rem;
}
.map-container .map-area .map .marker .amount {
    text-align: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: #202224;
}
.map-container .map-area .map .marker.apt .tit {
    background-color: #F7D9D9;
    color: #AD3C36;
}
.map-container .map-area .map .marker.apt .date {
    color: var(--primary-color);
}
.map-container .map-area .map .marker.land .tit {
    background-color: #D9F7E4;
    color: #2BC067;
}
.map-container .map-area .map .marker.land .date {
    color: #2BC067;
}
.map-container .map-area .map .marker.shop .tit {
    background-color: #F7ECD9;
    color: #C07F2B;
}
.map-container .map-area .map .marker.shop .date {
    color: #C07F2B;
}
.map-container .map-area .map .marker.mult_house .tit {
    background-color: #D9E6F7;
    color: #2B65C0;
}
.map-container .map-area .map .marker.mult_house .date {
    color: #2B65C0;
}
.map-container .map-area .map .marker.single_house .tit {
    background-color: #E8D9F7;
    color: #732BC0;
}
.map-container .map-area .map .marker.single_house .date {
    color: #732BC0;
}
.map-container .map-area .map .marker.office .tit {
    background-color: #F7D9F2;
    color: #C02B9D;
}
.map-container .map-area .map .marker.office .date {
    color: #C02B9D;
}
.map-container .map-area .map .marker.factory .tit {
    background-color: #FBF3A7;
    color: #F2BD03;
}
.map-container .map-area .map .marker.factory .date {
    color: #F2BD03;
}
.map-container .controller {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.map-container .controller .btns-group {
    padding: 0.6rem;
    border-radius: 0.8rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    overflow: hidden;
    background-color: #fff;
}
.map-container .controller .btns-group .btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    border-radius: 0.4rem;
}
.map-container .controller .btns-group .btn + .btn {
    padding-top: 0.4rem;
}
.map-container .controller .btns-group .btn:hover {
    background-color: oklch(96.7% 0.003 264.542);
}
.map-container .controller .btns-group .btn .icon {
    width: 2.4rem;
    height: 2.4rem;
}
.map-container .controller .btns-group .btn .name{
    font-weight: 500;
    font-size: 1.2rem;
}
.map-container .controller .btns-group .btn.zoom,
.map-container .controller .btns-group .btn.current-location {
    justify-content: center;
}
/* ======================== e: map-container ======================== */

	:root {
	--white : #fff ; 
	--black : #000 ;
	--gray : #e7e9eb ;
	--gray-100 : #f7f9fc ;
	--primary : #C02B2B ;
	--shadow : 0 0 10px 5px rgba(0,0,0,.15) ;
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000000;
    --bs-white: #ffffff;
    --bs-gray: #78829D;
    --bs-gray-dark: #252F4A;
    --bs-gray-100: #F9F9F9;
    --bs-gray-200: #F1F1F4;
    --bs-gray-300: #DBDFE9;
    --bs-gray-400: #C4CADA;
    --bs-gray-500: #99A1B7;
    --bs-gray-600: #78829D;
    --bs-gray-700: #4B5675;
    --bs-gray-800: #252F4A;
    --bs-gray-900: #071437;
    --bs-light: #F9F9F9;
    --bs-primary: #7239EA;
    --bs-secondary: #F9F9F9;
    --bs-success: #50CD89;
    --bs-info: #009EF7;
    --bs-warning: #FFC700;
    --bs-danger: #F1416C;
    --bs-dark: #1E2129;
    --bs-light-rgb: 249,249,249;
    --bs-primary-rgb: 114,57,234;
    --bs-secondary-rgb: 249,249,249;
    --bs-success-rgb: 80,205,137;
    --bs-info-rgb: 0,158,247;
    --bs-warning-rgb: 255,199,0;
    --bs-danger-rgb: 241,65,108;
    --bs-dark-rgb: 30,33,41;
}

/* .badge {
	display : inline-block ; 
	vertical-align : middle ;
	font-size : 10px ;
	line-height : 1 ; 
	padding : 3px ; 
	font-weight : 600 ; 
	border-radius : 3px ; 
	background-color : var(--bs-yellow) ; 
}
.badge.green {
	color : var(--white); 
	background-color : var(--bs-green) ; 
}
.badge.blue {
	color : var(--white); 
	background-color : var(--bs-blue) ; 
} */

body > section.message {
	display : none ;
}
.marker {
	text-align : center ;
	background-color : var(--white);
	border-radius : 5px ;
	position : relative ;
	box-shadow : var(--shadow) ;
	padding : 5px ; 
	min-width : 60px ; 
	z-index : 10000000 ;
}
.marker:hover,.over-zindex-100:hover {
	z-index : 10000001 !important ;
}
.marker:before {
	content : "" ;
	position : absolute ;
	top : 100% ;
	left : calc( 50% - 4px );
	border-top : solid 8px var(--white) ;
	border-left : solid 6px transparent ;
	border-right : solid 6px transparent  ;
}
.marker .category {
	background-color : var(--primary) ;
	color : var(--white) ;
	font-size : 10px ;
	padding : 3px 6px ;
	width : 100% ;
	border-radius : 5px ; 
	word-break: keep-all;
}
.marker .price {
	padding : 5px ;
	font-size : 14px ;
	line-height : 20px ; 
	font-weight : 800 ;
}
.trade-marker {
    width: 7rem;
    height: 7rem;
    padding: 1.6rem 1.1rem;
    background-color: var(--primary-color);
    opacity: 0.8;
    border: 0.1rem solid var(--primary-color);
    border-radius: 50%;
    text-align: center;
    color: #fff;
    cursor: pointer;
}
.trade-marker span {
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1;
}
.trade-marker p {
    margin-top: 0.1rem;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.2;
}
.jibun-marker {
    position: relative;
    /* width: 8rem; */
    padding: 0.3rem 0.5rem;
    box-sizing: border-box;
    text-align: center;
    border-radius: 0.5rem;
    background-color: var(--primary-color);
}
/* .jibun-marker::before {
    content: '';
    display: block;
    position: absolute;
    left: -0.1rem;
    top: -2.5rem;
    width: 8rem;
    height: 2.5rem;
    background-image: url(../images/ico_marker_roof.svg);
    background-repeat: no-repeat;
    background-size: cover;
} */
.jibun-marker span {
    word-break: keep-all;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}
section.nmodal {
	background : rgba(0,0,0,.6) ;
	position : fixed ;
	top : 0 ;
	left : 0 ;
	z-index : 100 ;
	width : 100vw ;
	height : 100vh ;
	overflow-y : auto ;
	padding : 52px 0 ;
	place-items : center ;
	display : grid ;
	font-size : 14px ; 
}
section.nmodal > .detail {
	background-color : #fff ;
	border-radius : 12px ; 
	width : 1050px ; 
	display : grid ;
	grid-template-columns : 1fr 360px ; 
}
section.nmodal > .detail h2 {
	font-size: 20px ;
	font-weight : 800 ; 
	line-height : 28px ; 
	padding-bottom : 20px ; 
	margin-top : 52px ;
}
section.nmodal > .detail h3 {
	font-size: 16px ;
	font-weight : 800 ; 
	line-height : 22px ;
	padding : 20px 0 12px 0 ;
}
section.nmodal > .detail > header {
    grid-column: span 2;
	line-height : 48px ; 
	padding : 0 16px ; 
	border-bottom : solid 1px var(--gray) ; 
	display : flex ;
	justify-content: space-between;
}
section.nmodal > .detail > header h1 {
	font-size : 16px ;
	font-weight : 600 ;
}
section.nmodal > .detail > .body {
	border-right : solid 1px var(--gray) ; 
}	

section.nmodal > .detail > .body .media {
	display : grid ;
	grid-template-columns : repeat(4,1fr) ;
	grid-template-rows : repeat(2,1fr) ;
	height : 260px ; 
	background-color : var(--gray) ;
}
section.nmodal > .detail > .body .media .image {
	aspect-ratio : 346 / 260 ; 
	background-position : center ;
	background-repeat : no-repeat ;
	background-size : cover ; 
}
section.nmodal > .detail > .body .media > *:first-child {
	grid-row : span 2 ;
	grid-column : span 2 ; 
}
section.nmodal > .detail > .body .media > .cadastral {
	grid-column : span 2 ; 
}
section.nmodal > .detail > .body.no-trade {
	grid-column: span 2;
}
section.nmodal > .detail > .body.no-trade .media .satellite {
	grid-column: span 2;
	/*display : none ;*/
}
section.nmodal > .detail > .body .lands > .tab {
	background-color : var(--white) ;
	position : sticky ;
	top : -52px ;
}
section.nmodal > .detail > .body .lands > .tab > ul {
	display : grid ;
	grid-template-columns : repeat(5,1fr);
	line-height : 40px ; 
	border-bottom : solid 1px var(--gray) ; 
}
section.nmodal > .detail > .body.no-trade .lands > .tab > ul {
	grid-template-columns : repeat(4,1fr);
}
section.nmodal > .detail > .body .lands > .tab > ul > li {
	position: relative ;
	text-align : center ;
	cursor : pointer ;
}
section.nmodal > .detail > .body .lands > .tab > ul > li:before {
	content : "" ;
	display : block ;
	position : absolute ;
	bottom : 0 ;
	left : 0 ;
	width : 100% ;
	height : 2px ;
}
section.nmodal > .detail > .body .lands > .tab > ul > li a {
	word-break : keep-all ;
	white-space : nowrap ;
}
section.nmodal > .detail > .body .lands > .tab > ul > li.on {
	color : var(--primary) ;
}
section.nmodal > .detail > .body .lands > .tab > ul > li.on:before {
	background-color : var(--primary) ;
}
section.nmodal > .detail > .body .lands > .cont {
	padding : 30px 20px ;
}
section.nmodal > .detail > .body .lands > .cont .price {
	font-size : 22px ; 
	font-weight : 800 ;
}
section.nmodal > .detail > .body .lands > .cont .title {
	font-size : 16px ;
	font-weight : 800 ; 
}
.tags {
	display : inline-block ; 
	vertical-align: text-bottom;
}
.tags > span {
	margin : 1px 3px 1px 0 ; 
	padding : 3px 5px ;
	background-color : var(--primary) ; 
	border-radius : 4px ; 
	color : var(--white) ; 
	display : inline-block ; 
	font-size : 10px; 
	font-weight : 400 ; 
}
section.nmodal > .detail > .body .describe {
	border-radius : 6px ; 
	background-color : var(--gray-100) ;
	padding : 12px ;
	margin : 20px 0 ;
}
section.nmodal > .detail > .body dl.field-row {
	display : grid ;
	grid-template-columns : 160px 1fr ;
	width : 100% ;
	border : solid 1px var(--gray) 
}
section.nmodal > .detail > .body dl.field-row > dt {
	font-weight : 800 ;
	background-color : var(--gray-100) ; 
	border-right : solid 1px var(--gray) ; 
	color : #7D7E84 ;
}
section.nmodal > .detail > .body dl.field-row > dt,
section.nmodal > .detail > .body dl.field-row > dd {
	line-height : 1.6 ;
	padding: 10px 16px;
}
section.nmodal > .detail > .body dl.field-row ~ dl.field-row {
	margin-top : -1px ; 
}
section.nmodal > .detail > .body table.list {
	width : 100% ;
	text-align : center ;
}
section.nmodal > .detail > .body table.list select {
	border : solid 1px var(--bs-gray-700) ; 
	
}
section.nmodal > .detail > .body table.list tr > * {
	border-bottom : solid 1px var(--gray) ;
	padding : 12px 0 ; 
}
section.nmodal > .detail > .body table.list tr.nodata > td {
	padding : 50px 0 ;
	text-align : center ;
}
section.nmodal > .detail > .body table.list tr.hidden > td {
	display : none 
}

section.nmodal > .detail > .store {
	padding : 32px 20px 
}
section.nmodal > .detail > .store > .store-wrap {
	position : sticky ;
	top : -20px ;
}
section.nmodal > .detail > .store .office {
	line-height : 88px 
}
section.nmodal > .detail > .store dl.field-row {
	padding : 12px 0 ;
	line-height : 20px ;
	display : grid ;
	grid-template-columns : 100px 1fr ;
	width : 100% ;
}
section.nmodal > .detail > .store dl.field-row > dt {
	font-weight : 800 ;
}
section.nmodal > .detail > .store dl.field-row ~ dl.field-row {
	border-top : solid 1px var(--gray) ; 
}

#goods-cont ul > li a {
	display : block ;
	padding : 20px ;
}
#goods-cont ul > li a big {
	font-size : 18px ;
	font-weight : 800 ;
}
#goods-cont ul > li a .summary {
	font-size : 14px ; 
	font-weight : 800 ; 
}
#goods-cont ul > li a .image {
	background-position : center ;
	background-size : cover ;
	aspect-ratio : 2/1 ;
	border-radius : 6px ; 
	width : 100% ; 
	background-color : var(--gray-100) ; 
	display : block ; 
	margin-bottom : 10px ; 
}
.search-results {
	position : absolute ;
	z-index: 1010;
	width : 100% ;
    height: calc(100% - 20.1rem);
    overflow-y: auto;
	border-bottom : var(--gray) ;
	background-color : var(--white) ;
}
.search-results .recent-list {
    height: auto;
}
.search-results .recent-list li {
    margin: 0;
    padding: 0 1.5rem;
}
.search-results ul {
	width : 100% ;
    height: 100%;
}
.search-results ul > li {
	padding : 12px 16px ;
	cursor : pointer ;
	font-size : 12px ; 
	transition : ease-out .2s ; 
}
.search-results ul > li:hover {
    background-color: rgb(254 242 242);
}
.search-results ul > li ~ li {
	border-top : solid 1px var(--gray-100) ;
}
.search-results ul > li strong {
    display: block;
    font-size: 1.4rem;
}
.search-results ul > li small {
    display: block;
    font-size: 1.4rem;
}
.search-results ul > li span {
    display: block;
    font-size: 1.4rem;
}
.search-results ul > li > div ~ div {
	margin-top : 3px ; 
}
.search-results ul > li .sticker {
	color: rgb(192 43 43 / 1 ); 
	background-color: rgb(237 246 248 / 1);
	display : inline-block ; 
	vertical-align : middle;
	padding : 2px 0 ; 
	width : 45px ; 
	text-align : center ; 
}
.search-results .none-results {
    display: block;
    text-align: center;
    padding: 2rem;
    height: 100%;
}
.search-results .none-results:hover {
    background-color: unset;
}


.buttons button {
	color : #7D7F84
}
.buttons button img {
	filter: brightness(0) saturate(100%) invert(51%) sepia(6%) saturate(176%) hue-rotate(182deg) brightness(88%) contrast(85%);
}
.buttons button.on {
	color : var(--primary-color);
}
.buttons button.on img {
    filter: var(--filter-primary-color);
}

@media only screen and (max-width: 480px) {
	section.nmodal {
		padding : 0 ;
	}
	section.nmodal > .detail {
		width: 100% ;
		border-radius : 0 ; 
		grid-template-columns: 1fr ;
	}
	section.nmodal > .detail > header {
		grid-column: span 1;
        position: sticky;
        top: 0;
		background-color : var(--white) ; 
	}
	section.nmodal > .detail > .body .lands > .tab {
		top : 49px ;
	}
	section.nmodal > .detail > .body dl.field-row {
		grid-template-columns: minmax(120px,30%) 1fr;
	}
	section.nmodal > .detail > .body dl.field-row > dt,
	section.nmodal > .detail > .body dl.field-row > dd {
		letter-spacing : -.5px ; 
		padding: 10px ;
	}
	section.nmodal > .detail > .body table.list tr > *:first-child {
		text-align : left ;
	}
	section.nmodal > .detail > .body table.list tr > *:last-child {
		text-align : right ;
	}
}




/**************** 2025/12/08 임시 css yhb */
body.view-area-pyung .marker .area .m2,
body:not(.view-area-pyung) .marker .area .pyung,
body.view-price-danga .marker .amount .total,
body:not(.view-price-danga) .marker .amount .danga,
body.view-price-danga.view-area-pyung .marker .amount .danga .m2,
body.view-price-danga:not(.view-area-pyung) .marker .amount .danga .pyung {
	display : none ;
}
.map-container .controller .btns-group {
    overflow: visible;
}
.map-container .controller .btns-group .btn {
	position : relative ;
}
.map-container .controller .btns-group .dropdown {
	position : absolute ;
	top : 0 ;
	right : 4.3rem;
	background-color : var(--white) ;
	box-shadow : var(--shadow) ;
	border-radius : 6px ; 
	z-index : 1000 ;
	padding : 10px ;
	color : var(--bs-gray-700) ;
} 
.map-container .controller .btns-group button.btn:not(.on) .dropdown {
	display : none ;
}
.map-container .controller .btns-group .dropdown ul > li {
	word-break : keep-all ;
	white-space: pre;
	padding : 6px 12px ;
	cursor : pointer ;
	font-size : 14px ;
	border-radius : 3px ; 
}
.map-container .controller .btns-group .dropdown ul > li ~ li {
	margin-top : 2px ; 
}
.map-container .controller .btns-group .dropdown ul > li:hover {
	background-color : var(--bs-gray-200) ;
}
.map-container .controller .btns-group .dropdown ul > li.on {
	background-color : var(--bs-gray-200) ;
	color : var(--primary-color); ;
	font-weight : 500 ;
}
.map-container .controller .btns-group .btn.no-padding {
	padding : 0 ;
}
.map-container .controller .btns-group .btn .toggle {
	display : grid ;
	font-size : 14px ; 
	width : 100% ;
}
.map-container .controller .btns-group .btn .toggle ~ .name {
	display : none ;
}
.map-container .controller .btns-group .btn .toggle > span {
	display : block ; 
	border-radius : .4rem ;
	cursor : pointer ;
	width : 100% ;
}
.map-container .controller .btns-group .btn .toggle > span:hover {
	color : var(--black)
}
body.view-area-pyung .map-container .controller .btns-group .btn .toggle > span.status-pyung,
body:not(.view-area-pyung) .map-container .controller .btns-group .btn .toggle > span.status-m2,
body.view-price-danga .map-container .controller .btns-group .btn .toggle > span.status-danga,
body:not(.view-price-danga) .map-container .controller .btns-group .btn .toggle > span.status-total {
	color : var(--white) ;
	background-color : var(--primary-color);;
}


.d-flex {
	display : flex ;
}
.mr-1 {
	margin-right : 4px ;
}
.mr-4 {
	margin-right : 16px ;
}


/* ======================== s: media query ======================== */
@media (max-width: 1024px) {
    .navbar {
        display: none;
    }
    .mo-navbar {
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 100;
        width: 100%;
        height: 6rem;
        padding: 0 3rem;
        border-top: 1px solid #D9D9D9;
        background: #fff;
    }
    .mo-navbar > ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }
    .mo-navbar > ul > li .icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    .mo-navbar > ul > li .icon svg {
        width: 2rem;
        height: 2rem;
    }
    .mo-navbar > ul > li .icon span {
        font-weight: 500;
        font-size: 1.2rem;
    }
    .mo-navbar > ul > li.active .icon {
        color: var(--primary-color);
    }
    .mo-navbar ul li.ham {
        position: relative;
    }
    .mo-navbar .submenu {
        display: flex;
        flex-direction: column;
        position: absolute;
        left: -1.5rem;
        bottom: 5rem;
        width: 15rem;
        background: #fff;
        padding: 0.5rem 0;
        border-radius: 1.6rem;
        box-shadow: 0.2rem 0.2rem 0.7rem 0 rgba(0,0,0,0.1);
        opacity: 0;
        transform: translateX(-120%);
        transition: all 0.2s ease;
    }
    .mo-navbar .submenu.show {
        opacity: 1;
        transform: translateX(0);
    }
    .mo-navbar .submenu li a {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
    .mo-navbar .submenu li.active .icon {
        color: var(--primary-color);
    }
    /* .mo-navbar .submenu .apt.active .icon {
        color: var(--secondary-color);
    }
    .mo-navbar .submenu .house.active .icon {
        color: #1A237E;
    }
    .mo-navbar .submenu .villa.active .icon {
        color: #2962FF;
    }
    .mo-navbar .submenu .office.active .icon {
        color: #00A86B;
    }
    .mo-navbar .submenu .land.active .icon {
        color: #FB8C00;
    } */
    .mo-navbar .submenu .land.active .icon span {
        font-weight: 700;
    }
    .mo-navbar .submenu li:hover a {
        background-color: #eeeeee;
    }

    .navbar ul li .tooltip {
        left: 50%;
        top: -200%;
        margin-left: 0;
    }
    .navbar ul li .tooltip.hover {
        display: none;
    }
    .navbar ul li .tooltip.clicked {
        transform: translateY(20%) translateX(0);
    }
    .navbar ul li.active .tooltip.clicked.show {
        transform: translateY(0) translateX(-50%);
    }
    .map-container .controller {
        gap: 0.8rem;
        top: 1rem;
        right: 1rem;
        transform: none;
    }
    .sidebar-panel {
        top: -6rem;
        left: 0;
        max-width: 100%;
        /* height: calc(100% - 6rem); */
        transform: translateY(0);
    }
    .sidebar-panel.open {
        transform: translateY(100%);
    }
    .listing-images-area {
        padding: 1rem 1rem 0;
    }
    .btn-toggle {
        bottom: auto;
        top: -3.6rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    .side-detail-layer {
        left: 0 !important;
        z-index: 100;
        width: 100%;
    }
}
/* ======================== e: media query ======================== */
