

.transparent-panel{
    top:0px;
    left:0px;
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: 999;
}

.context-menu-box {
    min-width: 13em;
    width: 237px;
    position: fixed;
    background-color: white;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 11px 20px rgba(0, 0, 0, 0.10);
    border-radius: 3px;
    z-index:9999;
    transform-origin: top left;
    user-select: none;
    border: 1px solid #DEDEDE;
    transition: opacity 0.15s linear;
}

.context-menu-box.context-menu-box-show {
    animation: fadeIn 0.15s forwards;
}

.context-menu-box.context-menu-box-hide {
    animation: fadeOut 0.15s forwards;
}

.context-menu-dropdown-wrapper{
    position: relative;
    background-color: white;
}

.context-menu-input + .context-menu-dropdown-wrapper {
    border-top: 0.5px solid #DEDEDE;
}

.context-menu-dropdown {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 300px;
    overflow-y: scroll;
    overflow-y: overlay;
    padding-bottom: 8px;
}

.context-menu-dropdown-option {
    font-size: 14px;
    cursor: pointer;
    padding: 7px 18px;
    height: 1.2em;
    justify-content: flex-start;
    align-items: center;
}

.context-menu-dropdown-option-image {
    width: 16px;
}

.context-menu-dropdown-option-name {
    padding-left: 12px;
    align-self: baseline;
}

.context-menu-input {
    margin-left: 0.5em;
    margin-right: 0.5em;
    height: 2em;
    color: #A2A2A2;
    background-color: #FAF9F5;
    border: 1px solid #DEDEDE;
    padding-left: 1em;
    border-radius: 3px;
    margin-bottom: 8px;
}

.context-menu-input:focus {
    outline: none;
}

.bigger-cmenu-icon img{
    height: 16px;
    object-fit: cover;
}

.context-menu-dropdown-option.disabled {
    opacity: 0.45;
}

.context-menu-dropdown-option.disabled::after {
    content: url(../../images/help.svg);
    transform: scale(0.6);
    margin-left: auto;
}

.context-menu-dropdown-option.disabled:hover::after {
    background-color: #cbcbcb;
    border-radius: 17px;
}

.context-menu-dropdown-option.disabled.selected {
    opacity: 0.45!important;
    background: white;
}
