body,
html {
    width: 100%;
    height: 100%;
}

.rigth-menu-box {
    width: 100%;
    height: 100%;
}

.target {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(#fff, 0.5);
    font-size: 2vw;
}

.target-light {
    left: 0;
}

.target-dark {
    right: 0;
}

.right-click {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    padding: 2vw;
    border-radius: 1vw;
    font-size: 2.4vw;
    background-color: #fff;
}


/* Context Menu */

.contextMenu {
    --menu-border: rgba(255, 255, 255, 0.08);
    --menu-bg: rgba(18, 18, 18, 0.79);
    --item-border: rgba(255, 255, 255, 0.1);
    --item-color: rgb(212, 212, 212);
    --item-bg-hover: rgba(255, 255, 255, 0.1);
    height: 0;
    overflow: hidden;
    background: var(--menu-bg);
    backdrop-filter: blur(5px);
    position: fixed;
    top: var(--top);
    left: var(--left);
    animation: menuAnimation 0.25s 0s both;
    transform-origin: left;
    list-style: none;
    margin: 4px;
    padding: 0;
    display: flex;
    flex-direction: column;
    z-index: 999999999;
    box-shadow: 0 0 0 1px var(--menu-border), 0 2px 2px rgb(0 0 0 / 0.5%), 0 4px 4px rgb(0 0 0 / 1%), 0 10px 8px rgb(0 0 0 / 2%), 0 15px 15px rgb(0 0 0 / 2%), 0 30px 30px rgb(0 0 0 / 3%), 0 70px 65px rgb(0 0 0 / 5%);
}

.contextMenu-item {
    padding: 4px;
}

.contextMenu-item svg {
    width: auto;
    height: 14px;
    margin-right: 10px;
}

.contextMenu-item[data-divider="top"] {
    border-top: 1px solid;
}

.contextMenu-item[data-divider="bottom"] {
    border-bottom: 1px solid;
}

.contextMenu-item[data-divider="top-bottom"] {
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.contextMenu-item[data-divider] {
    border-color: var(--item-border);
}

.contextMenu button {
    color: var(--item-color);
    background: 0;
    border: 0;
    white-space: nowrap;
    width: 100%;
    border-radius: 4px;
    padding: 6px 24px 6px 7px;
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 14px;
    width: 100%;
    animation: menuItemAnimation 0.35s 0s both;
    font-family: "Inter", sans-serif;
    cursor: pointer;
}

.contextMenu button:hover {
    background-color: var(--item-bg-hover);
}

.contextMenu[data-theme="light"] {
    --menu-bg: linear-gradient( 45deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.85) 100%);
    --menu-border: rgba(0, 0, 0, 0.08);
    --item-border: rgba(0, 0, 0, 0.1);
    --item-color: rgb(10, 20, 28);
    --item-bg-hover: rgba(10, 20, 28, 0.09);
}

@keyframes menuAnimation {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        height: var(--height);
        opacity: 1;
        border-radius: 8px;
        transform: scale(1);
    }
}

@keyframes menuItemAnimation {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}