How can I fix a small sticky header issue on my site?

The sticky header on my site is very small and I do not know how to change this.

Any ideas how I can make this a normal looking header?

https://7w7ohagw6j4w1l43-64501874901.shopifypreview.com

@GildedSocial add below css into theme.css file

.stuck.tt-stuck-nav {
    top: 0px;
    padding-top: 18px !important;
    height: 10% !important;
}

Add this code in css file

.tt-stuck-nav {

padding: 20px 0

}

Hello @GildedSocial

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.

.tt-stuck-nav {
    height: auto;
    padding: 16px;
}