/* ==========================================================
   Bedrooms Bottom Sheet
   Independent Component
========================================================== */

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

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

.sbs-sheet{
    position:fixed;
    left:0;
    right:0;
    bottom:-100%;
    background:#fff;
    border-radius:22px 22px 0 0;
    transition:bottom .25s ease;
    z-index:9999;
    max-height:75vh;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
}

.sbs-sheet.show{
    bottom:0;
}

.sbs-handle{
    width:46px;
    height:5px;
    background:#d8d8d8;
    border-radius:999px;
    margin:12px auto 14px;
}

.sbs-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 18px 14px;
    border-bottom:1px solid #ececec;
}

.sbs-header h3{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#222;
}

.sbs-close{
    border:0;
    background:none;
    width:36px;
    height:36px;
    font-size:24px;
    line-height:36px;
    cursor:pointer;
    color:#666;
}

.sbs-body{
    padding:0;
}

.sbs-item{
    display:flex;
    align-items:center;
    min-height:54px;
    padding:0 18px;
    font-size:16px;
    color:#222;
    border-bottom:1px solid #f3f3f3;
    cursor:pointer;
    user-select:none;
    -webkit-tap-highlight-color:transparent;
}

.sbs-item:last-child{
    border-bottom:0;
}

.sbs-item:active{
    background:#f5f5f5;
}
