fix: Checkbox sizes and paging buttons

- Show paging buttons at all times and enable/disable buttons
- Define checkbox and radio button  sizes within erpnext
- Wishlist cards even height
diff --git a/erpnext/templates/includes/cart/cart_address.html b/erpnext/templates/includes/cart/cart_address.html
index 4f391e1..93de758 100644
--- a/erpnext/templates/includes/cart/cart_address.html
+++ b/erpnext/templates/includes/cart/cart_address.html
@@ -29,7 +29,7 @@
 </div>
 <div class="checkbox ml-1 mb-2">
 	<label for="input_same_billing">
-		<input type="checkbox" id="input_same_billing" checked>
+		<input type="checkbox" class="product-filter" id="input_same_billing" checked style="width: 14px !important">
 		<span class="label-area font-md">{{ _('Billing Address is same as Shipping Address') }}</span>
 	</label>
 </div>
diff --git a/erpnext/templates/includes/macros.html b/erpnext/templates/includes/macros.html
index 2224fdc..956d8e5 100644
--- a/erpnext/templates/includes/macros.html
+++ b/erpnext/templates/includes/macros.html
@@ -141,7 +141,7 @@
 {%- set title = item.item_name or item.item_code -%}
 {%- set title = title[:50] + "..." if title|len > 50 else title -%}
 <div class="col-sm-3 wishlist-card">
-	<div class="card text-center" style="max-height: 390px;">
+	<div class="card text-center" style="height: 100%">
 		<div class="card-img-container">
 			<a href="/{{ item.route or '#' }}" style="text-decoration: none;">
 				{% if item.image %}
@@ -295,7 +295,8 @@
 						class="product-filter field-filter"
 						id="{{value}}"
 						data-filter-name="{{ item_field.fieldname }}"
-						data-filter-value="{{ value }}">
+						data-filter-value="{{ value }}"
+						style="width: 14px !important">
 					<span class="label-area">{{ value }}</span>
 				</label>
 			</div>
@@ -327,6 +328,7 @@
 						id="{{attr_value.name}}"
 						data-attribute-name="{{ attribute.name }}"
 						data-attribute-value="{{ attr_value.attribute_value }}"
+						style="width: 14px !important"
 						{% if attr_value.checked %} checked {% endif %}>
 						<span class="label-area">{{ attr_value.attribute_value }}</span>
 				</label>