.page_router_grid {
    display: grid;
    grid-template: "body nav" / 1fr 250px;
    grid-gap: 20px;
}
.page_router_content{
    grid-area: body;
}
.page_router_menu{
    grid-area: nav;
}
.page_router_menu > .list {
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 3px;
}

.page_router_menu .item {
    display: grid;
    grid-template-columns: 28px auto;
    background-color: #f4f4f4;
    align-items: center;
    padding: 6px 10px;
    font-size: 0.9em;
    text-decoration: none;
    user-select: none;
    color: initial;
}

.page_router_menu a.item:hover {
    background-color: #e5e5e5;
}

.page_router_menu .item.active {
    color: #ffffff !important;
    background-color: #798196 !important;
}

.page_router_menu svg {
    height: 19px;
    width: 19px;
    fill: #798196;
    align-self: start;
    position: relative;
    top: 1px;
}

.page_router_menu a.item:hover svg {
    fill: #7bd886;
}

.page_router_menu .active svg {
    fill: #ffffff !important;
}


.page_router_menu .list .list .item {
    padding-top: 2px;
    padding-bottom: 2px;
    border-top: 1px solid #e5e5e5;
    padding-left: 40px;
    grid-template-columns: 20px auto;
}

.page_router_menu .list .list .item svg {
    height: 14px;
    width: 14px;
}

@media screen and (max-width: 765px) {
    .page_router_grid{
        grid-template: "nav" "body" / 1fr;
    }
}