diff --git a/implem/src/app/shared/navigation/bottom-navigation/bottom-navigation.scss b/implem/src/app/shared/navigation/bottom-navigation/bottom-navigation.scss
new file mode 100644
index 0000000..717d914
--- /dev/null
+++ b/implem/src/app/shared/navigation/bottom-navigation/bottom-navigation.scss
@@ -0,0 +1,14 @@
+.next-step{
+ color: var(--color-text-invert, #FFF);
+ text-align: center;
+ leading-trim: both;
+ text-edge: cap;
+
+ /* Text/text-button */
+ font-family: var(--Fonts-Font-text, Barlow);
+ font-size: var(--Font-Base, 14px);
+ font-style: normal;
+ font-weight: 600;
+ line-height: 100%; /* 14px */
+ letter-spacing: 1.12px;
+}
diff --git a/implem/src/app/shared/navigation/bottom-navigation/bottom-navigation.spec.ts b/implem/src/app/shared/navigation/bottom-navigation/bottom-navigation.spec.ts
new file mode 100644
index 0000000..9bf0f82
--- /dev/null
+++ b/implem/src/app/shared/navigation/bottom-navigation/bottom-navigation.spec.ts
@@ -0,0 +1,23 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { BottomNavigation } from './bottom-navigation';
+
+describe('BottomNavigation', () => {
+ let component: BottomNavigation;
+ let fixture: ComponentFixture