.fit_content {
    width: -moz-fit-content;
    width: fit-content;
}

.bottomMemberBar {
    --member-bar-gap-x: 0.35rem;
    --member-bar-gap-y: 0.25rem;
    justify-content: center;
    align-items: center;
    background: var(--field-bg);
    height: 60px;
    display: flex;
    flex-shrink: 0;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 8px var(--shadow-subtle);
    border-radius: var(--control-bar-radius) var(--control-bar-radius) 0 0;

    .member-bottom-bar-badge {
        display: block;
        max-width: 100%;
        min-width: 0;
        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);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        text-align: center;
    }

    .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;
    }

    .bottom-bar-reload-btn {
        margin-right: 0.5rem;
        flex-shrink: 0;
    }
}

.move_words_left {
    --move-words-left-reload-btn-width: 58px;
    position: relative;
    left: calc(-1 * var(--move-words-left-reload-btn-width));
}

.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;
        width: 100%;
        max-width: 11.5rem;
    }

    .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;
    }

    .move_words_left {
        left: 0;
    }
}

@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: 9rem;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
        min-width: 0;
    }

    .bottomMemberBar .bottom-bar-reload-btn {
        margin-right: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .move_words_left {
        --move-words-left-reload-btn-width: 36px;
    }
}

