diff --git a/themes/finc/scss/_customVariables.scss b/themes/finc/scss/_customVariables.scss
index e8914ca83cff17e33e6d3e0a9cd111a54019ef51..cf7424408c5dd70600c831fddd1f5bc6d6c74fd1 100644
--- a/themes/finc/scss/_customVariables.scss
+++ b/themes/finc/scss/_customVariables.scss
@@ -659,8 +659,9 @@ $container-for-navbar-flex-direction-xs: column !default;
 // or set the paddings-top under 'body' in compiled.scss to '=0'; see also the comment in header.phtml
 $navbar-height: 112px !default; // = 7 x 1rem //80px !default;
 $navbar-height-sm: $navbar-height !default;
-// Set navbar-height for small devices, USE px as rem will throw an error in conjunction _variables.scss
-$navbar-height-xs: $navbar-height + 40px !default;
+
+// Set navbar-height for small devices, USE px as rem will throw an error in conjunction with _variables.scss
+$navbar-height-xs: $navbar-height + 14px !default;
 $navbar-min-height-adv-search: 3rem !default;
 $navbar-max-height-xs: $navbar-height + 32px !default;
 
@@ -808,7 +809,7 @@ $search-filter-remove-all-color: $black !default;
 $search-filter-remove-all-bg: $brand-warning !default;
 
 $search-filter-remove-hover-bg: $brand-warning !default;
-$search-filter-remove-hover-color: $black !default;
+$search-filter-remove-hover-color: $white !default;
 
 $search-filter-values-remove-color: $white !default;
 
diff --git a/themes/finc/scss/components/_forms.scss b/themes/finc/scss/components/_forms.scss
index 5d542787b90d7a3c9926bd8a7990368b5ce6279c..41ee311236230a75488a483c7fa0f137efbf01cc 100644
--- a/themes/finc/scss/components/_forms.scss
+++ b/themes/finc/scss/components/_forms.scss
@@ -70,6 +70,12 @@ fieldset {
       float: $fieldset-edit-favorites-list-xs-float;
     }
   }
+
+  .form-edit-list & {
+    border: 0;
+    float: none;
+    padding: 0;
+  }
 }
 
 
diff --git a/themes/finc/scss/components/_modal.scss b/themes/finc/scss/components/_modal.scss
index 45c4262582cf29089cae3e7378219d0aa75d0aa6..d8da8865f4ed9f11a6b67e9e99d03354762696bf 100644
--- a/themes/finc/scss/components/_modal.scss
+++ b/themes/finc/scss/components/_modal.scss
@@ -13,9 +13,9 @@
     width: $modal-dialog-width-sm-up;
 
     // Login form and others:
-    // Nesting inside '.modal-dialog' required to overwrite BS values, CK
+    // keep !important or rewrite using '#modal ...', CK
     input.form-control {
-      max-width: $modal-dialog-input-max-width-sm-up;
+      max-width: $modal-dialog-input-max-width-sm-up !important;
     }
   }
 
diff --git a/themes/finc/scss/components/_sidebar.scss b/themes/finc/scss/components/_sidebar.scss
index d19b1b27bbc19657979f89e914861e0e709867d5..784e9013abeaabafb26cd739e774470409eba17f 100644
--- a/themes/finc/scss/components/_sidebar.scss
+++ b/themes/finc/scss/components/_sidebar.scss
@@ -119,7 +119,8 @@
   a,
   .text,
   .badge,
-  .title {
+  .title,
+  .help-link {
     // Add facet item padding to items
     padding: $sidebar-item-padding;
   }