.bottom-sheet {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    pointer-events: none;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.1s linear;
    z-index: 1;
}
.bottom-sheet.show {
    opacity: 1;
    pointer-events: auto;
}
.bottom-sheet .sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    background: #000;
}
.bottom-sheet .content {
    width: 100%;
    position: relative;
    background: #fff;
    max-height: 100vh;
    height: 80%;
    max-width: 1150px;
    padding: 20px 15px;
    transform: translateY(100%);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: 0.3s ease;
}
.bottom-sheet.show .content{
    transform: translateY(0%);
}
.bottom-sheet.dragging .content {
    transition: none;
}
.bottom-sheet.fullscreen .content {
    border-radius: 0;
    overflow-y: hidden;
}
.bottom-sheet .header {
    display: flex;
    justify-content: center;
    min-height: auto;
}
.header .drag-icon {
    cursor: grab;
    user-select: none;
    padding: 15px;
    margin-top: -47px;
}
.header .drag-icon span {
    height: 6px;
    width: 60px;
    display: block;
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.50);

}
.bottom-sheet .body {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}
.bottom-sheet .body::-webkit-scrollbar {
    width: 0;
}
.close{
    margin-top: auto;
    margin-right: 15px;
    position: absolute;
    right: 0;
    top: 0;
}
.close img {
    width: 16px;
    height: 16px;
}
.top {
    position: relative;
}
.bottom-sheet .title{
    color: #212529;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}