Misplaced Cart Icon on mobile

My website is tunetoyz.com and on mobile my cart icon seems to be too low can someone help make it higher thanks!

Go to your online store → customize → settings → custom css and paste this code there

@media screen and (max-width: 749px) {
    div#kaktusc-cart-icon {
        top: 48px !important;
    }
}

Thank you!

Screen Shot 2024-07-27 at 12.01.41 PM.png

hey is there a way to make the cart icon a little smaller and move to the right only on mobile?

use this css code to make the icon smaller and on right in mobile

@media screen and (max-width: 749px) {
    div#kaktusc-cart-icon {
        width: 40px !important;
        height: 40px !important;
        top: 54px !important;
        right: 10px;
    }
}