public void CloseBigInventory()
    {
        if (SmallInventory != null)
        {
            SmallInventory.transform.gameObject.SetActive(true);

            SmallInventory.ChangeCurrentItem();

            this.transform.gameObject.SetActive(false);
        }
    }