diff --git a/bigbluebutton-html5/imports/ui/components/dropdown/styles.scss b/bigbluebutton-html5/imports/ui/components/dropdown/styles.scss
index 660b583a17419b10c2052d4a1247fe46b8afe8ad..643f3c8a909c72f4cfd8722d17a23c8e19e3a1b1 100755
--- a/bigbluebutton-html5/imports/ui/components/dropdown/styles.scss
+++ b/bigbluebutton-html5/imports/ui/components/dropdown/styles.scss
@@ -11,6 +11,7 @@
   --dropdown-caret-height: 8px;
 
   --rtl-caret-offset: -0.4375rem;
+  --rtl-content-offset: 11.3rem;
 }
 
 .dropdown {
@@ -32,6 +33,10 @@
   border: 0;
   padding: calc(var(--line-height-computed) / 2);
 
+  [dir="rtl"] & {
+    right: var(--rtl-content-offset);
+  }
+
   &:after,
   &:before {
     content: '';
diff --git a/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/user-options/styles.scss b/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/user-options/styles.scss
index f8187bec27f63ac6556d2517f69602a393bc50e7..2f7a0dc89bacdbf9e24365c057bb151cd6c65362 100755
--- a/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/user-options/styles.scss
+++ b/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/user-options/styles.scss
@@ -23,6 +23,11 @@
   left: auto;
   width: var(--user-manage-menu-width);
 
+  [dir="rtl"] & {
+    top: var(--user-manage-menu-top);
+    right: -1rem;
+  }
+
   @include mq($small-only) {
     width: 100vw;
   }