.sheet-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.25s;
    z-index:9998;
display:none;
}

.sheet-overlay.show{
    opacity:1;
    visibility:visible;
display:block;
}
.sheet-handle{
    width:55px;
    height:5px;
    background:#c7b271;
    border-radius:999px;
    margin:12px auto 8px;
}
.sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 85vh;
    background: #fff;
    border-radius: 18px 18px 0 0;
    transform: translateY(100%);
    transition: .25s;
    z-index: 9999;
    display: flex;
    flex-direction: column;
overflow:hidden;
    background: #2f4156;
}
.sheet.show{
    transform:translateY(0);
}



.sheet-header{

height: 40px;
    display: flex;
    margin-left: 18px;
    justify-content: left;
    align-items: center;
    border-bottom: 0px solid #ECECEC;
    position: relative;
    background: #2f4156;
}

.sheet-title{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#c7b271;
    text-align:center;
margin-bottom: 16px;

}
.sheet-close{
    position: absolute;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #E4E6EB;
    color: #f71504;
    font-size: 18px;
    cursor: pointer;
    transition: .15s;
    margin-bottom: 18px;



    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        180deg,
        #536274 0%,
        #465668 45%,
        #334252 100%
    );

    border:2px solid #1f2833;

    outline:3px solid #0d131a;

    box-shadow:none;

}
.sheet-close:hover {

    background:#44576a;

}


.sheet-body{
    flex:1;
min-height:0;
    overflow-y:auto;
    padding:18px;
    background: #ffffff;
}

@media (max-width: 768px){
    .sheet{
        position:fixed !important;
        left:0 !important;
        right:0 !important;
        bottom:0 !important;

        height:calc(100dvh - 75px) !important;
        max-height:calc(100dvh - 75px) !important;

        border-radius:24px 24px 0 0;
        overflow:hidden;
    }

    .sheet-body{
        height:calc(100dvh - 155px) !important;
        overflow-y:auto;
        -webkit-overflow-scrolling:touch;
    }
}