diff --git a/projects/common/element-components/radio-button-group.component.ts b/projects/common/element-components/radio-button-group.component.ts
index c7f07e5080aab139d103e7b08cca76c817a66779..d8027ed716dbc73820e4937ffa3b9af795628e42 100644
--- a/projects/common/element-components/radio-button-group.component.ts
+++ b/projects/common/element-components/radio-button-group.component.ts
@@ -15,7 +15,9 @@ import { FormElementComponent } from '../form-element-component.directive';
            [style.font-style]="elementModel.italic ? 'italic' : ''"
            [style.text-decoration]="elementModel.underline ? 'underline' : ''">
           <label [innerHTML]="elementModel.label" id="radio-group-label"></label>
-          <mat-radio-group aria-labelledby="radio-group-label" fxLayout="{{elementModel.alignment}}"
+          <mat-radio-group aria-labelledby="radio-group-label"
+                           [style.margin-bottom.px]="10"
+                           fxLayout="{{elementModel.alignment}}"
                            [formControl]="elementFormControl">
               <mat-radio-button *ngFor="let option of elementModel.options" [value]="option">
                   {{option}}
diff --git a/projects/player/src/app/components/section/section.component.html b/projects/player/src/app/components/section/section.component.html
index 546c2be835daf2736dcdf44eb48ebf1f49b7deea..fa2a9104529f8f9258103d21af763fa833b58244 100644
--- a/projects/player/src/app/components/section/section.component.html
+++ b/projects/player/src/app/components/section/section.component.html
@@ -30,7 +30,7 @@
           [style.grid-column-end]="element.gridColumnEnd"
           [style.grid-row-start]="element.gridRowStart"
           [style.grid-row-end]="element.gridRowEnd"
-          [style.display]="'block'"
+          [style.display]="'inherit'"
           [style.height.%]="100"
           [elementModel]="element"
           [parentForm]="sectionForm"