* {
    margin: 0;
    padding: 0;
}

/* html,
body {
	width: 100vw;
	height: 100vh;
} */

/* body {
	cursor: pointer;
} */

.rc-menu {
    position: absolute;
    z-index: 1008;
    width: 152px;
    padding: 4px;
    /* box-shadow: 0 1px 4px rgba(28, 28, 32, .04), 0 8px 24px rgba(28, 28, 32, .12); */
    border-radius: 14px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(188, 188, 192, .2);
    -webkit-backdrop-filter: blur(1.2rem);
    backdrop-filter: blur(1.2rem);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity .2s ease, height .3s ease, visibility .3s ease;
    display: none;
}

.rc-menu * {
    font-weight: 600;
}

.is-active {
    opacity: 1;
    visibility: visible;
}

.menu-list {
    list-style: none;
}

.menu-item {
    line-height: 22px;
    color: #25262b;
    font-size: 14px;
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* transition: background .3s ease; */
    transition: all 800ms ease;
}

.menu-item:hover {
    background: rgba(254, 254, 254, .3);
}

.menu-item svg {
    margin-right: 8px;
}

.menu-item-divider {
    height: 1px;
    margin: 4px 8px;
    background: #7774;
}

.menu-item-danger {
    color: #ff6f66;
}

.menu-item-danger svg path {
    fill: #ff6f66;
}

.menu-item-danger:hover {
    background: #fdd9d8;
}


@media (prefers-color-scheme: dark) {
    .rc-menu {
        background: rgba(50, 50, 52, .4);
        border: 1.2px solid rgba(128, 128, 132, .2);
    }

    .menu-item svg path:not(.menu-item-danger svg path) {
        fill: #CCC;
    }

    .menu-item-danger:hover {
        background: #8d3938;
    }

    .menu-item:hover:not(.menu-item-danger) {
        background: rgba(254, 254, 254, .12);
    }
}

.is-active {
    animation: 200ms cubic-bezier(.66, .49, .76, 1.03) menu-open;
    zoom: 1;
}

@keyframes menu-open {
    0% {
        opacity: 0;
        border-radius: 0;
    }

    20% {
        transform: scale(.8);
        filter: blur(8px);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
        border-radius: 14px;
    }
}