html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overscroll-behavior-y: contain;
}

/* MENU BAS */
.mobile-footer-menu {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    background: #ffffff;
    border-top: 1px solid #ddd;

    display: flex;
    justify-content: space-around;
    align-items: center;

    padding: 10px 0;
    padding-bottom: env(safe-area-inset-bottom);
    padding-bottom: constant(safe-area-inset-bottom);

    z-index: 999999;
    transform: translateZ(0);
}

@media(min-width: 768px) {
    .mobile-footer-menu {
        display: none;
    }
}

.mbm-item {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: #444;
    text-decoration: none;
}

.mbm-icon {
    display: block;
    font-size: 22px;
    margin-bottom: 3px;
}

.mbm-add-btn {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);

    background: #ff5722;
    color: #fff;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.22);
    font-weight: bold;
}

.mbm-publier {
    position: absolute;
    bottom: -22px;
    font-size: 11px;
    color: #ff5722;
    font-weight: bold;
}

@supports (-webkit-touch-callout: none) {
    .mobile-footer-menu {
        position: fixed;
        bottom: 0;
        will-change: transform;
    }
}

body.has-mobile-menu {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
}
