diff --git a/projects/common/components/compound-child-overlay.component.ts b/projects/common/components/compound-child-overlay.component.ts
index 67a74dfddda387848c71a207c6f1376cacd39d89..c91934b6dac101d36903603ad5004d1f1de57298 100644
--- a/projects/common/components/compound-child-overlay.component.ts
+++ b/projects/common/components/compound-child-overlay.component.ts
@@ -2,11 +2,11 @@ import {
   Component, EventEmitter, Input, Output, ViewChild
 } from '@angular/core';
 import { FormGroup } from '@angular/forms';
-import { ValueChangeElement } from '../../models/uI-element';
-import { ToggleButtonElement } from '../../ui-elements/toggle-button/toggle-button';
-import { TextFieldSimpleElement } from '../../ui-elements/textfield-simple/text-field-simple-element';
-import { DropListSimpleElement } from '../../ui-elements/drop-list-simple/drop-list-simple';
-import { ElementComponent } from '../element-component.directive';
+import { ValueChangeElement } from '../models/uI-element';
+import { ToggleButtonElement } from '../ui-elements/toggle-button/toggle-button';
+import { TextFieldSimpleElement } from '../ui-elements/textfield-simple/text-field-simple-element';
+import { DropListSimpleElement } from '../ui-elements/drop-list-simple/drop-list-simple';
+import { ElementComponent } from '../directives/element-component.directive';
 
 @Component({
   selector: 'app-compound-child-overlay',
diff --git a/projects/common/directives/compound-element.directive.ts b/projects/common/directives/compound-element.directive.ts
index 0d9c30302b381b62409414d5fa194c921e291426..25d0e1ddc994cb3103cab17aacb0c947725c8ca9 100644
--- a/projects/common/directives/compound-element.directive.ts
+++ b/projects/common/directives/compound-element.directive.ts
@@ -5,7 +5,7 @@ import {
 import { FormGroup } from '@angular/forms';
 import { ElementComponent } from './element-component.directive';
 import { InputElement, ValueChangeElement } from '../models/uI-element';
-import { CompoundChildOverlayComponent } from './cloze-child-overlay/compound-child-overlay.component';
+import { CompoundChildOverlayComponent } from '../components/compound-child-overlay.component';
 import { LikertRadioButtonGroupComponent } from '../ui-elements/likert/likert-radio-button-group.component';
 
 @Directive({ selector: 'app-compound-element' })
diff --git a/projects/common/shared.module.ts b/projects/common/shared.module.ts
index de28c462d5a811d8dcfbc6f664377698f8583a99..fd9525d88857abc25ad249481a44cd4b1b0c9a32 100644
--- a/projects/common/shared.module.ts
+++ b/projects/common/shared.module.ts
@@ -52,7 +52,7 @@ import { ToggleButtonComponent } from './ui-elements/toggle-button/toggle-button
 import { MarkingBarComponent } from './components/marking-bar/marking-bar.component';
 import { StyleMarksPipe } from './ui-elements/cloze/styleMarks.pipe';
 import { MarkingButtonComponent } from './components/marking-bar/marking-button.component';
-import { CompoundChildOverlayComponent } from './directives/cloze-child-overlay/compound-child-overlay.component';
+import { CompoundChildOverlayComponent } from './components/compound-child-overlay.component';
 
 @NgModule({
   imports: [
diff --git a/projects/common/ui-elements/cloze/cloze.component.ts b/projects/common/ui-elements/cloze/cloze.component.ts
index 25eea30764e05db97380627fb1d33a0c8aa952a2..b14821ace97a0beaedfad2ea9ce56dc67eca55fe 100644
--- a/projects/common/ui-elements/cloze/cloze.component.ts
+++ b/projects/common/ui-elements/cloze/cloze.component.ts
@@ -4,7 +4,7 @@ import {
 import { ClozeElement } from './cloze-element';
 import { CompoundElementComponent } from '../../directives/compound-element.directive';
 import { InputElement } from '../../models/uI-element';
-import { CompoundChildOverlayComponent } from '../../directives/cloze-child-overlay/compound-child-overlay.component';
+import { CompoundChildOverlayComponent } from '../../components/compound-child-overlay.component';
 import { ElementComponent } from '../../directives/element-component.directive';
 
 @Component({
diff --git a/projects/editor/src/app/components/unit-view/page-view/canvas/overlays/canvas-element-overlay.ts b/projects/editor/src/app/components/unit-view/page-view/canvas/overlays/canvas-element-overlay.ts
index eb0639d67a272d91171ad00b5d4784c8ceaee718..1900c139d6cd3b8d96f6a96d5d6122c7892b3cb6 100644
--- a/projects/editor/src/app/components/unit-view/page-view/canvas/overlays/canvas-element-overlay.ts
+++ b/projects/editor/src/app/components/unit-view/page-view/canvas/overlays/canvas-element-overlay.ts
@@ -14,7 +14,7 @@ import { CompoundElementComponent } from
   '../../../../../../../../common/directives/compound-element.directive';
 import { ClozeComponent } from '../../../../../../../../common/ui-elements/cloze/cloze.component';
 import { ClozeElement } from '../../../../../../../../common/ui-elements/cloze/cloze-element';
-import { CompoundChildOverlayComponent } from '../../../../../../../../common/directives/cloze-child-overlay/compound-child-overlay.component';
+import { CompoundChildOverlayComponent } from '../../../../../../../../common/components/compound-child-overlay.component';
 
 @Directive()
 export abstract class CanvasElementOverlay implements OnInit, OnDestroy {