@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.show-modal {
    cursor: pointer;
}

.bottom-sheet {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: 0.1s linear;
    z-index: 10;

    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

.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.2;
    background: #000;
}

.bottom-sheet .content {
    background: #fff;
    height: 50vh;
    max-height: 100vh;
    padding: 25px 30px;
    max-width: 100%;
    width: 1100px;
    border-radius: 12px 12px 0 0;
    position: relative;
    transform: translateY(100%);
    transition: 0.3s ease;
}

.bottom-sheet.show .content {
    transform: translateY(0%);
}

.bottom-sheet .header {
    display: flex;
    justify-content: center;
}

.bottom-sheet .drag-icon {
    cursor: grab;
    user-select: none;
    padding: 15px;
    margin-top: -15px;
}

.bottom-sheet .drag-icon span {
    height: 4px;
    width: 40px;
    display: block;
    background: #C7D0E1;
    border-radius: 50px;
}

.bottom-sheet .body {
    overflow-y: auto;
    height: 100%;
    padding: 15px 0 40px;
    scrollbar-width: none;
}

.bottom-sheet .body::-webkit-scrollbar {
    width: 0;
}

.bottom-sheet .body h2 {
    font-size: 1.8rem;
}

.bottom-sheet .body p {
    font-size: 1.05rem;
    margin-top: 20px;
}