.bottomMemberBar {
    --member-bar-gap-x: 0.35rem;
    --member-bar-gap-y: 0.25rem;
    justify-content: center;
    align-items: center;
    background: var(--white);
    height: 60px;
    display: flex;
    position: fixed;

    .member-bottom-bar-badge {
        display: inline-flex;
        align-items: center;
        max-width: 100%;
        padding: 0.22rem 0.6rem;
        border-radius: 999px;
        font-size: inherit;
        font-weight: 500;
        line-height: 1.2;
        border: 1px solid var(--border-color);
        color: var(--text-color);
        background: var(--gray-100);
    }

    .member-bottom-bar-badge--amount {
        font-weight: 600;
    }

    .member-bottom-bar-badge--meta {
        color: var(--text-muted);
        font-weight: 500;
    }

    .member-bottom-bar-badge--label {
        color: var(--label-color);
        font-weight: 600;
        font-size: 0.78em;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .member-bottom-bar-placeholder {
        color: var(--text-muted);
        font-weight: 400;
    }

    .member-bottom-bar-data-row {
        display: flex;
        align-items: center;
        -moz-column-gap: var(--member-bar-gap-x);
             column-gap: var(--member-bar-gap-x);
        row-gap: var(--member-bar-gap-y);
        margin-left: 0;
        margin-right: 0;
    }

    .member-bottom-bar-data-row > [class*='col-'] {
        margin-left: 0 !important;
        min-width: 0;
    }
}

.move_words_left {
    position: relative;
    left: -75px;
}

.banquest_logo_hgt {
    height: 25px;
}

.text_no_wrap {
    white-space: nowrap;
}

@media (max-width: 767px) {
    .bottomMemberBar {
        --member-bar-gap-x: 6px;
        --member-bar-gap-y: 6px;
        height: auto;
        min-height: 60px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .bottomMemberBar .member-bottom-bar-data-row {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .bottomMemberBar .member-bottom-bar-data-row > [class*='col-'] {
        flex: 0 0 calc(50% - 3px);
        width: calc(50% - 3px);
        max-width: calc(50% - 3px);
        padding-left: 0;
        padding-right: 0;
        display: flex;
        align-items: stretch;
    }

    .bottomMemberBar .member-bottom-bar-data-row > .col-0 {
        display: none;
    }

    .bottomMemberBar .member-bottom-bar-data-row .member-bottom-bar-badge,
    .bottomMemberBar .member-bottom-bar-data-row .member-bottom-bar-placeholder {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .bottomMemberBar .member-bottom-bar-data-row {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .bottomMemberBar .member-bottom-bar-data-row > [class*='col-'] {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }
}

