@charset "UTF-8";

.nav {
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    margin: 0;
    right: -50%;
    padding: 15px 20px;
    background: #fff;
    z-index: 2000;
    -webkit-transition: right 0.3s;
    -moz-transition: right 0.3s;
    transition: right 0.3s;
}

.nav-toggle {
    position: absolute;
    right: 102%;
    top: 53px;
    padding: 10px 11px;
    background-color: rgba(3, 72, 154, 1);
    color: #ffffff;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    z-index: 2001;
    border-radius: 50%;
    font-weight: 600;
}

    .nav-toggle:after {
        content: '\2630';
        text-decoration: none;
    }

    .nav-toggle:hover {
        color: #929292;
    }

[id='nav-toggle'] {
    position: absolute;
    display: none;
}

    [id='nav-toggle']:checked ~ .nav > .nav-toggle {
        left: auto;
        right: 25px;
        top: 53px;
        font-weight: 600;
    }

    [id='nav-toggle']:checked ~ .nav {
        right: 0;
        box-shadow: -4px 0px 20px 0px rgba(0,0,0, 0.5);
        -moz-box-shadow: -4px 0px 20px 0px rgba(0,0,0, 0.5);
        -webkit-box-shadow: -4px 0px 20px 0px rgba(0,0,0, 0.5);
        overflow-y: auto;
    }

    [id='nav-toggle']:checked ~ main > article {
        -webkit-transform: translateX(-320px);
        -moz-transform: translateX(-320px);
        transform: translateX(-320px);
    }

    [id='nav-toggle']:checked ~ .nav > .nav-toggle:after {
        content: '\2715';
    }

.menu {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    width: 100%;
}

img.menu-gerb {
    width: 150px;
    margin-bottom: 8px;
    margin-top: 8px;
}

span.menu-text-big {
    font-size: 41px;
}

.tenant {
    width: 100%;
}

.tenant-main {
    width: 39%;
    margin: 0px 31%;
    background-color: rgba(3, 72, 154, 1);
    display: inline-block;
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.tenant-icon {
    float: left;
    width: 15%;
}

    .tenant-icon img {
        margin-left: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

.tenant-text {
    float: left;
    font-size: 18px;
    margin-top: 10px;
    padding: 14px;
    text-align: center;
    width: 85%;
}

.dropdown.lang {
    font-size: 20px;
    font-weight: 600;
    margin: 40px 22px;
    height: 0px;
}

    .dropdown.lang a {
        color: #000;
    }

.dropdown-menu.dropdown-menu-right.show {
    margin-left: 50px;
    margin-top: 10px;
}
@media (max-width: 450px) {
    .nav {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        bottom: 0;
        margin: 0;
        right: -100%;
        padding: 15px 20px;
        background: #fff;
        z-index: 2000;
        -webkit-transition: right 0.3s;
        -moz-transition: right 0.3s;
        transition: right 0.3s;
    }
    .tenant-main {
        width: 75%;
        margin: 0px 12%;
        background-color: rgba(3, 72, 154, 1);
        display: inline-block;
        padding: 4px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    .tenant-icon img {
        margin-left: 10px;
        margin-top: 25px;
        margin-bottom: 10px;
    }

}

