Move icon filter

Hi! I’d like to move this filter icon to the right and slightly higher, while removing the unnecessary space below.
Can anyone help? Please see the attached image for reference.

URL: www.voodoo-warehouse.com

Hello, @voodoowww123

1. Go to Online Store → Theme → Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.

@media (max-width: 736px){
.facets-vertical--sub_collections {
     gap: 0rem !important;
}

#cloud_search_filters_root .cloud-search-page-controls__filters-container
justify-content: flex-end !important;
}
.cloud-search-page-controls__filters-link {
padding: 0px 0 !important
}
}

Thank You!

Hey! both icons, on desktop and mobile are now showing stacked and on mobile it’s not aligned to the right:

Hello, @voodoowww123

Did you copy and paste the entire code?

Look and It’s not working

@media (max-width: 736px){
.facets-vertical--sub_collections {
     gap: 0rem !important;
}

#cloud_search_filters_root .cloud-search-page-controls__filters-container{
justify-content: flex-end !important;
}
.cloud-search-page-controls__filters-link {
padding: 0px 0 !important
}
}

It was my mistake, try this code now, it will work.
If it does, please mark my comment as the solution.

Thank You!

Thank you! Now it’s Fixed

@voodoowww123

You’re Welcome!

It’s not working again on mobile. The filter icon looks crowded

Hello, @voodoowww123

Try this code and it will work perfectly!

@media (max-width: 768px) {
    .cloud-search-page-controls__filters-link {
     padding-left: 20px !important;
    }
}

Thank You!

Thank you so much!! That works perfect