.mbtb-bar {
    display: none;
}

@media (max-width: 767px) {
    .mbtb-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 48px;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        color: #fff;
        background: var(--qode-main-color, #ff7618);
        font-family: var(--mbtb-font-family, inherit);
        font-size: var(--mbtb-font-size, 14px);
        font-weight: 600;
        line-height: 1.35;
        text-align: center;
        box-sizing: border-box;
        box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.16);
    }

    .mbtb-bar--fixed {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 999999;
    }

    .mbtb-bar--inline {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        z-index: auto;
        box-shadow: none;
    }

    .mbtb-bar__text {
        display: block;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .mbtb-bar.is-exiting.mbtb-animation-fade .mbtb-bar__text,
    .mbtb-bar.is-entering.mbtb-animation-fade .mbtb-bar__text {
        transition: opacity 180ms ease;
    }

    .mbtb-bar.is-exiting.mbtb-animation-fade .mbtb-bar__text {
        opacity: 0;
    }

    .mbtb-bar.is-entering.mbtb-animation-fade .mbtb-bar__text {
        opacity: 1;
    }

    .mbtb-bar.mbtb-animation-slide .mbtb-bar__text {
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .mbtb-bar.is-exiting.mbtb-animation-slide .mbtb-bar__text {
        opacity: 0;
        transform: translateY(8px);
    }

    .mbtb-bar.is-entering.mbtb-animation-slide .mbtb-bar__text {
        opacity: 1;
        transform: translateY(0);
    }
}
