.menu {

    width:100%;
    height:100px;
    position:absolute;

}

.mobileMenu_button {

    width:30px;
    height:30px;
    background-image:url('./files/elements/mobile_menu.svg');
    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;
    position:absolute;
    top:17px;
    right:17px;
    z-index:20;
    cursor:pointer;
    display:none;

}

.menu .menu_holder {

    min-height:10px;
    height:100px;
    position:absolute;
    right:49px;

}

.menu .menu_holder .menu_table {

    width:10px;
    height:100px;
    border-collapse:collapse;

}

.menu .menu_holder .menu_table tr td {

    padding:0;
    margin:0;
    padding-left:36px;

}

.menu .menu_holder .menu_table tr td .home_icon {

    width:26px;
    height:26px;
    background-image:url('./files/icons/home_icon.svg');
    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;

}

.menu .menu_holder .menu_table tr td a {

    font-size:20px;
    font-weight:700;
    color:rgba(255,255,255,1.0);
    text-decoration:none;
    white-space:nowrap;

}

.menu .menu_holder .menu_table tr td a:hover {

    text-decoration:underline;

}

.menu .menu_holder .menu_table tr td a:visited {

    text-decoration:none;

}

@media screen and (max-width:940px) {

    .menu .menu_holder .menu_table tr td {
        padding-left:15px;
    }
    
    .menu .menu_holder .menu_table tr td a {
        font-size:16px;
    }

}

@media screen and (max-width:800px) {
    
    .mobileMenu_button {
        display:block;
    }
    
    .menu .menu_holder {
    
        width:100%;
        height:auto;
        left:0;
        right:none;
        background-color:rgba(38,38,38,0.95);
        z-index:10;
        padding-top:30px;
        padding-bottom:30px;
        display:none;
    
    }

    .menu .menu_holder .menu_table {
        width:100%;
    }
    
    .menu .menu_holder .menu_table tr td {
    
        width:100%;
        float:left;
        text-align:left;
        padding-bottom:10px;
    
    }
    
    .menu .menu_holder .menu_table tr td a {
        text-align:left;
    }

}