.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.2s;
    z-index: 999;
}
.bottom-sheet.show{
    opacity: 1;
    pointer-events: auto;
}
.bottom-sheet .backdrop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: var(--black);
}
.bottom-sheet .overlay-container{
    width: 100%;
    position: absolute;
    z-index: 99;
    background: var(--white);
    max-height: 100vh;
    transform: translateY(100%);
    border-radius: 10px 10px 0 0;
    transition: 0.2s;
    padding: 0 10px;
}
.bottom-sheet.show .overlay-container{
    transform: translateY(0%);
}
.bottom-sheet.dragging .overlay-container{
    transition: none;
}
.bottom-sheet.fullscreen .overlay-container{
    border-radius: 0;
    overflow-y: hidden;
}
.drag-icon{
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    padding-block: 5px;
}
.drag-icon span{
    width: 40px;
    height: 4px;
    display: block;
    background: #ccc;
    border-radius: 10px;
}
.overlay-header{
    padding: 10px 10px 15px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color)
}
.overlay-header1{
    padding: 25px 10px;
    border-bottom: 1px solid var(--border-color);
}
.overlay-buttons{
    display: flex;
    font-size: 0.85rem;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
}
.overlay-quit{
    text-align: center;
    width: calc(100%/2);
    padding: 0 1rem;
    color: #E93C58;
    font-weight: 500;
    border-right: 1px solid var(--border-color);
}
.overlay-apply{
    text-align: center;
    width: calc(100%/2);
    padding: 0 1rem;
    color: #40A4F1;
    font-weight: 500;
}