.context {
    display: inline-block;
    position: fixed;
    min-width: 270px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(66, 58, 50);
    background: #fff;
    box-shadow: 0px 0px 40px 0px rgba(82, 63, 105, 0.15);
    border-radius: 6px;
    padding: 1rem 0px;
    font-size: .9rem;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.context .item {
    padding: 0.2rem 1.25rem;
    cursor: default;
    color: inherit;
    transition: all 0.3s ease-out;
}

.context .item:hover {
    background: rgba(0, 0, 0, 0.1);
}

.context .item:hover .hotkey {
    color: #fff;
}

.context .disabled {
    color: #878B90;
}

.context .disabled:hover {
    background: inherit;
}

.context .disabled:hover .hotkey {
    color: #878B90;
}

.context .separator {
    height: 0;
    padding: 0;
    border-top: 1px solid #f3f3f3;
}

.hotkey {
    color: #878B90;
    float: right;
}

.context-hover {
    box-shadow: inset 1px 0 0 #dadce0, inset -1px 0 0 #dadce0, 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    color: #212529;
    background-color: #e8e8e8;
}