.header {

    width:100%;
    min-height:93px;
    background-color:rgba(206,221,233,1.0);
    position:relative;

}

.header .logo {

    width:155px;
    height:57px;
    background-image:url('./files/elements/logo_normal_blue.svg');
    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;
    position:absolute;
    top:0px;
    left:45px;
    bottom:0px;
    margin-top:auto;
    margin-bottom:auto;

}

.header .mobileMenu_button {

    width:60px;
    height:93px;
    background-image:url('./files/icons/menu.svg');
    background-size:auto 36px;
    background-position:center center;
    background-repeat:no-repeat;
    position:absolute;
    top:0;
    right:45px;
    z-index:200;
    display:none;

}

.header .menu {

    min-width:100px;
    min-height:0;
    position:absolute;
    top:0px;
    right:45px;
    bottom:0px;
    margin-top:auto;
    margin-bottom:auto;
    display:block;

}

.header .menu .menu_table {

    width:10px;
    height:100%;
    border-collapse:collapse;
    position:relative;

}

.header .menu .menu_table tr td {

    font-size:20px;
    font-weight:400;
    font-family:'Roboto Condensed',sans-serif;
    color:rgba(0,0,0,1.0);
    white-space:nowrap;
    padding-left:15px;
    text-transform:uppercase;

}

@media screen and (max-width:880px) {
    
    .header .mobileMenu_button {
    
        display:block;
    
    }
    
    .header .menu {

        width:100%;
        top:0;
        left:0;
        right:0;
        display:none;
        
    }
    
    .header .menu .menu_table {
    
        width:100% !important;
        position:absolute;
        top:93px;
        left:0;
        background-color:rgba(206,221,233,0.9);
        z-index:100;
    
    }
    
    .header .menu .menu_table tr td {
    
        width:100% !important;
        float:left;
        text-align:center;
        padding-left:0px;
        padding-bottom:5px;
    
    }

}