.left_menu {
    min-width: 134px;
    /* overflow: hidden; */
    position: relative;
    max-width: 134px;
}

.left_menu_block {
    /* padding-bottom: 4px; */
    border-bottom: 1px solid #e3e3e3;
    /* margin-bottom: 4px; */
}

.left_menu_title {
    color: #000;
    font-weight: 900;
    padding: 12px 0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
}

.left_menu_item, .left_menu_list_content a {
    display: block;
    color: #000;
    letter-spacing: 0.05em;
    font-weight: 300;
    align-items: center;
    font-size: 11px;
    /* margin: 3px 0; */
    transition: all 0.1s linear;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    /* text-transform: uppercase; */
    width: 100%;
    max-width: 134px;
}

.left_menu_item_link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    width: 100%;
    height: 100%;
    padding: 12px 0px;
}

.left_menu_list_content a:before {
    content: '';
    width: 10px;
    height: 10px;
    background: #000;
    position: absolute;
    left: 39px;
    top: 14px;
    border-radius: 50%;
}

.left_menu_item_link:hover .left_menu_icon {
    transform: scale(1.1);
}

.left_menu_item_link:hover {
    
background-color: #f0f0f0;
}

.left_menu_item_link.active {
    background-color: var(--bg-color);
}

.left_menu_item_link.disable {
    opacity: 0.5;
}

.left_menu_item_link.disable:hover {
    background-color: transparent;
    cursor: default;
}

.left_menu_icon {
    display: block;
    width: 25px;
    height: 25px;
    /* margin-right: 14px; */
    background-size: 100%;
    background-repeat: no-repeat;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.left_menu_icon.icon_edu {
    /* width: 27px; */
}

.left_menu_add {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 13px;
    top: 13px;
    background-repeat: no-repeat;
    transition: all 0.3s;
    background-size: 100%;
}

@media(max-width: 768px) {
    .left_menu_add {
    width: 20px;
    height: 20px;
    right: 2%;
    top: 5px;
    }
}

.left_menu_item_childs {
    position: absolute;
    left: 134px;
    width: 200px;
    background-color: #eee;
    /* display: none; */
}

.left_menu_profile {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-size: cover;
    background-position: center;
}

.left_menu_parent:after {
    /* content: ''; */
    transition: 0.2s;
    left: 240px;
    top: 21px;
    height: 10px;
    width: 10px;
    background-size: 100%;
    /* background-color: #d50202; */
    position: absolute;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='265' height='229' viewBox='0 0 265 229' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M132.5 229L0.431122 0.25L264.569 0.25L132.5 229Z' fill='%23fff'/%3E%3C/svg%3E");
}

.left_menu_parent.active:after {
    transform: scale(1, -1);
    top: 19px;
}

.left_menu_list_content {
    display: none;
}

.left_menu_list_content a {
    /* display: block; */
    padding: 6px 6px 6px 62px;
    color: #000;
    height: 39px;
    position: relative;
}

.left_menu_delimiter {
    border-bottom: 1px solid #36322f;
    /* margin-bottom: 5px; */
}

.left_user_profile_block {
    position: absolute;
    left: 100%;
    top: 0;
    width: 320px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.left_profile {
    position: relative;
}

.left_profile:hover .left_user_profile_block {
    visibility: visible;
    opacity: 1;
    background-color: #ffffff;
    box-shadow: 1px 0px 5px rgb(0 0 0 / 85%);
}

.left_profile_links a {
    font-size: 13px;
    color: #000;
    padding: 10px 10px 9px;
    margin: 0 0 2px;
    cursor: pointer;
    display: block;
    letter-spacing: 0.05em;
    border-radius: 3px;
}

.left_profile_links a:hover {
    background-color: #eaeaea;
}

.left_profile_links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    /* background-color: #27A0FF; */
    padding: 9px 5px;
}

.left_profile_top {display: flex;flex-direction: column;border-bottom: 1px solid #1E8EE8;padding: 10px 8px 12px;}

.left_profile_name {
    text-align: center;
}

.left_profile_type {
    text-align: center;
    font-size: 11px;
    margin-top: 6px;
    color: #aeaeae;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}