.menu {

    width:calc(100% - 70px);
    height:90px;
    position:absolute;
    top:29px;
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    z-index:5;
    background-color:rgba(255,255,255,1.0);
    box-shadow:0px 2px 4px 0 rgba(0,0,0,0.12);

}

.menu .mobileMenu_button {

    width:31px;
    height:19px;
    position:absolute;
    top:29px;
    left:14px;
    z-index:6;
    background-position:center center;
    background-repeat:no-repeat;
    cursor:pointer;
    display:none;

}

.menu .mobileMenu_button.mobileMenuState_closed {

    background-image:url('./files/icons/mobileMenu_button.svg');
    background-size:31px 19px;

}

.menu .mobileMenu_button.mobileMenuState_opened {

    background-image:url('./files/icons/mobileMenu_closeButton.svg');
    background-size:19px 19px;

}

.menu .menu_leftSide {

    width:133px;
    float:left;

}

.menu .menu_leftSide .logo {

    width:210px;
    height:56px;
    margin-top:17px;
    margin-left:17px;
    background-image:url('./files/elements/logo_vyper.czWEB.png');
    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;

}

.menu .menu_rightSide {

    min-width:100px;
    height:100%;
    min-height:1px;
    float:right;
    display:block;

}

.menu .menu_rightSide .menu_table {

    width:100px;
    height:100%;
    border-collapse:collapse;
    margin-right:17px;
    float:right;

}

.menu .menu_rightSide .menu_table tr td {

    padding:0;
    margin:0;
    font-size:17px;
    font-weight:700;
    font-family:'Roboto Condensed',sans-serif;
    color:rgba(0,0,0,1.0);
    white-space:nowrap;
    padding-left:25px;
    text-transform:uppercase;
    text-decoration:none;
    transition:color 0.5s;

}

.menu .menu_rightSide .menu_table tr td:hover {

    color:rgba(231,76,60,1.0);
    transition:color 0.5s;

}

@media screen and (max-width:1490px) {
    .menu .menu_rightSide .menu_table tr td {
        font-size:14px;
        padding-left:10px;
    }
}

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

    .menu .menu_leftSide .logo {

        width:160px;

    }

}

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

    .menu .menu_rightSide .menu_table tr td {

        padding-left:16px;

    }

}

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

    .menu {

        width:100%;
        height:90px;
        position:absolute;
        top:0px;
        left:0;
        right:0;
        margin-left:auto;
        margin-right:auto;
        z-index:5;
        background-color:rgba(255,255,255,1.0);
        box-shadow:0px 2px 4px 0 rgba(0,0,0,0.12);

    }

}

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

    .menu {
    
        height:77px;
        transition:border 0.5s;
    
    }
    
    .menu .mobileMenu_button {
        display:block;
    }
    
    .menu .menu_leftSide {

        width:127px;
        float:none;
        margin-left:auto;
        margin-right:auto;

    }

    .menu .menu_leftSide .logo {

        width:127px;
        height:45px;
        margin-top:16px;
        margin-left:auto;
        margin-right:auto;

    }
    
    .menu .menu_rightSide {
        display:none;
        height:auto;
        opacity:1;
        transition:opacity 0.5s;
    }
    
    .menu .menu_rightSide .menu_table {

        width:100%;
        height:auto;
        border-collapse:collapse;
        margin-right:0px;
        float:none;
        position:absolute;
        top:77px;
        left:0;
        z-index:6;
        background-color:rgba(255,255,255,1.0);
        box-shadow:0px 2px 4px 0 rgba(0,0,0,0.12);
        
    }

    .menu .menu_rightSide .menu_table tr td {

        width:100%;
        padding:0;
        margin:0;
        font-size:17px;
        font-weight:700;
        font-family:'Roboto Condensed',sans-serif;
        color:rgba(0,0,0,1.0);
        white-space:nowrap;
        text-transform:uppercase;
        text-decoration:none;
        transition:color 0.5s;
        float:left;
        padding-top:15px;
        padding-bottom:15px;
        text-align:center;

    }

}