How do I change the navbar-toggle size?

I would like to change the size of the 3 bars in the right corner, I want to make it bigger.

how do I do that?

Thanks.

Hey there,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*increase burger bar size*/
.fa-bars{
  font-size:30px !important;
}

Best regards,
Support.

Thanks for your reply.

That worked but the navbar-toggle goes to the left side of the screen.

I added this
margin-right: -12px !important;

And Its working as I wanted.

Thanks again.