/**
 * Custom overrides for website pages.
 * Loaded after css/scss/style.css – edit here instead of SCSS.
 */

/* Login button – override SCSS display:none for li:nth-child(2) inside @media (max-width: 767px) */
@media (max-width: 767px) {
    header .head nav ul li.nav-login,
    header .head nav ul li:nth-child(2) {
        margin-right: 0;
        display: block !important;
        width: 103px;
        padding: 12px 0 5px 0;
    }
    header .head nav ul li {
        display: block;
        width: 100%;
        padding: 12px 0px 5px 0;
    }
}

/* Ensure parent containers don't clip */
header .head,
header .head nav,
header .head nav ul {
    overflow: visible;
}

.language-menu {
    max-width: 200px !important;
    width: 200px !important;
}