﻿._menu_1clsq_1
{
    z-index: var(--opentag-ui-menu-zindex,1300);
}
._backdrop_1clsq_7, ._menu_1clsq_1
{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
._backdrop_1clsq_7
{
    z-index: -1;
}
._menuContent_1clsq_13
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: absolute;
    border: 1px solid var(--opentag-ui-menu-border-color,#eee);
    border-radius: 20px;
    padding: 16px 20px;
    margin: 8px 0;
    max-width: 90vw;
    background: var(--opentag-ui-menu-background-color,#fff);
    box-shadow: 0 4px 12px #0000000f;
    z-index: 1;
    opacity: 0;
    transform: translateY(10%);
}
._menuContent_1clsq_13[data-isOpen=true]
{
    animation: _fade-in_1clsq_1 .2s ease forwards;
}
@keyframes _fade-in_1clsq_1
{
    0%
    {
        opacity: 0;
        transform: translateY(10%);
    }
    to
    {
        opacity: 1;
        transform: translateY(0);
    }
}
._item_1clsq_44
{
    display: flex;
    align-items: center;
    align-self: stretch;
    white-space: nowrap;
    gap: 8px;
    color: var(--opentag-ui-menu-item-color,#000);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -.28px;
    position: relative;
}
._item_1clsq_44:not(:last-child)
{
    padding-bottom: 12px;
}
._item_1clsq_44:not(:last-child):after
{
    content: "";
    height: 1px;
    align-self: stretch;
    background: var(--opentag-ui-menu-item-divider-color,#eee);
    position: absolute;
    width: 100%;
    bottom: 0;
}