.layout-sidebar-large .main-header {
    width: 100%;
    height:var(--nav_height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    z-index: 100;
    position: fixed;
    top: 0;
}

.layout-sidebar-large .main-header .logo {
    width: var(--sidebar_width);
    height: 100%;
}

.main-header .logo img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: block;
    max-height: 100%;
    object-fit: contain;
}

.main-header .menu-toggle {
    width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    margin-right: 12px;
}

.main-header .header-part-end {
    display: flex;
    align-items: center;
}

.main-header .header-part-end .user img {
    height: 40px;
    border-radius: 50%;
    width: 40px;
    object-fit: cover;
}

.main-header .menu-toggle div {
    width: 24px;
    height: 1px;
    background: #111827;
    margin: 3px 0;
}

.main-header .header-icon {
    font-size: 19px;
    cursor: pointer;
    height: 24px;
    width: 24px;
    line-height: 26px;
    display: inline-block;
    text-align: center;
    border-radius: 8px;
    margin: 0 2px;
}

.nav_title{
    /*    overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;*/
    width: 100%;
}

@media screen and (max-width:700px){
    .nav_title{
        font-size: 0.8rem;
        margin: 0 5px;
    }
}