diff --git a/android/res/layout/fragment_confirmation.xml b/android/res/layout/fragment_confirmation.xml
index d9a7dfa524..ad69aecea0 100644
--- a/android/res/layout/fragment_confirmation.xml
+++ b/android/res/layout/fragment_confirmation.xml
@@ -17,7 +17,9 @@
android:textAppearance="?android:attr/textAppearanceLarge"
android:gravity="start"
android:layout_gravity="center_vertical"
- android:fontFamily="@string/robotoMedium"
+ android:textSize="@dimen/text_size_body_0"
+ android:lineSpacingExtra="@dimen/line_spacing_extra_2"
+ android:fontFamily="@string/robotoRegular"
android:textStyle="bold"
android:layout_weight="1"
android:layout_height="wrap_content"
@@ -38,8 +40,15 @@
android:textAppearance="?android:attr/textAppearance"
android:layout_width="match_parent"
android:layout_height="wrap_content"
+ android:textSize="@dimen/text_size_body_3"
+ android:fontFamily="@string/robotoRegular"
+ android:textStyle="normal"
+ android:textColor="?android:textColorSecondary"
+ android:lineSpacingExtra="@dimen/line_spacing_extra_2"
android:gravity="center|start"
- android:layout_marginTop="@dimen/margin_half"/>
+ android:layout_marginTop="@dimen/margin_half"
+ tools:text="Now, you can add to your map detailed descriptiom of the best places"
+ tools:ignore="UnusedAttribute"/>
+ tools:text="NOT NOW"
+ android:background="?attr/selectableItemBackground"
+ tools:ignore="UnusedAttribute"/>
diff --git a/android/res/values/font_sizes.xml b/android/res/values/font_sizes.xml
index f00bad74ff..4b40659b11 100644
--- a/android/res/values/font_sizes.xml
+++ b/android/res/values/font_sizes.xml
@@ -9,6 +9,7 @@
28sp
24sp
20sp
+ 18sp
16sp
16sp
14sp
diff --git a/android/src/com/mapswithme/maps/MwmActivity.java b/android/src/com/mapswithme/maps/MwmActivity.java
index 01a6c81c7d..1cb24cba1c 100644
--- a/android/src/com/mapswithme/maps/MwmActivity.java
+++ b/android/src/com/mapswithme/maps/MwmActivity.java
@@ -984,6 +984,7 @@ public class MwmActivity extends BaseMwmFragmentActivity
.setDialogViewStrategyType(com.mapswithme.maps.dialog.AlertDialog.DialogViewStrategyType.CONFIRMATION_DIALOG)
.setDialogFactory(DefaultConfirmationAlertDialog::new)
.setReqCode(REQ_CODE_CATALOG_UNLIMITED_ACCESS)
+ .setNegativeBtnTextColor(ThemeUtils.getResource(this, R.attr.buttonDialogTextColor))
.setFragManagerStrategyType(com.mapswithme.maps.dialog.AlertDialog
.FragManagerStrategyType.ACTIVITY_FRAGMENT_MANAGER)
.build();