diff --git a/oe_whitelabel.theme b/oe_whitelabel.theme
index 363986d03d091d52830c85413a94ccba475e4fb2..1941cd054fbb8da2cdf4dd0f6d99349b8425de0b 100644
--- a/oe_whitelabel.theme
+++ b/oe_whitelabel.theme
@@ -72,10 +72,15 @@ function oe_whitelabel_preprocess_links__language_block(&$variables) {
  */
 function oe_whitelabel_form_facets_form_alter(&$form, FormStateInterface $form_state, $form_id) {
   if (isset($form['actions'])) {
-    $form['actions']['#attributes']['class'][] = 'mt-4';
+    $action_classes = ['mt-4', 'd-grid', 'gap-4', 'd-md-block'];
+    foreach ($action_classes as $action_class) {
+      if (!isset($action_class, $form['actions']['#attributes']['class']) || !in_array($action_class, $form['actions']['#attributes']['class'], TRUE)) {
+        $form['actions']['#attributes']['class'][] = $action_class;
+      }
+    }
   }
   if (isset($form['actions']['submit'])) {
-    $submit_classes = ['me-2', 'btn', 'btn-primary'];
+    $submit_classes = ['me-md-3', 'btn', 'btn-primary', 'btn-md'];
     foreach ($submit_classes as $submit_class) {
       if (!isset($submit_class, $form['actions']['submit']['#attributes']['class']) || !in_array($submit_class, $form['actions']['submit']['#attributes']['class'], TRUE)) {
         $form['actions']['submit']['#attributes']['class'][] = $submit_class;
@@ -83,7 +88,7 @@ function oe_whitelabel_form_facets_form_alter(&$form, FormStateInterface $form_s
     }
   }
   if (isset($form['actions']['reset'])) {
-    $reset_classes = ['btn', 'btn-secondary'];
+    $reset_classes = ['btn', 'btn-light', 'btn-md'];
     foreach ($reset_classes as $reset_class) {
       if (!isset($form['actions']['reset']['#attributes']['class']) || !in_array($reset_class, $form['actions']['reset']['#attributes']['class'], TRUE)) {
         $form['actions']['reset']['#attributes']['class'][] = $reset_class;
diff --git a/templates/overrides/search/block--facets-form.html.twig b/templates/overrides/search/block--facets-form.html.twig
index 3e5c4ab43a0cd851b06b2c797721220a8df0967f..749b340ad09473904d60aa997286d17c12eb2a40 100644
--- a/templates/overrides/search/block--facets-form.html.twig
+++ b/templates/overrides/search/block--facets-form.html.twig
@@ -37,7 +37,7 @@
     'url': content.actions['reset']['#url'].toString(),
     'style': 'secondary',
     'attributes': extra_attributes.addClass('ms-2')
-    })
+  })
   %}
   {% set actions = content.actions %}
   {% set actions = actions|merge({('reset'): reset}) %}
@@ -49,7 +49,7 @@
       'label': label,
       'heading': 4,
       'extra_classes': "mb-lg-4",
-     },
+    },
     'attributes': attributes.addClass('bcl-offcanvas'),
     'offcanvas_id': 'bcl-offcanvas',
     'body': content,
@@ -61,6 +61,9 @@
     'extra_classes_header': "p-lg-0",
     'with_trigger': true,
     'toggle_button_label': label,
-    'icon_name': 'sliders'
+    'icon_position': 'before',
+    'icon': {
+      'name': 'filter',
+    },
   }) }}
 {% endblock %}
diff --git a/templates/overrides/search/facets-result-item.html.twig b/templates/overrides/search/facets-result-item.html.twig
index d37b19301540b0ff4b959befde21ec09dddd21bc..1ee3de657de9ae5d7af08478ff81a8116e6ae037 100644
--- a/templates/overrides/search/facets-result-item.html.twig
+++ b/templates/overrides/search/facets-result-item.html.twig
@@ -16,8 +16,9 @@
  * @ingroup themeable
  */
 #}
-{% set attributes = create_attribute({'class': ['me-2']}) %}
+{% set attributes = create_attribute({'class': ['me-2', 'fs-6']}) %}
 {{ pattern('badge', {
+  'background': 'light',
   'label': value,
   'assistive_text': assistive_text,
   'dismissible': true,