.app-nav {
    width: 100%;
    background: var(--zk-bg-color);
    height: 72px;
    border-bottom: solid 1px rgba(0,0,0,.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    margin-bottom: 24px;
}

.app-nav-menu {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    border-radius: 4px;
}

.app-nav-menu:hover {
    background: rgba(99, 115, 138, .15);
}

.app-nav-menu i {
    font-size: 2em;
}

.app-nav-menu i.hide {
    display: none;
}

.app-nav-logo {
    width: 150px;
}

.app-nav-logo img {
    width: 100%;
    height: auto;
}

.app-toggle-menu {
    display: none;
    margin-top: 72px;
    position: absolute;
    z-index: 999;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.15);
    width: 100%;
    height: calc(100% - 72px);
}

.app-toggle-menu.show {
    display: block;
}

.app-toggle-list {
    background: var(--zk-bg-color);
    height: 100%;
    width: 200px;
    list-style: none;
    padding: 20px;
}

.app-toggle-list a {
    color: var(--zk-light-text) !important;
    text-decoration: none;
}

.app-toggle-item, .theme-mode {
    padding: var(--zk-pm3) 0;
    font-size: 1.2em;
    font-weight: 600;
    border-bottom: solid 1px rgba(0,0,0,.15);
}