diff --git a/templates/overrides/navigation/region--navbar-right.html.twig b/templates/overrides/navigation/region--navbar-right.html.twig
new file mode 100644
index 0000000000000000000000000000000000000000..1dd146018b1725b61a4c072ba238e7f3953f8594
--- /dev/null
+++ b/templates/overrides/navigation/region--navbar-right.html.twig
@@ -0,0 +1,22 @@
+{#
+/**
+ * @file
+ * Default theme implementation to display a region.
+ *
+ * Available variables:
+ * - content: The content for this region, typically blocks.
+ * - attributes: HTML attributes for the region <div>.
+ * - region: The name of the region variable as defined in the theme's
+ *   .info.yml file.
+ *
+ * @see template_preprocess_region()
+ *
+ * @ingroup themeable
+ */
+#}
+{% set attributes = attributes.addClass('nav') %}
+{% if content %}
+  <ul{{ attributes }}>
+    {{ content }}
+  </ul>
+{% endif %}