.mobile_menu_popup {
    background-color: white;
    box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.1);
    width: 90vw;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: fit-content;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    z-index: 1001;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#menu_separator{
    margin-bottom: 30px;
}

.menu_container {
    display: none;
    position: fixed;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.menu_item {
    background-color: #1A414E;
    margin: 20px auto;
    border-radius: 6px;
    padding: 15px;
    font-size: 18px;
    padding-left: 20px;
    width: 70%;
    align-items: center;
    display: flex;
    justify-content: center;
}

.menu_item > a {
    text-decoration: none;
    color: white;
}

.link_container > img {
    width: 20px;
}

.men > img {
    width: 30px;
    z-index: 1002;
    position: relative;
}

.menu_item > img {
    width: 20px;
}