.mbm-container{
position:fixed;
bottom:0;
left:0;
right:0;
background:#000;
display:none;
justify-content:space-around;
align-items:center;
height:65px;
z-index:99999;
box-shadow:0 -2px 10px rgba(0,0,0,0.4);
font-family:inherit;
}

.mbm-item{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
color:#fff;
text-decoration:none;
font-size:12px;
gap:4px;
}

.mbm-item svg{
width:22px;
height:22px;
fill:#fff;
}

.mbm-close{
position:absolute;
top:-10px;
right:10px;
background:#000;
border:1px solid #444;
color:#fff;
width:24px;
height:24px;
border-radius:50%;
font-size:14px;
cursor:pointer;
}

@media (max-width:768px){
.mbm-container{
display:flex;
}
}

@media (min-width:769px){
.mbm-container{
display:none !important;
}
}
