/**
 * @version     CVS: 1.0.0
 * @package     com_etiproduct
 * @copyright   2025 Jure Lebar
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      Jure Lebar <jure.lebar@gmail.com>
 */

.v-sorting-item
{
    cursor: pointer !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--popup-item-padding-x);

    .v-sorting-label
    {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    i
    {
        flex-shrink: 0;
        line-height: 1;
    }

    &.active
    {
        border-radius: var(--border-radius);
        background-color: var(--primary-bg-subtle);
        color: var(--primary);
    }
}

.v-blur
{
    filter: blur(4px);
}

.pointer-event-none
{
    pointer-events: none;
}