diff --git a/web/modules/custom/frontify_assets/src/Plugin/Field/FieldWidget/FrontifyVideoFieldWidget.php b/web/modules/custom/frontify_assets/src/Plugin/Field/FieldWidget/FrontifyVideoFieldWidget.php
index dbcabb2d6..ea96cf82e 100644
--- a/web/modules/custom/frontify_assets/src/Plugin/Field/FieldWidget/FrontifyVideoFieldWidget.php
+++ b/web/modules/custom/frontify_assets/src/Plugin/Field/FieldWidget/FrontifyVideoFieldWidget.php
@@ -131,8 +131,28 @@ public function formElement(FieldItemListInterface $items, $delta, array $elemen
     if (!empty($previewImageUrl)) {
       $previewImageUrl = $this->frontifyService->attachImageWidth($previewImageUrl, 100, 100, TRUE);
     }
+    $display = 'none';
+    if (!empty($item->uri)) {
+      $display = '';
+    }
+    $element['delete'] = [
+      '#type' => 'button',
+      '#value' => $this->t('Delete Frontify Video'),
+      '#prefix' => '<div class="remove-btn">',
+      '#suffix' => '</div>',
+      '#attributes' => [
+        'class' => [
+          'frontify-video-delete-button',
+          'button--extrasmall',
+          'btn-primary',
+        ],
+        'style' => ['display:' . $display],
+      ],
+    ];
+
     $element['frontify_video_preview'] = [
       '#theme' => 'image',
+      '#prefix' => '<div class="cta_wrapper"><div class="inner-div">',
       '#uri' => $previewImageUrl,
       '#alt' => '',
       '#title' => '',
@@ -140,6 +160,7 @@ public function formElement(FieldItemListInterface $items, $delta, array $elemen
         'class' => 'frontify-video-preview',
       ],
     ];
+
     $element['frontify_wrapper_overlay'] = [
       '#type' => 'container',
       '#attributes' => [
@@ -156,6 +177,7 @@ public function formElement(FieldItemListInterface $items, $delta, array $elemen
     $element['open'] = [
       '#type' => 'button',
       '#value' => $this->t('Select Frontify Video'),
+      '#suffix' => '</div>',
       '#attributes' => [
         'class' => [
           'frontify-video-insert-button',
@@ -178,26 +200,11 @@ public function formElement(FieldItemListInterface $items, $delta, array $elemen
       ],
       '#limit_validation_errors' => [],
     ];
-    $display = 'none';
-    if (!empty($item->uri)) {
-      $display = '';
-    }
-    $element['delete'] = [
-      '#type' => 'button',
-      '#value' => $this->t('Delete Frontify Video'),
-      '#attributes' => [
-        'class' => [
-          'frontify-video-delete-button',
-          'button--extrasmall',
-          'btn-primary',
-        ],
-        'style' => ['display:' . $display],
-      ],
-    ];

     $element['alt'] = [
       '#type' => 'textfield',
       '#title' => $this->t('Video Alt text'),
+      '#suffix' => '</div>',
       '#default_value' => isset($item->alt) ? $item->alt : NULL,
       '#maxlength' => 255,
       '#description' => $this->t('Short description of the Video used by screen readers and displayed when the Video Preview is not loaded. This is important for accessibility.'),
