.context {
    display: inline-block;
    position: fixed;
    top: 0px;
    left: 0px;
    min-width: 270px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    background: rgb(38 41 51 / 80%);
    font-size: 9pt;
    border: 1px solid #333333;
    border-radius: 15px;
    box-shadow: 2px 2px 2px -1px rgba(0, 0, 0, 0.5);
    padding: 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999;
    overflow: hidden;
}

.context .item {
    padding: 15px;
    cursor: default;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid rgb(105 105 105 / 10%);
}

.context .item:last-child{
    border:none !important;
}

.context .item:hover {
    background: rgb(99 99 99 / 50%);
}

.context .item:hover .hotkey {
    color: #fff;
}

.context .disabled {
    color: #878B90;
}

.context .disabled:hover {
    background: inherit;
}

.context .disabled:hover .hotkey {
    color: #878B90;
}

.context .separator {
    margin: 4px 0px;
    height: 0;
    padding: 0;
    border-top: 1px solid #454545;
}

.hotkey {
    color: #878B90;
    float: right;
}

.iconItemContext{
    margin-right: 10px;
}