.dropdown-menu {
    position: absolute;
    left: 0;
    display: none;
    float: left;
    margin: 0.125rem 0 0;
    font-size: $font-size-base;
    color: $dark;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(52, 52, 52, .15);
    border-radius: 15px;
    box-shadow: 0 3px 15px 0 rgb(0 0 0 / 16%);
    padding: 15px;
    min-width: 325px;
    transform: translate3d(0, 54px, 0) !important;
    z-index: 511;
    border: unset;
    top: 40%;
    transition: all .1s;
    overflow: visible !important;

    &.show {
        display: block;
    }
}

.actions-dropdown {
    position: relative;

    &:not(:hover) > &__dropdown-menu {
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(15px);
        -moz-transform: translateY(15px);
        -ms-transform: translateY(15px);
        -o-transform: translateY(15px);
        transform: translateY(15px);
    }

    &__dropdown-menu {
        position: absolute;
        top: 14px;
        right: 0;
        width: 128px;
        background: var(--white);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        transition: all 0.3s ease;
        z-index: 46;

        &.dropdown-menu-width-220 {
            width: 220px;
        }

        &.dropdown-menu-top-32 {
            top: 32px;
        }

        &.dropdown-menu-left {
            left: 0;
            right: auto;
        }

        .rtl & {
            right: auto;
            left: 0;
        }

        &-item {
            transition: all .3s ease;

            a, button {
                transition: all .3s ease;
                display: flex;
                align-items: center;
                width: 100%;
                padding: 8px 16px;
                color: var(--black);
                background-color: transparent;
                border: 0 transparent;
                box-shadow: none;
            }

            &:hover {
                background-color: $gray-100;

                a, button {
                    transform: translateX(8px);
                }
            }
        }
    }
}

