/*--------------------------------------------------------------------------*\
	Sidebar select menu item link
\*--------------------------------------------------------------------------*/

.sidebar__select-menu__item-link {
    /*box*/
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width:100%;
    height:45px;
    padding:10px;

    /*border*/
    border-radius: 5px;

    /*transition*/
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.sidebar__select-menu__item:last-child>.sidebar__select-menu__item-link {
    /*box*/
    justify-content: flex-start !important;
}

.sidebar__select-menu__item-link:hover {
    /*background*/
    background-color:var(--c-cta-5);
}