diff --git a/src/views/ConfigSpendingItemsAmountView.vue b/src/views/ConfigSpendingItemsAmountView.vue
index b0ea9d49579668e0e075b87e28e417c11479da5e..9d9afa11e9b8e4425a34173b2a6be36351407f5d 100644
--- a/src/views/ConfigSpendingItemsAmountView.vue
+++ b/src/views/ConfigSpendingItemsAmountView.vue
@@ -1,13 +1,9 @@
 <template>
-    <div class="flex flex-col items-center justify-center min-h-screen px-4 text-center">
+    <div class="flex flex-col items-center justify-center min-h-screen px-4 text-center relative">
         <h1 class="mb-8 lg:mb-12 text-4xl font-bold">Hvor mye bruker du per kjøp på ...</h1>
         <div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-6">
             <div class="flex flex-col items-center bg-white rounded-lg p-8 shadow-lg w-full">
-                <div
-                    v-for="(option, index) in options.slice(0, 6)"
-                    :key="`option-${index}`"
-                    class="w-full my-4"
-                >
+                <div v-for="(option, index) in options.slice(0, 6)" :key="`option-${index}`" class="w-full my-4">
                     <div class="flex justify-between items-center">
                         <p class="text-xl font-bold mr-4">{{ option.type }}</p>
                         <div class="flex items-center w-2/3">
@@ -16,9 +12,9 @@
                                 @input="filterAmount(index, $event)"
                                 class="h-11 px-3 rounded-md text-lg focus:outline-none border-2 w-full"
                                 :class="{
-                                    'border-gray-300': !amounts[index],
-                                    'border-[var(--green)]': amounts[index]
-                                }"
+                  'border-gray-300': !amounts[index],
+                  'border-[var(--green)]': amounts[index]
+                }"
                             />
                             <p class="text-xl font-bold ml-2">kr</p>
                         </div>
@@ -26,11 +22,7 @@
                 </div>
             </div>
             <div class="flex flex-col items-center bg-white rounded-lg p-8 shadow-lg w-full">
-                <div
-                    v-for="(option, index) in options.slice(6, 12)"
-                    :key="`option-${index}`"
-                    class="w-full my-4"
-                >
+                <div v-for="(option, index) in options.slice(6, 12)" :key="`option-${index}`" class="w-full my-4">
                     <div class="flex justify-between items-center">
                         <p class="text-xl font-bold mr-4">{{ option.type }}</p>
                         <div class="flex items-center w-2/3">
@@ -39,9 +31,9 @@
                                 @input="filterAmount(index + 6, $event)"
                                 class="h-11 px-3 rounded-md text-lg focus:outline-none border-2 w-full"
                                 :class="{
-                                    'border-gray-300': !amounts[index + 6],
-                                    'border-[var(--green)]': amounts[index + 6]
-                                }"
+                  'border-gray-300': !amounts[index + 6],
+                  'border-[var(--green)]': amounts[index + 6]
+                }"
                             />
                             <p class="text-xl font-bold ml-2">kr</p>
                         </div>
@@ -49,10 +41,10 @@
                 </div>
             </div>
         </div>
-        <div class="w-full text-right mb-3 mt-16">
+        <div class="absolute bottom-36 right-4">
             <ContinueButtonComponent
                 @click="onButtonClick"
-                :disabled="!isAnyAmountFilled"
+                :disabled="!isAllAmountsFilled"
                 class="px-10 py-3 text-2xl font-bold mb-4"
             ></ContinueButtonComponent>
         </div>
@@ -70,7 +62,7 @@ const userConfigStore = useUserConfigStore()
 const options = ref(userConfigStore.challengeTypeConfigs)
 const amounts = ref(options.value.map(() => ''))
 
-const isAnyAmountFilled = computed(() => amounts.value.some((amount) => amount !== ''))
+const isAllAmountsFilled = computed(() => amounts.value.every((amount) => amount.trim() !== ''))
 
 const onButtonClick = () => {
     options.value.forEach((option, index) => {
diff --git a/src/views/ConfigSpendingItemsTotalAmountView.vue b/src/views/ConfigSpendingItemsTotalAmountView.vue
index fe8f2afab62e756fd96cac98bc1e34e5a92da612..06bb37a5250d3355b3a737a66c40e049b205c46d 100644
--- a/src/views/ConfigSpendingItemsTotalAmountView.vue
+++ b/src/views/ConfigSpendingItemsTotalAmountView.vue
@@ -51,10 +51,10 @@
                 </div>
             </div>
         </div>
-        <div class="w-full text-right mb-3 mt-16">
+        <div class="absolute bottom-24 right-4">
             <ContinueButtonComponent
                 @click="onButtonClick"
-                :disabled="!isAnyAmountFilled"
+                :disabled="!isAllAmountsFilled"
                 class="px-10 py-3 text-2xl font-bold mb-4"
             ></ContinueButtonComponent>
         </div>
@@ -72,7 +72,8 @@ const userConfigStore = useUserConfigStore()
 const options = ref(userConfigStore.challengeTypeConfigs)
 const amounts = ref(options.value.map(() => ''))
 
-const isAnyAmountFilled = computed(() => amounts.value.some((amount) => amount !== ''))
+
+const isAllAmountsFilled = computed(() => amounts.value.every((amount) => amount.trim() !== ''))
 
 const onButtonClick = async () => {
     options.value.forEach((option, index) => {
diff --git a/src/views/ConfigSpendingItemsView.vue b/src/views/ConfigSpendingItemsView.vue
index dc1ccf55352c3eb27b8243b214a2e72941df5f78..b88b9ef146591b0423b65e11688928844d6a5c28 100644
--- a/src/views/ConfigSpendingItemsView.vue
+++ b/src/views/ConfigSpendingItemsView.vue
@@ -43,12 +43,12 @@
                         v-model="customOptions[index]"
                         class="w-full md:w-64 h-11 px-3 rounded-md text-xl focus:outline-none transition-colors border-2 border-gray-300"
                         type="text"
-                        :placeholder="'Annet ' + (index + 1) + ' ...'"
+                        :placeholder="'Annet ' + ' ...'"
                     />
                 </div>
             </div>
         </div>
-        <div class="w-full text-right mb-3 mt-14">
+        <div class="w-full text-right mb-0 mt-0" style="position: relative; top: -92px; right: 8px;">
             <ContinueButtonComponent
                 @click="onButtonClick"
                 :disabled="!isFormValid"
@@ -82,7 +82,7 @@ const toggleOption = (option: string, isCustom: boolean = false) => {
 const isFormValid = computed(() => {
     const predefinedSelected = selectedOptions.value.length > 0
     const customFilled = customOptions.value.some((option) => option.trim() !== '')
-    return predefinedSelected || customFilled
+    return predefinedSelected || (customFilled && predefinedSelected)
 })
 
 const onButtonClick = () => {