.account-menu__parent{
    display: inline-block;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.account-menu{
    display: flex;
    flex-direction: column;
    width: 330px;
    background: #fff;
}

.account-menu__item,
a.account-menu__item{
    height: 60px;
    display: flex;
    cursor: pointer;
    color: #676767;
    fill: #676767;
    padding: 0 26px;
    flex-direction: row;
    position: relative;
    align-items: center;
}

body a.account-menu__item{
    text-decoration: none;
}



.account-menu__item--active,
a.account-menu__item--active,
.account-menu__item:hover,
a.account-menu__item:hover
{
    color: #2AB260;
    fill: #2AB260;
}


.account-menu__item__icon{
    margin-right: 28px;
    height: 20px;
    width: 20px;
    text-align: center;
}


.account-menu__item__active-mark{
    height: 24px;
    width: 13px;
    position: absolute;
    right: -13px;
    top: 50%;
    margin-top: -12px;
    fill: white;
}


.account-menu hr{
    margin: 9px 26px;
    border-top: 1px dotted #C9CBCD;
}



.account-menu__item__v-line{
    height: 60px;
    width: 4px;
    background: #2AB260;
    margin: -20px 21px -20px -26px;
    visibility: hidden;
}

.account-menu__item--active .account-menu__item__v-line,
.account-menu__item:hover .account-menu__item__v-line{
    visibility: visible;
}

.account-menu__item--sub .account-menu__item__v-line{
    visibility: visible;
    margin-left: 3px;
    margin-right: 16px;
}

.account-menu__item--sub:not(:hover) .account-menu__item__v-line{
    background: #E5E5E5;
    width: 1px;
    margin-right: 19px;
}



.account-menu__item__v{
    width:12px;
    height: 7px;
    margin-left: auto;
    order: 2;
    display: block;
}


.account-menu__item-folder__sub-items{
    display: flex;
    flex-direction: column;
}


.account-menu__item-folder .account-menu__item__v--up{ display: none; }
.account-menu__item-folder .account-menu__item__v--down{ display: block; }
.account-menu__item-folder .account-menu__item-folder__sub-items{ display: none; }

.account-menu__item-folder.account-menu__item-folder--expanded .account-menu__item__v--up{ display: block; }
.account-menu__item-folder.account-menu__item-folder--expanded .account-menu__item__v--down{ display: none; }
.account-menu__item-folder.account-menu__item-folder--expanded .account-menu__item-folder__sub-items{ display: block; }

