body.mobile-menu-open {
    overflow: hidden !important;
}

#mm_menu .m_menu_holder {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    max-width: 600px;
    height: calc(100% - 60px);
    z-index: 101;
    background: #e6f5e1;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#mm_menu .m_menu_holder.open {
    transform: translateX(0);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 60px);
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 101;
    pointer-events: none;
}

.menu-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.menu-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: black;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.mm-items-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex-grow: 1;
}

.mm-link-item-wrapper {
    display: flex;
    font:
        normal normal normal 14px/20px -apple-system,
        BlinkMacSystemFont,
        Trebuchet MS,
        sans-serif;
    background: white;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    text-decoration: none;
    color: black;
    align-items: center;
}

.mm-item-link-icon {
    width: 75px;
    height: 75px;
    border-radius: 6px;
    background-position: center;
    background-size: cover;
}

.mm-item-link-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15px;
}

.mm-support_container {
    display: flex;
    font:
        normal normal normal 14px/20px -apple-system,
        BlinkMacSystemFont,
        Trebuchet MS,
        sans-serif;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: white;
}

.mm-support_container a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.mm-support_container a:hover {
    text-decoration: underline;
    text-underline-position: above;
    font-weight: bold;
}

.mm-app-stores-buttons-discount-text {
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font:
        normal normal normal 12px/14px -apple-system,
        BlinkMacSystemFont,
        Trebuchet MS,
        sans-serif;
}

.mm-app-stores-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mm-app-stores-buttons img {
    width: 150px;
    padding: 5px;
}

.menu_footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    padding: 20px;
    padding-bottom: 30px;
    text-align: center;
}

.mob-main-menu-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    font:
        normal normal normal 8px/10px -apple-system,
        BlinkMacSystemFont,
        Trebuchet MS,
        sans-serif;
    margin-right: 18px;
    cursor: pointer;
}