/* header{
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    background-color: var(--color-primary-active);
    padding:0;
    top: 0;
} */
header.scroll-header {
    background-color: var(--color-primary);
    padding: 10px 0;
    top: 0;
}
header .navbar-default {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    margin-bottom: 0;
}
header .navbar-default .navbar-brand {
    height: auto;
    padding: 0;
    margin-left: 0 !important;
}
header .navbar-default .navbar-brand img {
    width: 105px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}
header .navbar-default .nav-menu {
    position: relative;
}
header .navbar-default .nav-menu > li > a,
header .navbar-default .nav-menu > li > a:focus {
    color: #fff !important;
    height: 100%;
    padding: 0 30px;
    line-height: 60px;
    font-family: "OpenSans Regular";
    font-size: 15px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}
header .navbar-default .nav-menu > li > a:hover {
    color: var(--main-text-color-active) !important;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}
header .navbar-default .nav-menu > li:last-child > a {
    padding-right: 0;
}
header.scroll-header .navbar-default .nav-menu > li > a {
    line-height: 50px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}
header .dropdown.project .dropdown-menu li a {
    padding-left: 20px;
}
header .dropdown.lang .dropdown-toggle {
    background: transparent !important;
}
header .dropdown.lang.open .dropdown-toggle {
    color: #a2f7f1;
}
header .dropdown.lang .dropdown-toggle i {
    transition: all -0.4s;
    -webkit-transition: all -0.4s;
}
header .dropdown.lang .dropdown-menu {
    border-radius: 0;
    background: var(--color-primary-active);
    top: 60px;
}
header .dropdown.lang .dropdown-menu a img,
header .dropdown.profile .dropdown-menu a img {
    position: absolute;
    top: 3px;
    left: 5px;
}
header .dropdown.profile .dropdown-menu a img {
    left: 13px;
    top: 4px;
}
header .dropdown.lang .dropdown-menu a,
header .dropdown.profile .dropdown-menu a {
    color: #fff;
    font-family: "OpenSans Regular";
    position: relative;
    padding: 5px 5px 5px 45px;
    background-color: transparent !important;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}
header .dropdown.profile .dropdown-menu a {
    padding-left: 40px;
}
header .dropdown.lang .dropdown-menu a:hover,
header .dropdown.profile .dropdown-menu a:hover {
    color: #a2f7f1;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}
header .sign > a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
    bottom: 20px;
    border-radius: 20px;
    z-index: -1;
    background-color: #0383f3;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}
header.scroll-header .sign > a:after {
    top: 7px;
    bottom: 7px;
}
header .navbar-default .nav-menu > li.sign > a:hover {
    color: #fff !important;
}
header .sign > a:hover:after {
    background-color: #05579e;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}
.profile > a span {
    display: inline-block;
    width: 35px;
    height: 35px;
    -webkit-background-size: cover;
    background-size: cover;
    border-radius: 50%;
    background-color: #0383f3;
    vertical-align: middle;
}
header .dropdown.profile .dropdown-toggle {
    background-color: transparent !important;
    padding: 0 !important;
}
header .dropdown.profile .dropdown-menu {
    border-radius: 0;
    background: rgba(12, 116, 222, 0.85);
}

/* new styles */

.lheader {
    font-family: "GolosText-Medium";
    background-color: var(--landing-bg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;

    @media (max-width: 1250px) {
        .container-grid {
            width: 100%;
        }
    }
}

.lheader-container {
    position: relative;
    z-index: 101;
    /* background-color: var(--landing-bg); */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    height: 54px;

    @media (min-width: 992px) {
        height: 72px;
    }
}

.lheader-modal-menu {
    background-color: var(--header-modal-open-bg);
    position: absolute;
    z-index: 101;
    top: 53px;
    left: 0;
    right: 0;
    border-radius: 0 0 16px 16px;
    padding: 16px 16px 48px 16px;
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
    pointer-events: none;
}

.lheader-modal-menu-in {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.lheader-modal-shadow {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--header-modal-shadow);
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
    pointer-events: none;
}

body.lheader-menu-is-open {
    overflow-y: hidden;

    .lheader-menu-btn-open {
        display: none;
    }

    .lheader-menu-btn-close {
        display: block;
    }

    .lheader-modal-shadow,
    .lheader-modal-menu {
        opacity: 1;
        pointer-events: auto;
    }

    .lheader-menu-cabinet {
        display: none;
    }

    .lheader-container {
        background-color: var(--header-modal-open-bg);
    }
}

.lheader-logo {
    display: block;
    width: 105px;

    @media (min-width: 992px) {
        width: 136px;
    }
}

/* .lheader-nav {
    display: none;

    @media (min-width: 1100px) {
        display: block;
    }
} */

.lheader-nav a {
    font-size: 16px;
    line-height: 24px;
    color: var(--header-nav-link);
    text-decoration: none;
    margin: 0 0 0 16px;

    @media (min-width: 1100px) {
        margin-left: 22px;
    }
}

.lheader-nav a:hover {
}

.lheader-menu {
    display: flex;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    margin-left: auto;
}

.lheader-menu-profile.btn {
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lheader-menu-btn {
    color: var(--header-menu-btn);
    cursor: pointer;
    width: 36px;
    height: 36px;
    margin: 0 0 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;

    @media (min-width: 992px) {
        display: none;
    }
}

.lheader-menu-btn-open {
    width: 24px;
    height: 24px;
    display: flex;
}

.lheader-menu-btn-close {
    width: 24px;
    height: 24px;
    display: none;
    color: var(--header-modal-close);
}

.lheader-theme-btn {
    color: var(--header-menu-btn);
    cursor: pointer;
    width: 24px;
    height: 24px;
    margin: 0 0 0 16px;
    display: none;

    @media (min-width: 992px) {
        display: block;
    }

    @media (min-width: 1100px) {
        margin-left: 24px;
    }
}

.lheader-invoice-btn {
    color: var(--header-link) !important;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    text-decoration: none !important;
    margin-left: 16px;

    @media (min-width: 1100px) {
        margin-left: 24px;
    }
}

.lheader-invoice-btn:hover,
.lheader-invoice-btn:active {
    text-decoration: none;
    color: var(--header-link);
}

.lheader-invoice-btn svg {
    margin: 0 4px 0 0;
    display: inline-block;
    vertical-align: top;
    position: relative;
    top: -1px;
}

.lheader-menu-cabinet {
    margin-left: 16px;

    @media (min-width: 1100px) {
        margin-left: 24px;
    }
}

.lheader-modal-menu-actions {
    margin: 32px auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 16px;
}

.lheader-modal-menu-actions-btn {
    width: 100%;
    text-align: center;
    border-radius: 8px;
    color: var(--header-link);
    border: 1px solid #a5c0ff;
    text-decoration: none;
    padding: 12px;

    &:hover,
    &:focus,
    &:active {
        color: var(--header-link);
        border: 1px solid #a5c0ff;
        text-decoration: none;
    }
}

.lheader-modal-menu-actions-btn svg {
    display: block;
    width: 24px;
    margin: 0 auto 12px auto;
}

.lheader-modal-menu-cabinet .btn {
    display: block;
    margin: 0 auto;
}

.lheader-modal-menu-extra {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 16px;
}

.lheader-modal-menu-extra .lks-lang-select {
    display: block;
}

.lheader-modal-menu-extra .lks-lang-select .dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    border-radius: 8px;
    color: var(--header-link);
    border: 1px solid var(--header-modal-lang);
    padding: 0 16px;
}

.lheader-modal-menu-extra .lks-lang-select .dropdown-toggle .fas {
    margin-left: 8px;
}

.lheader-modal-menu-extra .lheader-theme-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: var(--header-link);
    border: 1px solid #a5c0ff;
    margin: 0;
}

/* App styles */
.app-webview .lheader {
    position: relative;
    background-color: transparent;
}

.app-webview .lheader-container {
    margin-bottom: -54px;
}

.app-webview .lheader-logo,
.app-webview .lheader-menu-cabinet {
    display: none;
}

.app-webview .lheader-menu {
    margin: 0 auto 0 0;
}

.app-webview .lheader-menu-btn {
    margin: 0;
}

.app-webview .lheader-menu-btn .lheader-menu-btn-rounded {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--app-header-menu-btn-bg);
    border: 1px solid var(--app-header-menu-btn-border);
    color: var(--app-header-menu-btn-color);
    justify-content: center;
    align-items: center;
    box-shadow: var(--app-header-menu-btn-shadow);
}

/* show on all pages - hide in home only line */
.lheader-menu-btn-back {
    display: none;
}

.app-webview .lheader-menu-btn .lheader-menu-btn-back {
    display: flex;
}

/* hide on all pages - show in home only inline */
.app-webview #js-lheader-menu-btn {
    display: none;
}

/* ref offset on open - app close btn */
.app-webview.lheader-menu-is-open .lheader-menu-btn {
    position: absolute;
    top: 18px;
    left: 18px;
}

.app-webview .lheader-modal-menu-extra {
    display: none;
}
