.navbar-custom {
    background-color:  var(--theme-secondary-color);
    padding: 10px 0 !important;
}
.nav-item {
    height: max-content;
    padding: 0 10px;
}

#menu-navbar {
    z-index: 888 !important;
}

.navbar-custom, a.nav-link {
    color: var(--theme-white);
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    opacity: 1;
    z-index: 100;
}

.nav-item:hover {
    background: var(--theme-yellow);
    border-radius: 8px;
    height: max-content;
}

a.nav-link:hover > span {
    color: var(--theme-primary-color);
}

.active-category {
    border-radius: 8px;
    height: max-content;
    position: relative;
    padding: 10px;
}
select.lang_selected {
    width: 100%;
    padding: 10px;
    background: var(--theme-secondary-color);
    color: var(--theme-white);
    border: 0;
    max-width: 150px;
    font-size: 12px;
    min-height: 40px;
}

.nav_lang_div {
    display: flex;
    padding: 5px;
    gap: 1px;
    align-items: center;
}
.lang_image {
    background: var(--theme-secondary-color);
    padding: 5px;
    min-height: 40px;
}
.lang_image img {
    max-height: 30px;
}
.header_top_right {
    display: flex;
    justify-content: right;
    width: auto;
}

li.active-category:after {
    content: " ";
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--theme-yellow);
    bottom: 0;
    left: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    left: calc(50% + 10px);
    transform: translate(-50%, -50%);
}