I need to move search and cart icon to right


am having trouble moving search and cart icon to right in my menu… am using dawn theme i already moved whole menu to left side of my page but now i wanna make menu more wider so search and cart icons will sit on right side of my screen

adrianj.store

i found solution. in base.css
i changed:

@media screen and (min-width: 990px) {
.header:not(.drawer-menu).page-width {
padding-left: 5rem;
padding-right: 5rem;
}

to

@media screen and (min-width: 990px) {
.header:not(.drawer-menu).page-width {
width: 100%;
max-width: none;
}

and it worked.