.floatingMenuContext
{
    min-width: 200px;
    display: none;
    position: fixed;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    opacity: 1;
    padding:4px;
    font-size: 13px;
    /* -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; */
    
}

.floatingMenuContext .context
{
    display: flex;
    gap: 1px;
    width: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    cursor:default;
    stroke: black;
}

.floatingMenuContext .context hr
{
    width: 100%;
    border: 1px solid rgb(229, 229, 229);
}

.floatingMenuContext .context .menuItem
{
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 18px;
    padding-bottom: 18px;
    color: #000000;
    stroke: #000000;
    border-radius: 3px;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
    height: 15px;

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.floatingMenuContext .context .menuItem .contentItem
{
    display: flex;
    gap: 5px;
    justify-content: start;
    align-items: center;
    margin-right: 30px;
}

.floatingMenuContext .context .menuItem:hover
{
    background-color: #ececec;
}

.floatingMenuContext .context .menuItem:active
{
    background-color: #0782FF;
    color: white;
    stroke: white
}

.iconVip
{
    filter: drop-shadow(1px 1px 10px #ffd502);
}