
/* Overlay */

.listing-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.25s;
    z-index:9998;
}

.listing-overlay.show{
    opacity:1;
    visibility:visible;
}

/* Sheet */

.listing-sheet{
    position:fixed;
    left:0;
    right:0;
    bottom:0;

    height:90vh;

    background:#fff;

    border-radius:20px 20px 0 0;

    transform:translateY(100%);

    transition:transform .28s ease;

    z-index:9999;

    display:flex;
    flex-direction:column;

    overflow:hidden;
}

.listing-sheet.show{
    transform:translateY(0);
}

/* Handle */

.listing-handle{
    width:48px;
    height:5px;
    background:#ccc;
    border-radius:10px;
    margin:10px auto;
    flex:none;
}

/* Body */

.listing-body{
    flex:1;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;

    padding-bottom:40px;
}
.listing-link{

    display:inline-flex;

    align-items:center;

    gap:4px;

    margin-top:8px;

    color:#1877F2;

    font-weight:700;

    text-decoration:none;

}

.listing-link::after{

    content:"";

    font-size:18px;

    font-weight:700;

}



.rent-report-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:9998;
    display:none;
}

.rent-report-overlay.active{
    display:block;
}

.rent-report-sheet{
    position:fixed;
    left:0;
    right:0;
    bottom:-100%;
    max-width:520px;
    margin:0 auto;
    background:#fff;
    border-radius:22px 22px 0 0;
    z-index:9999;
    transition:bottom .28s ease;
    box-shadow:0 -10px 35px rgba(0,0,0,.25);
    overflow:hidden;
}

.rent-report-sheet.active{
    bottom:0;
}

.rent-report-handle{
    width:50px;
    height:5px;
    border-radius:999px;
    background:#d5d5d5;
    margin:12px auto 8px;
}

.rent-report-header{
    height:52px;
    padding:0 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid #eee;
}

.rent-report-title{
    font-size:17px;
    font-weight:800;
    color:#222;
}

.rent-report-close{
    width:34px;
    height:34px;
    border:0;
    border-radius:50%;
    background:#f1f1f1;
    color:#333;
    font-size:26px;
    line-height:1;
    cursor:pointer;
}

.rent-report-body{
    padding:22px 18px 28px;
    text-align:center;
}

.rent-report-icon{
    width:72px;
    height:72px;
    border-radius:50%;
    background:linear-gradient(180deg,#333,#111);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 14px;
    box-shadow:0 8px 18px rgba(0,0,0,.22);
}

.rent-report-body h2{
    margin:0 0 10px;
    font-size:22px;
    font-weight:800;
    color:#222;
}

.rent-report-text{
    margin:0 auto 18px;
    max-width:420px;
    font-size:15px;
    line-height:1.5;
    color:#555;
}

.rent-report-info-box{
    background:#fafafa;
    border:1px solid #e8e8e8;
    border-radius:16px;
    padding:14px;
    margin:0 0 18px;
    text-align:left;
}

.rent-report-info-title{
    font-size:15px;
    font-weight:800;
    color:#222;
    margin-bottom:8px;
}

.rent-report-info-item{
    font-size:15px;
    font-weight:700;
    color:#333;
    padding:6px 0 6px 26px;
    position:relative;
}

.rent-report-info-item:before{
    content:"✓";
    position:absolute;
    left:0;
    top:5px;
    color:#28a745;
    font-weight:900;
}

.rent-report-sms-btn{
    width:100%;
    height:56px;
    border-radius:999px;
    background:linear-gradient(180deg,#333,#111);
    color:#fff;
    font-size:17px;
    font-weight:800;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.2),
        0 8px 22px rgba(0,0,0,.22);
}

.rent-report-sms-btn:active{
    transform:scale(.98);
}

.rent-report-note{
    margin-top:14px;
    font-size:13px;
    line-height:1.45;
    color:#777;
}



.gb-rented-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:16px 0;
}
.gb-rented-btn{

    width:90%;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 6px 0 16px;

    border:none;
    border-radius:999px;

    background: linear-gradient(180deg, #f1cbbe 0%, #bd8b42 100%);
    );

    color:#050505;

    font-size:15px;
    font-weight:700;

    cursor:pointer;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.20),
        0 8px 22px rgba(0,0,0,.22);

    transition:.18s;
}

.gb-rented-btn:hover{

    transform:translateY(-1px);

}

.gb-rented-btn:active{

    transform:scale(.98);

}

.gb-rented-btn-icon{

    width:34px;
    height:34px;

    border-radius:50%;

    background:#000;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    box-shadow:
        0 2px 6px rgba(0,0,0,.18);

}



.icon-info{
    display:inline-flex;
    vertical-align:middle;
    margin-left:4px;
}