.menu {

    min-width:10px;
    height:80px;
    position:absolute;
    top:0;
    right:55px;
    bottom:0;
    margin-top:auto;
    margin-bottom:auto;

}

.mobileMenuButton {
    
    width:26px;
    height:80px;
    background-image:url('./files/icons/menu_button_white.svg');
    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;
    float:right;
    display:none;
    cursor:pointer;
    position:relative;
    z-index:10;

}

.menu .menu_holder {

    position:relative;
    z-index:9;

}

.menu .menuTable {

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

}

.menu .menuTable tr td {

    padding:0;
    margin:0;
    font-size:20px;
    font-weight:700;
    font-family:'Raleway',sans-serif;
    white-space:nowrap;
    padding-left:24px;
    color:rgba(255,255,255,1.0);

}

.menu .menuTable tr td a {
    color:inherit;
}

.menu .menuTable tr td a:hover {

    color:inherit;
    text-decoration:none;
    border-bottom:2px solid white;

}

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

    .menu .menuTable tr td {

        padding:0;
        margin:0;
        font-size:16px;
        font-weight:700;
        font-family:'Raleway',sans-serif;
        white-space:nowrap;
        padding-left:13px;

    }

}

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

    .menu {

        right:20px;
        
    }

}

@media screen and (max-width:690px) {
    
    .mobileMenuButton {
    
        display:block;
    
    }
    
    .menu_holder {
    
        width:100%;
        height:auto;
        display:none;
    
    }
    
    .menu .menuTable {

        width:100%;
        height:80px;
        border-collapse:collapse;
        background-color:rgba(38,38,38,0.8);

    }
    
    .menu .menuTable tr td {

        padding:0;
        margin:0;
        width:100%;
        float:left;
        font-size:20px;
        font-weight:700;
        font-family:'Raleway',sans-serif;
        white-space:nowrap;
        padding-top:10px;
        padding-left:24px;
        padding-bottom:10px;
        color:rgba(255,255,255,1.0);

    }

}