.MenuModalOverlay {
    display: none;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.MenuModalOverlay.Display {
    display: flex;
}

.MenuModalOverlay.Show {
    visibility: visible;
    opacity: 1;
}

.MenuModalContent {
    display: grid;
    grid-auto-rows: min-content;
    gap: 5px;
    background-color: white;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    height: 100%;
    overflow-y: auto;
}

.MenuModalContent h2 {
    margin-top: 35px;
}
.MenuModalContent h3 {
    margin-block: 0;
    margin-top: 25px;
    margin-bottom: 10px;
}

.MenuModalContent .CloseButton {
    font-size: 20px;
    color: #555;
    padding: 5px 15px;
    justify-self: end;
}

.MenuModalContent .MenuButton {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 7px 10px;
    text-decoration: none;
    color: #555;
    border-bottom: 1px solid #eee;
}
.MenuModalContent .MenuButton .Content {
    display: grid;
    gap: 5px;
}
.MenuModalContent .MenuButton .Title {

}
.MenuModalContent .MenuButton .Desc {
    font-weight: 300;
    font-size: 13px;
    color: #777;
}