//
// _header.scss
//

#page-topbar {
    position: fixed;
    top: 0;
    right: 0;
    left: $sidebar-width;
    z-index: 999;
    background-color: var(--#{$prefix}header-bg);
    box-shadow: $box-shadow;
}

.navbar-header {
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: $header-height;
    padding: 0 calc(#{$grid-gutter-width} / 2) 0 0;

    .dropdown .show {
        &.header-item {
            background-color: var(--#{$prefix}header-dark-bg);
        }
    }

    .navbar-brand-box {
        display: none;
    }
}

body[data-sidebar-size="sm"] {
    #page-topbar {
        left: $sidebar-collapsed-width;
        @media (max-width: 991.98px) {
            left: 0;
        }
    }

    .navbar-header {
        .vertical-menu-btn {
            display: block;
        }
    }
}
.navbar-header {
    .vertical-menu-btn {
        display: none;
    }
}

.app-search {
    margin-left: 10px;
}

.navbar-brand-box {
    padding: 0 1.5rem;
    width: $navbar-brand-box-width;
    position: fixed;
    z-index: 1;
    background-color: var(--#{$prefix}sidebar-bg);
}

.logo {
    line-height: 70px;

  img {
    max-width: 85%;
  }

    .logo-sm {
        display: none;
    }
}

.logo-dark {
    display: $display-block;
}

.logo-light {
    display: $display-none;
}

/* Search */

.app-search {
    padding: calc(#{$header-height - 38px} / 2) 0;

    .form-control {
        border: none;
        height: 38px;
        padding-left: 40px;
        padding-right: 20px;
        background-color: $topbar-search-bg;
        box-shadow: none;
        border-radius: 5px;
    }
    span {
        position: absolute;
        z-index: 10;
        font-size: 16px;
        line-height: 38px;
        left: 13px;
        top: 0;
        color: $gray-600;
    }
}

// Mega menu

.megamenu-list {
    li {
        position: relative;
        padding: 5px 0px;
        a {
            color: $dropdown-color;
        }
    }
}

@media (max-width: 991.98px) {
    .navbar-brand-box {
        width: auto;
    }

    #page-topbar {
        left: 0;

        .navbar-header {
            .navbar-brand-box {
                display: inline-block;
                position: relative;
            }

            .vertical-menu-btn {
                display: inline-block;
            }
        }
    }

    .logo {
        span.logo-lg {
            display: none;
        }

        span.logo-sm {
            display: inline-block;
        }
    }
}

.page-content {
    padding: calc(#{$header-height} + #{$grid-gutter-width}) calc(#{$grid-gutter-width} / 2) $footer-height
        calc(#{$grid-gutter-width} / 2);
}

.header-item {
    height: $header-height;
    box-shadow: none !important;
    color: var(--#{$prefix}header-item-color);
    border: 0;
    border-radius: 0px;

    &:hover {
        color: var(--#{$prefix}header-item-color);
    }
}

.header-profile-user {
    height: 36px;
    width: 36px;
    background-color: var(--#{$prefix}tertiary-bg);
    padding: 3px;
}

.noti-icon {
    i {
        font-size: 22px;
        color: var(--#{$prefix}header-item-color);
    }

    .badge {
        position: absolute;
        top: 12px;
        right: 5px;
    }
}

.notification-item {
    .d-flex {
        padding: 0.75rem 1rem;
        display: flex;

        &:hover {
            background-color: var(--#{$prefix}dropdown-link-hover-bg);
        }
    }
}

// Dropdown with Icons
.dropdown-icon-item {
    display: block;
    border-radius: 3px;
    line-height: 34px;
    text-align: center;
    padding: 15px 0 9px;
    display: block;
    border: 1px solid transparent;
    color: $gray-600;

    img {
        height: 24px;
    }

    span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    &:hover {
        border-color: var(--#{$prefix}border-color);
    }
}

// Full Screen
.fullscreen-enable {
    [data-bs-toggle="fullscreen"] {
        .uil-minus-path::before {
            content: "\eb8d";
        }
    }
}

body[data-layout="horizontal"][data-topbar="dark"] {
    .logo-dark {
        display: $display-none;
    }

    .logo-light {
        display: $display-block;
    }
}
body[data-topbar="dark"] {
    // #page-topbar {
    //     background-color: var(--#{$prefix}header-dark-bg);
    // }
    .navbar-header {
        .dropdown .show {
            &.header-item {
                background-color: rgba($white, 0.05);
            }
        }

        .waves-effect .waves-ripple {
            background: rgba($white, 0.4);
        }
    }
    // .header-item {
    //     color: $header-dark-item-color;

    //     &:hover {
    //         color: $header-dark-item-color;
    //     }

    //     &.vertical-menu-btn {
    //         color: $sidebar-menu-item-color !important;
    //     }
    // }

    .header-profile-user {
        background-color: rgba($white, 0.25);
    }

    .noti-icon {
        i {
            color: var(--#{$prefix}header-item-color);
        }
    }

    .logo-dark {
        display: $display-block;
    }

    .logo-light {
        display: $display-none;
    }

    .app-search {
        .form-control {
            background-color: var(--#{$prefix}header-dark-bg);
            color: $white;
        }
        span,
        input.form-control::-webkit-input-placeholder {
            color: rgba($white, 0.5);
        }
    }
}

body[data-sidebar="dark"] {
    .navbar-brand-box {
        .logo-dark {
            display: none;
        }

        .logo-light {
            display: block;
        }
    }
}

@media (max-width: 600px) {
    .navbar-header {
        .dropdown {
            position: static;

            .dropdown-menu {
                left: 10px !important;
                right: 10px !important;
            }
        }
    }
}

@media (max-width: 380px) {
    .navbar-brand-box {
        display: none;
    }
}

body[data-layout="horizontal"] {
    .page-content {
        margin-top: $header-height;
        padding: calc(80px + #{$grid-gutter-width}) calc(#{$grid-gutter-width} / 2) $footer-height
            calc(#{$grid-gutter-width} / 2);

        @media (max-width: 991.98px) {
            margin-top: 0px;
        }
    }
}

@media (max-width: 374.99px) {
    .navbar-brand-box {
        padding: 0 1rem;
        text-align: center;
    }

    .language-switch {
        display: none !important;
    }
}

body[data-layout-size="boxed"][data-sidebar-size="sm"] {
    #page-topbar {
        max-width: calc(1300px - 69px);
        left: 73px;
    }

    .footer {
        max-width: calc(#{$boxed-layout-width} - 72px);
    }
}

body[data-layout-size="boxed"][data-sidebar-size="small"] {
    #page-topbar {
        max-width: calc(1300px - 160px);
        left: 160px;
    }

    .footer {
        max-width: calc(#{$boxed-layout-width} - 160px);
    }
}

[data-bs-theme="dark"] [data-layout="vertical"][data-sidebar="light"]{
    .navbar-brand-box{
        .logo-light{
            display: none;
        }
        .logo-dark{
            display: block;
        }
    }
}

body[data-topbar="light"] {
    .header-profile-user {
        background-color: var(--#{$prefix}white);
    }
}

body[data-topbar="colored"] {
    .header-profile-user {
        background-color: rgba($white, 0.05);
    }
}




