* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    --sg-color-outlind-inout: #ff4d4f7d;
    --sg-color-active-select: #e93232;
    --sg-input-check-bg: #ff4d4f1c;
    --sg-border-color: #d4d9e1;
    --sg-bg-light: #ffffff;
}

/* ==============This is style for update=============== */
.ljs-overlay{
    z-index: 99999 !important;
}
.filter-panel {
    position: sticky;
    padding: 0rem;
    top: 103px;
    z-index: 120;
    height: 50px;
    overflow-x: auto;
    overflow-y: visible;
    flex-direction: row;
    scrollbar-width: none;
    padding: 0rem;
    gap: 10px;
    border-radius: 0rem;
    background: var(--sg-color-brand);
}
.filter-container{
    max-width: 1300px;
    margin: 0 auto;
    height: 100%;
}

/* =======================end ======================== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: white;
    display: flex;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1001;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 60px;
    transition: opacity .3s;
}

.nav-logo-link:hover {
    opacity: .8;
}

.nav-logo {
    height: 40px;
    max-width: 150px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    padding: 20px 24px;
    transition: color .3s;
    position: relative;
}

.nav-links a:hover {
    color: #ff4d4f;
}

.nav-links a.active {
    color: #ff4d4f;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ff4d4f;
    border-radius: 3px 3px 0 0;
}

/* ─── 过滤面板 ──────────────────────────────────────────────── */
/* .filter-panel {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    z-index: 999;
    border-bottom: 1px solid #e8e8e8;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
} */

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    gap: 0.2rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 0 1 auto;
    min-width: max-content;
    position: relative;
    height: 100%;
}


.filter-select {
    outline: none;
    border: none;
    height: 100%;
    padding: 0rem 0.5rem;
    border-radius: 0rem;
    cursor: pointer;
    width: 100%;

    color: var(--sg-bg-light);
    background-color: transparent;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.5' d='M19.92 8.95l-6.52 6.52c-.77.77-2.03.77-2.8 0L4.08 8.95'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 18px 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2rem;
}

.filter-select:hover {
    background-color: var(--sg-color-brand-hover);
}

.filter-select:focus {
    outline: none;
    border-color: var(--sg-bg-light);
    box-shadow: 0 0 0 2px rgba(255, 77, 79, .15);
}
.filter-select.active{
    border-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.5' d='M19.92 8.95l-6.52 6.52c-.77.77-2.03.77-2.8 0L4.08 8.95'%3E%3C/path%3E%3C/svg%3E");
    color: var(--sg-bg-light);
    background-color: var(--sg-color-active-select);
}
.filter-controls .filter-group:first-child{
    display: none;
}

.type-label-text {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #333;
    font-size: 13px;
    z-index: 2;
}

.filter-btn-s9g {
    padding: 0rem 0.5rem;
    height: 100%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: max-content;
}
.filter-btn-s9g svg{
    width: 1.2rem;
}
.filter-btn-s9g:hover {
    background: var(--sg-color-brand-hover);
}
.filter-btn-s9g,
.filter-select option,
.filter-select{
    font-size: 1rem;
}

/* ─── 过滤侧边栏 ─────────────────────────────────────────────── */
.filter-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, .1);
    z-index: 999991;
    transition: right .3s ease;
    display: flex;
    flex-direction: column;
}

.filter-sidebar.active {
    right: 0;
}

.filter-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 10px;
    background: var(--sg-color-brand);
}

.filter-sidebar-header h2 {
    flex: 1;
    text-align: center;
    font-size: 16px;
    margin: 0;
    color: var(--sg-bg-light);
}

.filter-sidebar-back,
.filter-sidebar-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--sg-bg-light);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-sidebar-back:hover,
.filter-sidebar-close:hover {
    color: var(--sg-bg-light);
}

.filter-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.filter-item {
    gap: 0.5rem;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background .2s;
}
.filter-item input[type="checkbox"] {
    position: relative;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 1rem;
    appearance: none;
    background-color: transparent;
    display: none !important;
}
.filter-item input[type="checkbox"]::after,
.filter-item input[type="checkbox"]::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 0.4rem;
    background-color: var(--sg-bg-light);
    border: 1px solid var(--sg-color-brand); 
    outline: 2px solid transparent;
    outline-offset: 1px;
    transition: all ease-in-out .2s;
}
.filter-item input[type="checkbox"]:checked::after {
    border-color: var(--sg-color-brand);
    outline-color: var(--sg-color-outlind-inout);
    background-color: var(--sg-color-brand);
}
.filter-item input[type="checkbox"]::before{
    border: none;
    outline: none;
    background-color: transparent;
    z-index: 2;
}
.filter-item input[type="checkbox"]:checked::before {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 85%;
    /* FIXED: Corrected the xmlns URL string below */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-check2' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0'/%3E%3C/svg%3E");
}
.filter-item:hover {
    background: #f9f9f9;
}


/* .filter-item.selected {
    color: var(--sg-color-brand);
    font-weight: 600;
} */

.filter-item-text {
    flex: 1;
}

.filter-item-check {
    font-size: 20px;
    color: var(--sg-color-brand);
    display: none;
}
.filter-item .filter-item-check{
    width: 1.2rem;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.4rem;
    background-color: var(--sg-bg-light);
    border: 1px solid var(--sg-border-color); 
    outline: 2px solid transparent;
    outline-offset: 1px;
    transition: all ease-in-out .2s;
    background: transparent;
    padding: 0rem;
    box-sizing: border-box;
    line-height: 0;
}
.area-active .filter-item-check{
    border-radius: 50rem;
}
.filter-item .filter-item-check svg{
   display: none;
   color: var(--sg-bg-light);
}
.filter-item.selected {
    color: var(--sg-color-brand);
    font-weight: 600;
    background: var(--sg-input-check-bg);
}

.filter-item.selected .filter-item-check {
    border-color: var(--sg-bg-light);
    outline-color: var(--sg-color-outlind-inout);
    background-color: var(--sg-color-brand);
}
.filter-item.selected .filter-item-check svg{
    display: block;
}
.area-active .filter-item.selected .filter-item-check  svg{
    display: none;
}

.filter-item.any {
    background: #f5f5f5;
    font-weight: 600;
}

.filter-sidebar-confirm {
    background: var(--sg-color-brand-active);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s;
    position: sticky;
    bottom: 0rem;
}

.filter-sidebar-confirm:hover {
    background: var(--sg-color-brand-hover);
}

.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 99999;
    display: none;
}

.filter-overlay.active {
    display: block;
}

.price-range-input {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-range-input label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.price-range-input input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.price-range-input input:focus {
    outline: none;
    border-color: var(--sg-color-brand);
}

/* ─── 地图 ──────────────────────────────────────────────────── */
.map-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#map {
    width: 100%;
    height: 100%;
    touch-action: pan-x pan-y;
}

/* ─── 缩小按钮 ──────────────────────────────────────────────── */
/* ─── zoom-action group ─── */
.zoom-action {
    position: fixed;
    bottom: 0.5rem;
    right: 0.5rem;
    z-index: 1005;
    display: flex;
    background: var(--sg-bg-light);
}

/* individual button — reuses your existing .zoom-out-btn style */
.zoom-action .zoom-out-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: #333;
    font-family: inherit;
    transition: background .2s, transform .15s;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    min-width: 65px;
    padding: 0.7rem 0rem;
}
.zoom-action button:nth-child(2) {
    border-left: 1px solid;
    border-right: 1px solid;
    border-color: var(--sg-border-color);
}
.zoom-action .zoom-out-btn i { font-size: 18px; color: #ff4d4f; }
.zoom-action .zoom-in-btn  i { color: #2ecc71; }
.zoom-action .zoom-reset-btn i { color: #3498db; }
.zoom-action .zoom-out-btn:active { transform: scale(.93); background: #f5f5f5; }
.zoom-action .zoom-out-btn:disabled { cursor: not-allowed; }

/* .zoom-out-btn {
    display: flex;
    position: fixed;
    bottom: 3rem;
    left: 1rem;
    z-index: 1000;
    background: white;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    align-items: center;
    width: max-content;
    height: max-content;
    padding: 0.8rem;
    gap: 4px;
    font-size: 12px;
    color: #333;
    transition: background .2s, transform .15s;
    -webkit-tap-highlight-color: transparent;
}

.zoom-out-btn i {
    font-size: 18px;
    color: #ff4d4f;
}

.zoom-out-btn:active {
    transform: scale(.93);
    background: #f5f5f5;
} */

.house-detail-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0rem;
    overflow: hidden;
}

.house-detail-panel.active {
    right: 0;
}

/* 面板头 */
.hdp-header {
    display: flex;
    align-items: center;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    background: var(--sg-color-brand);
    flex-shrink: 0;
    gap: 10px;
    color: white;

}

.hdp-title {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.hdp-count {
    font-size: 12px;
    white-space: nowrap;
}

.hdp-close {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #f5f5f5b9;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #555;
    transition: background .2s, color .2s;
    flex-shrink: 0;
}

.hdp-close:hover {
    background: #ff4d4f;
    color: white;
}

/* 面板列表区 */
.hdp-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
}

.hdp-body::-webkit-scrollbar {
    width: 4px;
}

.hdp-body::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

/* ─── 房源卡片 ──────────────────────────────────────────────── */
.house-card {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    cursor: pointer;
    transition: box-shadow .2s, border-color .2s, transform .15s;
    -webkit-tap-highlight-color: transparent;
    border-bottom: 1px solid #f0f0f0;
    padding: 0.8rem 0rem;
}

.house-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    border-color: #ff4d4f;
    transform: translateY(-1px);
}

.house-card--selected {
    border-color: #ff4d4f;
    /* box-shadow: 0 0 0 3px rgba(255,77,79,0.12); */
    background: #fff8f8;
}

/* 图片区 */
.hc-img-wrap {
    margin-left: 0.8rem;
    width: 110px;
    min-width: 110px;
    height: 110px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.hc-img-wrap--error {
    background: #f0f0f0;
}

.hc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}

.house-card:hover .hc-img {
    transform: scale(1.05);
}

.hc-img-placeholder {
    color: #ccc;
    font-size: 28px;
}

.hc-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #ff4d4f;
    color: white;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 20px;
    font-weight: 600;
}

.hc-img-wrap {
    position: relative;
}

/* 文字区 */
.hc-info {
    margin: 0rem 0.8rem;
    margin-left: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.hc-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hc-price {
    font-size: 15px;
    font-weight: 800;
    color: #ff4d4f;
}

.hc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.hc-meta span {
    font-size: 11px;
    color: #888;
    background: #f5f5f5;
    padding: 2px 7px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.hc-address {
    font-size: 11px;
    color: #aaa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 4px;
}

.hc-dist {
    font-size: 11px;
    color: #bbb;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.hc-dist--selected {
    color: #ff4d4f;
    font-weight: 600;
}

.hc-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #ff4d4f;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: background .2s;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.hc-cta:hover {
    background: #e63939;
}

/* 遮罩（移动端） */
.hdp-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1002;
}

/* ─── 桌面大屏 ──────────────────────────────────────────────── */
/* @media (min-width: 1025px) {
    .filter-panel {
        padding: 20px 0;
        display: flex;
        justify-content: center;
    }

    .filter-container {
        display: flex;
        justify-content: center;
        padding: 0 40px;
    }

    .filter-controls {
        gap: 20px;
    }

    .filter-select {
        min-width: 160px;
        width: 160px;
    }

} */

/* ─── 平板 ──────────────────────────────────────────────────── */
@media (max-width: 1024px) and (min-width: 769px) {
    .house-detail-panel {
        width: 360px;
        right: -380px;
        border-radius: 12px 0 0 12px;
    }
}

/* ─── 手机 ──────────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* 导航 */
    .top-nav {
        padding: 0 15px;
        height: 50px;
    }

    .nav-logo {
        height: 30px;
        max-width: 110px;
    }

    .nav-logo-link {
        margin-right: 0;
    }

    .nav-links {
        position: static;
        transform: none;
        flex: 1;
        justify-content: flex-end;
    }

    .nav-links a {
        padding: 14px 10px;
        font-size: 13px;
    }

    /* 过滤 */
    .filter-panel {
        top: 50px;
        padding: 10px 12px;
    }

    .filter-controls {
        gap: 6px;
        flex-wrap: nowrap;
    }

    /* 面板：底部 sheet */
    .house-detail-panel {
        width: 100%;
        height: 72vh;
        top: auto;
        bottom: -80vh;
        right: 0;
        border-radius: 20px 20px 0 0;
        transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
    }

    .house-detail-panel.active {
        bottom: 0;
        right: 0;
    }

    /* 拖动指示条 */
    .hdp-header::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: #e0e0e0;
        border-radius: 4px;
    }

    .hdp-header {
        position: relative;
        padding-top: 22px;
        background: white;
        color: #333;
    }

    /* 遮罩 */
    .hdp-overlay.active {
        display: block;
    }

    /* 缩小按钮 */
    .zoom-out-btn {
        display: flex;

    }

    /* 卡片：水平布局，略微紧凑 */
    .hc-img-wrap {
        min-width: 140px;
        height: 140px;
    }

    .hc-info {
        padding: 8px 10px;
    }

    .hc-name {
        font-size: 12px;
    }

    .hc-price {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .top-nav {
        height: 46px;
    }

    .filter-panel {
        top: 46px;
    }

    .nav-links a {
        padding: 12px 8px;
        font-size: 11px;
    }
}

/* 手机端不显示 filter-panel top 偏移 */
@media screen and (max-width: 768px) {
    .filter-panel {
        top: 50px;
    }
}
@media screen and (max-width: 650px) {
    .web-head{
        display: none;
    }
    .wb-tablink{
        display: none;
    }
    /* .filter-controls .filter-group:first-child{
        display: flex;
    } */
    
    /* .filter-controls .filter-group:nth-child(2){
        margin-left: 0.5rem;
    } */
    .filter-panel{
        top: 0rem;
        background: var(--sg-bg-light);
        color: var(--sg-color-text);
        padding: 0rem;
    }
    .filter-group{
        flex-direction: row;
        align-items: center;
    }
    .filter-select{
        width: max-content;
        min-width: max-content;
        height: 2rem;
        font-size: 0.9rem;
        border-radius: 0.4rem;
        border: 1px solid var(--sg-border-color);
        background-color: var(--sg-bg-light);
        color: var(--sg-color-text);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.5' d='M19.92 8.95l-6.52 6.52c-.77.77-2.03.77-2.8 0L4.08 8.95'%3E%3C/path%3E%3C/svg%3E");
    }
    .filter-select:hover{
        cursor: pointer;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.5' d='M19.92 8.95l-6.52 6.52c-.77.77-2.03.77-2.8 0L4.08 8.95'%3E%3C/path%3E%3C/svg%3E");
        color: var(--sg-bg-light);
    }
    .filter-select:active{
        border-color: transparent;
    }
    .filter-btn-s9g{
        height: 2rem;
        font-size: 0.9rem;
        border-radius: 0.2rem;
        border: 1px solid transparent;
        background-color: var(--sg-color-brand);
        margin-right: 1rem;
    }
    .filter-controls .filter-group:first-child{
        display: flex;
        gap: 0.2rem;
        background-color: var(--sg-bg-light);
    }
    .filter-controls .filter-group:first-child .filter-button{
        margin-left: 0.5rem;
        margin-right: initial;
        padding: 0rem;
        width: 2rem;
        height: 2rem;
        border-radius: 0.4rem;
        background-color: var(--sg-bg-light);
    }
    .filter-controls .filter-group:first-child .filter-button path{
        stroke: var(--sg-color-text);
    }
    .filter-controls .filter-group:first-child .filter-button span{
        display: none;
    }
    .zoom-action{
        bottom: 0rem;
        right: 0rem;
        width: 100%;
        height: 60px;
        padding: 0rem;
    }
    .zoom-action button{
        width: calc(100% / 3);
    }
    .filter-sidebar{
        width: 100%;
        right: -100%;
        border-radius: 0rem;
    }
}

@media screen and (max-width: 480px) {
    .filter-panel{
        top: 0rem;
    }
}