.context-menu {
    left: 0;
    top: 0;
    position: fixed;
    padding: 10px;
    width: 300px;
    margin-top: -20px;
    margin-left: -60px;
}

.context-menu .item, .context-menu .subitem {
    color: #fff;
    padding: 4px;
    padding-left: 10px;
    border-bottom: 1px solid grey;
    background-color: #6378D7;
    cursor: pointer;
    width: 100%;
    position: relative;
}

.context-menu .item:hover {
    background: #4E58BF; /* Цвет фона под ссылкой */ 
    /*color: #ffe; /* Цвет ссылки */
}
.context-menu .search {
    background: red;
}

.context-menu .item.hasSubitems:after {
    color: red;
    content: '►';
    position: absolute;
    opacity: 0.6;
    right: 5px;
    top: 5px;
}
.context-menu .item .subitems {
    color: blue;
    position: absolute;
    top: 0;
    left: 100%;
    width: 120px;
}
.contextMenuPlugin { 
    background-color: white 
}