/* LEFT MENU -> SIDEBAR */

#sidebar_toggle {
    /*float: right;
    margin-right: 20px;*/
}

#sidebar {
    position: absolute;
    left: 0px;
    width: 300px;
    height: 547px;
    background: #F5F5F5;
    /*overflow: auto;*/
    /*overflow-x: hidden;*/
    border-right: 1px solid #DDD;
}

#divider {
    position: absolute;
    width: 9px;
    overflow: hidden;
    z-index: 3;
}

#divider div {
    /*opacity: 0.5;*/
    top: 48%;
    height: 50px;
    left: 0;
    position: absolute;
    cursor: pointer;
}

#divider div:hover {
    opacity: 1;
}

#divider div.sidebar_shown {
    background-image: url('../images/icons/hide_sidebar.svg');
}

#divider div.sidebar_hidden {
    background-image: url('../images/icons/show_sidebar.svg');
}


/* LEFT MENU -> menu */

.menu_item_selected {
    font-weight: 500;
}

.tree_title {
    padding: 10px;
}

.tree_item {
    vertical-align: middle;
    margin-bottom: 12px;
}

.tree_item:last-child {
    margin-bottom: 16px;
}

.tree_message {
    float: left;
    color: #aaaaaa;
    font-size: 0.9em;
}

.node {
    color: #4C4C4C;
    /*text-decoration: none;*/
    word-wrap: break-word;
}

.menuItem3 {
	background: #E6EFF8;
	padding: 6px 12px;
	border-bottom: 1px solid #E6EFF8;
}

.menuItem3 a {
	color: #141E2D;
	text-decoration: none;	
}

#menu_content .block_knowledge {
    background: #F5F8FB; /* this 2 styles for new left menu */
    border: 1px solid #E6EFF8;
}

#menu_content .block_service {
    background: #FFFFFF;
    border: 1px solid #3393FF;
    margin-top: 16px;
}

/*@media screen and (max-width: 49.9375em) {*/
@media screen and (max-width: 963px) {
    #menu_content .block_service {
        margin-top: 20px;
    }
}

.block_service .menuItem3 {
    background-color: #3393FF;
    color: #FFFFFF;
}

.service_arrow {
    transition: .4s;
    transform: rotate(-90deg);
    margin-right: 8px;
}
.active_service .service_arrow {
    transform: rotate(0deg);
    transition: .4s;
}

.service_links {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    opacity: 0;
    height: 0;
    transition: .4s;
    overflow: hidden;
    width: max-content;
}

.active_service .service_links {
    height: 100%;
    opacity: 1;
    transition: .4s;
    overflow: auto;
}

.service_link {
    margin: 13px 0 0;
}