.context-menu{
    display: none;
    position: absolute;
    border-radius: 3px;
    width: 200px;
    background: white;
    box-shadow: 10px 10px 5px #888888;
    z-index: 1000000;
}

.context-menu ul{
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.context-menu ul li{
    padding: 5px 2px;
    color: white;
    font-weight: bold;
    background-color: #2f2f2f;
    font-size: 12px;
}

.context-menu ul li:last-child {
    margin-bottom: 0;
}

.context-menu ul li:hover{
    cursor: pointer;
}

.selected {
    background-color: #B0BED9 !important;
}