.app-sidebar {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    background-color: #405189;
    box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12);
}

.admin-bar .app-sidebar {
    top: 32px;
}

.app-sidebar .app-logo a {
    font-size: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.app-sidebar .app-logo svg {
    height: 40px;
}

.app-sidebar .app-logo .icon {
    color: #ff6f00;
}

.app-sidebar .app-logo .text {
    color: #fff;
}

.app-sidebar .app-menu > span {
    padding: 12px 20px;
    color: #838fb9;
    font-weight: 600;
    line-height: 16px;
    font-size: 11px;
    text-transform: uppercase;
    display: block;
}

.app-sidebar .app-menu > ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.app-sidebar .app-menu > ul > li > a {
    padding: 10px 24px;
    color: #abb9e8;
    display: flex;
    align-items: center;
    font-size: 15px;
    text-decoration: none;
    transition: color .2s ease;
}

.app-sidebar .app-menu > ul > li > a:hover {
    color: #fff;
}

.app-sidebar .app-menu > ul > li > a > svg {
    width: 18px;
    height: unset;
    max-height: 18px;
    margin-right: 10px;
}