.mobile-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: var(--white);
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);
    border-top: 1px solid #efefef;
    z-index: 10;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    gap: 15px;
    padding: 0.5rem 0;
}
@media screen and (min-width: 768px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-menu__item {
    /* display: inline-block; */
    color: #666;
    font-size: 1.25em;
    height: auto;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    gap: 5px;
}
.mobile-menu__item:hover {
    color: #222;
}
.mobile-menu__text {
    font-size: .75em;
    line-height: 1;
}

.side-menu__item {
	display: flex;
	line-height: 2.5em;
	color: var(--black);
	flex-flow: row nowrap;
	gap: 15px;
	align-items: center;
}
