
.mobile-bottom-panel {
    --pull-h: 2em;
    --banner-h: 2.5em;
    --panelY: 100vh;
    
    display: none;
    flex-direction: column;
    position: fixed;
    z-index: 1100;
    width: 95%;
    height: 100vh;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f6f7f8;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    margin: 0 auto;
    border: 2px solid rgb(173, 173, 173);
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    will-change: transform;
}

.mobile-panel-scrollable {
    position: absolute;
    left: 0; right: 0;
    top: calc(var(--pull-h) + var(--banner-h));
    height: calc(100vh - var(--panelY) - (var(--pull-h) + var(--banner-h)));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}

.mobile-pull-tab {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    display: flex;
    flex-shrink: 0;
    background-color: rgb(222, 221, 221);
    height: var(--pull-h);
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease-out;
    will-change: transform;
}

#pull-icon {
    font-size: 16px;
}

.mobile-panel-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1c74e9;
    height: var(--banner-h);
    padding: 0 0.75em 0 1em;
    flex: 0 0 var(--banner-h);
}

#mobile-banner-text {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #f6f7f8;
    letter-spacing: 0.5px;
    margin: 0;
}

.mobile-panel-content {
    margin: 0;
    box-sizing: border-box;
}

.mobile-panel-content > :first-child { margin-top: 0; }
