.core-mobile-bar {
    display: none;
}

@media screen and (max-width: 767px) {
    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }

    .core-mobile-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 99999;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        min-height: 72px;
        padding-bottom: env(safe-area-inset-bottom);
        border-top: 1px solid rgba(0, 23, 54, 0.12);
        background: #fff;
        box-shadow: 0 -8px 28px rgba(0, 23, 54, 0.16);
    }

    .core-mobile-bar-item {
        position: relative;
        display: flex;
        min-width: 0;
        min-height: 72px;
        padding: 9px 3px 7px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        color: #001736;
        text-align: center;
        transition: color 0.25s ease, background 0.25s ease;
    }

    .core-mobile-bar-item + .core-mobile-bar-item {
        border-left: 1px solid #edf0f4;
    }

    .core-mobile-bar-item i {
        font-size: 19px;
        line-height: 1;
    }

    .core-mobile-bar-item span {
        display: block;
        max-width: 100%;
        font-size: 10px;
        font-weight: 700;
        line-height: 1.15;
    }

    .core-mobile-bar-item:hover,
    .core-mobile-bar-item:focus {
        background: #f5f7fa;
        color: #bb0000;
    }

    .core-mobile-bar-whatsapp {
        color: #128c4a;
    }

    .core-mobile-bar-whatsapp i {
        font-size: 22px;
    }

    .core-mobile-bar-book {
        background: #bb0000;
        color: #fff;
    }

    .core-mobile-bar-book:hover,
    .core-mobile-bar-book:focus {
        background: #001736;
        color: #fff;
    }

    .scroll-to-top {
        bottom: calc(84px + env(safe-area-inset-bottom));
    }
}
