
.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;
                text-decoration: none;
            }

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

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