#head {
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    color: var(--head-color);
    z-index: 100;
}

#head {
    background-color: transparent;
}

.slimheader {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

#head_logo {}

#head_menu {
    display: flex;
}

/* .head_menu_item:visited, */
.head_menu_item:hover,
.head_menu_item:active,
.head_menu_item {
    text-decoration: none;
    color: var(--head-color);
}

.menumain {
    padding: 10px 20px;
}

.jcms_head_menus {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 190px;
}

.jcms_head_langselect {
    width: 100px;
    display: flex;
    /*  align-items: center;
    justify-content: space-around; */
}

.jcms_head_langselect a {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    padding: 5px;
    text-align: center;
   /*  min-width: 40px;
    min-height: 40px; */
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#langmenu {
    display: none;
}

.clang, .clang a {
    border-radius: 50%;
    color: #446688 !important;
    background-color: #fff;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    display: flex;
    min-height: 40px;
    min-width: 40px;
}

.pipe {
    border-right: 1px solid #fff;
    height: 30px;
}

#hamburger {
    display: none;
    background: transparent url('index.php?type=image&block=head&res=hamburger.png') center center no-repeat;
    background-size: contain;
    filter: invert(1);
    width: 30px;
    height: 30px;
    z-index: 30;
    margin-right: 20px;
    cursor: pointer;
}

#head_menu_close {
    font-size: 0;
    text-indent: 100px;
    overflow: hidden;
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent url('index.php?type=image&block=head&res=x.png') center center no-repeat;
    cursor: pointer;
}

.show {
    display: flex !important;
    justify-content: center;
    align-items: center;
}


.jcms_alwayshamburger #hamburger {
    display: block;
}

.jcms_alwayshamburger #head_menu {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    overflow: auto;
    background: var(--head-background);
    flex-direction: column;
    z-index: 20;
}

.jcms_alwayshamburger #head_menu_close {
    display: block;
}

.hidden {
    display: none !important;
}

.menu_drop_content {
    /* position: fixed; */
    /* left: 0;
    top: 0;
    right: 0;
    bottom: 0; */
    padding: 10px;
    overflow: auto;
    background: var(--head-background);
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.menu_drop_content a {
    color: #fff;
    z-index: 100;
    padding: 10px;
}


@media screen and (max-width: 960px) {
    #hamburger {
        display: block;
    }

    #head_menu {
        display: none;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        padding: 10px;
        overflow: auto;
        background: var(--head-background);
        flex-direction: column;
        z-index: 20;
    }

    #head_menu_close {
        display: block;
    }

    .jcms_head_menus {
        width: 170px;
    }

    #hamburger {
        margin: 0;
    }

    .jcms_head_langselect {
        width: 85px;
    }
}