InventorySlot
{
    flex-direction: column;
    gap: 8px;
    width: 64px;
    transition: all 0.1s ease;
}

InventorySlot .index
{
    background-color: rgba( 0, 0, 0, 0.5 );
    backdrop-filter: blur( 10px );
    height: 24px;
    justify-content: flex-start;
    padding: 16px;
    align-items: center;
    font-weight: 650;
    font-family: Poppins;
    border-radius: 4px;
    color: #cdf;
}

InventorySlot.active
{
    width: 180px;

    > .index
    {
        background-color: rgba( 0, 0, 0, 0.7 );
        color: #5e94ff;
    }
}

InventorySlot > .list
{
    flex-direction: column;
    gap: 4px;
}