ngx-bimplus-components 0.0.82 → 0.0.83-draggable

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/assets/images/bimplus_Components_Add_Ins.svg +3 -0
  2. package/esm2022/lib/components/bimplus-floating-bar/bimplus-floating-bar.component.mjs +59 -10
  3. package/esm2022/lib/components/bimplus-floating-bar-dragger/bimplus-floating-bar-dragger.component.mjs +15 -7
  4. package/esm2022/lib/components/bimplus-floating-bar-header-content/bimplus-floating-bar-header-content.component.mjs +20 -8
  5. package/esm2022/lib/components/bimplus-floating-bar-header-logo/bimplus-floating-bar-header-logo.component.mjs +30 -12
  6. package/esm2022/lib/components/bimplus-floating-bar-hide-objects/bimplus-floating-bar-hide-objects.component.mjs +27 -46
  7. package/esm2022/lib/components/bimplus-floating-bar-isolation-objects/bimplus-floating-bar-isolation-objects.component.mjs +17 -24
  8. package/esm2022/lib/components/bimplus-floating-bar-project-navigator/bimplus-floating-bar-project-navigator.component.mjs +18 -24
  9. package/esm2022/lib/components/bimplus-main-menu/bimplus-main-menu.component.mjs +13 -4
  10. package/esm2022/lib/components/bimplus-notify/bimplus-notify.component.mjs +12 -39
  11. package/esm2022/lib/components/bimplus-tool-hub/bimplus-tool-hub.component.mjs +55 -36
  12. package/esm2022/lib/directives/draggable.directive.mjs +12 -2
  13. package/esm2022/lib/services/layout-manager.service.mjs +211 -43
  14. package/esm2022/lib/services/local-storage.service.mjs +70 -0
  15. package/esm2022/lib/services/resize-observer.service.mjs +28 -0
  16. package/esm2022/public-api.mjs +2 -1
  17. package/fesm2022/ngx-bimplus-components.mjs +637 -317
  18. package/fesm2022/ngx-bimplus-components.mjs.map +1 -1
  19. package/lib/components/bimplus-floating-bar/bimplus-floating-bar.component.d.ts +20 -4
  20. package/lib/components/bimplus-floating-bar-dragger/bimplus-floating-bar-dragger.component.d.ts +6 -1
  21. package/lib/components/bimplus-floating-bar-header-content/bimplus-floating-bar-header-content.component.d.ts +6 -2
  22. package/lib/components/bimplus-floating-bar-header-logo/bimplus-floating-bar-header-logo.component.d.ts +10 -5
  23. package/lib/components/bimplus-floating-bar-hide-objects/bimplus-floating-bar-hide-objects.component.d.ts +12 -11
  24. package/lib/components/bimplus-floating-bar-isolation-objects/bimplus-floating-bar-isolation-objects.component.d.ts +6 -6
  25. package/lib/components/bimplus-floating-bar-project-navigator/bimplus-floating-bar-project-navigator.component.d.ts +6 -6
  26. package/lib/components/bimplus-main-menu/bimplus-main-menu.component.d.ts +5 -1
  27. package/lib/components/bimplus-notify/bimplus-notify.component.d.ts +4 -18
  28. package/lib/components/bimplus-tool-hub/bimplus-tool-hub.component.d.ts +19 -11
  29. package/lib/directives/draggable.directive.d.ts +2 -1
  30. package/lib/services/layout-manager.service.d.ts +56 -3
  31. package/lib/services/local-storage.service.d.ts +18 -0
  32. package/lib/services/resize-observer.service.d.ts +12 -0
  33. package/package.json +1 -1
  34. package/public-api.d.ts +1 -0
@@ -579,6 +579,7 @@ class DraggableDirective {
579
579
  this.wasDragging = false;
580
580
  this.isMouseDown = false;
581
581
  this.dragging = new EventEmitter();
582
+ this.dragEnd = new EventEmitter();
582
583
  this.clicked = new EventEmitter();
583
584
  }
584
585
  onMouseMove(event) {
@@ -596,11 +597,17 @@ class DraggableDirective {
596
597
  return;
597
598
  }
598
599
  }
600
+ //console.log(`dragging isDragging ${!!this.isDragging}`);
599
601
  fireEvent(this, "dragging", [deltaX, deltaY]);
600
602
  this.oldX = event.clientX;
601
603
  this.oldY = event.clientY;
602
604
  }
603
605
  onMouseUp() {
606
+ //console.log(`onMouseUp isDragging${!!this.isDragging}`);
607
+ if (this.isDragging || this.isMouseDown) {
608
+ console.log(`fireEvent dragEnd`);
609
+ fireEvent(this, "dragEnd", ['$event']);
610
+ }
604
611
  this.isDragging = false;
605
612
  this.isMouseDown = false;
606
613
  }
@@ -609,6 +616,7 @@ class DraggableDirective {
609
616
  this.wasDragging = false;
610
617
  this.oldX = event.clientX;
611
618
  this.oldY = event.clientY;
619
+ //console.log(`onMouseDown isDragging${!!this.isDragging}`);
612
620
  }
613
621
  onMouseClick(event) {
614
622
  if (!this.wasDragging) {
@@ -616,7 +624,7 @@ class DraggableDirective {
616
624
  }
617
625
  }
618
626
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DraggableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
619
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.10", type: DraggableDirective, isStandalone: true, selector: "[libDraggable]", outputs: { dragging: "dragging", clicked: "clicked" }, host: { listeners: { "document:mousemove": "onMouseMove($event)", "document:mouseup": "onMouseUp($event)", "mousedown": "onMouseDown($event)", "click": "onMouseClick($event)" } }, ngImport: i0 }); }
627
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.10", type: DraggableDirective, isStandalone: true, selector: "[libDraggable]", outputs: { dragging: "dragging", dragEnd: "dragEnd", clicked: "clicked" }, host: { listeners: { "document:mousemove": "onMouseMove($event)", "document:mouseup": "onMouseUp($event)", "mousedown": "onMouseDown($event)", "click": "onMouseClick($event)" } }, ngImport: i0 }); }
620
628
  }
621
629
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DraggableDirective, decorators: [{
622
630
  type: Directive,
@@ -626,6 +634,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
626
634
  }]
627
635
  }], propDecorators: { dragging: [{
628
636
  type: Output
637
+ }], dragEnd: [{
638
+ type: Output
629
639
  }], clicked: [{
630
640
  type: Output
631
641
  }], onMouseMove: [{
@@ -642,38 +652,438 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
642
652
  args: ['click', ['$event']]
643
653
  }] } });
644
654
 
645
- class BimplusFloatingBarDraggerComponent {
655
+ class ResizeObserverService {
656
+ constructor() {
657
+ this.rectSize$ = new BehaviorSubject(undefined);
658
+ this.internalRectSize = new DOMRect(1, 1, 1, 1);
659
+ // Observable that components can subscribe to
660
+ this.parentAppRect$ = this.rectSize$.asObservable();
661
+ }
662
+ setSize(newValue) {
663
+ this.rectSize$.next(newValue);
664
+ this.internalRectSize = newValue;
665
+ console.log(`SERVICE:rect size:${newValue.width} ${newValue.height}`);
666
+ }
667
+ getParentAppRect() {
668
+ return this.internalRectSize;
669
+ }
670
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
671
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
672
+ }
673
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: ResizeObserverService, decorators: [{
674
+ type: Injectable,
675
+ args: [{
676
+ providedIn: 'root'
677
+ }]
678
+ }], ctorParameters: () => [] });
679
+
680
+ class LocalStorageService {
646
681
  constructor() {
682
+ this.storageSubject = new BehaviorSubject(null);
683
+ }
684
+ // Set a string value in localStorage
685
+ setItem(key, value) {
686
+ try {
687
+ localStorage.setItem(key, value);
688
+ this.storageSubject.next({ key, value });
689
+ }
690
+ catch (e) {
691
+ console.error('Error saving to localStorage', e);
692
+ }
693
+ }
694
+ // Get a string value from localStorage
695
+ getItem(key) {
696
+ try {
697
+ return localStorage.getItem(key);
698
+ }
699
+ catch (e) {
700
+ console.error('Error reading from localStorage', e);
701
+ return null;
702
+ }
703
+ }
704
+ // Remove an item from localStorage
705
+ removeItem(key) {
706
+ try {
707
+ localStorage.removeItem(key);
708
+ this.storageSubject.next({ key, value: null });
709
+ }
710
+ catch (e) {
711
+ console.error('Error removing from localStorage', e);
712
+ }
713
+ }
714
+ // Clear all items in localStorage
715
+ clear() {
716
+ try {
717
+ localStorage.clear();
718
+ this.storageSubject.next(null);
719
+ }
720
+ catch (e) {
721
+ console.error('Error clearing localStorage', e);
722
+ }
723
+ }
724
+ // Set an object in localStorage
725
+ setObject(key, value) {
726
+ this.setItem(key, JSON.stringify(value));
727
+ }
728
+ // Get an object from localStorage
729
+ getObject(key) {
730
+ const value = this.getItem(key);
731
+ return value ? JSON.parse(value) : null;
732
+ }
733
+ // Watch for changes in localStorage
734
+ watchStorage() {
735
+ return this.storageSubject.asObservable();
736
+ }
737
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LocalStorageService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
738
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LocalStorageService, providedIn: 'root' }); }
739
+ }
740
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LocalStorageService, decorators: [{
741
+ type: Injectable,
742
+ args: [{
743
+ providedIn: 'root'
744
+ }]
745
+ }], ctorParameters: () => [] });
746
+
747
+ class LayoutManagerService {
748
+ constructor(resizeObserverService, localStorageService) {
749
+ this.resizeObserverService = resizeObserverService;
750
+ this.localStorageService = localStorageService;
751
+ this.registeredItems$ = new BehaviorSubject([]);
752
+ this.registeredItems = [];
753
+ this.CONFIG = 'layoutManagerConfig';
754
+ }
755
+ get RegisteredItems() {
756
+ return this.registeredItems;
757
+ }
758
+ /**--------------------------------------------------------------------------
759
+ * register object. object must have unique id or elementId
760
+ --------------------------------------------------------------------------*/
761
+ registerObject(obj, id, left = 100, top = 100, selector, rememberPosition) {
762
+ if (this.registeredItems.some(item => item.id === id)) {
763
+ return;
764
+ }
765
+ const newItem = {
766
+ element: obj,
767
+ id: id,
768
+ selector: selector,
769
+ rememberPosition: !!rememberPosition,
770
+ left: left,
771
+ top: top,
772
+ isCollapsed: false
773
+ };
774
+ this.registeredItems.push(newItem);
775
+ this.registeredItems$.next(this.registeredItems);
776
+ this._initObject(newItem);
777
+ }
778
+ _initObject(obj) {
779
+ this._adjustObjectByConfig(obj);
780
+ this._adjustObjectByWindowSize(obj);
781
+ }
782
+ /**--------------------------------------------------------------------------
783
+ * get object configuration
784
+ * return {left, top, width, heigth}
785
+ --------------------------------------------------------------------------*/
786
+ _getObjectConfig(obj) {
787
+ if (!obj) {
788
+ return null;
789
+ }
790
+ const configValue = this.localStorageService.getItem(this.CONFIG);
791
+ const config = configValue ? JSON.parse(configValue) : {};
792
+ const objId = obj.id;
793
+ let configObj = config[objId];
794
+ if (!configObj) {
795
+ configObj = { id: objId, left: obj.left, top: obj.top };
796
+ }
797
+ return configObj;
798
+ }
799
+ _adjustObjectByConfig(obj) {
800
+ const config = this._getObjectConfig(obj);
801
+ if (!config) {
802
+ return;
803
+ }
804
+ const element = obj.element?.nativeElement;
805
+ element.style.left = (config.left) + 'px';
806
+ element.style.top = (config.top) + 'px';
807
+ this.checkPosition(obj.id, "", undefined, 0, 0, true);
808
+ }
809
+ _adjustObjectByWindowSize(obj) {
810
+ console.log('_adjustObjectByWindowSize', obj);
811
+ }
812
+ /**--------------------------------------------------------------------------
813
+ * returns object registered in the layout manager
814
+ --------------------------------------------------------------------------*/
815
+ getItem(id) {
816
+ let foundItem = null;
817
+ this.registeredItems.forEach(item => {
818
+ if (item.id === id) {
819
+ foundItem = item;
820
+ }
821
+ });
822
+ return foundItem;
823
+ }
824
+ /**--------------------------------------------------------------------------
825
+ * set object configuration
826
+ --------------------------------------------------------------------------*/
827
+ _setObjectConfig(obj, left, top) {
828
+ const objId = obj?.id;
829
+ if (!objId) {
830
+ return;
831
+ }
832
+ let config = this.localStorageService.getObject(this.CONFIG);
833
+ //let config = configValue && JSON.parse(configValue) as LayoutManagerConfig;
834
+ if (!config) {
835
+ config = {};
836
+ }
837
+ if (obj?.isCollapsed) { // do not overtake collapsed size
838
+ if (!config[objId]) {
839
+ config[objId] = obj;
840
+ }
841
+ config[objId].left = left;
842
+ config[objId].top = top;
843
+ this.localStorageService.setObject(this.CONFIG, config);
844
+ return;
845
+ }
846
+ const newItem = {
847
+ id: objId,
848
+ isCollapsed: false,
849
+ left: left,
850
+ top: top
851
+ //width: width,
852
+ //height: height
853
+ };
854
+ config[objId] = newItem;
855
+ this.localStorageService.setObject(this.CONFIG, config);
856
+ }
857
+ // checks whether element or element with additional selectionof subelement is placed within the give rectangle
858
+ // if not then calculates the offset to be moved to fit in
859
+ checkPosition(id, selector, parentRectangle, deltaX, deltaY, forceCheck = false) {
860
+ if (!id) {
861
+ return { deltaX: 0, deltaY: 0 };
862
+ }
863
+ const e1 = this.getItem(id);
864
+ if (!e1) {
865
+ return { deltaX: 0, deltaY: 0 };
866
+ }
867
+ const element = e1.element?.nativeElement?.shadowRoot || e1.element?.nativeElement;
868
+ const mySelector = selector?.length > 0 ? selector : e1.selector;
869
+ const parentRect = parentRectangle || this.resizeObserverService.getParentAppRect();
870
+ if (parentRect?.width <= 1 || parentRect?.height <= 1) {
871
+ return { deltaX: 0, deltaY: 0 };
872
+ }
873
+ let elementRect = undefined;
874
+ if (!element) {
875
+ console.error('checkPosition: missing element');
876
+ return { deltaX: 0, deltaY: 0 };
877
+ }
878
+ if (mySelector) {
879
+ const selectedObj = element.querySelector(mySelector);
880
+ elementRect = selectedObj?.getBoundingClientRect();
881
+ }
882
+ else {
883
+ elementRect = element.getBoundingClientRect();
884
+ }
885
+ if (!elementRect?.width || !elementRect?.height) {
886
+ console.error('checkPosition:missing element rect');
887
+ return { deltaX: 0, deltaY: 0 };
888
+ }
889
+ let checkBoundaries = true;
890
+ if (this._isInsideRect(elementRect, parentRect) === false && !forceCheck) {
891
+ checkBoundaries = false;
892
+ }
893
+ // copy of real element rectangle to perform calculation over before set to the real element
894
+ const elementDOMRect = DOMRect.fromRect(elementRect);
895
+ //set the element rectangle by deltas
896
+ this._translateRectangle(elementDOMRect, deltaX, deltaY);
897
+ if (checkBoundaries) {
898
+ if (this._isInsideRect(elementDOMRect, parentRect) === false) {
899
+ const newElementPos = this.getAlignedPosition(elementDOMRect, parentRect);
900
+ deltaX = newElementPos.x - elementRect.x;
901
+ deltaY = newElementPos.y - elementRect.y;
902
+ this._translateRectangle(elementDOMRect, deltaX, deltaY);
903
+ }
904
+ }
905
+ else {
906
+ console.log("not inside!!");
907
+ if (this._isInsideLeftTopRect(parentRect, elementDOMRect) === false) {
908
+ const newElementPos = this._getAlignedLeftTopPosition(elementDOMRect, parentRect);
909
+ deltaX = newElementPos.x - elementRect.x;
910
+ deltaY = newElementPos.y - elementRect.y;
911
+ this._translateRectangle(elementDOMRect, deltaX, deltaY);
912
+ }
913
+ }
914
+ const nativeElement = e1.element.nativeElement;
915
+ if (!nativeElement) {
916
+ return;
917
+ }
918
+ const computedStyle = window.getComputedStyle(nativeElement);
919
+ const top = parseInt(computedStyle.top, 10);
920
+ const left = parseInt(computedStyle.left, 10);
921
+ nativeElement.style.top = (top + deltaY) + 'px';
922
+ nativeElement.style.left = (left + deltaX) + 'px';
923
+ return { deltaX, deltaY };
924
+ }
925
+ /**--------------------------------------------------------------------------
926
+ * find if rectangle 1 is inside rectangle 2
927
+ --------------------------------------------------------------------------*/
928
+ _isInsideRect(r1, r2) {
929
+ if (!r1 || !r2) {
930
+ return false;
931
+ }
932
+ return r2.left <= r1.left && r2.top <= r1.top && r2.right >= r1.right && r2.bottom >= r1.bottom;
933
+ }
934
+ /**--------------------------------------------------------------------------
935
+ * find if rectangles do not overlap the left and top sides
936
+ --------------------------------------------------------------------------*/
937
+ _isInsideLeftTopRect(r1, r2) {
938
+ if (!r1 || !r2) {
939
+ return false;
940
+ }
941
+ const r1Inside = r2.left <= r1.left && r2.top <= r1.top;
942
+ const r2Inside = r1.left <= r2.left && r1.top <= r2.top;
943
+ return r1Inside || r2Inside;
944
+ }
945
+ /**--------------------------------------------------------------------------
946
+ * get position of r1 aligned with the r2 sides
947
+ --------------------------------------------------------------------------*/
948
+ getAlignedPosition(r1, r2) {
949
+ if (!r1 || !r2) {
950
+ return { x: 0, y: 0 };
951
+ }
952
+ const to = { x: r1.x, y: r1.y };
953
+ //align left or right sides. preferably left
954
+ if (r1.left < r2.left) {
955
+ to.x = r2.x;
956
+ }
957
+ else if (r1.right > r2.right) {
958
+ to.x = r2.right - r1.width;
959
+ }
960
+ //align top or bottom. preferably top
961
+ if (r1.top < r2.top) {
962
+ to.y = r2.y;
963
+ }
964
+ else if (r1.bottom > r2.bottom) {
965
+ to.y = r2.bottom - r1.height;
966
+ }
967
+ return to;
968
+ }
969
+ /**--------------------------------------------------------------------------
970
+ * get position of r1 aligned with the r2 left, top sides
971
+ --------------------------------------------------------------------------*/
972
+ _getAlignedLeftTopPosition(r1, r2) {
973
+ if (!r1 || !r2) {
974
+ return { x: 0, y: 0 };
975
+ }
976
+ const to = { x: r1.x, y: r1.y };
977
+ //align left
978
+ if (r1.left < r2.left) {
979
+ to.x = r2.x;
980
+ }
981
+ //align top
982
+ if (r1.top < r2.top) {
983
+ to.y = r2.y;
984
+ }
985
+ return to;
986
+ }
987
+ /**--------------------------------------------------------------------------
988
+ * translate rectangle by x, y
989
+ --------------------------------------------------------------------------*/
990
+ _translateRectangle(rect, translateX, translateY) {
991
+ if (!rect) {
992
+ return;
993
+ }
994
+ rect.x += translateX;
995
+ rect.y += translateY;
996
+ return rect;
997
+ }
998
+ updateCollapsed(value, id = '') {
999
+ const foundItem = this.getItem(id);
1000
+ if (!foundItem) {
1001
+ return;
1002
+ }
1003
+ foundItem.isCollapsed = value;
1004
+ this.registeredItems$.next(this.registeredItems);
1005
+ setTimeout(() => {
1006
+ this.checkPosition(foundItem.id, "", undefined, 0, 0, true);
1007
+ });
1008
+ let s1 = '';
1009
+ this.registeredItems.forEach((item) => {
1010
+ s1 = s1 + `${item.id}:<${item.isCollapsed ? 1 : 0}> `;
1011
+ });
1012
+ console.log(s1);
1013
+ }
1014
+ handleDragEnd(id) {
1015
+ this.finalizeObjectChanges(id);
1016
+ }
1017
+ /**--------------------------------------------------------------------------
1018
+ * finalize object changes (position). object must be registered in the layout manager
1019
+ * object: object to finalize
1020
+ --------------------------------------------------------------------------*/
1021
+ finalizeObjectChanges(id) {
1022
+ const item = this.getItem(id);
1023
+ if (!item) {
1024
+ return;
1025
+ }
1026
+ const element = item.element?.nativeElement;
1027
+ const computedStyle = window.getComputedStyle(element);
1028
+ const top = parseInt(computedStyle.top, 10);
1029
+ const left = parseInt(computedStyle.left, 10);
1030
+ this._setObjectConfig(item, left, top);
1031
+ }
1032
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LayoutManagerService, deps: [{ token: ResizeObserverService }, { token: LocalStorageService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1033
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LayoutManagerService, providedIn: 'root' }); }
1034
+ }
1035
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LayoutManagerService, decorators: [{
1036
+ type: Injectable,
1037
+ args: [{
1038
+ providedIn: 'root'
1039
+ }]
1040
+ }], ctorParameters: () => [{ type: ResizeObserverService }, { type: LocalStorageService }] });
1041
+
1042
+ class BimplusFloatingBarDraggerComponent {
1043
+ constructor(layoutManagerService) {
1044
+ this.layoutManagerService = layoutManagerService;
647
1045
  // Define isCollapsed as a boolean property
648
1046
  this.isCollapsed = false;
1047
+ this.parentId = '';
649
1048
  // Define event handler for DraggableDirective
650
1049
  this.dragElement = new EventEmitter();
651
1050
  // Define icon as a string property with a default value
652
1051
  this.draggerIcon = 'ui-icon-drag';
653
1052
  }
654
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarDraggerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
655
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarDraggerComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-dragger", inputs: { isCollapsed: "isCollapsed" }, outputs: { dragElement: "dragElement" }, ngImport: i0, template: "<div\r\n class=\"floating-panel__dragger dragger\"\r\n [ngClass] = \"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"draggerIcon\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n>\r\n</div>\r\n\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}.ui-icon-drag{background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"5\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "clicked"] }] }); }
1053
+ onDragEnd() {
1054
+ this.layoutManagerService.handleDragEnd(this.parentId);
1055
+ }
1056
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarDraggerComponent, deps: [{ token: LayoutManagerService }], target: i0.ɵɵFactoryTarget.Component }); }
1057
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarDraggerComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-dragger", inputs: { isCollapsed: "isCollapsed", parentId: "parentId" }, outputs: { dragElement: "dragElement" }, ngImport: i0, template: "<div\r\n class=\"floating-panel__dragger dragger\"\r\n [ngClass] = \"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"draggerIcon\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n (dragEnd)=\"onDragEnd()\"\r\n>\r\n</div>\r\n\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}.ui-icon-drag{background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"5\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "dragEnd", "clicked"] }] }); }
656
1058
  }
657
1059
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarDraggerComponent, decorators: [{
658
1060
  type: Component,
659
1061
  args: [{ selector: 'lib-bimplus-floating-bar-dragger', standalone: true, imports: [
660
1062
  CommonModule,
661
1063
  DraggableDirective,
662
- ], template: "<div\r\n class=\"floating-panel__dragger dragger\"\r\n [ngClass] = \"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"draggerIcon\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n>\r\n</div>\r\n\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}.ui-icon-drag{background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"5\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A</svg>%0D%0A')}\n"] }]
663
- }], propDecorators: { isCollapsed: [{
1064
+ ], template: "<div\r\n class=\"floating-panel__dragger dragger\"\r\n [ngClass] = \"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"draggerIcon\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n (dragEnd)=\"onDragEnd()\"\r\n>\r\n</div>\r\n\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}.ui-icon-drag{background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"5\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A</svg>%0D%0A')}\n"] }]
1065
+ }], ctorParameters: () => [{ type: LayoutManagerService }], propDecorators: { isCollapsed: [{
1066
+ type: Input
1067
+ }], parentId: [{
664
1068
  type: Input
665
1069
  }], dragElement: [{
666
1070
  type: Output
667
1071
  }] } });
668
1072
 
669
1073
  class BimplusFloatingBarHeaderContentComponent extends BimplusLocalizedWidgetComponent {
670
- constructor(translateService) {
1074
+ constructor(translateService, layoutManagerService) {
671
1075
  super(translateService);
1076
+ this.layoutManagerService = layoutManagerService;
672
1077
  this.isCollapsed = false;
1078
+ this.parentId = '';
673
1079
  this.actionClicked = new EventEmitter();
674
1080
  // Define event handler for DraggableDirective
675
1081
  this.dragElement = new EventEmitter();
676
1082
  this._items = new Array();
1083
+ this.layoutManagerService.registeredItems$.subscribe((items) => {
1084
+ const layoutManagerItem = items.find((item) => item.id === this.parentId);
1085
+ this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
1086
+ });
677
1087
  }
678
1088
  get items() {
679
1089
  return this._items;
@@ -691,10 +1101,13 @@ class BimplusFloatingBarHeaderContentComponent extends BimplusLocalizedWidgetCom
691
1101
  }
692
1102
  this.actionClicked.emit(action);
693
1103
  }
694
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHeaderContentComponent, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
695
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarHeaderContentComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-header-content", inputs: { isCollapsed: "isCollapsed", items: "items" }, outputs: { actionClicked: "actionClicked", dragElement: "dragElement" }, providers: [
1104
+ onDragEnd() {
1105
+ this.layoutManagerService.handleDragEnd(this.parentId);
1106
+ }
1107
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHeaderContentComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }], target: i0.ɵɵFactoryTarget.Component }); }
1108
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarHeaderContentComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-header-content", inputs: { isCollapsed: "isCollapsed", parentId: "parentId", items: "items" }, outputs: { actionClicked: "actionClicked", dragElement: "dragElement" }, providers: [
696
1109
  TranslateService
697
- ], usesInheritance: true, ngImport: i0, template: "<div\r\n class=\"floating-panel__header-content dragger\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n>\r\n <div class=\"menu-content\">\r\n <div *ngFor=\"let item of items\">\r\n <div\r\n [attr.data-test]=\"'floating_bar_item_' + item.buttonId\"\r\n class=\"fp-block-item fp-block-icon-item\"\r\n [ngClass]=\"{\r\n active: item.active\r\n }\"\r\n [className]=\"item.iconClass\"\r\n [title]=\"item.title | translate\"\r\n (click)=\"onItemClicked(item.buttonId)\"\r\n ></div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.menu-content{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;-webkit-box-align-items:center;-moz-box-align-items:center;-webkit-align-items:center;-ms-align-items:center;align-items:center;padding-left:.5rem;padding-right:.5rem}.menu-content .block-icon-item{background-position:center;background-repeat:no-repeat}.menu-content .ui-icon-hide-object{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-hide-object.active{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-transparent-object{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-transparent-object.active{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-restore-hide-object{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.6569 13.6569C12.3481 14.9656 10.6261 15.7801 8.78414 15.9615C6.94221 16.1429 5.09436 15.68 3.55544 14.6518C2.01652 13.6235 0.881751 12.0934 0.344479 10.3223C-0.192792 8.55115 -0.0993205 6.6485 0.608966 4.93855C1.31725 3.22859 2.59653 1.81712 4.22883 0.944643C5.86112 0.072162 7.74544 -0.207351 9.56072 0.15373C11.376 0.514811 13.0099 1.49414 14.1841 2.92486C15.1452 4.09599 15.7496 5.51024 15.9373 7.00001H18L15 10L12 7.00001H14.4177C14.2361 5.87018 13.7583 4.80177 13.0246 3.90775C12.0706 2.74529 10.743 1.94959 9.26809 1.65621C7.79317 1.36283 6.26216 1.58993 4.93592 2.29882C3.60968 3.00772 2.57027 4.15453 1.99478 5.54387C1.4193 6.93321 1.34336 8.47911 1.77989 9.91816C2.21642 11.3572 3.13842 12.6004 4.3888 13.4359C5.63917 14.2713 7.14055 14.6474 8.63711 14.5C10.1337 14.3526 11.5328 13.6909 12.5962 12.6275L13.6569 13.6569Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal.active{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23B6B6B6\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped.active{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFDCCC\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%23FFA780\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23444444\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden.active{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "clicked"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }] }); }
1110
+ ], usesInheritance: true, ngImport: i0, template: "<div\r\n class=\"floating-panel__header-content dragger\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n (dragEnd)=\"onDragEnd()\"\r\n>\r\n <div class=\"menu-content\">\r\n <div *ngFor=\"let item of items\">\r\n <div\r\n [attr.data-test]=\"'floating_bar_item_' + item.buttonId\"\r\n class=\"fp-block-item fp-block-icon-item\"\r\n [ngClass]=\"{\r\n active: item.active\r\n }\"\r\n [className]=\"item.iconClass\"\r\n [title]=\"item.title | translate\"\r\n (click)=\"onItemClicked(item.buttonId)\"\r\n ></div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.menu-content{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;-webkit-box-align-items:center;-moz-box-align-items:center;-webkit-align-items:center;-ms-align-items:center;align-items:center;padding-left:.5rem;padding-right:.5rem}.menu-content .block-icon-item{background-position:center;background-repeat:no-repeat}.menu-content .ui-icon-hide-object{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-hide-object.active{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-transparent-object{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-transparent-object.active{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-restore-hide-object{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.6569 13.6569C12.3481 14.9656 10.6261 15.7801 8.78414 15.9615C6.94221 16.1429 5.09436 15.68 3.55544 14.6518C2.01652 13.6235 0.881751 12.0934 0.344479 10.3223C-0.192792 8.55115 -0.0993205 6.6485 0.608966 4.93855C1.31725 3.22859 2.59653 1.81712 4.22883 0.944643C5.86112 0.072162 7.74544 -0.207351 9.56072 0.15373C11.376 0.514811 13.0099 1.49414 14.1841 2.92486C15.1452 4.09599 15.7496 5.51024 15.9373 7.00001H18L15 10L12 7.00001H14.4177C14.2361 5.87018 13.7583 4.80177 13.0246 3.90775C12.0706 2.74529 10.743 1.94959 9.26809 1.65621C7.79317 1.36283 6.26216 1.58993 4.93592 2.29882C3.60968 3.00772 2.57027 4.15453 1.99478 5.54387C1.4193 6.93321 1.34336 8.47911 1.77989 9.91816C2.21642 11.3572 3.13842 12.6004 4.3888 13.4359C5.63917 14.2713 7.14055 14.6474 8.63711 14.5C10.1337 14.3526 11.5328 13.6909 12.5962 12.6275L13.6569 13.6569Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal.active{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23B6B6B6\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped.active{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFDCCC\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%23FFA780\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23444444\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden.active{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "dragEnd", "clicked"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }] }); }
698
1111
  }
699
1112
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHeaderContentComponent, decorators: [{
700
1113
  type: Component,
@@ -704,8 +1117,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
704
1117
  TranslateModule,
705
1118
  ], providers: [
706
1119
  TranslateService
707
- ], template: "<div\r\n class=\"floating-panel__header-content dragger\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n>\r\n <div class=\"menu-content\">\r\n <div *ngFor=\"let item of items\">\r\n <div\r\n [attr.data-test]=\"'floating_bar_item_' + item.buttonId\"\r\n class=\"fp-block-item fp-block-icon-item\"\r\n [ngClass]=\"{\r\n active: item.active\r\n }\"\r\n [className]=\"item.iconClass\"\r\n [title]=\"item.title | translate\"\r\n (click)=\"onItemClicked(item.buttonId)\"\r\n ></div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.menu-content{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;-webkit-box-align-items:center;-moz-box-align-items:center;-webkit-align-items:center;-ms-align-items:center;align-items:center;padding-left:.5rem;padding-right:.5rem}.menu-content .block-icon-item{background-position:center;background-repeat:no-repeat}.menu-content .ui-icon-hide-object{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-hide-object.active{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-transparent-object{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-transparent-object.active{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-restore-hide-object{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.6569 13.6569C12.3481 14.9656 10.6261 15.7801 8.78414 15.9615C6.94221 16.1429 5.09436 15.68 3.55544 14.6518C2.01652 13.6235 0.881751 12.0934 0.344479 10.3223C-0.192792 8.55115 -0.0993205 6.6485 0.608966 4.93855C1.31725 3.22859 2.59653 1.81712 4.22883 0.944643C5.86112 0.072162 7.74544 -0.207351 9.56072 0.15373C11.376 0.514811 13.0099 1.49414 14.1841 2.92486C15.1452 4.09599 15.7496 5.51024 15.9373 7.00001H18L15 10L12 7.00001H14.4177C14.2361 5.87018 13.7583 4.80177 13.0246 3.90775C12.0706 2.74529 10.743 1.94959 9.26809 1.65621C7.79317 1.36283 6.26216 1.58993 4.93592 2.29882C3.60968 3.00772 2.57027 4.15453 1.99478 5.54387C1.4193 6.93321 1.34336 8.47911 1.77989 9.91816C2.21642 11.3572 3.13842 12.6004 4.3888 13.4359C5.63917 14.2713 7.14055 14.6474 8.63711 14.5C10.1337 14.3526 11.5328 13.6909 12.5962 12.6275L13.6569 13.6569Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal.active{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23B6B6B6\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped.active{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFDCCC\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%23FFA780\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23444444\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden.active{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}\n"] }]
708
- }], ctorParameters: () => [{ type: i1.TranslateService }], propDecorators: { isCollapsed: [{
1120
+ ], template: "<div\r\n class=\"floating-panel__header-content dragger\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n (dragEnd)=\"onDragEnd()\"\r\n>\r\n <div class=\"menu-content\">\r\n <div *ngFor=\"let item of items\">\r\n <div\r\n [attr.data-test]=\"'floating_bar_item_' + item.buttonId\"\r\n class=\"fp-block-item fp-block-icon-item\"\r\n [ngClass]=\"{\r\n active: item.active\r\n }\"\r\n [className]=\"item.iconClass\"\r\n [title]=\"item.title | translate\"\r\n (click)=\"onItemClicked(item.buttonId)\"\r\n ></div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.menu-content{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;-webkit-box-align-items:center;-moz-box-align-items:center;-webkit-align-items:center;-ms-align-items:center;align-items:center;padding-left:.5rem;padding-right:.5rem}.menu-content .block-icon-item{background-position:center;background-repeat:no-repeat}.menu-content .ui-icon-hide-object{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-hide-object.active{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-transparent-object{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-transparent-object.active{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-restore-hide-object{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.6569 13.6569C12.3481 14.9656 10.6261 15.7801 8.78414 15.9615C6.94221 16.1429 5.09436 15.68 3.55544 14.6518C2.01652 13.6235 0.881751 12.0934 0.344479 10.3223C-0.192792 8.55115 -0.0993205 6.6485 0.608966 4.93855C1.31725 3.22859 2.59653 1.81712 4.22883 0.944643C5.86112 0.072162 7.74544 -0.207351 9.56072 0.15373C11.376 0.514811 13.0099 1.49414 14.1841 2.92486C15.1452 4.09599 15.7496 5.51024 15.9373 7.00001H18L15 10L12 7.00001H14.4177C14.2361 5.87018 13.7583 4.80177 13.0246 3.90775C12.0706 2.74529 10.743 1.94959 9.26809 1.65621C7.79317 1.36283 6.26216 1.58993 4.93592 2.29882C3.60968 3.00772 2.57027 4.15453 1.99478 5.54387C1.4193 6.93321 1.34336 8.47911 1.77989 9.91816C2.21642 11.3572 3.13842 12.6004 4.3888 13.4359C5.63917 14.2713 7.14055 14.6474 8.63711 14.5C10.1337 14.3526 11.5328 13.6909 12.5962 12.6275L13.6569 13.6569Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal.active{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23B6B6B6\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped.active{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFDCCC\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%23FFA780\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23444444\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden.active{background-position:center;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}\n"] }]
1121
+ }], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }], propDecorators: { isCollapsed: [{
1122
+ type: Input
1123
+ }], parentId: [{
709
1124
  type: Input
710
1125
  }], actionClicked: [{
711
1126
  type: Output
@@ -716,19 +1131,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
716
1131
  }] } });
717
1132
 
718
1133
  class BimplusFloatingBarHeaderLogoComponent extends BimplusLocalizedWidgetComponent {
719
- constructor(translateService) {
1134
+ constructor(translateService, layoutManagerService) {
720
1135
  super(translateService);
1136
+ this.layoutManagerService = layoutManagerService;
721
1137
  this.icon = "";
722
1138
  this.isCollapsed = false;
1139
+ this.parentId = '';
723
1140
  this.title = "";
724
- // Define event handler for DraggableDirective
725
- this.logoClicked = new EventEmitter();
1141
+ // Define event handler for DraggableDirective
726
1142
  this.dragElement = new EventEmitter();
727
1143
  }
728
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHeaderLogoComponent, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
729
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarHeaderLogoComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-header-logo", inputs: { icon: "icon", isCollapsed: "isCollapsed", title: "title" }, outputs: { logoClicked: "logoClicked", dragElement: "dragElement" }, host: { properties: { "class.isCollapsed": "this.isCollapsed" } }, providers: [
1144
+ //@Output() logoClicked = new EventEmitter<MouseEvent>();
1145
+ //isCollapsed: boolean = false;
1146
+ ngOnInit() {
1147
+ const layoutManagerItem = this.layoutManagerService.getItem(this.parentId);
1148
+ this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
1149
+ this.layoutManagerService.registeredItems$.subscribe((items) => {
1150
+ const layoutManagerItem = items.find((item) => item.id === this.parentId);
1151
+ this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
1152
+ });
1153
+ }
1154
+ onLogoClicked() {
1155
+ this.layoutManagerService.updateCollapsed(!this.isCollapsed, this.parentId);
1156
+ }
1157
+ onDragEnd() {
1158
+ this.layoutManagerService.handleDragEnd(this.parentId);
1159
+ }
1160
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHeaderLogoComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }], target: i0.ɵɵFactoryTarget.Component }); }
1161
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarHeaderLogoComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-header-logo", inputs: { icon: "icon", isCollapsed: "isCollapsed", parentId: "parentId", title: "title" }, outputs: { dragElement: "dragElement" }, host: { properties: { "class.isCollapsed": "this.isCollapsed" } }, providers: [
730
1162
  TranslateService
731
- ], usesInheritance: true, ngImport: i0, template: "<div\r\n class=\"floating-panel__header-logo\"\r\n [ngClass]=\"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"icon\"\r\n [title]= \"title | translate\"\r\n libDraggable\r\n (clicked)=\"logoClicked.emit($event)\"\r\n (dragging)=\"dragElement.emit($event)\"\r\n></div>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "clicked"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }] }); }
1163
+ ], usesInheritance: true, ngImport: i0, template: "<div\r\n class=\"floating-panel__header-logo\"\r\n [ngClass]=\"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"icon\"\r\n [title]= \"title | translate\"\r\n libDraggable\r\n (clicked)=\"onLogoClicked()\"\r\n (dragging)=\"dragElement.emit($event)\"\r\n (dragEnd)=\"onDragEnd()\"\r\n></div>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "dragEnd", "clicked"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }] }); }
732
1164
  }
733
1165
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHeaderLogoComponent, decorators: [{
734
1166
  type: Component,
@@ -738,35 +1170,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
738
1170
  TranslateModule,
739
1171
  ], providers: [
740
1172
  TranslateService
741
- ], template: "<div\r\n class=\"floating-panel__header-logo\"\r\n [ngClass]=\"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"icon\"\r\n [title]= \"title | translate\"\r\n libDraggable\r\n (clicked)=\"logoClicked.emit($event)\"\r\n (dragging)=\"dragElement.emit($event)\"\r\n></div>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"] }]
742
- }], ctorParameters: () => [{ type: i1.TranslateService }], propDecorators: { icon: [{
1173
+ ], template: "<div\r\n class=\"floating-panel__header-logo\"\r\n [ngClass]=\"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"icon\"\r\n [title]= \"title | translate\"\r\n libDraggable\r\n (clicked)=\"onLogoClicked()\"\r\n (dragging)=\"dragElement.emit($event)\"\r\n (dragEnd)=\"onDragEnd()\"\r\n></div>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"] }]
1174
+ }], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }], propDecorators: { icon: [{
743
1175
  type: Input
744
1176
  }], isCollapsed: [{
745
1177
  type: HostBinding,
746
1178
  args: ['class.isCollapsed']
747
1179
  }, {
748
1180
  type: Input
1181
+ }], parentId: [{
1182
+ type: Input
749
1183
  }], title: [{
750
1184
  type: Input
751
- }], logoClicked: [{
752
- type: Output
753
1185
  }], dragElement: [{
754
1186
  type: Output
755
1187
  }] } });
756
1188
 
1189
+ //import { Component, HostBinding, Input,Output,EventEmitter, ElementRef, AfterViewChecked,ChangeDetectorRef, OnInit, OnDestroy } from '@angular/core';
1190
+ //import { Component, Input,Output,EventEmitter, ElementRef, AfterViewChecked,ChangeDetectorRef, OnInit, OnDestroy, ChangeDetectionStrategy } from '@angular/core';
757
1191
  class BimplusFloatingBarComponent extends BimplusLocalizedWidgetComponent {
758
- constructor(translateService) {
1192
+ constructor(translateService, layoutManagerService, element, cdr, resizeObserverService) {
759
1193
  super(translateService);
1194
+ this.layoutManagerService = layoutManagerService;
1195
+ this.element = element;
1196
+ this.cdr = cdr;
1197
+ this.resizeObserverService = resizeObserverService;
760
1198
  this.noBody = false;
761
- this.isCollapsed = false;
762
1199
  this.isFocused = false;
763
1200
  this.resizeEnabled = false;
764
1201
  this.autoCollapse = false;
765
1202
  this.focusSelector = '';
766
1203
  this.isVisible = false;
1204
+ this.id = '';
1205
+ // Define event handler for reusing draggable also from resize parent
1206
+ this.resizedragging = new EventEmitter();
1207
+ //@Output() logoClicked = new EventEmitter<MouseEvent>();
1208
+ this.subscription = null; // Initialize to null
1209
+ this.hasViewChecked = false;
1210
+ //@Input() isCollapsed: boolean = false;
1211
+ this.isCollapsed = false;
1212
+ //this.layoutManagerService = layoutManagerService;
767
1213
  }
768
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarComponent, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
769
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarComponent, isStandalone: true, selector: "lib-bimplus-floating-bar", inputs: { noBody: "noBody", isCollapsed: "isCollapsed", isFocused: "isFocused", resizeEnabled: "resizeEnabled", autoCollapse: "autoCollapse", focusSelector: "focusSelector", isVisible: "isVisible" }, usesInheritance: true, ngImport: i0, template: "<div\r\n class=\"floating-panel\"\r\n [class.visible]=\"isVisible\"\r\n [class.no-body]=\"noBody\"\r\n [class.is-focused]=\"isFocused\"\r\n [class.collapsed]=\"isCollapsed\" \r\n>\r\n\r\n <ng-content select=\".floating-bar-header-logo\"></ng-content>\r\n <ng-content select=\".floating-bar-header-content\"></ng-content>\r\n <ng-content select=\".floating-bar-dragger\"></ng-content>\r\n <ng-content select=\".floating-bar-body\"></ng-content>\r\n</div>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
1214
+ ngOnInit() {
1215
+ this.layoutManagerService.registeredItems$.subscribe((items) => {
1216
+ const layoutManagerItem = items.find((item) => item.id === this.id);
1217
+ this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
1218
+ });
1219
+ }
1220
+ ngOnDestroy() {
1221
+ // Unsubscribe to avoid memory leaks
1222
+ if (this.subscription) {
1223
+ this.subscription.unsubscribe();
1224
+ }
1225
+ }
1226
+ ngAfterViewInit() {
1227
+ // if the component wants to be registered in layout manager system
1228
+ // Subscribe to the observable
1229
+ this.subscription = this.resizeObserverService.parentAppRect$.subscribe(value => {
1230
+ this.handleParentAppRectSizeChange(value);
1231
+ });
1232
+ }
1233
+ ngAfterViewChecked() {
1234
+ if (!this.hasViewChecked && !this.isCollapsed) {
1235
+ this.hasViewChecked = true; // Set the flag to prevent repeated execution
1236
+ //this.cdr.detectChanges(); // Trigger change detection
1237
+ setTimeout(() => {
1238
+ this.layoutManagerService.checkPosition(this.id, "", undefined, 0, 0, true);
1239
+ });
1240
+ }
1241
+ }
1242
+ handleParentAppRectSizeChange(parentRect) {
1243
+ this.layoutManagerService.checkPosition(this.id, '.floating-panel.visible', parentRect, 0, 0, true);
1244
+ }
1245
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: ResizeObserverService }], target: i0.ɵɵFactoryTarget.Component }); }
1246
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarComponent, isStandalone: true, selector: "lib-bimplus-floating-bar", inputs: { noBody: "noBody", isFocused: "isFocused", resizeEnabled: "resizeEnabled", autoCollapse: "autoCollapse", focusSelector: "focusSelector", isVisible: "isVisible", id: "id" }, outputs: { resizedragging: "resizedragging" }, usesInheritance: true, ngImport: i0, template: "<div\r\n class=\"floating-panel\"\r\n [class.visible]=\"isVisible\"\r\n [class.no-body]=\"noBody\"\r\n [class.is-focused]=\"isFocused\"\r\n [class.collapsed]=\"isCollapsed\" \r\n>\r\n <ng-content select=\".floating-bar-header-logo\"></ng-content>\r\n <ng-content select=\".floating-bar-header-content\"></ng-content>\r\n <ng-content select=\".floating-bar-dragger\"></ng-content>\r\n <ng-content select=\".floating-bar-body\"></ng-content>\r\n</div>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
770
1247
  }
771
1248
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarComponent, decorators: [{
772
1249
  type: Component,
@@ -776,10 +1253,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
776
1253
  BimplusFloatingBarDraggerComponent,
777
1254
  BimplusFloatingBarHeaderContentComponent,
778
1255
  BimplusFloatingBarHeaderLogoComponent,
779
- ], template: "<div\r\n class=\"floating-panel\"\r\n [class.visible]=\"isVisible\"\r\n [class.no-body]=\"noBody\"\r\n [class.is-focused]=\"isFocused\"\r\n [class.collapsed]=\"isCollapsed\" \r\n>\r\n\r\n <ng-content select=\".floating-bar-header-logo\"></ng-content>\r\n <ng-content select=\".floating-bar-header-content\"></ng-content>\r\n <ng-content select=\".floating-bar-dragger\"></ng-content>\r\n <ng-content select=\".floating-bar-body\"></ng-content>\r\n</div>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"] }]
780
- }], ctorParameters: () => [{ type: i1.TranslateService }], propDecorators: { noBody: [{
781
- type: Input
782
- }], isCollapsed: [{
1256
+ ], template: "<div\r\n class=\"floating-panel\"\r\n [class.visible]=\"isVisible\"\r\n [class.no-body]=\"noBody\"\r\n [class.is-focused]=\"isFocused\"\r\n [class.collapsed]=\"isCollapsed\" \r\n>\r\n <ng-content select=\".floating-bar-header-logo\"></ng-content>\r\n <ng-content select=\".floating-bar-header-content\"></ng-content>\r\n <ng-content select=\".floating-bar-dragger\"></ng-content>\r\n <ng-content select=\".floating-bar-body\"></ng-content>\r\n</div>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"] }]
1257
+ }], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: ResizeObserverService }], propDecorators: { noBody: [{
783
1258
  type: Input
784
1259
  }], isFocused: [{
785
1260
  type: Input
@@ -791,187 +1266,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
791
1266
  type: Input
792
1267
  }], isVisible: [{
793
1268
  type: Input
1269
+ }], id: [{
1270
+ type: Input
1271
+ }], resizedragging: [{
1272
+ type: Output
794
1273
  }] } });
795
1274
 
796
- class LayoutManagerService {
797
- constructor() { }
798
- checkPosition(elementRef, selector, left, top, deltaX, deltaY, forceCheck = false) {
799
- const parent = document.getElementById("mainViewportContainer");
800
- //const leftPanel = document.getElementsByClassName("left-sidenav-content");
801
- //const leftPanel = document.querySelector(".left-sidenav-content");
802
- //const leftPanel = document.querySelector(".sidenav");
803
- const leftPanel = document.querySelector('lib-bimplus-sidenav')?.shadowRoot?.querySelector('.sidenav');
804
- const topPanel = document.querySelector('lib-bimplus-navbar')?.shadowRoot?.querySelector('.bimplus-navbar');
805
- if (parent && elementRef.nativeElement && leftPanel && topPanel && selector) {
806
- const viewRect = parent.getBoundingClientRect();
807
- const leftPanelRect = leftPanel.getBoundingClientRect();
808
- const topPanelRect = topPanel.getBoundingClientRect();
809
- const elementRect = elementRef.nativeElement?.shadowRoot.querySelector(selector)?.getBoundingClientRect();
810
- console.log(`box: left:${elementRect.left},top:${elementRect.top},right:${elementRect.right},bottom:${elementRect.bottom}`);
811
- //const elementRect:DOMRect = elementRef.nativeElement.getBoundingClientRect();
812
- const parentRect = new DOMRect(viewRect.left + leftPanelRect.right + topPanelRect.left, viewRect.top, viewRect.width - leftPanelRect.width, viewRect.height);
813
- //const parentRect:DOMRect = new DOMRect( viewRect.left,viewRect.top,viewRect.width,viewRect.height);
814
- //console.log(viewRect,elementRect);
815
- let checkBoundaries = true;
816
- if (this._isInsideRect(elementRect, parentRect) === false && !forceCheck) {
817
- checkBoundaries = false;
818
- }
819
- // copy of real element rectangle to perform calculation over before set to the real element
820
- const elementDOMRect = DOMRect.fromRect(elementRect);
821
- //set the element rectangle by deltas
822
- this._translateRectangle(elementDOMRect, deltaX, deltaY);
823
- if (checkBoundaries) {
824
- if (this._isInsideRect(elementDOMRect, parentRect) === false) {
825
- const newElementPos = this.getAlignedPosition(elementDOMRect, parentRect);
826
- deltaX = newElementPos.x - elementRect.x;
827
- deltaY = newElementPos.y - elementRect.y;
828
- this._translateRectangle(elementDOMRect, deltaX, deltaY);
829
- }
830
- }
831
- else {
832
- console.log("not inside!!");
833
- if (this._isInsideLeftTopRect(parentRect, elementDOMRect) === false) {
834
- const newElementPos = this._getAlignedLeftTopPosition(elementDOMRect, parentRect);
835
- deltaX = newElementPos.x - elementRect.x;
836
- deltaY = newElementPos.y - elementRect.y;
837
- this._translateRectangle(elementDOMRect, deltaX, deltaY);
838
- }
839
- }
840
- }
841
- return { deltaX, deltaY };
842
- }
843
- /**--------------------------------------------------------------------------
844
- * find if rectangle 1 is inside rectangle 2
845
- --------------------------------------------------------------------------*/
846
- _isInsideRect(r1, r2) {
847
- if (!r1 || !r2) {
848
- return false;
849
- }
850
- return r2.left <= r1.left && r2.top <= r1.top && r2.right >= r1.right && r2.bottom >= r1.bottom;
851
- }
852
- /**--------------------------------------------------------------------------
853
- * find if rectangles do not overlap the left and top sides
854
- --------------------------------------------------------------------------*/
855
- _isInsideLeftTopRect(r1, r2) {
856
- if (!r1 || !r2) {
857
- return false;
858
- }
859
- const r1Inside = r2.left <= r1.left && r2.top <= r1.top;
860
- const r2Inside = r1.left <= r2.left && r1.top <= r2.top;
861
- return r1Inside || r2Inside;
862
- }
863
- /**--------------------------------------------------------------------------
864
- * get position of r1 aligned with the r2 sides
865
- --------------------------------------------------------------------------*/
866
- getAlignedPosition(r1, r2) {
867
- if (!r1 || !r2) {
868
- return { x: 0, y: 0 };
869
- }
870
- const to = { x: r1.x, y: r1.y };
871
- //align left or right sides. preferably left
872
- if (r1.left < r2.left) {
873
- to.x = r2.x;
874
- }
875
- else if (r1.right > r2.right) {
876
- to.x = r2.right - r1.width;
877
- }
878
- //align top or bottom. preferably top
879
- if (r1.top < r2.top) {
880
- to.y = r2.y;
881
- }
882
- else if (r1.bottom > r2.bottom) {
883
- to.y = r2.bottom - r1.height;
884
- }
885
- return to;
886
- }
887
- /**--------------------------------------------------------------------------
888
- * get position of r1 aligned with the r2 left, top sides
889
- --------------------------------------------------------------------------*/
890
- _getAlignedLeftTopPosition(r1, r2) {
891
- if (!r1 || !r2) {
892
- return { x: 0, y: 0 };
893
- }
894
- const to = { x: r1.x, y: r1.y };
895
- //align left
896
- if (r1.left < r2.left) {
897
- to.x = r2.x;
898
- }
899
- //align top
900
- if (r1.top < r2.top) {
901
- to.y = r2.y;
902
- }
903
- return to;
904
- }
905
- /**--------------------------------------------------------------------------
906
- * translate rectangle by x, y
907
- --------------------------------------------------------------------------*/
908
- _translateRectangle(rect, translateX, translateY) {
909
- if (!rect) {
910
- return;
911
- }
912
- rect.x += translateX;
913
- rect.y += translateY;
914
- return rect;
915
- }
916
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LayoutManagerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
917
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LayoutManagerService, providedIn: 'root' }); }
918
- }
919
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LayoutManagerService, decorators: [{
920
- type: Injectable,
921
- args: [{
922
- providedIn: 'root'
923
- }]
924
- }], ctorParameters: () => [] });
925
-
1275
+ const DEFAULT_POSITION_LEFT$3 = 355;
1276
+ const DEFAULT_POSITION_TOP$3 = 355;
926
1277
  class BimplusFloatingBarHideObjectsComponent extends BimplusLocalizedWidgetComponent {
927
- constructor(translateService, layoutManagerService, element, cdr) {
1278
+ // export class BimplusFloatingBarHideObjectsComponent extends BimplusLocalizedWidgetComponent {
1279
+ constructor(translateService, layoutManagerService, element, cdr, resizeObserverService) {
928
1280
  super(translateService);
929
1281
  this.element = element;
930
1282
  this.cdr = cdr;
931
- this.hasViewChecked = false;
1283
+ this.resizeObserverService = resizeObserverService;
932
1284
  this.actionClicked = new EventEmitter();
933
1285
  this.noBody = true;
934
- this.isCollapsed = false;
935
1286
  this.isFocused = true;
936
1287
  // Items for the header content sub component
937
1288
  this.items = [];
1289
+ this.hasViewChecked = false;
1290
+ this.componentId = 'hide-menu-fp-id';
938
1291
  this.icon = 'ui-icon-hide-menu';
939
1292
  this.title = ""; // no tooltip info on Logo icon
940
1293
  this.focusSelectorId = 'hide-menu-id';
941
- // Must be defined in client app as
942
- // lib-bimplus-floating-bar-hide-objects{
943
- // top: 200px;
944
- // left: 600px;
945
- // }
946
- this.left = 355;
947
- this.top = 355;
1294
+ this.isCollapsed = false;
948
1295
  this.layoutManagerService = layoutManagerService;
949
1296
  }
950
- onLogoClicked(event) {
951
- this.isCollapsed = !this.isCollapsed;
952
- this.hasViewChecked = false; // Reset the flag
953
- event.stopPropagation(); // Stop event propagation
1297
+ ngOnInit() {
1298
+ // Subscribe to the observable
1299
+ this.layoutManagerService.registerObject(this.element, this.componentId, DEFAULT_POSITION_LEFT$3, DEFAULT_POSITION_TOP$3, '.floating-panel.visible', true);
1300
+ this.layoutManagerService.registeredItems$.subscribe((items) => {
1301
+ const layoutManagerItem = items.find((item) => item.id === this.componentId);
1302
+ this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
1303
+ });
954
1304
  }
955
- ngAfterViewChecked() {
956
- if (!this.hasViewChecked && !this.isCollapsed) {
957
- this.hasViewChecked = true; // Set the flag to prevent repeated execution
958
- this.cdr.detectChanges(); // Trigger change detection
959
- setTimeout(() => {
960
- const { deltaX, deltaY } = this.layoutManagerService.checkPosition(this.element, '.floating-panel.visible', this.left, this.top, 0, 0, true);
961
- this.left += deltaX;
962
- this.top += deltaY;
963
- });
964
- }
1305
+ ngOnDestroy() {
1306
+ // Unsubscribe to avoid memory leaks
1307
+ //this.layoutManagerService.registeredItems$.unsubscribe();
1308
+ console.log('floating bar hide onDestroy');
965
1309
  }
966
1310
  onDragElement(event) {
967
1311
  const deltaX1 = event[0];
968
1312
  const deltaY1 = event[1];
969
- const { deltaX, deltaY } = this.layoutManagerService.checkPosition(this.element, '.floating-panel.visible', this.left, this.top, deltaX1, deltaY1);
970
- this.left += deltaX;
971
- this.top += deltaY;
1313
+ this.layoutManagerService.checkPosition(this.componentId, "", undefined, deltaX1, deltaY1);
972
1314
  }
973
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHideObjectsComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
974
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarHideObjectsComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-hide-objects", inputs: { noBody: "noBody", isCollapsed: "isCollapsed", isFocused: "isFocused", items: "items", left: "left", top: "top" }, outputs: { actionClicked: "actionClicked" }, host: { properties: { "style.left.px": "this.left", "style.top.px": "this.top" } }, providers: [TranslateService, LayoutManagerService], usesInheritance: true, ngImport: i0, template: "<lib-bimplus-floating-bar\r\n id=\"hide-menu-fp-id\"\r\n class=\"hide-menu\"\r\n [noBody]=\"noBody\"\r\n [isCollapsed]=\"isCollapsed\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n\r\n\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [icon]=\"icon\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (logoClicked)=\"onLogoClicked($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n \r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n class=\"floating-bar-header-content\"\r\n [items]=\"items\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: BimplusFloatingBarComponent, selector: "lib-bimplus-floating-bar", inputs: ["noBody", "isCollapsed", "isFocused", "resizeEnabled", "autoCollapse", "focusSelector", "isVisible"] }, { kind: "component", type: BimplusFloatingBarDraggerComponent, selector: "lib-bimplus-floating-bar-dragger", inputs: ["isCollapsed"], outputs: ["dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderContentComponent, selector: "lib-bimplus-floating-bar-header-content", inputs: ["isCollapsed", "items"], outputs: ["actionClicked", "dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderLogoComponent, selector: "lib-bimplus-floating-bar-header-logo", inputs: ["icon", "isCollapsed", "title"], outputs: ["logoClicked", "dragElement"] }, { kind: "ngmodule", type: TranslateModule }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
1315
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHideObjectsComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: ResizeObserverService }], target: i0.ɵɵFactoryTarget.Component }); }
1316
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarHideObjectsComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-hide-objects", inputs: { noBody: "noBody", isFocused: "isFocused", items: "items" }, outputs: { actionClicked: "actionClicked" }, providers: [TranslateService], usesInheritance: true, ngImport: i0, template: "<lib-bimplus-floating-bar\r\n id=\"hide-menu-fp-id\"\r\n [id] = \"componentId\"\r\n class=\"hide-menu\"\r\n [noBody]=\"noBody\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n (resizedragging)=\"onDragElement($event)\"\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [parentId] = \"componentId\"\r\n [icon]=\"icon\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n\r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [parentId] = \"componentId\"\r\n class=\"floating-bar-header-content\"\r\n [items]=\"items\" \r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\" \r\n (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: BimplusFloatingBarComponent, selector: "lib-bimplus-floating-bar", inputs: ["noBody", "isFocused", "resizeEnabled", "autoCollapse", "focusSelector", "isVisible", "id"], outputs: ["resizedragging"] }, { kind: "component", type: BimplusFloatingBarDraggerComponent, selector: "lib-bimplus-floating-bar-dragger", inputs: ["isCollapsed", "parentId"], outputs: ["dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderContentComponent, selector: "lib-bimplus-floating-bar-header-content", inputs: ["isCollapsed", "parentId", "items"], outputs: ["actionClicked", "dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderLogoComponent, selector: "lib-bimplus-floating-bar-header-logo", inputs: ["icon", "isCollapsed", "parentId", "title"], outputs: ["dragElement"] }, { kind: "ngmodule", type: TranslateModule }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
975
1317
  }
976
1318
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHideObjectsComponent, decorators: [{
977
1319
  type: Component,
@@ -982,32 +1324,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
982
1324
  BimplusFloatingBarHeaderContentComponent,
983
1325
  BimplusFloatingBarHeaderLogoComponent,
984
1326
  TranslateModule,
985
- ], providers: [TranslateService, LayoutManagerService], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-floating-bar\r\n id=\"hide-menu-fp-id\"\r\n class=\"hide-menu\"\r\n [noBody]=\"noBody\"\r\n [isCollapsed]=\"isCollapsed\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n\r\n\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [icon]=\"icon\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (logoClicked)=\"onLogoClicked($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n \r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n class=\"floating-bar-header-content\"\r\n [items]=\"items\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"] }]
986
- }], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }], propDecorators: { actionClicked: [{
1327
+ ], providers: [TranslateService], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-floating-bar\r\n id=\"hide-menu-fp-id\"\r\n [id] = \"componentId\"\r\n class=\"hide-menu\"\r\n [noBody]=\"noBody\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n (resizedragging)=\"onDragElement($event)\"\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [parentId] = \"componentId\"\r\n [icon]=\"icon\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n\r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [parentId] = \"componentId\"\r\n class=\"floating-bar-header-content\"\r\n [items]=\"items\" \r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\" \r\n (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"] }]
1328
+ }], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: ResizeObserverService }], propDecorators: { actionClicked: [{
987
1329
  type: Output
988
1330
  }], noBody: [{
989
1331
  type: Input
990
- }], isCollapsed: [{
991
- type: Input
992
1332
  }], isFocused: [{
993
1333
  type: Input
994
1334
  }], items: [{
995
1335
  type: Input
996
- }], left: [{
997
- type: HostBinding,
998
- args: ['style.left.px']
999
- }, {
1000
- type: Input
1001
- }], top: [{
1002
- type: HostBinding,
1003
- args: ['style.top.px']
1004
- }, {
1005
- type: Input
1006
1336
  }] } });
1007
1337
 
1338
+ const DEFAULT_POSITION_LEFT$2 = 355;
1339
+ const DEFAULT_POSITION_TOP$2 = 320;
1008
1340
  class BimplusFloatingBarIsolationObjectsComponent extends BimplusLocalizedWidgetComponent {
1009
1341
  constructor(translateService, layoutManagerService, element, cdr) {
1010
1342
  super(translateService);
1343
+ this.layoutManagerService = layoutManagerService;
1011
1344
  this.element = element;
1012
1345
  this.cdr = cdr;
1013
1346
  this.hasViewChecked = false;
@@ -1017,12 +1350,17 @@ class BimplusFloatingBarIsolationObjectsComponent extends BimplusLocalizedWidget
1017
1350
  this.isFocused = true;
1018
1351
  // Items for the header content sub component
1019
1352
  this.items = [];
1020
- this.left = 355;
1021
- this.top = 320;
1022
1353
  this.icon = 'ui-icon-isolation-menu';
1023
1354
  this.title = ""; // no tooltip info on Logo icon
1024
1355
  this.focusSelectorId = 'isolation-menu-id';
1025
- this.layoutManagerService = layoutManagerService;
1356
+ this.componentId = 'isolation-menu-fp-id';
1357
+ }
1358
+ ngOnInit() {
1359
+ this.layoutManagerService.registerObject(this.element, this.componentId, DEFAULT_POSITION_LEFT$2, DEFAULT_POSITION_TOP$2, '.floating-panel.visible', true);
1360
+ this.layoutManagerService.registeredItems$.subscribe((items) => {
1361
+ const layoutManagerItem = items.find((item) => item.id === this.componentId);
1362
+ this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
1363
+ });
1026
1364
  }
1027
1365
  onLogoClicked(event) {
1028
1366
  this.isCollapsed = !this.isCollapsed;
@@ -1034,21 +1372,17 @@ class BimplusFloatingBarIsolationObjectsComponent extends BimplusLocalizedWidget
1034
1372
  this.hasViewChecked = true; // Set the flag to prevent repeated execution
1035
1373
  this.cdr.detectChanges(); // Trigger change detection
1036
1374
  setTimeout(() => {
1037
- const { deltaX, deltaY } = this.layoutManagerService.checkPosition(this.element, '.floating-panel.visible', this.left, this.top, 0, 0, true);
1038
- this.left += deltaX;
1039
- this.top += deltaY;
1375
+ this.layoutManagerService.checkPosition(this.componentId, '.floating-panel.visible', undefined, 0, 0, true);
1040
1376
  });
1041
1377
  }
1042
1378
  }
1043
1379
  onDragElement(event) {
1044
1380
  const deltaX1 = event[0];
1045
1381
  const deltaY1 = event[1];
1046
- const { deltaX, deltaY } = this.layoutManagerService.checkPosition(this.element, '.floating-panel.visible', this.left, this.top, deltaX1, deltaY1);
1047
- this.left += deltaX;
1048
- this.top += deltaY;
1382
+ this.layoutManagerService.checkPosition(this.componentId, '.floating-panel.visible', undefined, deltaX1, deltaY1);
1049
1383
  }
1050
1384
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarIsolationObjectsComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
1051
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarIsolationObjectsComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-isolation-objects", inputs: { noBody: "noBody", isCollapsed: "isCollapsed", isFocused: "isFocused", items: "items", left: "left", top: "top" }, outputs: { actionClicked: "actionClicked" }, host: { properties: { "style.left.px": "this.left", "style.top.px": "this.top" } }, providers: [TranslateService, LayoutManagerService], usesInheritance: true, ngImport: i0, template: "<lib-bimplus-floating-bar\r\n id=\"isolation-menu-fp-id\"\r\n class=\"isolation-menu\"\r\n [noBody]=\"noBody\"\r\n [isCollapsed]=\"isCollapsed\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [icon]=\"icon\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (logoClicked)=\"onLogoClicked($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n class=\"floating-bar-header-content\"\r\n [items]=\"items\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: BimplusFloatingBarComponent, selector: "lib-bimplus-floating-bar", inputs: ["noBody", "isCollapsed", "isFocused", "resizeEnabled", "autoCollapse", "focusSelector", "isVisible"] }, { kind: "component", type: BimplusFloatingBarDraggerComponent, selector: "lib-bimplus-floating-bar-dragger", inputs: ["isCollapsed"], outputs: ["dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderContentComponent, selector: "lib-bimplus-floating-bar-header-content", inputs: ["isCollapsed", "items"], outputs: ["actionClicked", "dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderLogoComponent, selector: "lib-bimplus-floating-bar-header-logo", inputs: ["icon", "isCollapsed", "title"], outputs: ["logoClicked", "dragElement"] }, { kind: "ngmodule", type: TranslateModule }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
1385
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarIsolationObjectsComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-isolation-objects", inputs: { noBody: "noBody", isCollapsed: "isCollapsed", isFocused: "isFocused", items: "items" }, outputs: { actionClicked: "actionClicked" }, providers: [TranslateService], usesInheritance: true, ngImport: i0, template: "<lib-bimplus-floating-bar\r\n id=\"isolation-menu-fp-id\"\r\n [id] = \"componentId\"\r\n class=\"isolation-menu\"\r\n [noBody]=\"noBody\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n (resizedragging)=\"onDragElement($event)\"\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [parentId] = \"componentId\"\r\n [icon]=\"icon\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n class=\"floating-bar-header-content\"\r\n [items]=\"items\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: BimplusFloatingBarComponent, selector: "lib-bimplus-floating-bar", inputs: ["noBody", "isFocused", "resizeEnabled", "autoCollapse", "focusSelector", "isVisible", "id"], outputs: ["resizedragging"] }, { kind: "component", type: BimplusFloatingBarDraggerComponent, selector: "lib-bimplus-floating-bar-dragger", inputs: ["isCollapsed", "parentId"], outputs: ["dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderContentComponent, selector: "lib-bimplus-floating-bar-header-content", inputs: ["isCollapsed", "parentId", "items"], outputs: ["actionClicked", "dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderLogoComponent, selector: "lib-bimplus-floating-bar-header-logo", inputs: ["icon", "isCollapsed", "parentId", "title"], outputs: ["dragElement"] }, { kind: "ngmodule", type: TranslateModule }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
1052
1386
  }
1053
1387
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarIsolationObjectsComponent, decorators: [{
1054
1388
  type: Component,
@@ -1059,7 +1393,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
1059
1393
  BimplusFloatingBarHeaderContentComponent,
1060
1394
  BimplusFloatingBarHeaderLogoComponent,
1061
1395
  TranslateModule,
1062
- ], providers: [TranslateService, LayoutManagerService], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-floating-bar\r\n id=\"isolation-menu-fp-id\"\r\n class=\"isolation-menu\"\r\n [noBody]=\"noBody\"\r\n [isCollapsed]=\"isCollapsed\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [icon]=\"icon\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (logoClicked)=\"onLogoClicked($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n class=\"floating-bar-header-content\"\r\n [items]=\"items\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"] }]
1396
+ ], providers: [TranslateService], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-floating-bar\r\n id=\"isolation-menu-fp-id\"\r\n [id] = \"componentId\"\r\n class=\"isolation-menu\"\r\n [noBody]=\"noBody\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n (resizedragging)=\"onDragElement($event)\"\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [parentId] = \"componentId\"\r\n [icon]=\"icon\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n class=\"floating-bar-header-content\"\r\n [items]=\"items\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}\n"] }]
1063
1397
  }], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }], propDecorators: { actionClicked: [{
1064
1398
  type: Output
1065
1399
  }], noBody: [{
@@ -1070,16 +1404,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
1070
1404
  type: Input
1071
1405
  }], items: [{
1072
1406
  type: Input
1073
- }], left: [{
1074
- type: HostBinding,
1075
- args: ['style.left.px']
1076
- }, {
1077
- type: Input
1078
- }], top: [{
1079
- type: HostBinding,
1080
- args: ['style.top.px']
1081
- }, {
1082
- type: Input
1083
1407
  }] } });
1084
1408
 
1085
1409
  class BimplusFloatingBarBodyComponent extends BimplusLocalizedWidgetComponent {
@@ -1163,9 +1487,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
1163
1487
  type: Input
1164
1488
  }] } });
1165
1489
 
1490
+ //import { Component, EventEmitter, HostBinding, Input, Output, ViewEncapsulation, ElementRef,AfterViewChecked, ChangeDetectorRef } from '@angular/core';
1491
+ const DEFAULT_POSITION_LEFT$1 = 355;
1492
+ const DEFAULT_POSITION_TOP$1 = 20;
1166
1493
  class BimplusFloatingBarProjectNavigatorComponent extends BimplusLocalizedWidgetComponent {
1167
1494
  constructor(translateService, layoutManagerService, element, cdr) {
1168
1495
  super(translateService);
1496
+ this.layoutManagerService = layoutManagerService;
1169
1497
  this.element = element;
1170
1498
  this.cdr = cdr;
1171
1499
  this.hasViewChecked = false;
@@ -1175,10 +1503,9 @@ class BimplusFloatingBarProjectNavigatorComponent extends BimplusLocalizedWidget
1175
1503
  this.noModelsMessage = undefined;
1176
1504
  this.isLoading = false;
1177
1505
  this.loadingDataMessage = undefined;
1178
- this.left = 355;
1179
- this.top = 20;
1180
1506
  this.icon = 'ui-icon-project-navigator';
1181
1507
  this.title = '_Project_navigator';
1508
+ this.componentId = 'project-navigator-fp-id';
1182
1509
  // Header content (like IFC export button)
1183
1510
  this.items = [];
1184
1511
  this.actionClicked = new EventEmitter();
@@ -1193,7 +1520,13 @@ class BimplusFloatingBarProjectNavigatorComponent extends BimplusLocalizedWidget
1193
1520
  this.toggleVisibilityOfModel = new EventEmitter();
1194
1521
  this.toggleVisibilityOfLayer = new EventEmitter();
1195
1522
  this.logoClicked = new EventEmitter();
1196
- this.layoutManagerService = layoutManagerService;
1523
+ }
1524
+ ngOnInit() {
1525
+ this.layoutManagerService.registerObject(this.element, this.componentId, DEFAULT_POSITION_LEFT$1, DEFAULT_POSITION_TOP$1, '.floating-panel.visible', true);
1526
+ this.layoutManagerService.registeredItems$.subscribe((items) => {
1527
+ const layoutManagerItem = items.find((item) => item.id === this.componentId);
1528
+ this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
1529
+ });
1197
1530
  }
1198
1531
  // #region General bar handling
1199
1532
  // Event handler for logoClicked
@@ -1209,21 +1542,17 @@ class BimplusFloatingBarProjectNavigatorComponent extends BimplusLocalizedWidget
1209
1542
  this.hasViewChecked = true; // Set the flag to prevent repeated execution
1210
1543
  this.cdr.detectChanges(); // Trigger change detection
1211
1544
  setTimeout(() => {
1212
- const { deltaX, deltaY } = this.layoutManagerService.checkPosition(this.element, '.floating-panel.visible', this.left, this.top, 0, 0, true);
1213
- this.left += deltaX;
1214
- this.top += deltaY;
1545
+ this.layoutManagerService.checkPosition(this.componentId, '.floating-panel.visible', undefined, 0, 0, true);
1215
1546
  });
1216
1547
  }
1217
1548
  }
1218
1549
  onDragElement(event) {
1219
1550
  const deltaX1 = event[0];
1220
1551
  const deltaY1 = event[1];
1221
- const { deltaX, deltaY } = this.layoutManagerService.checkPosition(this.element, '.floating-panel.visible', this.left, this.top, deltaX1, deltaY1);
1222
- this.left += deltaX;
1223
- this.top += deltaY;
1552
+ this.layoutManagerService.checkPosition(this.componentId, '.floating-panel.visible', undefined, deltaX1, deltaY1);
1224
1553
  }
1225
1554
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarProjectNavigatorComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
1226
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.10", type: BimplusFloatingBarProjectNavigatorComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-project-navigator", inputs: { noBody: "noBody", isCollapsed: "isCollapsed", noModelsMessage: "noModelsMessage", isLoading: "isLoading", loadingDataMessage: "loadingDataMessage", left: "left", top: "top", items: "items", isPanelToolbarVisible: "isPanelToolbarVisible", expandedModelTree: "expandedModelTree", project: "project" }, outputs: { actionClicked: "actionClicked", clickedModel: "clickedModel", clickedLayer: "clickedLayer", toggleOpacityOfModel: "toggleOpacityOfModel", toggleOpacityOfLayer: "toggleOpacityOfLayer", toggleVisibilityOfModel: "toggleVisibilityOfModel", toggleVisibilityOfLayer: "toggleVisibilityOfLayer", logoClicked: "logoClicked" }, host: { properties: { "style.left.px": "this.left", "style.top.px": "this.top" } }, providers: [TranslateService, LayoutManagerService], usesInheritance: true, ngImport: i0, template: "<lib-bimplus-floating-bar\r\n id=\"project-navigator-fp-id\"\r\n class=\"project-navigator-fp floating-panel\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [noBody]=\"noBody\"\r\n [isCollapsed]=\"isCollapsed\"\r\n [resizeEnabled]=\"false\"\r\n [isVisible]=\"true\" \r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [icon]=\"icon\"\r\n [title]=\"title\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (logoClicked)=\"onLogoClicked($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n class=\"floating-bar-header-content\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [items]=\"items\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n\r\n <lib-bimplus-floating-bar-body\r\n class=\"floating-bar-body\"\r\n [isCollapsed]=\"isCollapsed\"\r\n >\r\n <lib-bimplus-panel-toolbar\r\n [isPanelToolbarVisible]=\"isPanelToolbarVisible\"\r\n ></lib-bimplus-panel-toolbar>\r\n\r\n @if(isLoading && loadingDataMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"loadingDataMessage | translate\"></span>\r\n }\r\n @else{ \r\n @if(project.models.length === 0 && noModelsMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"noModelsMessage | translate\"></span>\r\n }@else{\r\n <lib-bimplus-scrollable-container>\r\n <lib-project-models\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [models]=\"project.models\"\r\n [modelTreeRootTitle]=\"project.name + ' - ' + project.teamSlug\"\r\n [expandedModelTree]=\"expandedModelTree\"\r\n (clickedModel)=\"clickedModel.emit($event)\"\r\n (clickedLayer)=\"clickedLayer.emit($event)\"\r\n (toggleOpacityOfModel)=\"toggleOpacityOfModel.emit($event)\"\r\n (toggleOpacityOfLayer)=\"toggleOpacityOfLayer.emit($event)\"\r\n (toggleVisibilityOfModel)=\"toggleVisibilityOfModel.emit($event)\"\r\n (toggleVisibilityOfLayer)=\"toggleVisibilityOfLayer.emit($event)\"\r\n >\r\n </lib-project-models>\r\n </lib-bimplus-scrollable-container>\r\n }\r\n }\r\n </lib-bimplus-floating-bar-body>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}lib-bimplus-scrollable-container{min-width:30rem;height:100%;--scrollable-container-paddin-right: 1rem}lib-project-models{margin-right:1.4rem}.project-navigator-fp{pointer-events:none;position:absolute;top:0;left:0}.project-navigator-fp .scene-selector{padding-left:.6rem;padding-right:.9rem;margin-bottom:.6rem}.project-navigator-fp .saved-scenes-select{margin-left:.6rem;margin-right:.6rem}.project-navigator-fp .scene-options{display:flex;flex:1 1 auto;flex-direction:row;align-items:center;justify-content:center}.project-navigator-fp .scene-options .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .scene-options .only-icon-button{flex:1 1 auto}.project-navigator-fp .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .bim-item-refresh{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem;background-size:2rem 2rem;cursor:pointer}.project-navigator-fp .bim-item-refresh.disabled{cursor:default}.project-navigator-fp.floating-panel{min-width:32.5rem;min-height:14rem;max-width:52.9rem}.project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.project-navigator-fp.floating-panel .floating-panel__body{padding-bottom:1.2rem;-webkit-user-select:none;user-select:none}.project-navigator-fp.floating-panel .floating-panel__body .bim-divisions-view .jstree-component{margin-top:0}.project-navigator-fp.floating-panel .floating-panel__header-content{justify-content:flex-end}.project-navigator-fp.floating-panel .ifc-export-container{height:3.2rem;width:3rem}.project-navigator-fp .model-topology-container{height:100%}.project-navigator-fp .model-topology-container.nodisplay{display:none}.project-navigator-fp .inline-message{padding:1.2rem}.is-touch .project-navigator-fp.floating-panel{min-width:27.5rem}.is-touch .project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.is-touch .project-navigator-fp.floating-panel .floating-panel__resizerNE{background:transparent}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: BimplusFloatingBarComponent, selector: "lib-bimplus-floating-bar", inputs: ["noBody", "isCollapsed", "isFocused", "resizeEnabled", "autoCollapse", "focusSelector", "isVisible"] }, { kind: "component", type: BimplusFloatingBarDraggerComponent, selector: "lib-bimplus-floating-bar-dragger", inputs: ["isCollapsed"], outputs: ["dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderContentComponent, selector: "lib-bimplus-floating-bar-header-content", inputs: ["isCollapsed", "items"], outputs: ["actionClicked", "dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderLogoComponent, selector: "lib-bimplus-floating-bar-header-logo", inputs: ["icon", "isCollapsed", "title"], outputs: ["logoClicked", "dragElement"] }, { kind: "component", type: BimplusFloatingBarBodyComponent, selector: "lib-bimplus-floating-bar-body", inputs: ["isCollapsed"] }, { kind: "component", type: BimplusPanelToolbarComponent, selector: "lib-bimplus-panel-toolbar", inputs: ["isPanelToolbarVisible"] }, { kind: "component", type: ProjectModelsComponent, selector: "lib-project-models", inputs: ["modelTreeRootTitle", "modelTreeRootName", "expandedModelTree", "models"], outputs: ["clickedModel", "clickedLayer", "toggleOpacityOfModel", "toggleOpacityOfLayer", "toggleVisibilityOfModel", "toggleVisibilityOfLayer"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }, { kind: "component", type: BimplusScrollableContainerComponent, selector: "lib-bimplus-scrollable-container" }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
1555
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.10", type: BimplusFloatingBarProjectNavigatorComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-project-navigator", inputs: { noBody: "noBody", isCollapsed: "isCollapsed", noModelsMessage: "noModelsMessage", isLoading: "isLoading", loadingDataMessage: "loadingDataMessage", items: "items", isPanelToolbarVisible: "isPanelToolbarVisible", expandedModelTree: "expandedModelTree", project: "project" }, outputs: { actionClicked: "actionClicked", clickedModel: "clickedModel", clickedLayer: "clickedLayer", toggleOpacityOfModel: "toggleOpacityOfModel", toggleOpacityOfLayer: "toggleOpacityOfLayer", toggleVisibilityOfModel: "toggleVisibilityOfModel", toggleVisibilityOfLayer: "toggleVisibilityOfLayer", logoClicked: "logoClicked" }, providers: [TranslateService], usesInheritance: true, ngImport: i0, template: "<lib-bimplus-floating-bar\r\n id=\"project-navigator-fp-id\"\r\n [id] = \"componentId\"\r\n class=\"project-navigator-fp floating-panel\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [noBody]=\"noBody\" \r\n [resizeEnabled]=\"false\"\r\n [isVisible]=\"true\" \r\n (resizedragging)=\"onDragElement($event)\"\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [parentId] = \"componentId\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [icon]=\"icon\"\r\n [title]=\"title\"\r\n [isCollapsed]=\"isCollapsed\" \r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n class=\"floating-bar-header-content\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [items]=\"items\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n\r\n <lib-bimplus-floating-bar-body\r\n class=\"floating-bar-body\"\r\n [isCollapsed]=\"isCollapsed\"\r\n >\r\n <lib-bimplus-panel-toolbar\r\n [isPanelToolbarVisible]=\"isPanelToolbarVisible\"\r\n ></lib-bimplus-panel-toolbar>\r\n\r\n @if(isLoading && loadingDataMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"loadingDataMessage | translate\"></span>\r\n }\r\n @else{ \r\n @if(project.models.length === 0 && noModelsMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"noModelsMessage | translate\"></span>\r\n }@else{\r\n <lib-bimplus-scrollable-container>\r\n <lib-project-models\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [models]=\"project.models\"\r\n [modelTreeRootTitle]=\"project.name + ' - ' + project.teamSlug\"\r\n [expandedModelTree]=\"expandedModelTree\"\r\n (clickedModel)=\"clickedModel.emit($event)\"\r\n (clickedLayer)=\"clickedLayer.emit($event)\"\r\n (toggleOpacityOfModel)=\"toggleOpacityOfModel.emit($event)\"\r\n (toggleOpacityOfLayer)=\"toggleOpacityOfLayer.emit($event)\"\r\n (toggleVisibilityOfModel)=\"toggleVisibilityOfModel.emit($event)\"\r\n (toggleVisibilityOfLayer)=\"toggleVisibilityOfLayer.emit($event)\"\r\n >\r\n </lib-project-models>\r\n </lib-bimplus-scrollable-container>\r\n }\r\n }\r\n </lib-bimplus-floating-bar-body>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}lib-bimplus-scrollable-container{min-width:30rem;height:100%;--scrollable-container-paddin-right: 1rem}lib-project-models{margin-right:1.4rem}.project-navigator-fp{pointer-events:none;position:absolute;top:0;left:0}.project-navigator-fp .scene-selector{padding-left:.6rem;padding-right:.9rem;margin-bottom:.6rem}.project-navigator-fp .saved-scenes-select{margin-left:.6rem;margin-right:.6rem}.project-navigator-fp .scene-options{display:flex;flex:1 1 auto;flex-direction:row;align-items:center;justify-content:center}.project-navigator-fp .scene-options .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .scene-options .only-icon-button{flex:1 1 auto}.project-navigator-fp .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .bim-item-refresh{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem;background-size:2rem 2rem;cursor:pointer}.project-navigator-fp .bim-item-refresh.disabled{cursor:default}.project-navigator-fp.floating-panel{min-width:32.5rem;min-height:14rem;max-width:52.9rem}.project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.project-navigator-fp.floating-panel .floating-panel__body{padding-bottom:1.2rem;-webkit-user-select:none;user-select:none}.project-navigator-fp.floating-panel .floating-panel__body .bim-divisions-view .jstree-component{margin-top:0}.project-navigator-fp.floating-panel .floating-panel__header-content{justify-content:flex-end}.project-navigator-fp.floating-panel .ifc-export-container{height:3.2rem;width:3rem}.project-navigator-fp .model-topology-container{height:100%}.project-navigator-fp .model-topology-container.nodisplay{display:none}.project-navigator-fp .inline-message{padding:1.2rem}.is-touch .project-navigator-fp.floating-panel{min-width:27.5rem}.is-touch .project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.is-touch .project-navigator-fp.floating-panel .floating-panel__resizerNE{background:transparent}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: BimplusFloatingBarComponent, selector: "lib-bimplus-floating-bar", inputs: ["noBody", "isFocused", "resizeEnabled", "autoCollapse", "focusSelector", "isVisible", "id"], outputs: ["resizedragging"] }, { kind: "component", type: BimplusFloatingBarDraggerComponent, selector: "lib-bimplus-floating-bar-dragger", inputs: ["isCollapsed", "parentId"], outputs: ["dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderContentComponent, selector: "lib-bimplus-floating-bar-header-content", inputs: ["isCollapsed", "parentId", "items"], outputs: ["actionClicked", "dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderLogoComponent, selector: "lib-bimplus-floating-bar-header-logo", inputs: ["icon", "isCollapsed", "parentId", "title"], outputs: ["dragElement"] }, { kind: "component", type: BimplusFloatingBarBodyComponent, selector: "lib-bimplus-floating-bar-body", inputs: ["isCollapsed"] }, { kind: "component", type: BimplusPanelToolbarComponent, selector: "lib-bimplus-panel-toolbar", inputs: ["isPanelToolbarVisible"] }, { kind: "component", type: ProjectModelsComponent, selector: "lib-project-models", inputs: ["modelTreeRootTitle", "modelTreeRootName", "expandedModelTree", "models"], outputs: ["clickedModel", "clickedLayer", "toggleOpacityOfModel", "toggleOpacityOfLayer", "toggleVisibilityOfModel", "toggleVisibilityOfLayer"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }, { kind: "component", type: BimplusScrollableContainerComponent, selector: "lib-bimplus-scrollable-container" }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
1227
1556
  }
1228
1557
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarProjectNavigatorComponent, decorators: [{
1229
1558
  type: Component,
@@ -1238,7 +1567,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
1238
1567
  ProjectModelsComponent,
1239
1568
  TranslateModule,
1240
1569
  BimplusScrollableContainerComponent
1241
- ], providers: [TranslateService, LayoutManagerService], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-floating-bar\r\n id=\"project-navigator-fp-id\"\r\n class=\"project-navigator-fp floating-panel\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [noBody]=\"noBody\"\r\n [isCollapsed]=\"isCollapsed\"\r\n [resizeEnabled]=\"false\"\r\n [isVisible]=\"true\" \r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [icon]=\"icon\"\r\n [title]=\"title\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (logoClicked)=\"onLogoClicked($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n class=\"floating-bar-header-content\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [items]=\"items\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n\r\n <lib-bimplus-floating-bar-body\r\n class=\"floating-bar-body\"\r\n [isCollapsed]=\"isCollapsed\"\r\n >\r\n <lib-bimplus-panel-toolbar\r\n [isPanelToolbarVisible]=\"isPanelToolbarVisible\"\r\n ></lib-bimplus-panel-toolbar>\r\n\r\n @if(isLoading && loadingDataMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"loadingDataMessage | translate\"></span>\r\n }\r\n @else{ \r\n @if(project.models.length === 0 && noModelsMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"noModelsMessage | translate\"></span>\r\n }@else{\r\n <lib-bimplus-scrollable-container>\r\n <lib-project-models\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [models]=\"project.models\"\r\n [modelTreeRootTitle]=\"project.name + ' - ' + project.teamSlug\"\r\n [expandedModelTree]=\"expandedModelTree\"\r\n (clickedModel)=\"clickedModel.emit($event)\"\r\n (clickedLayer)=\"clickedLayer.emit($event)\"\r\n (toggleOpacityOfModel)=\"toggleOpacityOfModel.emit($event)\"\r\n (toggleOpacityOfLayer)=\"toggleOpacityOfLayer.emit($event)\"\r\n (toggleVisibilityOfModel)=\"toggleVisibilityOfModel.emit($event)\"\r\n (toggleVisibilityOfLayer)=\"toggleVisibilityOfLayer.emit($event)\"\r\n >\r\n </lib-project-models>\r\n </lib-bimplus-scrollable-container>\r\n }\r\n }\r\n </lib-bimplus-floating-bar-body>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}lib-bimplus-scrollable-container{min-width:30rem;height:100%;--scrollable-container-paddin-right: 1rem}lib-project-models{margin-right:1.4rem}.project-navigator-fp{pointer-events:none;position:absolute;top:0;left:0}.project-navigator-fp .scene-selector{padding-left:.6rem;padding-right:.9rem;margin-bottom:.6rem}.project-navigator-fp .saved-scenes-select{margin-left:.6rem;margin-right:.6rem}.project-navigator-fp .scene-options{display:flex;flex:1 1 auto;flex-direction:row;align-items:center;justify-content:center}.project-navigator-fp .scene-options .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .scene-options .only-icon-button{flex:1 1 auto}.project-navigator-fp .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .bim-item-refresh{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem;background-size:2rem 2rem;cursor:pointer}.project-navigator-fp .bim-item-refresh.disabled{cursor:default}.project-navigator-fp.floating-panel{min-width:32.5rem;min-height:14rem;max-width:52.9rem}.project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.project-navigator-fp.floating-panel .floating-panel__body{padding-bottom:1.2rem;-webkit-user-select:none;user-select:none}.project-navigator-fp.floating-panel .floating-panel__body .bim-divisions-view .jstree-component{margin-top:0}.project-navigator-fp.floating-panel .floating-panel__header-content{justify-content:flex-end}.project-navigator-fp.floating-panel .ifc-export-container{height:3.2rem;width:3rem}.project-navigator-fp .model-topology-container{height:100%}.project-navigator-fp .model-topology-container.nodisplay{display:none}.project-navigator-fp .inline-message{padding:1.2rem}.is-touch .project-navigator-fp.floating-panel{min-width:27.5rem}.is-touch .project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.is-touch .project-navigator-fp.floating-panel .floating-panel__resizerNE{background:transparent}\n"] }]
1570
+ ], providers: [TranslateService], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-floating-bar\r\n id=\"project-navigator-fp-id\"\r\n [id] = \"componentId\"\r\n class=\"project-navigator-fp floating-panel\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [noBody]=\"noBody\" \r\n [resizeEnabled]=\"false\"\r\n [isVisible]=\"true\" \r\n (resizedragging)=\"onDragElement($event)\"\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [parentId] = \"componentId\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [icon]=\"icon\"\r\n [title]=\"title\"\r\n [isCollapsed]=\"isCollapsed\" \r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n class=\"floating-bar-header-content\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [items]=\"items\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n\r\n <lib-bimplus-floating-bar-body\r\n class=\"floating-bar-body\"\r\n [isCollapsed]=\"isCollapsed\"\r\n >\r\n <lib-bimplus-panel-toolbar\r\n [isPanelToolbarVisible]=\"isPanelToolbarVisible\"\r\n ></lib-bimplus-panel-toolbar>\r\n\r\n @if(isLoading && loadingDataMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"loadingDataMessage | translate\"></span>\r\n }\r\n @else{ \r\n @if(project.models.length === 0 && noModelsMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"noModelsMessage | translate\"></span>\r\n }@else{\r\n <lib-bimplus-scrollable-container>\r\n <lib-project-models\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [models]=\"project.models\"\r\n [modelTreeRootTitle]=\"project.name + ' - ' + project.teamSlug\"\r\n [expandedModelTree]=\"expandedModelTree\"\r\n (clickedModel)=\"clickedModel.emit($event)\"\r\n (clickedLayer)=\"clickedLayer.emit($event)\"\r\n (toggleOpacityOfModel)=\"toggleOpacityOfModel.emit($event)\"\r\n (toggleOpacityOfLayer)=\"toggleOpacityOfLayer.emit($event)\"\r\n (toggleVisibilityOfModel)=\"toggleVisibilityOfModel.emit($event)\"\r\n (toggleVisibilityOfLayer)=\"toggleVisibilityOfLayer.emit($event)\"\r\n >\r\n </lib-project-models>\r\n </lib-bimplus-scrollable-container>\r\n }\r\n }\r\n </lib-bimplus-floating-bar-body>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{max-height:400px;min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}lib-bimplus-scrollable-container{min-width:30rem;height:100%;--scrollable-container-paddin-right: 1rem}lib-project-models{margin-right:1.4rem}.project-navigator-fp{pointer-events:none;position:absolute;top:0;left:0}.project-navigator-fp .scene-selector{padding-left:.6rem;padding-right:.9rem;margin-bottom:.6rem}.project-navigator-fp .saved-scenes-select{margin-left:.6rem;margin-right:.6rem}.project-navigator-fp .scene-options{display:flex;flex:1 1 auto;flex-direction:row;align-items:center;justify-content:center}.project-navigator-fp .scene-options .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .scene-options .only-icon-button{flex:1 1 auto}.project-navigator-fp .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .bim-item-refresh{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem;background-size:2rem 2rem;cursor:pointer}.project-navigator-fp .bim-item-refresh.disabled{cursor:default}.project-navigator-fp.floating-panel{min-width:32.5rem;min-height:14rem;max-width:52.9rem}.project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.project-navigator-fp.floating-panel .floating-panel__body{padding-bottom:1.2rem;-webkit-user-select:none;user-select:none}.project-navigator-fp.floating-panel .floating-panel__body .bim-divisions-view .jstree-component{margin-top:0}.project-navigator-fp.floating-panel .floating-panel__header-content{justify-content:flex-end}.project-navigator-fp.floating-panel .ifc-export-container{height:3.2rem;width:3rem}.project-navigator-fp .model-topology-container{height:100%}.project-navigator-fp .model-topology-container.nodisplay{display:none}.project-navigator-fp .inline-message{padding:1.2rem}.is-touch .project-navigator-fp.floating-panel{min-width:27.5rem}.is-touch .project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.is-touch .project-navigator-fp.floating-panel .floating-panel__resizerNE{background:transparent}\n"] }]
1242
1571
  }], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }], propDecorators: { noBody: [{
1243
1572
  type: Input
1244
1573
  }], isCollapsed: [{
@@ -1249,16 +1578,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
1249
1578
  type: Input
1250
1579
  }], loadingDataMessage: [{
1251
1580
  type: Input
1252
- }], left: [{
1253
- type: HostBinding,
1254
- args: ['style.left.px']
1255
- }, {
1256
- type: Input
1257
- }], top: [{
1258
- type: HostBinding,
1259
- args: ['style.top.px']
1260
- }, {
1261
- type: Input
1262
1581
  }], items: [{
1263
1582
  type: Input
1264
1583
  }], actionClicked: [{
@@ -1529,6 +1848,7 @@ class BimplusMainMenuComponent extends BimplusLocalizedWidgetComponent {
1529
1848
  this.teammembersDisabled = false;
1530
1849
  this.propertymanagerDisabled = false;
1531
1850
  this.shopDisabled = false;
1851
+ this.addinsDisabled = false;
1532
1852
  this.openProjectVisible = true;
1533
1853
  this.bimplusProjectMenuVisible = true;
1534
1854
  this.projectmembersVisible = true;
@@ -1542,6 +1862,7 @@ class BimplusMainMenuComponent extends BimplusLocalizedWidgetComponent {
1542
1862
  this.teammembersVisible = true;
1543
1863
  this.propertymanagerVisible = true;
1544
1864
  this.shopVisible = true;
1865
+ this.addinsVisible = true;
1545
1866
  this.dividerprojectmanagementVisible = true;
1546
1867
  this.dividerappsVisible = true;
1547
1868
  this.appsWithInfo = [];
@@ -1565,7 +1886,8 @@ class BimplusMainMenuComponent extends BimplusLocalizedWidgetComponent {
1565
1886
  { action: "propertymanager", id: "portalPropertyManagerBtn", type: "", class: "bim-mm-icon-property-manager", textId: "_Portal_Menu_Properties", textIdDisabled: "_Portal_Menu_Properties", disabledTitle: '', checkSubscription: true, devOrStageOnly: false, clickPolicy: "" },
1566
1887
  ];
1567
1888
  this._menuFooterList = [
1568
- { action: "shop", id: "portalShopBtn", type: "", class: "bim-mm-icon-shop", textId: "_Shop", textIdDisabled: "_Shop", disabledTitle: '', checkSubscription: false, devOrStageOnly: false, clickPolicy: "" },
1889
+ { action: "addins", id: "portalAddInsBtn", type: "", class: "bim-mm-icon-add-ins", textId: "_AddIns", textIdDisabled: "_AddIns", disabledTitle: '', checkSubscription: false, devOrStageOnly: false, clickPolicy: "" },
1890
+ { action: "shop", id: "portalShopBtn", type: "", class: "bim-mm-icon-shop", textId: "_Shop", textIdDisabled: "_Shop", disabledTitle: '', checkSubscription: false, devOrStageOnly: false, clickPolicy: "" }
1569
1891
  ];
1570
1892
  }
1571
1893
  ngOnChanges(changes) {
@@ -1639,11 +1961,11 @@ class BimplusMainMenuComponent extends BimplusLocalizedWidgetComponent {
1639
1961
  fireEvent(this, "bimplusMainMenuClicked", { action, type: type });
1640
1962
  }
1641
1963
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusMainMenuComponent, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
1642
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.10", type: BimplusMainMenuComponent, isStandalone: true, selector: "lib-bimplus-main-menu", inputs: { isEmbedded: ["isEmbedded", "isEmbedded", booleanAttribute], isTouch: ["isTouch", "isTouch", booleanAttribute], isIpadApp: ["isIpadApp", "isIpadApp", booleanAttribute], isDev: ["isDev", "isDev", booleanAttribute], isStage: ["isStage", "isStage", booleanAttribute], hideProjectMenuIcons: ["hideProjectMenuIcons", "hideProjectMenuIcons", booleanAttribute], showHorizontalMenuIcons: ["showHorizontalMenuIcons", "showHorizontalMenuIcons", booleanAttribute], projectName: "projectName", projectImageUrl: "projectImageUrl", projectExplorerUrl: "projectExplorerUrl", projectActiveItem: "projectActiveItem", projectmembersDisabled: ["projectmembersDisabled", "projectmembersDisabled", booleanAttribute], modelsDisabled: ["modelsDisabled", "modelsDisabled", booleanAttribute], documentsDisabled: ["documentsDisabled", "documentsDisabled", booleanAttribute], projectsettingsDisabled: ["projectsettingsDisabled", "projectsettingsDisabled", booleanAttribute], processesDisabled: ["processesDisabled", "processesDisabled", booleanAttribute], footerActiveItem: "footerActiveItem", menuActiveItem: "menuActiveItem", isCollapsed: ["isCollapsed", "isCollapsed", booleanAttribute], showOverlay: ["showOverlay", "showOverlay", booleanAttribute], teammembersSubscribed: ["teammembersSubscribed", "teammembersSubscribed", booleanAttribute], propertymanagerSubscribed: ["propertymanagerSubscribed", "propertymanagerSubscribed", booleanAttribute], autoconverterSubscribed: ["autoconverterSubscribed", "autoconverterSubscribed", booleanAttribute], connexisSubscribed: ["connexisSubscribed", "connexisSubscribed", booleanAttribute], openProjectDisabled: ["openProjectDisabled", "openProjectDisabled", booleanAttribute], bimexplorerDisabled: ["bimexplorerDisabled", "bimexplorerDisabled", booleanAttribute], autoconverterDisabled: ["autoconverterDisabled", "autoconverterDisabled", booleanAttribute], connexisDisabled: ["connexisDisabled", "connexisDisabled", booleanAttribute], teammembersDisabled: ["teammembersDisabled", "teammembersDisabled", booleanAttribute], propertymanagerDisabled: ["propertymanagerDisabled", "propertymanagerDisabled", booleanAttribute], shopDisabled: ["shopDisabled", "shopDisabled", booleanAttribute], openProjectVisible: ["openProjectVisible", "openProjectVisible", booleanAttribute], bimplusProjectMenuVisible: ["bimplusProjectMenuVisible", "bimplusProjectMenuVisible", booleanAttribute], projectmembersVisible: ["projectmembersVisible", "projectmembersVisible", booleanAttribute], modelsVisible: ["modelsVisible", "modelsVisible", booleanAttribute], documentsVisible: ["documentsVisible", "documentsVisible", booleanAttribute], projectsettingsVisible: ["projectsettingsVisible", "projectsettingsVisible", booleanAttribute], processesVisible: ["processesVisible", "processesVisible", booleanAttribute], bimexplorerVisible: ["bimexplorerVisible", "bimexplorerVisible", booleanAttribute], autoconverterVisible: ["autoconverterVisible", "autoconverterVisible", booleanAttribute], connexisVisible: ["connexisVisible", "connexisVisible", booleanAttribute], teammembersVisible: ["teammembersVisible", "teammembersVisible", booleanAttribute], propertymanagerVisible: ["propertymanagerVisible", "propertymanagerVisible", booleanAttribute], shopVisible: ["shopVisible", "shopVisible", booleanAttribute], dividerprojectmanagementVisible: ["dividerprojectmanagementVisible", "dividerprojectmanagementVisible", booleanAttribute], dividerappsVisible: ["dividerappsVisible", "dividerappsVisible", booleanAttribute], appsWithInfo: "appsWithInfo" }, outputs: { bimplusMainMenuClicked: "bimplusMainMenuClicked", bimplusMainMenuOverlayClicked: "bimplusMainMenuOverlayClicked" }, providers: [TranslateService], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<ng-template #appItemContent let-contextData>\r\n @if (contextData.item.type === 'divider'){\r\n <div class=\"bim-mm-app-item\" [class]=\"contextData.item.class\" [id]=\"contextData.item.id\"></div>\r\n }@else {\r\n <div class=\"bim-mm-app-item\" [id]=\"contextData.item.id\"\r\n [ngClass]=\"isTouch?'':'hover-show-info '+(contextData.active?'active ':' ') +(contextData.disabled?'disabled ':' ')+(contextData.clickable?' ':'not-clickable ')+(contextData.selected?'selected ':' ')\"\r\n [title] =\"((contextData.disabled) ? (contextData.item.disabledTitle | translate) : '' )\"\r\n >\r\n <div class=\"bim-mm-app-item-details\"\r\n [ngClass] = \" contextData.clickable ? '' : 'not-clickable' \"\r\n (click)=\"_mainMenuItemClicked(contextData.item,'normal',$event)\">\r\n <div class=\"bim-mm-icon\"\r\n [ngClass]=\"contextData.item.class + (contextData.active?' active':'') + (contextData.disabled?' disabled ':'')\">\r\n </div>\r\n <span>{{(contextData.isDisabled && (contextData.item.textIdDisabled !==\"\") ? contextData.item.textIdDisabled : contextData.item.textId) | translate}}</span>\r\n </div>\r\n @if(contextData.showInfoIcon){\r\n <div class=\"bim-mm-app-item-info bim-mm-icon bim-mm-icon-info\"\r\n (click)=\"_mainMenuItemClicked(contextData.item, 'info',$event)\">\r\n </div>\r\n }\r\n </div>\r\n }\r\n</ng-template>\r\n\r\n\r\n\r\n<div class=\"bim-mm-wrapper\" [ngClass]=\"showOverlay ? 'bim-mm-overlay' : ''\" (click)=\"_overlayClicked()\">\r\n <div class= \"bim-mm-container\">\r\n @if(!_isHidden(_openPrjBtn)){\r\n <ng-container\r\n *ngTemplateOutlet=\"appItemContent; context: { $implicit: _getContextData(_openPrjBtn,projectActiveItem === 'projectlist',_isDisabled(_openPrjBtn),true,projectActiveItem === 'projectlist') }\"\r\n ></ng-container>\r\n }\r\n\r\n @if(bimplusProjectMenuVisible){\r\n <lib-bimplus-project-menu\r\n projectName = {{projectName}}\r\n projectImageUrl = {{projectImageUrl}}\r\n projectExplorerUrl = {{projectExplorerUrl}}\r\n projectActiveItem = {{projectActiveItem}}\r\n projectmembersDisabled = {{projectmembersDisabled}}\r\n modelsDisabled = {{modelsDisabled}}\r\n documentsDisabled = {{documentsDisabled}}\r\n projectsettingsDisabled = {{projectsettingsDisabled}}\r\n processesDisabled = {{processesDisabled}}\r\n projectmembersVisible = {{projectmembersVisible}}\r\n modelsVisible = {{modelsVisible}}\r\n documentsVisible = {{documentsVisible}}\r\n projectsettingsVisible = {{projectsettingsVisible}}\r\n processesVisible = {{processesVisible}}\r\n isCollapsed = {{isCollapsed}}\r\n isMiniMode = {{isTouch}}\r\n isTouch = {{isTouch}}\r\n hideMenuIcons = {{hideProjectMenuIcons}}\r\n showHorizontalMenuIcons = {{showHorizontalMenuIcons}}\r\n ></lib-bimplus-project-menu>\r\n }\r\n <div [ngClass]=\"appsList.length || footerList.length ? 'bim-mm-apps-container' : ''\">\r\n <div class=\"bim-mm-apps-list\">\r\n <div *ngFor=\"let appItem of appsList\">\r\n <ng-container\r\n *ngTemplateOutlet=\"appItemContent; context: { $implicit: _getContextData(appItem,!_isSubscribed(appItem),_isDisabled(appItem),_isClickable(appItem),menuActiveItem === appItem.action)}\"\r\n ></ng-container>\r\n </div>\r\n </div>\r\n <div class=\"bim-mm-footer-container\">\r\n <div *ngFor=\"let footerItem of footerList\">\r\n <ng-container\r\n *ngTemplateOutlet=\"appItemContent; context: { $implicit: _getContextData(footerItem,footerActiveItem === footerItem.action,_isDisabled(footerItem),true,false)}\"\r\n ></ng-container>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".bim-mm-container,.bim-mm-apps-container,.bim-mm-footer-container{display:flex;flex-direction:column;justify-content:flex-start}.bim-mm-wrapper{height:100%;font-size:1.6rem}.bim-mm-overlay{position:relative;height:100%;width:100vw;z-index:1;background-color:#0000004d}.bim-mm-icon{flex-shrink:0;display:inline-block;vertical-align:middle;width:1.13em;height:1.13em;background-size:1.13em 1.13em!important}.bim-mm-app-item{display:flex;flex-direction:row;justify-content:space-between;align-items:center;cursor:pointer;line-height:2em;min-height:2.5em;position:relative}.bim-mm-app-item.disabled{cursor:default;color:#d3d3d3}.bim-mm-app-item .bim-mm-app-item-details{display:flex;align-items:center;width:100%}.bim-mm-app-item .bim-mm-app-item-info{position:absolute;right:.375em;display:none}.bim-mm-app-item .not-clickable{pointer-events:none}.bim-mm-app-item-divider{width:100%;height:1px;min-height:1px;border-bottom:1px solid #E6E6E6;margin-top:.75em;margin-bottom:.75em}.hover-show-info:hover{background-color:#fff1eb}.hover-show-info:hover .bim-mm-app-item-info{display:block}.hover-show-info.selected,.bim-mm-app-item.selected{color:#fe5000}.hover-show-info.selected .bim-mm-icon-bim-explorer,.bim-mm-app-item.selected .bim-mm-icon-bim-explorer{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill-rule:evenodd;clip-rule:evenodd;fill:%23FE5000;}%0D%0A%09.st1{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M14.5,8.8c-1.4,0-2.5-0.5-3.5-1.1l-3,2L3.8,6.9L8,4l0,0l0.6-1C8.6,3,8.8,2.7,9,2.4l0,0L8,1.7L7,2.4l-6,4v8%0D%0A%09%09L8,19l7-4.6V8.8C14.8,8.8,14.7,8.8,14.5,8.8z M7,16l-4-2.7V8.7l4,2.7V16z M13,13.4L9,16v-4.7l4-2.7V13.4z\"/>%0D%0A%09<g>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,2.5C15.3,2.5,16,3.2,16,4s-0.7,1.5-1.5,1.5C13.6,5.5,13,4.8,13,4S13.6,2.5,14.5,2.5z\"/>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,1C11.8,1,10,4,10,4s1.8,3,4.5,3S19,4,19,4S17.3,1,14.5,1z M14.5,6.5C13.1,6.5,12,5.4,12,4%0D%0A%09%09%09s1.1-2.5,2.5-2.5S17,2.6,17,4S15.9,6.5,14.5,6.5z\"/>%0D%0A%09</g>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-cloud-viewer,.bim-mm-app-item.selected .bim-mm-icon-cloud-viewer{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_4_254)\">%0D%0A<path d=\"M9.39643 4.95238L9.36216 4.85H9.25419H7.98877H7.88066L7.84647 4.95256L5.29373 12.6105L5.22792 12.8079H5.43604H6.51245H6.62321L6.65581 12.702L8.54282 6.5744L10.4092 12.7016L10.4416 12.8079H10.5527H11.8176H12.026L11.9599 12.6103L9.39643 4.95238Z\" fill=\"%23FE5000\" stroke=\"%23FE5000\" stroke-width=\"0.3\"/>%0D%0A<mask id=\"path-2-outside-1_4_254\" maskUnits=\"userSpaceOnUse\" x=\"-0.5\" y=\"-0.500004\" width=\"19\" height=\"19\" fill=\"black\">%0D%0A<rect fill=\"white\" x=\"-0.5\" y=\"-0.500004\" width=\"19\" height=\"19\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840905C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55474 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80197 12.3419 2.53626C11.528 1.79242 10.607 1.19359 9.57155 0.840905ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6998 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\"/>%0D%0A</mask>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840905C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55474 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80197 12.3419 2.53626C11.528 1.79242 10.607 1.19359 9.57155 0.840905ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6998 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M0.5 5.8784L0.229911 5.74782L0.195679 5.81862L0.200584 5.89711L0.5 5.8784ZM9.57155 0.840905L9.66827 0.556925V0.556925L9.57155 0.840905ZM1.26094 10.0038L0.972537 10.0864L1.55807 9.96244L1.26094 10.0038ZM1.18469 8.62655L1.48457 8.63474L1.18469 8.62655ZM8.68481 1.27295L8.70111 0.973396L8.68481 1.27295ZM12.3419 2.53626L12.1714 2.78309L12.5443 2.31481L12.3419 2.53626ZM3.05232 14.0845L3.28325 13.893L2.8016 14.2492L3.05232 14.0845ZM6.78125 17.1568L6.68452 17.4408H6.68452L6.78125 17.1568ZM8.26145 16.7731L8.27775 16.4735L8.26145 16.7731ZM15.7616 9.4195L15.4617 9.41131L15.7616 9.4195ZM15.3529 6.60824L15.6181 6.46786L15.0679 6.70186L15.3529 6.60824ZM17.5 12.1745L17.7429 12.3506L17.8237 12.2392L17.7919 12.1052L17.5 12.1745ZM0.5 5.8784C0.770089 6.00899 0.770053 6.00906 0.770029 6.00911C0.770039 6.00909 0.770028 6.00911 0.770046 6.00908C0.770083 6.009 0.770171 6.00882 0.770309 6.00854C0.770587 6.00797 0.771068 6.00698 0.771753 6.00559C0.773123 6.0028 0.775307 5.99837 0.7783 5.99237C0.784287 5.98037 0.79351 5.96207 0.805938 5.93796C0.830796 5.88974 0.868455 5.8183 0.918652 5.72749C1.01908 5.5458 1.16949 5.287 1.36775 4.98183C1.76497 4.37042 2.3508 3.57829 3.10749 2.84773C4.62223 1.38528 6.77634 0.205772 9.47482 1.12488L9.66827 0.556925C6.669 -0.464635 4.28734 0.874606 2.69074 2.41608C1.89176 3.18747 1.27804 4.0186 0.864612 4.65495C0.657555 4.97366 0.49987 5.24486 0.39354 5.43722C0.340357 5.53343 0.299968 5.61001 0.272623 5.66306C0.258949 5.68958 0.248532 5.71023 0.241404 5.72452C0.23784 5.73167 0.235098 5.73722 0.233181 5.74112C0.232222 5.74308 0.23147 5.74461 0.230925 5.74573C0.230653 5.74629 0.230432 5.74675 0.230263 5.7471C0.230178 5.74727 0.23009 5.74745 0.230048 5.74754C0.229973 5.74769 0.229911 5.74782 0.5 5.8784ZM1.54934 9.92123C1.23214 8.81373 1.04437 7.796 0.935975 7.05508C0.881817 6.68487 0.847573 6.38444 0.826916 6.17726C0.816589 6.07368 0.809662 5.99347 0.805342 5.93955C0.803183 5.91259 0.801675 5.89221 0.800721 5.87878C0.800243 5.87206 0.799904 5.86708 0.799691 5.86389C0.799584 5.86229 0.799509 5.86114 0.799464 5.86044C0.799441 5.86009 0.799426 5.85985 0.799418 5.85972C0.799414 5.85966 0.799412 5.85963 0.799412 5.85962C0.799411 5.85962 0.799413 5.85964 0.799412 5.85964C0.799414 5.85966 0.799416 5.85969 0.5 5.8784C0.200584 5.89711 0.200587 5.89716 0.20059 5.89721C0.200592 5.89724 0.200596 5.8973 0.200599 5.89736C0.200606 5.89747 0.200615 5.8976 0.200625 5.89777C0.200647 5.8981 0.200675 5.89855 0.200711 5.89911C0.200784 5.90023 0.200887 5.90181 0.201022 5.90384C0.201292 5.90788 0.201691 5.91373 0.20223 5.92132C0.203309 5.9365 0.204952 5.95867 0.207259 5.98747C0.211872 6.04505 0.219144 6.12915 0.229876 6.23679C0.251339 6.45204 0.286663 6.76165 0.342295 7.14193C0.453484 7.90198 0.646178 8.94697 0.972537 10.0864L1.54934 9.92123ZM0.884797 8.61836C0.871562 9.10293 0.89898 9.57982 0.96381 10.0452L1.55807 9.96244C1.49778 9.52965 1.47225 9.08592 1.48457 8.63474L0.884797 8.61836ZM8.70111 0.973396C4.48974 0.744306 1.00582 4.18733 0.884797 8.61836L1.48457 8.63474C1.59736 4.50528 4.82929 1.36366 8.66852 1.57251L8.70111 0.973396ZM12.5124 2.28943C11.4065 1.52548 10.1044 1.04973 8.70111 0.973396L8.66852 1.57251C9.95499 1.64249 11.1513 2.07845 12.1714 2.78309L12.5124 2.28943ZM9.47482 1.12488C10.4632 1.46153 11.3493 2.03547 12.1395 2.75771L12.5443 2.31481C11.7068 1.54936 10.7509 0.925663 9.66827 0.556925L9.47482 1.12488ZM2.8016 14.2492C3.72385 15.6529 4.98008 16.8603 6.68452 17.4408L6.87797 16.8728C5.33628 16.3477 4.17639 15.249 3.30305 13.9197L2.8016 14.2492ZM8.27775 16.4735C6.29393 16.3656 4.52192 15.3867 3.28325 13.893L2.8214 14.276C4.1566 15.8861 6.07909 16.9548 8.24516 17.0727L8.27775 16.4735ZM15.4617 9.41131C15.3489 13.5408 12.117 16.6824 8.27775 16.4735L8.24516 17.0727C12.4565 17.3017 15.9404 13.8587 16.0615 9.4277L15.4617 9.41131ZM15.0679 6.70186C15.3468 7.55091 15.4875 8.46482 15.4617 9.41131L16.0615 9.4277C16.0892 8.41096 15.938 7.42821 15.638 6.51463L15.0679 6.70186ZM17.5 12.1745C17.7919 12.1052 17.7919 12.1051 17.7919 12.1051C17.7918 12.105 17.7918 12.105 17.7918 12.1049C17.7918 12.1048 17.7917 12.1046 17.7917 12.1044C17.7916 12.1039 17.7914 12.1033 17.7913 12.1025C17.7909 12.101 17.7903 12.0988 17.7897 12.0959C17.7883 12.0902 17.7862 12.0819 17.7836 12.071C17.7782 12.0494 17.7702 12.0176 17.7596 11.9764C17.7384 11.894 17.7066 11.7739 17.6638 11.6212C17.5782 11.3159 17.4486 10.8801 17.2719 10.3554C16.9187 9.30693 16.376 7.89939 15.6181 6.46786L15.0878 6.74862C15.8262 8.14319 16.357 9.51878 16.7033 10.5469C16.8763 11.0606 17.0029 11.4864 17.0861 11.7832C17.1277 11.9315 17.1584 12.0475 17.1786 12.1261C17.1887 12.1653 17.1962 12.1952 17.2011 12.215C17.2035 12.225 17.2054 12.2324 17.2065 12.2372C17.2071 12.2396 17.2075 12.2414 17.2078 12.2425C17.2079 12.243 17.208 12.2434 17.2081 12.2436C17.2081 12.2438 17.2081 12.2438 17.2081 12.2439C17.2081 12.2439 17.2081 12.2439 17.2081 12.2439C17.2081 12.2439 17.2081 12.2438 17.5 12.1745ZM6.68452 17.4408C9.67572 18.4596 12.463 17.1419 14.4583 15.6327C15.4612 14.8741 16.2806 14.0553 16.8489 13.4272C17.1334 13.1127 17.3557 12.8452 17.5074 12.6556C17.5832 12.5608 17.6415 12.4854 17.6811 12.4333C17.7009 12.4072 17.716 12.387 17.7264 12.3731C17.7315 12.3661 17.7355 12.3607 17.7383 12.3569C17.7396 12.3551 17.7407 12.3536 17.7415 12.3525C17.7419 12.352 17.7422 12.3516 17.7424 12.3513C17.7425 12.3511 17.7426 12.351 17.7427 12.3509C17.7428 12.3507 17.7429 12.3506 17.5 12.1745C17.2571 11.9984 17.2572 11.9983 17.2572 11.9983C17.2572 11.9983 17.2572 11.9983 17.2572 11.9984C17.2571 11.9985 17.2569 11.9987 17.2567 11.999C17.2562 11.9996 17.2555 12.0006 17.2544 12.0021C17.2523 12.005 17.249 12.0095 17.2445 12.0156C17.2355 12.0277 17.2217 12.0461 17.2034 12.0703C17.1666 12.1186 17.1114 12.1901 17.0389 12.2808C16.8937 12.4622 16.6793 12.7203 16.404 13.0246C15.8527 13.6339 15.0609 14.4246 14.0963 15.1541C12.1566 16.6213 9.58453 17.7947 6.87797 16.8728L6.68452 17.4408Z\" fill=\"%23FE5000\" mask=\"url(%23path-2-outside-1_4_254)\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_4_254\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-autoconverter,.bim-mm-app-item.selected .bim-mm-icon-autoconverter{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%23FE5000\"/>%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%23FE5000\"/>%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%23FE5000\"/>%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%23FE5000\"/>%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%23FE5000\"/>%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%23FE5000\"/>%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%23FE5000\"/>%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%23FE5000\"/>%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%23FE5000\"/>%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%23FE5000\"/>%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%23FE5000\"/>%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%23FE5000\"/>%0A</svg>%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-connexis,.bim-mm-app-item.selected .bim-mm-icon-connexis{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-users,.bim-mm-app-item.selected .bim-mm-icon-users{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-models,.bim-mm-app-item.selected .bim-mm-icon-models{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-documents,.bim-mm-app-item.selected .bim-mm-icon-documents{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4l0,0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-project-settings,.bim-mm-app-item.selected .bim-mm-icon-project-settings{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-processes,.bim-mm-app-item.selected .bim-mm-icon-processes{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-team-members,.bim-mm-app-item.selected .bim-mm-icon-team-members{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-property-manager,.bim-mm-app-item.selected .bim-mm-icon-property-manager{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-footer-container .bim-mm-app-item.active{background-color:#ffd5c4}#portalSelectProjectBtn{padding:.36em 0 .52em;line-height:2em;font-size:1em;background-color:#fff}#portalSelectProjectBtn .bim-mm-icon{box-sizing:border-box;width:2.8125em;margin:0 0 0 .0625em}#portalSelectProjectBtn .bim-mm-app-item-info{width:1.13em;margin-right:.375em}#portalSelectProjectBtn .bim-mm-app-item-details span{font-weight:600;color:#444;text-transform:capitalize}#portalSelectProjectBtn.disabled .bim-mm-app-item-details span{font-weight:600;color:#d3d3d3}#portalSelectProjectBtn.selected .bim-mm-app-item-details span{font-weight:600;color:#fe5000}#portalTeamManagementBtn,#portalPropertyManagerBtn{text-transform:capitalize}#portalShopBtn .bim-mm-app-item-info,#portalBimProcesses .bim-mm-app-item-info,#portalCloudViewerBtn .bim-mm-app-item-info,#portalConnexisBtn .bim-mm-app-item-info{display:none}.bim-mm-container{background-color:#f5f5f5;width:15.31em;min-height:100%;font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif}.bim-mm-apps-container{justify-content:space-between;background-color:#f5f5f5;flex:1 0 auto;margin-top:.5em}.bim-mm-apps-container .bim-mm-icon{margin:0 .8125em 0 .9375em}.bim-mm-icon-users{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-users.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-users.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23D3D3D3\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-models{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-models.active{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-models.disabled{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23D3D3D3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-documents{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4h0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-documents.active{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4l0,0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-documents.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4h0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-project-settings{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-project-settings.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-project-settings.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23d3d3d3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-processes{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-processes.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-processes.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23D3D3D3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-bim-explorer{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill-rule:evenodd;clip-rule:evenodd;fill:%23444;}%0D%0A%09.st1{fill:%23444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M14.5,8.8c-1.4,0-2.5-0.5-3.5-1.1l-3,2L3.8,6.9L8,4l0,0l0.6-1C8.6,3,8.8,2.7,9,2.4l0,0L8,1.7L7,2.4l-6,4v8%0D%0A%09%09L8,19l7-4.6V8.8C14.8,8.8,14.7,8.8,14.5,8.8z M7,16l-4-2.7V8.7l4,2.7V16z M13,13.4L9,16v-4.7l4-2.7V13.4z\"/>%0D%0A%09<g>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,2.5C15.3,2.5,16,3.2,16,4s-0.7,1.5-1.5,1.5C13.6,5.5,13,4.8,13,4S13.6,2.5,14.5,2.5z\"/>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,1C11.8,1,10,4,10,4s1.8,3,4.5,3S19,4,19,4S17.3,1,14.5,1z M14.5,6.5C13.1,6.5,12,5.4,12,4%0D%0A%09%09%09s1.1-2.5,2.5-2.5S17,2.6,17,4S15.9,6.5,14.5,6.5z\"/>%0D%0A%09</g>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-bim-explorer.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill-rule:evenodd;clip-rule:evenodd;fill:%23d3d3d3;}%0D%0A%09.st1{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M14.5,8.8c-1.4,0-2.5-0.5-3.5-1.1l-3,2L3.8,6.9L8,4l0,0l0.6-1C8.6,3,8.8,2.7,9,2.4l0,0L8,1.7L7,2.4l-6,4v8%0D%0A%09%09L8,19l7-4.6V8.8C14.8,8.8,14.7,8.8,14.5,8.8z M7,16l-4-2.7V8.7l4,2.7V16z M13,13.4L9,16v-4.7l4-2.7V13.4z\"/>%0D%0A%09<g>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,2.5C15.3,2.5,16,3.2,16,4s-0.7,1.5-1.5,1.5C13.6,5.5,13,4.8,13,4S13.6,2.5,14.5,2.5z\"/>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,1C11.8,1,10,4,10,4s1.8,3,4.5,3S19,4,19,4S17.3,1,14.5,1z M14.5,6.5C13.1,6.5,12,5.4,12,4%0D%0A%09%09%09s1.1-2.5,2.5-2.5S17,2.6,17,4S15.9,6.5,14.5,6.5z\"/>%0D%0A%09</g>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-cloud-viewer{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9.39643 4.95238L9.36216 4.84999H9.25419H7.98877H7.88066L7.84647 4.95256L5.29373 12.6105L5.22792 12.8079H5.43604H6.51245H6.62321L6.65581 12.702L8.54282 6.5744L10.4092 12.7016L10.4416 12.8079H10.5527H11.8176H12.026L11.9599 12.6103L9.39643 4.95238Z\" fill=\"%23444444\" stroke=\"%23444444\" stroke-width=\"0.3\"/>%0D%0A<mask id=\"path-2-outside-1_4_241\" maskUnits=\"userSpaceOnUse\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\" fill=\"black\">%0D%0A<rect fill=\"white\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\"/>%0D%0A</mask>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0.5 5.8784L0.229911 5.74782L0.195679 5.81862L0.200584 5.89711L0.5 5.8784ZM9.57155 0.840903L9.66827 0.556923V0.556923L9.57155 0.840903ZM1.26094 10.0038L0.972537 10.0864L1.55807 9.96244L1.26094 10.0038ZM1.18469 8.62655L1.48457 8.63474L1.18469 8.62655ZM8.68481 1.27295L8.70111 0.973394L8.68481 1.27295ZM12.3419 2.53626L12.1714 2.78309L12.5443 2.31481L12.3419 2.53626ZM3.05232 14.0845L3.28325 13.893L2.8016 14.2492L3.05232 14.0845ZM6.78125 17.1568L6.68452 17.4408H6.68452L6.78125 17.1568ZM8.26145 16.7731L8.27775 16.4735L8.26145 16.7731ZM15.7616 9.4195L15.4617 9.41131L15.7616 9.4195ZM15.3529 6.60824L15.6181 6.46786L15.0679 6.70186L15.3529 6.60824ZM17.5 12.1745L17.7429 12.3506L17.8237 12.2392L17.7919 12.1052L17.5 12.1745ZM0.5 5.8784C0.770089 6.00899 0.770053 6.00906 0.770029 6.00911C0.770039 6.00909 0.770028 6.00911 0.770046 6.00907C0.770083 6.009 0.770171 6.00882 0.770309 6.00853C0.770587 6.00796 0.771068 6.00698 0.771753 6.00558C0.773123 6.00279 0.775307 5.99837 0.7783 5.99237C0.784287 5.98037 0.79351 5.96207 0.805938 5.93796C0.830796 5.88974 0.868455 5.81829 0.918652 5.72749C1.01908 5.5458 1.16949 5.287 1.36775 4.98183C1.76497 4.37042 2.3508 3.57829 3.10749 2.84773C4.62223 1.38528 6.77634 0.20577 9.47482 1.12488L9.66827 0.556923C6.669 -0.464637 4.28734 0.874604 2.69074 2.41608C1.89176 3.18747 1.27804 4.01859 0.864612 4.65495C0.657555 4.97366 0.49987 5.24486 0.39354 5.43721C0.340357 5.53342 0.299968 5.61001 0.272623 5.66305C0.258949 5.68958 0.248532 5.71023 0.241404 5.72452C0.23784 5.73166 0.235098 5.73722 0.233181 5.74112C0.232222 5.74307 0.23147 5.74461 0.230925 5.74573C0.230653 5.74629 0.230432 5.74675 0.230263 5.74709C0.230178 5.74727 0.23009 5.74745 0.230048 5.74754C0.229973 5.74769 0.229911 5.74782 0.5 5.8784ZM1.54934 9.92123C1.23214 8.81373 1.04437 7.796 0.935975 7.05508C0.881817 6.68487 0.847573 6.38443 0.826916 6.17726C0.816589 6.07368 0.809662 5.99347 0.805342 5.93955C0.803183 5.91259 0.801675 5.89221 0.800721 5.87878C0.800243 5.87206 0.799904 5.86708 0.799691 5.86389C0.799584 5.86229 0.799509 5.86114 0.799464 5.86044C0.799441 5.86008 0.799426 5.85985 0.799418 5.85972C0.799414 5.85966 0.799412 5.85963 0.799412 5.85962C0.799411 5.85962 0.799413 5.85964 0.799412 5.85964C0.799414 5.85966 0.799416 5.85969 0.5 5.8784C0.200584 5.89711 0.200587 5.89716 0.20059 5.89721C0.200592 5.89724 0.200596 5.8973 0.200599 5.89735C0.200606 5.89746 0.200615 5.8976 0.200625 5.89777C0.200647 5.8981 0.200675 5.89855 0.200711 5.89911C0.200784 5.90023 0.200887 5.90181 0.201022 5.90383C0.201292 5.90788 0.201691 5.91373 0.20223 5.92132C0.203309 5.9365 0.204952 5.95867 0.207259 5.98746C0.211872 6.04505 0.219144 6.12914 0.229876 6.23679C0.251339 6.45204 0.286663 6.76165 0.342295 7.14193C0.453484 7.90198 0.646178 8.94696 0.972537 10.0864L1.54934 9.92123ZM0.884797 8.61836C0.871562 9.10292 0.89898 9.57982 0.96381 10.0452L1.55807 9.96244C1.49778 9.52965 1.47225 9.08592 1.48457 8.63474L0.884797 8.61836ZM8.70111 0.973394C4.48974 0.744304 1.00582 4.18732 0.884797 8.61836L1.48457 8.63474C1.59736 4.50528 4.82929 1.36366 8.66852 1.57251L8.70111 0.973394ZM12.5124 2.28942C11.4065 1.52548 10.1044 1.04973 8.70111 0.973394L8.66852 1.57251C9.95499 1.64249 11.1513 2.07845 12.1714 2.78309L12.5124 2.28942ZM9.47482 1.12488C10.4632 1.46152 11.3493 2.03547 12.1395 2.7577L12.5443 2.31481C11.7068 1.54936 10.7509 0.925661 9.66827 0.556923L9.47482 1.12488ZM2.8016 14.2492C3.72385 15.6529 4.98008 16.8602 6.68452 17.4408L6.87797 16.8728C5.33628 16.3477 4.17639 15.249 3.30305 13.9197L2.8016 14.2492ZM8.27775 16.4735C6.29393 16.3656 4.52192 15.3867 3.28325 13.893L2.8214 14.276C4.1566 15.8861 6.07909 16.9548 8.24516 17.0727L8.27775 16.4735ZM15.4617 9.41131C15.3489 13.5408 12.117 16.6824 8.27775 16.4735L8.24516 17.0727C12.4565 17.3017 15.9404 13.8587 16.0615 9.42769L15.4617 9.41131ZM15.0679 6.70186C15.3468 7.55091 15.4875 8.46482 15.4617 9.41131L16.0615 9.42769C16.0892 8.41096 15.938 7.42821 15.638 6.51462L15.0679 6.70186ZM17.5 12.1745C17.7919 12.1052 17.7919 12.1051 17.7919 12.1051C17.7918 12.105 17.7918 12.105 17.7918 12.1049C17.7918 12.1048 17.7917 12.1046 17.7917 12.1044C17.7916 12.1039 17.7914 12.1033 17.7913 12.1025C17.7909 12.101 17.7903 12.0988 17.7897 12.0959C17.7883 12.0902 17.7862 12.0819 17.7836 12.071C17.7782 12.0494 17.7702 12.0176 17.7596 11.9764C17.7384 11.894 17.7066 11.7739 17.6638 11.6212C17.5782 11.3159 17.4486 10.8801 17.2719 10.3554C16.9187 9.30693 16.376 7.89939 15.6181 6.46786L15.0878 6.74862C15.8262 8.14319 16.357 9.51878 16.7033 10.5469C16.8763 11.0606 17.0029 11.4864 17.0861 11.7832C17.1277 11.9315 17.1584 12.0475 17.1786 12.1261C17.1887 12.1653 17.1962 12.1952 17.2011 12.215C17.2035 12.2249 17.2054 12.2324 17.2065 12.2372C17.2071 12.2396 17.2075 12.2414 17.2078 12.2425C17.2079 12.243 17.208 12.2434 17.2081 12.2436C17.2081 12.2438 17.2081 12.2438 17.2081 12.2439C17.2081 12.2439 17.2081 12.2439 17.2081 12.2439C17.2081 12.2438 17.2081 12.2438 17.5 12.1745ZM6.68452 17.4408C9.67572 18.4596 12.463 17.1419 14.4583 15.6327C15.4612 14.8741 16.2806 14.0553 16.8489 13.4272C17.1334 13.1127 17.3557 12.8452 17.5074 12.6556C17.5832 12.5608 17.6415 12.4854 17.6811 12.4333C17.7009 12.4072 17.716 12.387 17.7264 12.373C17.7315 12.3661 17.7355 12.3607 17.7383 12.3569C17.7396 12.3551 17.7407 12.3536 17.7415 12.3525C17.7419 12.352 17.7422 12.3516 17.7424 12.3513C17.7425 12.3511 17.7426 12.351 17.7427 12.3509C17.7428 12.3507 17.7429 12.3506 17.5 12.1745C17.2571 11.9984 17.2572 11.9983 17.2572 11.9983C17.2572 11.9983 17.2572 11.9983 17.2572 11.9984C17.2571 11.9985 17.2569 11.9987 17.2567 11.999C17.2562 11.9996 17.2555 12.0006 17.2544 12.0021C17.2523 12.005 17.249 12.0095 17.2445 12.0156C17.2355 12.0277 17.2217 12.0461 17.2034 12.0703C17.1666 12.1186 17.1114 12.1901 17.0389 12.2808C16.8937 12.4622 16.6793 12.7203 16.404 13.0246C15.8527 13.6339 15.0609 14.4246 14.0963 15.1541C12.1566 16.6213 9.58453 17.7947 6.87797 16.8728L6.68452 17.4408Z\" fill=\"%23444444\" mask=\"url(%23path-2-outside-1_4_241)\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-cloud-viewer.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9.39643 4.95238L9.36216 4.84999H9.25419H7.98877H7.88066L7.84647 4.95256L5.29373 12.6105L5.22792 12.8079H5.43604H6.51245H6.62321L6.65581 12.702L8.54282 6.5744L10.4092 12.7016L10.4416 12.8079H10.5527H11.8176H12.026L11.9599 12.6103L9.39643 4.95238Z\" fill=\"%23D3D3D3\" stroke=\"%23D3D3D3\" stroke-width=\"0.3\"/>%0D%0A<mask id=\"path-2-outside-1_4_241\" maskUnits=\"userSpaceOnUse\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\" fill=\"%23D3D3D3\">%0D%0A<rect fill=\"white\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\"/>%0D%0A</mask>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\" fill=\"%23DED3D3\"/>%0D%0A<path d=\"M0.5 5.8784L0.229911 5.74782L0.195679 5.81862L0.200584 5.89711L0.5 5.8784ZM9.57155 0.840903L9.66827 0.556923V0.556923L9.57155 0.840903ZM1.26094 10.0038L0.972537 10.0864L1.55807 9.96244L1.26094 10.0038ZM1.18469 8.62655L1.48457 8.63474L1.18469 8.62655ZM8.68481 1.27295L8.70111 0.973394L8.68481 1.27295ZM12.3419 2.53626L12.1714 2.78309L12.5443 2.31481L12.3419 2.53626ZM3.05232 14.0845L3.28325 13.893L2.8016 14.2492L3.05232 14.0845ZM6.78125 17.1568L6.68452 17.4408H6.68452L6.78125 17.1568ZM8.26145 16.7731L8.27775 16.4735L8.26145 16.7731ZM15.7616 9.4195L15.4617 9.41131L15.7616 9.4195ZM15.3529 6.60824L15.6181 6.46786L15.0679 6.70186L15.3529 6.60824ZM17.5 12.1745L17.7429 12.3506L17.8237 12.2392L17.7919 12.1052L17.5 12.1745ZM0.5 5.8784C0.770089 6.00899 0.770053 6.00906 0.770029 6.00911C0.770039 6.00909 0.770028 6.00911 0.770046 6.00907C0.770083 6.009 0.770171 6.00882 0.770309 6.00853C0.770587 6.00796 0.771068 6.00698 0.771753 6.00558C0.773123 6.00279 0.775307 5.99837 0.7783 5.99237C0.784287 5.98037 0.79351 5.96207 0.805938 5.93796C0.830796 5.88974 0.868455 5.81829 0.918652 5.72749C1.01908 5.5458 1.16949 5.287 1.36775 4.98183C1.76497 4.37042 2.3508 3.57829 3.10749 2.84773C4.62223 1.38528 6.77634 0.20577 9.47482 1.12488L9.66827 0.556923C6.669 -0.464637 4.28734 0.874604 2.69074 2.41608C1.89176 3.18747 1.27804 4.01859 0.864612 4.65495C0.657555 4.97366 0.49987 5.24486 0.39354 5.43721C0.340357 5.53342 0.299968 5.61001 0.272623 5.66305C0.258949 5.68958 0.248532 5.71023 0.241404 5.72452C0.23784 5.73166 0.235098 5.73722 0.233181 5.74112C0.232222 5.74307 0.23147 5.74461 0.230925 5.74573C0.230653 5.74629 0.230432 5.74675 0.230263 5.74709C0.230178 5.74727 0.23009 5.74745 0.230048 5.74754C0.229973 5.74769 0.229911 5.74782 0.5 5.8784ZM1.54934 9.92123C1.23214 8.81373 1.04437 7.796 0.935975 7.05508C0.881817 6.68487 0.847573 6.38443 0.826916 6.17726C0.816589 6.07368 0.809662 5.99347 0.805342 5.93955C0.803183 5.91259 0.801675 5.89221 0.800721 5.87878C0.800243 5.87206 0.799904 5.86708 0.799691 5.86389C0.799584 5.86229 0.799509 5.86114 0.799464 5.86044C0.799441 5.86008 0.799426 5.85985 0.799418 5.85972C0.799414 5.85966 0.799412 5.85963 0.799412 5.85962C0.799411 5.85962 0.799413 5.85964 0.799412 5.85964C0.799414 5.85966 0.799416 5.85969 0.5 5.8784C0.200584 5.89711 0.200587 5.89716 0.20059 5.89721C0.200592 5.89724 0.200596 5.8973 0.200599 5.89735C0.200606 5.89746 0.200615 5.8976 0.200625 5.89777C0.200647 5.8981 0.200675 5.89855 0.200711 5.89911C0.200784 5.90023 0.200887 5.90181 0.201022 5.90383C0.201292 5.90788 0.201691 5.91373 0.20223 5.92132C0.203309 5.9365 0.204952 5.95867 0.207259 5.98746C0.211872 6.04505 0.219144 6.12914 0.229876 6.23679C0.251339 6.45204 0.286663 6.76165 0.342295 7.14193C0.453484 7.90198 0.646178 8.94696 0.972537 10.0864L1.54934 9.92123ZM0.884797 8.61836C0.871562 9.10292 0.89898 9.57982 0.96381 10.0452L1.55807 9.96244C1.49778 9.52965 1.47225 9.08592 1.48457 8.63474L0.884797 8.61836ZM8.70111 0.973394C4.48974 0.744304 1.00582 4.18732 0.884797 8.61836L1.48457 8.63474C1.59736 4.50528 4.82929 1.36366 8.66852 1.57251L8.70111 0.973394ZM12.5124 2.28942C11.4065 1.52548 10.1044 1.04973 8.70111 0.973394L8.66852 1.57251C9.95499 1.64249 11.1513 2.07845 12.1714 2.78309L12.5124 2.28942ZM9.47482 1.12488C10.4632 1.46152 11.3493 2.03547 12.1395 2.7577L12.5443 2.31481C11.7068 1.54936 10.7509 0.925661 9.66827 0.556923L9.47482 1.12488ZM2.8016 14.2492C3.72385 15.6529 4.98008 16.8602 6.68452 17.4408L6.87797 16.8728C5.33628 16.3477 4.17639 15.249 3.30305 13.9197L2.8016 14.2492ZM8.27775 16.4735C6.29393 16.3656 4.52192 15.3867 3.28325 13.893L2.8214 14.276C4.1566 15.8861 6.07909 16.9548 8.24516 17.0727L8.27775 16.4735ZM15.4617 9.41131C15.3489 13.5408 12.117 16.6824 8.27775 16.4735L8.24516 17.0727C12.4565 17.3017 15.9404 13.8587 16.0615 9.42769L15.4617 9.41131ZM15.0679 6.70186C15.3468 7.55091 15.4875 8.46482 15.4617 9.41131L16.0615 9.42769C16.0892 8.41096 15.938 7.42821 15.638 6.51462L15.0679 6.70186ZM17.5 12.1745C17.7919 12.1052 17.7919 12.1051 17.7919 12.1051C17.7918 12.105 17.7918 12.105 17.7918 12.1049C17.7918 12.1048 17.7917 12.1046 17.7917 12.1044C17.7916 12.1039 17.7914 12.1033 17.7913 12.1025C17.7909 12.101 17.7903 12.0988 17.7897 12.0959C17.7883 12.0902 17.7862 12.0819 17.7836 12.071C17.7782 12.0494 17.7702 12.0176 17.7596 11.9764C17.7384 11.894 17.7066 11.7739 17.6638 11.6212C17.5782 11.3159 17.4486 10.8801 17.2719 10.3554C16.9187 9.30693 16.376 7.89939 15.6181 6.46786L15.0878 6.74862C15.8262 8.14319 16.357 9.51878 16.7033 10.5469C16.8763 11.0606 17.0029 11.4864 17.0861 11.7832C17.1277 11.9315 17.1584 12.0475 17.1786 12.1261C17.1887 12.1653 17.1962 12.1952 17.2011 12.215C17.2035 12.2249 17.2054 12.2324 17.2065 12.2372C17.2071 12.2396 17.2075 12.2414 17.2078 12.2425C17.2079 12.243 17.208 12.2434 17.2081 12.2436C17.2081 12.2438 17.2081 12.2438 17.2081 12.2439C17.2081 12.2439 17.2081 12.2439 17.2081 12.2439C17.2081 12.2438 17.2081 12.2438 17.5 12.1745ZM6.68452 17.4408C9.67572 18.4596 12.463 17.1419 14.4583 15.6327C15.4612 14.8741 16.2806 14.0553 16.8489 13.4272C17.1334 13.1127 17.3557 12.8452 17.5074 12.6556C17.5832 12.5608 17.6415 12.4854 17.6811 12.4333C17.7009 12.4072 17.716 12.387 17.7264 12.373C17.7315 12.3661 17.7355 12.3607 17.7383 12.3569C17.7396 12.3551 17.7407 12.3536 17.7415 12.3525C17.7419 12.352 17.7422 12.3516 17.7424 12.3513C17.7425 12.3511 17.7426 12.351 17.7427 12.3509C17.7428 12.3507 17.7429 12.3506 17.5 12.1745C17.2571 11.9984 17.2572 11.9983 17.2572 11.9983C17.2572 11.9983 17.2572 11.9983 17.2572 11.9984C17.2571 11.9985 17.2569 11.9987 17.2567 11.999C17.2562 11.9996 17.2555 12.0006 17.2544 12.0021C17.2523 12.005 17.249 12.0095 17.2445 12.0156C17.2355 12.0277 17.2217 12.0461 17.2034 12.0703C17.1666 12.1186 17.1114 12.1901 17.0389 12.2808C16.8937 12.4622 16.6793 12.7203 16.404 13.0246C15.8527 13.6339 15.0609 14.4246 14.0963 15.1541C12.1566 16.6213 9.58453 17.7947 6.87797 16.8728L6.68452 17.4408Z\" fill=\"%23D3D3D3\" mask=\"url(%23path-2-outside-1_4_241)\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-autoconverter{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%232F3133\"/>%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%232F3133\"/>%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%232F3133\"/>%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%232F3133\"/>%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%232F3133\"/>%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%232F3133\"/>%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%232F3133\"/>%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%232F3133\"/>%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%232F3133\"/>%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%232F3133\"/>%0A</svg>%0A') no-repeat center}.bim-mm-icon-autoconverter.active{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%232F3133\"/>%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%232F3133\"/>%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%232F3133\"/>%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%232F3133\"/>%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%232F3133\"/>%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%232F3133\"/>%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%232F3133\"/>%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%232F3133\"/>%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%232F3133\"/>%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%232F3133\"/>%0A</svg>%0A') no-repeat center}.bim-mm-icon-autoconverter.disabled{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%23d3d3d3\"/>%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%23d3d3d3\"/>%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%23d3d3d3\"/>%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%23d3d3d3\"/>%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%23d3d3d3\"/>%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%23d3d3d3\"/>%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%23d3d3d3\"/>%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%23d3d3d3\"/>%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%23d3d3d3\"/>%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%23d3d3d3\"/>%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%23d3d3d3\"/>%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%23d3d3d3\"/>%0A</svg>%0A') no-repeat center}.bim-mm-icon-connexis{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-connexis.disabled{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23d3d3d3\"/>%0D%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23d3d3d3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-team-members{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-team-members.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-property-manager{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-property-manager.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-property-manager.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23d3d3d3\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23d3d3d3\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23d3d3d3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-shop{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M8.5,16c0.8,0,1.5,0.7,1.5,1.5S9.3,19,8.5,19S7,18.3,7,17.5S7.7,16,8.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M17.5,16c0.8,0,1.5,0.7,1.5,1.5S18.3,19,17.5,19S16,18.3,16,17.5S16.7,16,17.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M0,2v2h3l5,10h12V6H6.1L4,2H0z M7.1,7.9H18V12H9.2L7.1,7.9z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-shop.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M8.5,16c0.8,0,1.5,0.7,1.5,1.5S9.3,19,8.5,19S7,18.3,7,17.5S7.7,16,8.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M17.5,16c0.8,0,1.5,0.7,1.5,1.5S18.3,19,17.5,19S16,18.3,16,17.5S16.7,16,17.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M0,2v2h3l5,10h12V6H6.1L4,2H0z M7.1,7.9H18V12H9.2L7.1,7.9z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-info{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center;background-size:auto!important}.bim-mm-icon-info:hover{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23F05423;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center;background-size:auto!important;cursor:pointer}.bim-mm-icon-folder{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M17,7V5V4V1h-6L8,3H0v16h2h15l3-12H17z M8,5h0.6l0.5-0.3L11.6,3H15v1v1v2H3l-1,4V5H8z M15.4,17H2.6l2-8H15h2%0D%0A%09h0.4L15.4,17z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-folder.active{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M17,7V5V4V1h-6L8,3H0v16h2h15l3-12H17z M8,5h0.6l0.5-0.3L11.6,3H15v1v1v2H3l-1,4V5H8z M15.4,17H2.6l2-8H15h2%0D%0A%09h0.4L15.4,17z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-folder.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M17,7V5V4V1h-6L8,3H0v16h2h15l3-12H17z M8,5h0.6l0.5-0.3L11.6,3H15v1v1v2H3l-1,4V5H8z M15.4,17H2.6l2-8H15h2%0D%0A%09h0.4L15.4,17z\"/>%0D%0A</svg>%0D%0A') no-repeat center}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }, { kind: "component", type: BimplusProjectMenuComponent, selector: "lib-bimplus-project-menu", inputs: ["projectName", "projectImageUrl", "projectExplorerUrl", "projectActiveItem", "projectmembersDisabled", "modelsDisabled", "documentsDisabled", "projectsettingsDisabled", "processesDisabled", "projectmembersVisible", "modelsVisible", "documentsVisible", "projectsettingsVisible", "processesVisible", "isCollapsed", "isMiniMode", "isTouch", "hideMenuIcons", "showHorizontalMenuIcons"] }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
1964
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.10", type: BimplusMainMenuComponent, isStandalone: true, selector: "lib-bimplus-main-menu", inputs: { isEmbedded: ["isEmbedded", "isEmbedded", booleanAttribute], isTouch: ["isTouch", "isTouch", booleanAttribute], isIpadApp: ["isIpadApp", "isIpadApp", booleanAttribute], isDev: ["isDev", "isDev", booleanAttribute], isStage: ["isStage", "isStage", booleanAttribute], hideProjectMenuIcons: ["hideProjectMenuIcons", "hideProjectMenuIcons", booleanAttribute], showHorizontalMenuIcons: ["showHorizontalMenuIcons", "showHorizontalMenuIcons", booleanAttribute], projectName: "projectName", projectImageUrl: "projectImageUrl", projectExplorerUrl: "projectExplorerUrl", projectActiveItem: "projectActiveItem", projectmembersDisabled: ["projectmembersDisabled", "projectmembersDisabled", booleanAttribute], modelsDisabled: ["modelsDisabled", "modelsDisabled", booleanAttribute], documentsDisabled: ["documentsDisabled", "documentsDisabled", booleanAttribute], projectsettingsDisabled: ["projectsettingsDisabled", "projectsettingsDisabled", booleanAttribute], processesDisabled: ["processesDisabled", "processesDisabled", booleanAttribute], footerActiveItem: "footerActiveItem", menuActiveItem: "menuActiveItem", isCollapsed: ["isCollapsed", "isCollapsed", booleanAttribute], showOverlay: ["showOverlay", "showOverlay", booleanAttribute], teammembersSubscribed: ["teammembersSubscribed", "teammembersSubscribed", booleanAttribute], propertymanagerSubscribed: ["propertymanagerSubscribed", "propertymanagerSubscribed", booleanAttribute], autoconverterSubscribed: ["autoconverterSubscribed", "autoconverterSubscribed", booleanAttribute], connexisSubscribed: ["connexisSubscribed", "connexisSubscribed", booleanAttribute], openProjectDisabled: ["openProjectDisabled", "openProjectDisabled", booleanAttribute], bimexplorerDisabled: ["bimexplorerDisabled", "bimexplorerDisabled", booleanAttribute], autoconverterDisabled: ["autoconverterDisabled", "autoconverterDisabled", booleanAttribute], connexisDisabled: ["connexisDisabled", "connexisDisabled", booleanAttribute], teammembersDisabled: ["teammembersDisabled", "teammembersDisabled", booleanAttribute], propertymanagerDisabled: ["propertymanagerDisabled", "propertymanagerDisabled", booleanAttribute], shopDisabled: ["shopDisabled", "shopDisabled", booleanAttribute], addinsDisabled: ["addinsDisabled", "addinsDisabled", booleanAttribute], openProjectVisible: ["openProjectVisible", "openProjectVisible", booleanAttribute], bimplusProjectMenuVisible: ["bimplusProjectMenuVisible", "bimplusProjectMenuVisible", booleanAttribute], projectmembersVisible: ["projectmembersVisible", "projectmembersVisible", booleanAttribute], modelsVisible: ["modelsVisible", "modelsVisible", booleanAttribute], documentsVisible: ["documentsVisible", "documentsVisible", booleanAttribute], projectsettingsVisible: ["projectsettingsVisible", "projectsettingsVisible", booleanAttribute], processesVisible: ["processesVisible", "processesVisible", booleanAttribute], bimexplorerVisible: ["bimexplorerVisible", "bimexplorerVisible", booleanAttribute], autoconverterVisible: ["autoconverterVisible", "autoconverterVisible", booleanAttribute], connexisVisible: ["connexisVisible", "connexisVisible", booleanAttribute], teammembersVisible: ["teammembersVisible", "teammembersVisible", booleanAttribute], propertymanagerVisible: ["propertymanagerVisible", "propertymanagerVisible", booleanAttribute], shopVisible: ["shopVisible", "shopVisible", booleanAttribute], addinsVisible: ["addinsVisible", "addinsVisible", booleanAttribute], dividerprojectmanagementVisible: ["dividerprojectmanagementVisible", "dividerprojectmanagementVisible", booleanAttribute], dividerappsVisible: ["dividerappsVisible", "dividerappsVisible", booleanAttribute], appsWithInfo: "appsWithInfo" }, outputs: { bimplusMainMenuClicked: "bimplusMainMenuClicked", bimplusMainMenuOverlayClicked: "bimplusMainMenuOverlayClicked" }, providers: [TranslateService], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<ng-template #appItemContent let-contextData>\r\n @if (contextData.item.type === 'divider'){\r\n <div class=\"bim-mm-app-item\" [class]=\"contextData.item.class\" [id]=\"contextData.item.id\"></div>\r\n }@else {\r\n <div class=\"bim-mm-app-item\" [id]=\"contextData.item.id\"\r\n [ngClass]=\"isTouch?'':'hover-show-info '+(contextData.active?'active ':' ') +(contextData.disabled?'disabled ':' ')+(contextData.clickable?' ':'not-clickable ')+(contextData.selected?'selected ':' ')\"\r\n [title] =\"((contextData.disabled) ? (contextData.item.disabledTitle | translate) : '' )\"\r\n >\r\n <div class=\"bim-mm-app-item-details\"\r\n [ngClass] = \" contextData.clickable ? '' : 'not-clickable' \"\r\n (click)=\"_mainMenuItemClicked(contextData.item,'normal',$event)\">\r\n <div class=\"bim-mm-icon\"\r\n [ngClass]=\"contextData.item.class + (contextData.active?' active':'') + (contextData.disabled?' disabled ':'')\">\r\n </div>\r\n <span>{{(contextData.isDisabled && (contextData.item.textIdDisabled !==\"\") ? contextData.item.textIdDisabled : contextData.item.textId) | translate}}</span>\r\n </div>\r\n @if(contextData.showInfoIcon){\r\n <div class=\"bim-mm-app-item-info bim-mm-icon bim-mm-icon-info\"\r\n (click)=\"_mainMenuItemClicked(contextData.item, 'info',$event)\">\r\n </div>\r\n }\r\n </div>\r\n }\r\n</ng-template>\r\n\r\n\r\n\r\n<div class=\"bim-mm-wrapper\" [ngClass]=\"showOverlay ? 'bim-mm-overlay' : ''\" (click)=\"_overlayClicked()\">\r\n <div class= \"bim-mm-container\">\r\n @if(!_isHidden(_openPrjBtn)){\r\n <ng-container\r\n *ngTemplateOutlet=\"appItemContent; context: { $implicit: _getContextData(_openPrjBtn,projectActiveItem === 'projectlist',_isDisabled(_openPrjBtn),true,projectActiveItem === 'projectlist') }\"\r\n ></ng-container>\r\n }\r\n\r\n @if(bimplusProjectMenuVisible){\r\n <lib-bimplus-project-menu\r\n projectName = {{projectName}}\r\n projectImageUrl = {{projectImageUrl}}\r\n projectExplorerUrl = {{projectExplorerUrl}}\r\n projectActiveItem = {{projectActiveItem}}\r\n projectmembersDisabled = {{projectmembersDisabled}}\r\n modelsDisabled = {{modelsDisabled}}\r\n documentsDisabled = {{documentsDisabled}}\r\n projectsettingsDisabled = {{projectsettingsDisabled}}\r\n processesDisabled = {{processesDisabled}}\r\n projectmembersVisible = {{projectmembersVisible}}\r\n modelsVisible = {{modelsVisible}}\r\n documentsVisible = {{documentsVisible}}\r\n projectsettingsVisible = {{projectsettingsVisible}}\r\n processesVisible = {{processesVisible}}\r\n isCollapsed = {{isCollapsed}}\r\n isMiniMode = {{isTouch}}\r\n isTouch = {{isTouch}}\r\n hideMenuIcons = {{hideProjectMenuIcons}}\r\n showHorizontalMenuIcons = {{showHorizontalMenuIcons}}\r\n ></lib-bimplus-project-menu>\r\n }\r\n <div [ngClass]=\"appsList.length || footerList.length ? 'bim-mm-apps-container' : ''\">\r\n <div class=\"bim-mm-apps-list\">\r\n <div *ngFor=\"let appItem of appsList\">\r\n <ng-container\r\n *ngTemplateOutlet=\"appItemContent; context: { $implicit: _getContextData(appItem,!_isSubscribed(appItem),_isDisabled(appItem),_isClickable(appItem),menuActiveItem === appItem.action)}\"\r\n ></ng-container>\r\n </div>\r\n </div>\r\n <div class=\"bim-mm-footer-container\">\r\n <div *ngFor=\"let footerItem of footerList\">\r\n <ng-container\r\n *ngTemplateOutlet=\"appItemContent; context: { $implicit: _getContextData(footerItem,footerActiveItem === footerItem.action,_isDisabled(footerItem),true,false)}\"\r\n ></ng-container>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".bim-mm-container,.bim-mm-apps-container,.bim-mm-footer-container{display:flex;flex-direction:column;justify-content:flex-start}.bim-mm-wrapper{height:100%;font-size:1.6rem}.bim-mm-overlay{position:relative;height:100%;width:100vw;z-index:1;background-color:#0000004d}.bim-mm-icon{flex-shrink:0;display:inline-block;vertical-align:middle;width:1.13em;height:1.13em;background-size:1.13em 1.13em!important}.bim-mm-app-item{display:flex;flex-direction:row;justify-content:space-between;align-items:center;cursor:pointer;line-height:2em;min-height:2.5em;position:relative}.bim-mm-app-item.disabled{cursor:default;color:#d3d3d3}.bim-mm-app-item .bim-mm-app-item-details{display:flex;align-items:center;width:100%}.bim-mm-app-item .bim-mm-app-item-info{position:absolute;right:.375em;display:none}.bim-mm-app-item .not-clickable{pointer-events:none}.bim-mm-app-item-divider{width:100%;height:1px;min-height:1px;border-bottom:1px solid #E6E6E6;margin-top:.75em;margin-bottom:.75em}.hover-show-info:hover{background-color:#fff1eb}.hover-show-info:hover .bim-mm-app-item-info{display:block}.hover-show-info.selected,.bim-mm-app-item.selected{color:#fe5000}.hover-show-info.selected .bim-mm-icon-bim-explorer,.bim-mm-app-item.selected .bim-mm-icon-bim-explorer{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill-rule:evenodd;clip-rule:evenodd;fill:%23FE5000;}%0D%0A%09.st1{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M14.5,8.8c-1.4,0-2.5-0.5-3.5-1.1l-3,2L3.8,6.9L8,4l0,0l0.6-1C8.6,3,8.8,2.7,9,2.4l0,0L8,1.7L7,2.4l-6,4v8%0D%0A%09%09L8,19l7-4.6V8.8C14.8,8.8,14.7,8.8,14.5,8.8z M7,16l-4-2.7V8.7l4,2.7V16z M13,13.4L9,16v-4.7l4-2.7V13.4z\"/>%0D%0A%09<g>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,2.5C15.3,2.5,16,3.2,16,4s-0.7,1.5-1.5,1.5C13.6,5.5,13,4.8,13,4S13.6,2.5,14.5,2.5z\"/>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,1C11.8,1,10,4,10,4s1.8,3,4.5,3S19,4,19,4S17.3,1,14.5,1z M14.5,6.5C13.1,6.5,12,5.4,12,4%0D%0A%09%09%09s1.1-2.5,2.5-2.5S17,2.6,17,4S15.9,6.5,14.5,6.5z\"/>%0D%0A%09</g>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-cloud-viewer,.bim-mm-app-item.selected .bim-mm-icon-cloud-viewer{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_4_254)\">%0D%0A<path d=\"M9.39643 4.95238L9.36216 4.85H9.25419H7.98877H7.88066L7.84647 4.95256L5.29373 12.6105L5.22792 12.8079H5.43604H6.51245H6.62321L6.65581 12.702L8.54282 6.5744L10.4092 12.7016L10.4416 12.8079H10.5527H11.8176H12.026L11.9599 12.6103L9.39643 4.95238Z\" fill=\"%23FE5000\" stroke=\"%23FE5000\" stroke-width=\"0.3\"/>%0D%0A<mask id=\"path-2-outside-1_4_254\" maskUnits=\"userSpaceOnUse\" x=\"-0.5\" y=\"-0.500004\" width=\"19\" height=\"19\" fill=\"black\">%0D%0A<rect fill=\"white\" x=\"-0.5\" y=\"-0.500004\" width=\"19\" height=\"19\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840905C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55474 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80197 12.3419 2.53626C11.528 1.79242 10.607 1.19359 9.57155 0.840905ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6998 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\"/>%0D%0A</mask>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840905C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55474 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80197 12.3419 2.53626C11.528 1.79242 10.607 1.19359 9.57155 0.840905ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6998 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M0.5 5.8784L0.229911 5.74782L0.195679 5.81862L0.200584 5.89711L0.5 5.8784ZM9.57155 0.840905L9.66827 0.556925V0.556925L9.57155 0.840905ZM1.26094 10.0038L0.972537 10.0864L1.55807 9.96244L1.26094 10.0038ZM1.18469 8.62655L1.48457 8.63474L1.18469 8.62655ZM8.68481 1.27295L8.70111 0.973396L8.68481 1.27295ZM12.3419 2.53626L12.1714 2.78309L12.5443 2.31481L12.3419 2.53626ZM3.05232 14.0845L3.28325 13.893L2.8016 14.2492L3.05232 14.0845ZM6.78125 17.1568L6.68452 17.4408H6.68452L6.78125 17.1568ZM8.26145 16.7731L8.27775 16.4735L8.26145 16.7731ZM15.7616 9.4195L15.4617 9.41131L15.7616 9.4195ZM15.3529 6.60824L15.6181 6.46786L15.0679 6.70186L15.3529 6.60824ZM17.5 12.1745L17.7429 12.3506L17.8237 12.2392L17.7919 12.1052L17.5 12.1745ZM0.5 5.8784C0.770089 6.00899 0.770053 6.00906 0.770029 6.00911C0.770039 6.00909 0.770028 6.00911 0.770046 6.00908C0.770083 6.009 0.770171 6.00882 0.770309 6.00854C0.770587 6.00797 0.771068 6.00698 0.771753 6.00559C0.773123 6.0028 0.775307 5.99837 0.7783 5.99237C0.784287 5.98037 0.79351 5.96207 0.805938 5.93796C0.830796 5.88974 0.868455 5.8183 0.918652 5.72749C1.01908 5.5458 1.16949 5.287 1.36775 4.98183C1.76497 4.37042 2.3508 3.57829 3.10749 2.84773C4.62223 1.38528 6.77634 0.205772 9.47482 1.12488L9.66827 0.556925C6.669 -0.464635 4.28734 0.874606 2.69074 2.41608C1.89176 3.18747 1.27804 4.0186 0.864612 4.65495C0.657555 4.97366 0.49987 5.24486 0.39354 5.43722C0.340357 5.53343 0.299968 5.61001 0.272623 5.66306C0.258949 5.68958 0.248532 5.71023 0.241404 5.72452C0.23784 5.73167 0.235098 5.73722 0.233181 5.74112C0.232222 5.74308 0.23147 5.74461 0.230925 5.74573C0.230653 5.74629 0.230432 5.74675 0.230263 5.7471C0.230178 5.74727 0.23009 5.74745 0.230048 5.74754C0.229973 5.74769 0.229911 5.74782 0.5 5.8784ZM1.54934 9.92123C1.23214 8.81373 1.04437 7.796 0.935975 7.05508C0.881817 6.68487 0.847573 6.38444 0.826916 6.17726C0.816589 6.07368 0.809662 5.99347 0.805342 5.93955C0.803183 5.91259 0.801675 5.89221 0.800721 5.87878C0.800243 5.87206 0.799904 5.86708 0.799691 5.86389C0.799584 5.86229 0.799509 5.86114 0.799464 5.86044C0.799441 5.86009 0.799426 5.85985 0.799418 5.85972C0.799414 5.85966 0.799412 5.85963 0.799412 5.85962C0.799411 5.85962 0.799413 5.85964 0.799412 5.85964C0.799414 5.85966 0.799416 5.85969 0.5 5.8784C0.200584 5.89711 0.200587 5.89716 0.20059 5.89721C0.200592 5.89724 0.200596 5.8973 0.200599 5.89736C0.200606 5.89747 0.200615 5.8976 0.200625 5.89777C0.200647 5.8981 0.200675 5.89855 0.200711 5.89911C0.200784 5.90023 0.200887 5.90181 0.201022 5.90384C0.201292 5.90788 0.201691 5.91373 0.20223 5.92132C0.203309 5.9365 0.204952 5.95867 0.207259 5.98747C0.211872 6.04505 0.219144 6.12915 0.229876 6.23679C0.251339 6.45204 0.286663 6.76165 0.342295 7.14193C0.453484 7.90198 0.646178 8.94697 0.972537 10.0864L1.54934 9.92123ZM0.884797 8.61836C0.871562 9.10293 0.89898 9.57982 0.96381 10.0452L1.55807 9.96244C1.49778 9.52965 1.47225 9.08592 1.48457 8.63474L0.884797 8.61836ZM8.70111 0.973396C4.48974 0.744306 1.00582 4.18733 0.884797 8.61836L1.48457 8.63474C1.59736 4.50528 4.82929 1.36366 8.66852 1.57251L8.70111 0.973396ZM12.5124 2.28943C11.4065 1.52548 10.1044 1.04973 8.70111 0.973396L8.66852 1.57251C9.95499 1.64249 11.1513 2.07845 12.1714 2.78309L12.5124 2.28943ZM9.47482 1.12488C10.4632 1.46153 11.3493 2.03547 12.1395 2.75771L12.5443 2.31481C11.7068 1.54936 10.7509 0.925663 9.66827 0.556925L9.47482 1.12488ZM2.8016 14.2492C3.72385 15.6529 4.98008 16.8603 6.68452 17.4408L6.87797 16.8728C5.33628 16.3477 4.17639 15.249 3.30305 13.9197L2.8016 14.2492ZM8.27775 16.4735C6.29393 16.3656 4.52192 15.3867 3.28325 13.893L2.8214 14.276C4.1566 15.8861 6.07909 16.9548 8.24516 17.0727L8.27775 16.4735ZM15.4617 9.41131C15.3489 13.5408 12.117 16.6824 8.27775 16.4735L8.24516 17.0727C12.4565 17.3017 15.9404 13.8587 16.0615 9.4277L15.4617 9.41131ZM15.0679 6.70186C15.3468 7.55091 15.4875 8.46482 15.4617 9.41131L16.0615 9.4277C16.0892 8.41096 15.938 7.42821 15.638 6.51463L15.0679 6.70186ZM17.5 12.1745C17.7919 12.1052 17.7919 12.1051 17.7919 12.1051C17.7918 12.105 17.7918 12.105 17.7918 12.1049C17.7918 12.1048 17.7917 12.1046 17.7917 12.1044C17.7916 12.1039 17.7914 12.1033 17.7913 12.1025C17.7909 12.101 17.7903 12.0988 17.7897 12.0959C17.7883 12.0902 17.7862 12.0819 17.7836 12.071C17.7782 12.0494 17.7702 12.0176 17.7596 11.9764C17.7384 11.894 17.7066 11.7739 17.6638 11.6212C17.5782 11.3159 17.4486 10.8801 17.2719 10.3554C16.9187 9.30693 16.376 7.89939 15.6181 6.46786L15.0878 6.74862C15.8262 8.14319 16.357 9.51878 16.7033 10.5469C16.8763 11.0606 17.0029 11.4864 17.0861 11.7832C17.1277 11.9315 17.1584 12.0475 17.1786 12.1261C17.1887 12.1653 17.1962 12.1952 17.2011 12.215C17.2035 12.225 17.2054 12.2324 17.2065 12.2372C17.2071 12.2396 17.2075 12.2414 17.2078 12.2425C17.2079 12.243 17.208 12.2434 17.2081 12.2436C17.2081 12.2438 17.2081 12.2438 17.2081 12.2439C17.2081 12.2439 17.2081 12.2439 17.2081 12.2439C17.2081 12.2439 17.2081 12.2438 17.5 12.1745ZM6.68452 17.4408C9.67572 18.4596 12.463 17.1419 14.4583 15.6327C15.4612 14.8741 16.2806 14.0553 16.8489 13.4272C17.1334 13.1127 17.3557 12.8452 17.5074 12.6556C17.5832 12.5608 17.6415 12.4854 17.6811 12.4333C17.7009 12.4072 17.716 12.387 17.7264 12.3731C17.7315 12.3661 17.7355 12.3607 17.7383 12.3569C17.7396 12.3551 17.7407 12.3536 17.7415 12.3525C17.7419 12.352 17.7422 12.3516 17.7424 12.3513C17.7425 12.3511 17.7426 12.351 17.7427 12.3509C17.7428 12.3507 17.7429 12.3506 17.5 12.1745C17.2571 11.9984 17.2572 11.9983 17.2572 11.9983C17.2572 11.9983 17.2572 11.9983 17.2572 11.9984C17.2571 11.9985 17.2569 11.9987 17.2567 11.999C17.2562 11.9996 17.2555 12.0006 17.2544 12.0021C17.2523 12.005 17.249 12.0095 17.2445 12.0156C17.2355 12.0277 17.2217 12.0461 17.2034 12.0703C17.1666 12.1186 17.1114 12.1901 17.0389 12.2808C16.8937 12.4622 16.6793 12.7203 16.404 13.0246C15.8527 13.6339 15.0609 14.4246 14.0963 15.1541C12.1566 16.6213 9.58453 17.7947 6.87797 16.8728L6.68452 17.4408Z\" fill=\"%23FE5000\" mask=\"url(%23path-2-outside-1_4_254)\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_4_254\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-autoconverter,.bim-mm-app-item.selected .bim-mm-icon-autoconverter{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%23FE5000\"/>%0D%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%23FE5000\"/>%0D%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%23FE5000\"/>%0D%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%23FE5000\"/>%0D%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%23FE5000\"/>%0D%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-connexis,.bim-mm-app-item.selected .bim-mm-icon-connexis{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-users,.bim-mm-app-item.selected .bim-mm-icon-users{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-models,.bim-mm-app-item.selected .bim-mm-icon-models{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-documents,.bim-mm-app-item.selected .bim-mm-icon-documents{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4l0,0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-project-settings,.bim-mm-app-item.selected .bim-mm-icon-project-settings{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-processes,.bim-mm-app-item.selected .bim-mm-icon-processes{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-team-members,.bim-mm-app-item.selected .bim-mm-icon-team-members{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-property-manager,.bim-mm-app-item.selected .bim-mm-icon-property-manager{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-footer-container .bim-mm-app-item.active{background-color:#ffd5c4}#portalSelectProjectBtn{padding:.36em 0 .52em;line-height:2em;font-size:1em;background-color:#fff}#portalSelectProjectBtn .bim-mm-icon{box-sizing:border-box;width:2.8125em;margin:0 0 0 .0625em}#portalSelectProjectBtn .bim-mm-app-item-info{width:1.13em;margin-right:.375em}#portalSelectProjectBtn .bim-mm-app-item-details span{font-weight:600;color:#444;text-transform:capitalize}#portalSelectProjectBtn.disabled .bim-mm-app-item-details span{font-weight:600;color:#d3d3d3}#portalSelectProjectBtn.selected .bim-mm-app-item-details span{font-weight:600;color:#fe5000}#portalTeamManagementBtn,#portalPropertyManagerBtn{text-transform:capitalize}#portalShopBtn .bim-mm-app-item-info,#portalBimProcesses .bim-mm-app-item-info,#portalCloudViewerBtn .bim-mm-app-item-info,#portalConnexisBtn .bim-mm-app-item-info{display:none}.bim-mm-container{background-color:#f5f5f5;width:15.31em;min-height:100%;font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif}.bim-mm-apps-container{justify-content:space-between;background-color:#f5f5f5;flex:1 0 auto;margin-top:.5em}.bim-mm-apps-container .bim-mm-icon{margin:0 .8125em 0 .9375em}.bim-mm-icon-users{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-users.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-users.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23D3D3D3\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-models{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-models.active{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-models.disabled{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23D3D3D3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-documents{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4h0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-documents.active{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4l0,0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-documents.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4h0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-project-settings{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-project-settings.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-project-settings.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23d3d3d3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-processes{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-processes.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-processes.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23D3D3D3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-bim-explorer{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill-rule:evenodd;clip-rule:evenodd;fill:%23444;}%0D%0A%09.st1{fill:%23444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M14.5,8.8c-1.4,0-2.5-0.5-3.5-1.1l-3,2L3.8,6.9L8,4l0,0l0.6-1C8.6,3,8.8,2.7,9,2.4l0,0L8,1.7L7,2.4l-6,4v8%0D%0A%09%09L8,19l7-4.6V8.8C14.8,8.8,14.7,8.8,14.5,8.8z M7,16l-4-2.7V8.7l4,2.7V16z M13,13.4L9,16v-4.7l4-2.7V13.4z\"/>%0D%0A%09<g>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,2.5C15.3,2.5,16,3.2,16,4s-0.7,1.5-1.5,1.5C13.6,5.5,13,4.8,13,4S13.6,2.5,14.5,2.5z\"/>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,1C11.8,1,10,4,10,4s1.8,3,4.5,3S19,4,19,4S17.3,1,14.5,1z M14.5,6.5C13.1,6.5,12,5.4,12,4%0D%0A%09%09%09s1.1-2.5,2.5-2.5S17,2.6,17,4S15.9,6.5,14.5,6.5z\"/>%0D%0A%09</g>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-bim-explorer.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill-rule:evenodd;clip-rule:evenodd;fill:%23d3d3d3;}%0D%0A%09.st1{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M14.5,8.8c-1.4,0-2.5-0.5-3.5-1.1l-3,2L3.8,6.9L8,4l0,0l0.6-1C8.6,3,8.8,2.7,9,2.4l0,0L8,1.7L7,2.4l-6,4v8%0D%0A%09%09L8,19l7-4.6V8.8C14.8,8.8,14.7,8.8,14.5,8.8z M7,16l-4-2.7V8.7l4,2.7V16z M13,13.4L9,16v-4.7l4-2.7V13.4z\"/>%0D%0A%09<g>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,2.5C15.3,2.5,16,3.2,16,4s-0.7,1.5-1.5,1.5C13.6,5.5,13,4.8,13,4S13.6,2.5,14.5,2.5z\"/>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,1C11.8,1,10,4,10,4s1.8,3,4.5,3S19,4,19,4S17.3,1,14.5,1z M14.5,6.5C13.1,6.5,12,5.4,12,4%0D%0A%09%09%09s1.1-2.5,2.5-2.5S17,2.6,17,4S15.9,6.5,14.5,6.5z\"/>%0D%0A%09</g>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-cloud-viewer{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9.39643 4.95238L9.36216 4.84999H9.25419H7.98877H7.88066L7.84647 4.95256L5.29373 12.6105L5.22792 12.8079H5.43604H6.51245H6.62321L6.65581 12.702L8.54282 6.5744L10.4092 12.7016L10.4416 12.8079H10.5527H11.8176H12.026L11.9599 12.6103L9.39643 4.95238Z\" fill=\"%23444444\" stroke=\"%23444444\" stroke-width=\"0.3\"/>%0D%0A<mask id=\"path-2-outside-1_4_241\" maskUnits=\"userSpaceOnUse\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\" fill=\"black\">%0D%0A<rect fill=\"white\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\"/>%0D%0A</mask>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0.5 5.8784L0.229911 5.74782L0.195679 5.81862L0.200584 5.89711L0.5 5.8784ZM9.57155 0.840903L9.66827 0.556923V0.556923L9.57155 0.840903ZM1.26094 10.0038L0.972537 10.0864L1.55807 9.96244L1.26094 10.0038ZM1.18469 8.62655L1.48457 8.63474L1.18469 8.62655ZM8.68481 1.27295L8.70111 0.973394L8.68481 1.27295ZM12.3419 2.53626L12.1714 2.78309L12.5443 2.31481L12.3419 2.53626ZM3.05232 14.0845L3.28325 13.893L2.8016 14.2492L3.05232 14.0845ZM6.78125 17.1568L6.68452 17.4408H6.68452L6.78125 17.1568ZM8.26145 16.7731L8.27775 16.4735L8.26145 16.7731ZM15.7616 9.4195L15.4617 9.41131L15.7616 9.4195ZM15.3529 6.60824L15.6181 6.46786L15.0679 6.70186L15.3529 6.60824ZM17.5 12.1745L17.7429 12.3506L17.8237 12.2392L17.7919 12.1052L17.5 12.1745ZM0.5 5.8784C0.770089 6.00899 0.770053 6.00906 0.770029 6.00911C0.770039 6.00909 0.770028 6.00911 0.770046 6.00907C0.770083 6.009 0.770171 6.00882 0.770309 6.00853C0.770587 6.00796 0.771068 6.00698 0.771753 6.00558C0.773123 6.00279 0.775307 5.99837 0.7783 5.99237C0.784287 5.98037 0.79351 5.96207 0.805938 5.93796C0.830796 5.88974 0.868455 5.81829 0.918652 5.72749C1.01908 5.5458 1.16949 5.287 1.36775 4.98183C1.76497 4.37042 2.3508 3.57829 3.10749 2.84773C4.62223 1.38528 6.77634 0.20577 9.47482 1.12488L9.66827 0.556923C6.669 -0.464637 4.28734 0.874604 2.69074 2.41608C1.89176 3.18747 1.27804 4.01859 0.864612 4.65495C0.657555 4.97366 0.49987 5.24486 0.39354 5.43721C0.340357 5.53342 0.299968 5.61001 0.272623 5.66305C0.258949 5.68958 0.248532 5.71023 0.241404 5.72452C0.23784 5.73166 0.235098 5.73722 0.233181 5.74112C0.232222 5.74307 0.23147 5.74461 0.230925 5.74573C0.230653 5.74629 0.230432 5.74675 0.230263 5.74709C0.230178 5.74727 0.23009 5.74745 0.230048 5.74754C0.229973 5.74769 0.229911 5.74782 0.5 5.8784ZM1.54934 9.92123C1.23214 8.81373 1.04437 7.796 0.935975 7.05508C0.881817 6.68487 0.847573 6.38443 0.826916 6.17726C0.816589 6.07368 0.809662 5.99347 0.805342 5.93955C0.803183 5.91259 0.801675 5.89221 0.800721 5.87878C0.800243 5.87206 0.799904 5.86708 0.799691 5.86389C0.799584 5.86229 0.799509 5.86114 0.799464 5.86044C0.799441 5.86008 0.799426 5.85985 0.799418 5.85972C0.799414 5.85966 0.799412 5.85963 0.799412 5.85962C0.799411 5.85962 0.799413 5.85964 0.799412 5.85964C0.799414 5.85966 0.799416 5.85969 0.5 5.8784C0.200584 5.89711 0.200587 5.89716 0.20059 5.89721C0.200592 5.89724 0.200596 5.8973 0.200599 5.89735C0.200606 5.89746 0.200615 5.8976 0.200625 5.89777C0.200647 5.8981 0.200675 5.89855 0.200711 5.89911C0.200784 5.90023 0.200887 5.90181 0.201022 5.90383C0.201292 5.90788 0.201691 5.91373 0.20223 5.92132C0.203309 5.9365 0.204952 5.95867 0.207259 5.98746C0.211872 6.04505 0.219144 6.12914 0.229876 6.23679C0.251339 6.45204 0.286663 6.76165 0.342295 7.14193C0.453484 7.90198 0.646178 8.94696 0.972537 10.0864L1.54934 9.92123ZM0.884797 8.61836C0.871562 9.10292 0.89898 9.57982 0.96381 10.0452L1.55807 9.96244C1.49778 9.52965 1.47225 9.08592 1.48457 8.63474L0.884797 8.61836ZM8.70111 0.973394C4.48974 0.744304 1.00582 4.18732 0.884797 8.61836L1.48457 8.63474C1.59736 4.50528 4.82929 1.36366 8.66852 1.57251L8.70111 0.973394ZM12.5124 2.28942C11.4065 1.52548 10.1044 1.04973 8.70111 0.973394L8.66852 1.57251C9.95499 1.64249 11.1513 2.07845 12.1714 2.78309L12.5124 2.28942ZM9.47482 1.12488C10.4632 1.46152 11.3493 2.03547 12.1395 2.7577L12.5443 2.31481C11.7068 1.54936 10.7509 0.925661 9.66827 0.556923L9.47482 1.12488ZM2.8016 14.2492C3.72385 15.6529 4.98008 16.8602 6.68452 17.4408L6.87797 16.8728C5.33628 16.3477 4.17639 15.249 3.30305 13.9197L2.8016 14.2492ZM8.27775 16.4735C6.29393 16.3656 4.52192 15.3867 3.28325 13.893L2.8214 14.276C4.1566 15.8861 6.07909 16.9548 8.24516 17.0727L8.27775 16.4735ZM15.4617 9.41131C15.3489 13.5408 12.117 16.6824 8.27775 16.4735L8.24516 17.0727C12.4565 17.3017 15.9404 13.8587 16.0615 9.42769L15.4617 9.41131ZM15.0679 6.70186C15.3468 7.55091 15.4875 8.46482 15.4617 9.41131L16.0615 9.42769C16.0892 8.41096 15.938 7.42821 15.638 6.51462L15.0679 6.70186ZM17.5 12.1745C17.7919 12.1052 17.7919 12.1051 17.7919 12.1051C17.7918 12.105 17.7918 12.105 17.7918 12.1049C17.7918 12.1048 17.7917 12.1046 17.7917 12.1044C17.7916 12.1039 17.7914 12.1033 17.7913 12.1025C17.7909 12.101 17.7903 12.0988 17.7897 12.0959C17.7883 12.0902 17.7862 12.0819 17.7836 12.071C17.7782 12.0494 17.7702 12.0176 17.7596 11.9764C17.7384 11.894 17.7066 11.7739 17.6638 11.6212C17.5782 11.3159 17.4486 10.8801 17.2719 10.3554C16.9187 9.30693 16.376 7.89939 15.6181 6.46786L15.0878 6.74862C15.8262 8.14319 16.357 9.51878 16.7033 10.5469C16.8763 11.0606 17.0029 11.4864 17.0861 11.7832C17.1277 11.9315 17.1584 12.0475 17.1786 12.1261C17.1887 12.1653 17.1962 12.1952 17.2011 12.215C17.2035 12.2249 17.2054 12.2324 17.2065 12.2372C17.2071 12.2396 17.2075 12.2414 17.2078 12.2425C17.2079 12.243 17.208 12.2434 17.2081 12.2436C17.2081 12.2438 17.2081 12.2438 17.2081 12.2439C17.2081 12.2439 17.2081 12.2439 17.2081 12.2439C17.2081 12.2438 17.2081 12.2438 17.5 12.1745ZM6.68452 17.4408C9.67572 18.4596 12.463 17.1419 14.4583 15.6327C15.4612 14.8741 16.2806 14.0553 16.8489 13.4272C17.1334 13.1127 17.3557 12.8452 17.5074 12.6556C17.5832 12.5608 17.6415 12.4854 17.6811 12.4333C17.7009 12.4072 17.716 12.387 17.7264 12.373C17.7315 12.3661 17.7355 12.3607 17.7383 12.3569C17.7396 12.3551 17.7407 12.3536 17.7415 12.3525C17.7419 12.352 17.7422 12.3516 17.7424 12.3513C17.7425 12.3511 17.7426 12.351 17.7427 12.3509C17.7428 12.3507 17.7429 12.3506 17.5 12.1745C17.2571 11.9984 17.2572 11.9983 17.2572 11.9983C17.2572 11.9983 17.2572 11.9983 17.2572 11.9984C17.2571 11.9985 17.2569 11.9987 17.2567 11.999C17.2562 11.9996 17.2555 12.0006 17.2544 12.0021C17.2523 12.005 17.249 12.0095 17.2445 12.0156C17.2355 12.0277 17.2217 12.0461 17.2034 12.0703C17.1666 12.1186 17.1114 12.1901 17.0389 12.2808C16.8937 12.4622 16.6793 12.7203 16.404 13.0246C15.8527 13.6339 15.0609 14.4246 14.0963 15.1541C12.1566 16.6213 9.58453 17.7947 6.87797 16.8728L6.68452 17.4408Z\" fill=\"%23444444\" mask=\"url(%23path-2-outside-1_4_241)\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-cloud-viewer.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9.39643 4.95238L9.36216 4.84999H9.25419H7.98877H7.88066L7.84647 4.95256L5.29373 12.6105L5.22792 12.8079H5.43604H6.51245H6.62321L6.65581 12.702L8.54282 6.5744L10.4092 12.7016L10.4416 12.8079H10.5527H11.8176H12.026L11.9599 12.6103L9.39643 4.95238Z\" fill=\"%23D3D3D3\" stroke=\"%23D3D3D3\" stroke-width=\"0.3\"/>%0D%0A<mask id=\"path-2-outside-1_4_241\" maskUnits=\"userSpaceOnUse\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\" fill=\"%23D3D3D3\">%0D%0A<rect fill=\"white\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\"/>%0D%0A</mask>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\" fill=\"%23DED3D3\"/>%0D%0A<path d=\"M0.5 5.8784L0.229911 5.74782L0.195679 5.81862L0.200584 5.89711L0.5 5.8784ZM9.57155 0.840903L9.66827 0.556923V0.556923L9.57155 0.840903ZM1.26094 10.0038L0.972537 10.0864L1.55807 9.96244L1.26094 10.0038ZM1.18469 8.62655L1.48457 8.63474L1.18469 8.62655ZM8.68481 1.27295L8.70111 0.973394L8.68481 1.27295ZM12.3419 2.53626L12.1714 2.78309L12.5443 2.31481L12.3419 2.53626ZM3.05232 14.0845L3.28325 13.893L2.8016 14.2492L3.05232 14.0845ZM6.78125 17.1568L6.68452 17.4408H6.68452L6.78125 17.1568ZM8.26145 16.7731L8.27775 16.4735L8.26145 16.7731ZM15.7616 9.4195L15.4617 9.41131L15.7616 9.4195ZM15.3529 6.60824L15.6181 6.46786L15.0679 6.70186L15.3529 6.60824ZM17.5 12.1745L17.7429 12.3506L17.8237 12.2392L17.7919 12.1052L17.5 12.1745ZM0.5 5.8784C0.770089 6.00899 0.770053 6.00906 0.770029 6.00911C0.770039 6.00909 0.770028 6.00911 0.770046 6.00907C0.770083 6.009 0.770171 6.00882 0.770309 6.00853C0.770587 6.00796 0.771068 6.00698 0.771753 6.00558C0.773123 6.00279 0.775307 5.99837 0.7783 5.99237C0.784287 5.98037 0.79351 5.96207 0.805938 5.93796C0.830796 5.88974 0.868455 5.81829 0.918652 5.72749C1.01908 5.5458 1.16949 5.287 1.36775 4.98183C1.76497 4.37042 2.3508 3.57829 3.10749 2.84773C4.62223 1.38528 6.77634 0.20577 9.47482 1.12488L9.66827 0.556923C6.669 -0.464637 4.28734 0.874604 2.69074 2.41608C1.89176 3.18747 1.27804 4.01859 0.864612 4.65495C0.657555 4.97366 0.49987 5.24486 0.39354 5.43721C0.340357 5.53342 0.299968 5.61001 0.272623 5.66305C0.258949 5.68958 0.248532 5.71023 0.241404 5.72452C0.23784 5.73166 0.235098 5.73722 0.233181 5.74112C0.232222 5.74307 0.23147 5.74461 0.230925 5.74573C0.230653 5.74629 0.230432 5.74675 0.230263 5.74709C0.230178 5.74727 0.23009 5.74745 0.230048 5.74754C0.229973 5.74769 0.229911 5.74782 0.5 5.8784ZM1.54934 9.92123C1.23214 8.81373 1.04437 7.796 0.935975 7.05508C0.881817 6.68487 0.847573 6.38443 0.826916 6.17726C0.816589 6.07368 0.809662 5.99347 0.805342 5.93955C0.803183 5.91259 0.801675 5.89221 0.800721 5.87878C0.800243 5.87206 0.799904 5.86708 0.799691 5.86389C0.799584 5.86229 0.799509 5.86114 0.799464 5.86044C0.799441 5.86008 0.799426 5.85985 0.799418 5.85972C0.799414 5.85966 0.799412 5.85963 0.799412 5.85962C0.799411 5.85962 0.799413 5.85964 0.799412 5.85964C0.799414 5.85966 0.799416 5.85969 0.5 5.8784C0.200584 5.89711 0.200587 5.89716 0.20059 5.89721C0.200592 5.89724 0.200596 5.8973 0.200599 5.89735C0.200606 5.89746 0.200615 5.8976 0.200625 5.89777C0.200647 5.8981 0.200675 5.89855 0.200711 5.89911C0.200784 5.90023 0.200887 5.90181 0.201022 5.90383C0.201292 5.90788 0.201691 5.91373 0.20223 5.92132C0.203309 5.9365 0.204952 5.95867 0.207259 5.98746C0.211872 6.04505 0.219144 6.12914 0.229876 6.23679C0.251339 6.45204 0.286663 6.76165 0.342295 7.14193C0.453484 7.90198 0.646178 8.94696 0.972537 10.0864L1.54934 9.92123ZM0.884797 8.61836C0.871562 9.10292 0.89898 9.57982 0.96381 10.0452L1.55807 9.96244C1.49778 9.52965 1.47225 9.08592 1.48457 8.63474L0.884797 8.61836ZM8.70111 0.973394C4.48974 0.744304 1.00582 4.18732 0.884797 8.61836L1.48457 8.63474C1.59736 4.50528 4.82929 1.36366 8.66852 1.57251L8.70111 0.973394ZM12.5124 2.28942C11.4065 1.52548 10.1044 1.04973 8.70111 0.973394L8.66852 1.57251C9.95499 1.64249 11.1513 2.07845 12.1714 2.78309L12.5124 2.28942ZM9.47482 1.12488C10.4632 1.46152 11.3493 2.03547 12.1395 2.7577L12.5443 2.31481C11.7068 1.54936 10.7509 0.925661 9.66827 0.556923L9.47482 1.12488ZM2.8016 14.2492C3.72385 15.6529 4.98008 16.8602 6.68452 17.4408L6.87797 16.8728C5.33628 16.3477 4.17639 15.249 3.30305 13.9197L2.8016 14.2492ZM8.27775 16.4735C6.29393 16.3656 4.52192 15.3867 3.28325 13.893L2.8214 14.276C4.1566 15.8861 6.07909 16.9548 8.24516 17.0727L8.27775 16.4735ZM15.4617 9.41131C15.3489 13.5408 12.117 16.6824 8.27775 16.4735L8.24516 17.0727C12.4565 17.3017 15.9404 13.8587 16.0615 9.42769L15.4617 9.41131ZM15.0679 6.70186C15.3468 7.55091 15.4875 8.46482 15.4617 9.41131L16.0615 9.42769C16.0892 8.41096 15.938 7.42821 15.638 6.51462L15.0679 6.70186ZM17.5 12.1745C17.7919 12.1052 17.7919 12.1051 17.7919 12.1051C17.7918 12.105 17.7918 12.105 17.7918 12.1049C17.7918 12.1048 17.7917 12.1046 17.7917 12.1044C17.7916 12.1039 17.7914 12.1033 17.7913 12.1025C17.7909 12.101 17.7903 12.0988 17.7897 12.0959C17.7883 12.0902 17.7862 12.0819 17.7836 12.071C17.7782 12.0494 17.7702 12.0176 17.7596 11.9764C17.7384 11.894 17.7066 11.7739 17.6638 11.6212C17.5782 11.3159 17.4486 10.8801 17.2719 10.3554C16.9187 9.30693 16.376 7.89939 15.6181 6.46786L15.0878 6.74862C15.8262 8.14319 16.357 9.51878 16.7033 10.5469C16.8763 11.0606 17.0029 11.4864 17.0861 11.7832C17.1277 11.9315 17.1584 12.0475 17.1786 12.1261C17.1887 12.1653 17.1962 12.1952 17.2011 12.215C17.2035 12.2249 17.2054 12.2324 17.2065 12.2372C17.2071 12.2396 17.2075 12.2414 17.2078 12.2425C17.2079 12.243 17.208 12.2434 17.2081 12.2436C17.2081 12.2438 17.2081 12.2438 17.2081 12.2439C17.2081 12.2439 17.2081 12.2439 17.2081 12.2439C17.2081 12.2438 17.2081 12.2438 17.5 12.1745ZM6.68452 17.4408C9.67572 18.4596 12.463 17.1419 14.4583 15.6327C15.4612 14.8741 16.2806 14.0553 16.8489 13.4272C17.1334 13.1127 17.3557 12.8452 17.5074 12.6556C17.5832 12.5608 17.6415 12.4854 17.6811 12.4333C17.7009 12.4072 17.716 12.387 17.7264 12.373C17.7315 12.3661 17.7355 12.3607 17.7383 12.3569C17.7396 12.3551 17.7407 12.3536 17.7415 12.3525C17.7419 12.352 17.7422 12.3516 17.7424 12.3513C17.7425 12.3511 17.7426 12.351 17.7427 12.3509C17.7428 12.3507 17.7429 12.3506 17.5 12.1745C17.2571 11.9984 17.2572 11.9983 17.2572 11.9983C17.2572 11.9983 17.2572 11.9983 17.2572 11.9984C17.2571 11.9985 17.2569 11.9987 17.2567 11.999C17.2562 11.9996 17.2555 12.0006 17.2544 12.0021C17.2523 12.005 17.249 12.0095 17.2445 12.0156C17.2355 12.0277 17.2217 12.0461 17.2034 12.0703C17.1666 12.1186 17.1114 12.1901 17.0389 12.2808C16.8937 12.4622 16.6793 12.7203 16.404 13.0246C15.8527 13.6339 15.0609 14.4246 14.0963 15.1541C12.1566 16.6213 9.58453 17.7947 6.87797 16.8728L6.68452 17.4408Z\" fill=\"%23D3D3D3\" mask=\"url(%23path-2-outside-1_4_241)\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-autoconverter{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%232F3133\"/>%0D%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%232F3133\"/>%0D%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0D%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%232F3133\"/>%0D%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%232F3133\"/>%0D%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0D%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%232F3133\"/>%0D%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%232F3133\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-autoconverter.active{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%232F3133\"/>%0D%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%232F3133\"/>%0D%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0D%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%232F3133\"/>%0D%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%232F3133\"/>%0D%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0D%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%232F3133\"/>%0D%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%232F3133\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-autoconverter.disabled{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%23d3d3d3\"/>%0D%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%23d3d3d3\"/>%0D%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%23d3d3d3\"/>%0D%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%23d3d3d3\"/>%0D%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%23d3d3d3\"/>%0D%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%23d3d3d3\"/>%0D%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%23d3d3d3\"/>%0D%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%23d3d3d3\"/>%0D%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%23d3d3d3\"/>%0D%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%23d3d3d3\"/>%0D%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%23d3d3d3\"/>%0D%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%23d3d3d3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-connexis{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-connexis.disabled{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23d3d3d3\"/>%0D%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23d3d3d3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-team-members{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-team-members.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-property-manager{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-property-manager.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-property-manager.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23d3d3d3\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23d3d3d3\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23d3d3d3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-shop{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M8.5,16c0.8,0,1.5,0.7,1.5,1.5S9.3,19,8.5,19S7,18.3,7,17.5S7.7,16,8.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M17.5,16c0.8,0,1.5,0.7,1.5,1.5S18.3,19,17.5,19S16,18.3,16,17.5S16.7,16,17.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M0,2v2h3l5,10h12V6H6.1L4,2H0z M7.1,7.9H18V12H9.2L7.1,7.9z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-shop.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M8.5,16c0.8,0,1.5,0.7,1.5,1.5S9.3,19,8.5,19S7,18.3,7,17.5S7.7,16,8.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M17.5,16c0.8,0,1.5,0.7,1.5,1.5S18.3,19,17.5,19S16,18.3,16,17.5S16.7,16,17.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M0,2v2h3l5,10h12V6H6.1L4,2H0z M7.1,7.9H18V12H9.2L7.1,7.9z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-info{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center;background-size:auto!important}.bim-mm-icon-info:hover{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23F05423;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center;background-size:auto!important;cursor:pointer}.bim-mm-icon-folder{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M17,7V5V4V1h-6L8,3H0v16h2h15l3-12H17z M8,5h0.6l0.5-0.3L11.6,3H15v1v1v2H3l-1,4V5H8z M15.4,17H2.6l2-8H15h2%0D%0A%09h0.4L15.4,17z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-folder.active{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M17,7V5V4V1h-6L8,3H0v16h2h15l3-12H17z M8,5h0.6l0.5-0.3L11.6,3H15v1v1v2H3l-1,4V5H8z M15.4,17H2.6l2-8H15h2%0D%0A%09h0.4L15.4,17z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-folder.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M17,7V5V4V1h-6L8,3H0v16h2h15l3-12H17z M8,5h0.6l0.5-0.3L11.6,3H15v1v1v2H3l-1,4V5H8z M15.4,17H2.6l2-8H15h2%0D%0A%09h0.4L15.4,17z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-add-ins{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M15 8H10V3H8V8H3V10H8V15H10V10H15V8Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }, { kind: "component", type: BimplusProjectMenuComponent, selector: "lib-bimplus-project-menu", inputs: ["projectName", "projectImageUrl", "projectExplorerUrl", "projectActiveItem", "projectmembersDisabled", "modelsDisabled", "documentsDisabled", "projectsettingsDisabled", "processesDisabled", "projectmembersVisible", "modelsVisible", "documentsVisible", "projectsettingsVisible", "processesVisible", "isCollapsed", "isMiniMode", "isTouch", "hideMenuIcons", "showHorizontalMenuIcons"] }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
1643
1965
  }
1644
1966
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusMainMenuComponent, decorators: [{
1645
1967
  type: Component,
1646
- args: [{ selector: 'lib-bimplus-main-menu', standalone: true, imports: [CommonModule, TranslateModule, BimplusProjectMenuComponent], providers: [TranslateService], encapsulation: ViewEncapsulation.ShadowDom, template: "<ng-template #appItemContent let-contextData>\r\n @if (contextData.item.type === 'divider'){\r\n <div class=\"bim-mm-app-item\" [class]=\"contextData.item.class\" [id]=\"contextData.item.id\"></div>\r\n }@else {\r\n <div class=\"bim-mm-app-item\" [id]=\"contextData.item.id\"\r\n [ngClass]=\"isTouch?'':'hover-show-info '+(contextData.active?'active ':' ') +(contextData.disabled?'disabled ':' ')+(contextData.clickable?' ':'not-clickable ')+(contextData.selected?'selected ':' ')\"\r\n [title] =\"((contextData.disabled) ? (contextData.item.disabledTitle | translate) : '' )\"\r\n >\r\n <div class=\"bim-mm-app-item-details\"\r\n [ngClass] = \" contextData.clickable ? '' : 'not-clickable' \"\r\n (click)=\"_mainMenuItemClicked(contextData.item,'normal',$event)\">\r\n <div class=\"bim-mm-icon\"\r\n [ngClass]=\"contextData.item.class + (contextData.active?' active':'') + (contextData.disabled?' disabled ':'')\">\r\n </div>\r\n <span>{{(contextData.isDisabled && (contextData.item.textIdDisabled !==\"\") ? contextData.item.textIdDisabled : contextData.item.textId) | translate}}</span>\r\n </div>\r\n @if(contextData.showInfoIcon){\r\n <div class=\"bim-mm-app-item-info bim-mm-icon bim-mm-icon-info\"\r\n (click)=\"_mainMenuItemClicked(contextData.item, 'info',$event)\">\r\n </div>\r\n }\r\n </div>\r\n }\r\n</ng-template>\r\n\r\n\r\n\r\n<div class=\"bim-mm-wrapper\" [ngClass]=\"showOverlay ? 'bim-mm-overlay' : ''\" (click)=\"_overlayClicked()\">\r\n <div class= \"bim-mm-container\">\r\n @if(!_isHidden(_openPrjBtn)){\r\n <ng-container\r\n *ngTemplateOutlet=\"appItemContent; context: { $implicit: _getContextData(_openPrjBtn,projectActiveItem === 'projectlist',_isDisabled(_openPrjBtn),true,projectActiveItem === 'projectlist') }\"\r\n ></ng-container>\r\n }\r\n\r\n @if(bimplusProjectMenuVisible){\r\n <lib-bimplus-project-menu\r\n projectName = {{projectName}}\r\n projectImageUrl = {{projectImageUrl}}\r\n projectExplorerUrl = {{projectExplorerUrl}}\r\n projectActiveItem = {{projectActiveItem}}\r\n projectmembersDisabled = {{projectmembersDisabled}}\r\n modelsDisabled = {{modelsDisabled}}\r\n documentsDisabled = {{documentsDisabled}}\r\n projectsettingsDisabled = {{projectsettingsDisabled}}\r\n processesDisabled = {{processesDisabled}}\r\n projectmembersVisible = {{projectmembersVisible}}\r\n modelsVisible = {{modelsVisible}}\r\n documentsVisible = {{documentsVisible}}\r\n projectsettingsVisible = {{projectsettingsVisible}}\r\n processesVisible = {{processesVisible}}\r\n isCollapsed = {{isCollapsed}}\r\n isMiniMode = {{isTouch}}\r\n isTouch = {{isTouch}}\r\n hideMenuIcons = {{hideProjectMenuIcons}}\r\n showHorizontalMenuIcons = {{showHorizontalMenuIcons}}\r\n ></lib-bimplus-project-menu>\r\n }\r\n <div [ngClass]=\"appsList.length || footerList.length ? 'bim-mm-apps-container' : ''\">\r\n <div class=\"bim-mm-apps-list\">\r\n <div *ngFor=\"let appItem of appsList\">\r\n <ng-container\r\n *ngTemplateOutlet=\"appItemContent; context: { $implicit: _getContextData(appItem,!_isSubscribed(appItem),_isDisabled(appItem),_isClickable(appItem),menuActiveItem === appItem.action)}\"\r\n ></ng-container>\r\n </div>\r\n </div>\r\n <div class=\"bim-mm-footer-container\">\r\n <div *ngFor=\"let footerItem of footerList\">\r\n <ng-container\r\n *ngTemplateOutlet=\"appItemContent; context: { $implicit: _getContextData(footerItem,footerActiveItem === footerItem.action,_isDisabled(footerItem),true,false)}\"\r\n ></ng-container>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".bim-mm-container,.bim-mm-apps-container,.bim-mm-footer-container{display:flex;flex-direction:column;justify-content:flex-start}.bim-mm-wrapper{height:100%;font-size:1.6rem}.bim-mm-overlay{position:relative;height:100%;width:100vw;z-index:1;background-color:#0000004d}.bim-mm-icon{flex-shrink:0;display:inline-block;vertical-align:middle;width:1.13em;height:1.13em;background-size:1.13em 1.13em!important}.bim-mm-app-item{display:flex;flex-direction:row;justify-content:space-between;align-items:center;cursor:pointer;line-height:2em;min-height:2.5em;position:relative}.bim-mm-app-item.disabled{cursor:default;color:#d3d3d3}.bim-mm-app-item .bim-mm-app-item-details{display:flex;align-items:center;width:100%}.bim-mm-app-item .bim-mm-app-item-info{position:absolute;right:.375em;display:none}.bim-mm-app-item .not-clickable{pointer-events:none}.bim-mm-app-item-divider{width:100%;height:1px;min-height:1px;border-bottom:1px solid #E6E6E6;margin-top:.75em;margin-bottom:.75em}.hover-show-info:hover{background-color:#fff1eb}.hover-show-info:hover .bim-mm-app-item-info{display:block}.hover-show-info.selected,.bim-mm-app-item.selected{color:#fe5000}.hover-show-info.selected .bim-mm-icon-bim-explorer,.bim-mm-app-item.selected .bim-mm-icon-bim-explorer{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill-rule:evenodd;clip-rule:evenodd;fill:%23FE5000;}%0D%0A%09.st1{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M14.5,8.8c-1.4,0-2.5-0.5-3.5-1.1l-3,2L3.8,6.9L8,4l0,0l0.6-1C8.6,3,8.8,2.7,9,2.4l0,0L8,1.7L7,2.4l-6,4v8%0D%0A%09%09L8,19l7-4.6V8.8C14.8,8.8,14.7,8.8,14.5,8.8z M7,16l-4-2.7V8.7l4,2.7V16z M13,13.4L9,16v-4.7l4-2.7V13.4z\"/>%0D%0A%09<g>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,2.5C15.3,2.5,16,3.2,16,4s-0.7,1.5-1.5,1.5C13.6,5.5,13,4.8,13,4S13.6,2.5,14.5,2.5z\"/>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,1C11.8,1,10,4,10,4s1.8,3,4.5,3S19,4,19,4S17.3,1,14.5,1z M14.5,6.5C13.1,6.5,12,5.4,12,4%0D%0A%09%09%09s1.1-2.5,2.5-2.5S17,2.6,17,4S15.9,6.5,14.5,6.5z\"/>%0D%0A%09</g>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-cloud-viewer,.bim-mm-app-item.selected .bim-mm-icon-cloud-viewer{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_4_254)\">%0D%0A<path d=\"M9.39643 4.95238L9.36216 4.85H9.25419H7.98877H7.88066L7.84647 4.95256L5.29373 12.6105L5.22792 12.8079H5.43604H6.51245H6.62321L6.65581 12.702L8.54282 6.5744L10.4092 12.7016L10.4416 12.8079H10.5527H11.8176H12.026L11.9599 12.6103L9.39643 4.95238Z\" fill=\"%23FE5000\" stroke=\"%23FE5000\" stroke-width=\"0.3\"/>%0D%0A<mask id=\"path-2-outside-1_4_254\" maskUnits=\"userSpaceOnUse\" x=\"-0.5\" y=\"-0.500004\" width=\"19\" height=\"19\" fill=\"black\">%0D%0A<rect fill=\"white\" x=\"-0.5\" y=\"-0.500004\" width=\"19\" height=\"19\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840905C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55474 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80197 12.3419 2.53626C11.528 1.79242 10.607 1.19359 9.57155 0.840905ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6998 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\"/>%0D%0A</mask>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840905C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55474 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80197 12.3419 2.53626C11.528 1.79242 10.607 1.19359 9.57155 0.840905ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6998 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M0.5 5.8784L0.229911 5.74782L0.195679 5.81862L0.200584 5.89711L0.5 5.8784ZM9.57155 0.840905L9.66827 0.556925V0.556925L9.57155 0.840905ZM1.26094 10.0038L0.972537 10.0864L1.55807 9.96244L1.26094 10.0038ZM1.18469 8.62655L1.48457 8.63474L1.18469 8.62655ZM8.68481 1.27295L8.70111 0.973396L8.68481 1.27295ZM12.3419 2.53626L12.1714 2.78309L12.5443 2.31481L12.3419 2.53626ZM3.05232 14.0845L3.28325 13.893L2.8016 14.2492L3.05232 14.0845ZM6.78125 17.1568L6.68452 17.4408H6.68452L6.78125 17.1568ZM8.26145 16.7731L8.27775 16.4735L8.26145 16.7731ZM15.7616 9.4195L15.4617 9.41131L15.7616 9.4195ZM15.3529 6.60824L15.6181 6.46786L15.0679 6.70186L15.3529 6.60824ZM17.5 12.1745L17.7429 12.3506L17.8237 12.2392L17.7919 12.1052L17.5 12.1745ZM0.5 5.8784C0.770089 6.00899 0.770053 6.00906 0.770029 6.00911C0.770039 6.00909 0.770028 6.00911 0.770046 6.00908C0.770083 6.009 0.770171 6.00882 0.770309 6.00854C0.770587 6.00797 0.771068 6.00698 0.771753 6.00559C0.773123 6.0028 0.775307 5.99837 0.7783 5.99237C0.784287 5.98037 0.79351 5.96207 0.805938 5.93796C0.830796 5.88974 0.868455 5.8183 0.918652 5.72749C1.01908 5.5458 1.16949 5.287 1.36775 4.98183C1.76497 4.37042 2.3508 3.57829 3.10749 2.84773C4.62223 1.38528 6.77634 0.205772 9.47482 1.12488L9.66827 0.556925C6.669 -0.464635 4.28734 0.874606 2.69074 2.41608C1.89176 3.18747 1.27804 4.0186 0.864612 4.65495C0.657555 4.97366 0.49987 5.24486 0.39354 5.43722C0.340357 5.53343 0.299968 5.61001 0.272623 5.66306C0.258949 5.68958 0.248532 5.71023 0.241404 5.72452C0.23784 5.73167 0.235098 5.73722 0.233181 5.74112C0.232222 5.74308 0.23147 5.74461 0.230925 5.74573C0.230653 5.74629 0.230432 5.74675 0.230263 5.7471C0.230178 5.74727 0.23009 5.74745 0.230048 5.74754C0.229973 5.74769 0.229911 5.74782 0.5 5.8784ZM1.54934 9.92123C1.23214 8.81373 1.04437 7.796 0.935975 7.05508C0.881817 6.68487 0.847573 6.38444 0.826916 6.17726C0.816589 6.07368 0.809662 5.99347 0.805342 5.93955C0.803183 5.91259 0.801675 5.89221 0.800721 5.87878C0.800243 5.87206 0.799904 5.86708 0.799691 5.86389C0.799584 5.86229 0.799509 5.86114 0.799464 5.86044C0.799441 5.86009 0.799426 5.85985 0.799418 5.85972C0.799414 5.85966 0.799412 5.85963 0.799412 5.85962C0.799411 5.85962 0.799413 5.85964 0.799412 5.85964C0.799414 5.85966 0.799416 5.85969 0.5 5.8784C0.200584 5.89711 0.200587 5.89716 0.20059 5.89721C0.200592 5.89724 0.200596 5.8973 0.200599 5.89736C0.200606 5.89747 0.200615 5.8976 0.200625 5.89777C0.200647 5.8981 0.200675 5.89855 0.200711 5.89911C0.200784 5.90023 0.200887 5.90181 0.201022 5.90384C0.201292 5.90788 0.201691 5.91373 0.20223 5.92132C0.203309 5.9365 0.204952 5.95867 0.207259 5.98747C0.211872 6.04505 0.219144 6.12915 0.229876 6.23679C0.251339 6.45204 0.286663 6.76165 0.342295 7.14193C0.453484 7.90198 0.646178 8.94697 0.972537 10.0864L1.54934 9.92123ZM0.884797 8.61836C0.871562 9.10293 0.89898 9.57982 0.96381 10.0452L1.55807 9.96244C1.49778 9.52965 1.47225 9.08592 1.48457 8.63474L0.884797 8.61836ZM8.70111 0.973396C4.48974 0.744306 1.00582 4.18733 0.884797 8.61836L1.48457 8.63474C1.59736 4.50528 4.82929 1.36366 8.66852 1.57251L8.70111 0.973396ZM12.5124 2.28943C11.4065 1.52548 10.1044 1.04973 8.70111 0.973396L8.66852 1.57251C9.95499 1.64249 11.1513 2.07845 12.1714 2.78309L12.5124 2.28943ZM9.47482 1.12488C10.4632 1.46153 11.3493 2.03547 12.1395 2.75771L12.5443 2.31481C11.7068 1.54936 10.7509 0.925663 9.66827 0.556925L9.47482 1.12488ZM2.8016 14.2492C3.72385 15.6529 4.98008 16.8603 6.68452 17.4408L6.87797 16.8728C5.33628 16.3477 4.17639 15.249 3.30305 13.9197L2.8016 14.2492ZM8.27775 16.4735C6.29393 16.3656 4.52192 15.3867 3.28325 13.893L2.8214 14.276C4.1566 15.8861 6.07909 16.9548 8.24516 17.0727L8.27775 16.4735ZM15.4617 9.41131C15.3489 13.5408 12.117 16.6824 8.27775 16.4735L8.24516 17.0727C12.4565 17.3017 15.9404 13.8587 16.0615 9.4277L15.4617 9.41131ZM15.0679 6.70186C15.3468 7.55091 15.4875 8.46482 15.4617 9.41131L16.0615 9.4277C16.0892 8.41096 15.938 7.42821 15.638 6.51463L15.0679 6.70186ZM17.5 12.1745C17.7919 12.1052 17.7919 12.1051 17.7919 12.1051C17.7918 12.105 17.7918 12.105 17.7918 12.1049C17.7918 12.1048 17.7917 12.1046 17.7917 12.1044C17.7916 12.1039 17.7914 12.1033 17.7913 12.1025C17.7909 12.101 17.7903 12.0988 17.7897 12.0959C17.7883 12.0902 17.7862 12.0819 17.7836 12.071C17.7782 12.0494 17.7702 12.0176 17.7596 11.9764C17.7384 11.894 17.7066 11.7739 17.6638 11.6212C17.5782 11.3159 17.4486 10.8801 17.2719 10.3554C16.9187 9.30693 16.376 7.89939 15.6181 6.46786L15.0878 6.74862C15.8262 8.14319 16.357 9.51878 16.7033 10.5469C16.8763 11.0606 17.0029 11.4864 17.0861 11.7832C17.1277 11.9315 17.1584 12.0475 17.1786 12.1261C17.1887 12.1653 17.1962 12.1952 17.2011 12.215C17.2035 12.225 17.2054 12.2324 17.2065 12.2372C17.2071 12.2396 17.2075 12.2414 17.2078 12.2425C17.2079 12.243 17.208 12.2434 17.2081 12.2436C17.2081 12.2438 17.2081 12.2438 17.2081 12.2439C17.2081 12.2439 17.2081 12.2439 17.2081 12.2439C17.2081 12.2439 17.2081 12.2438 17.5 12.1745ZM6.68452 17.4408C9.67572 18.4596 12.463 17.1419 14.4583 15.6327C15.4612 14.8741 16.2806 14.0553 16.8489 13.4272C17.1334 13.1127 17.3557 12.8452 17.5074 12.6556C17.5832 12.5608 17.6415 12.4854 17.6811 12.4333C17.7009 12.4072 17.716 12.387 17.7264 12.3731C17.7315 12.3661 17.7355 12.3607 17.7383 12.3569C17.7396 12.3551 17.7407 12.3536 17.7415 12.3525C17.7419 12.352 17.7422 12.3516 17.7424 12.3513C17.7425 12.3511 17.7426 12.351 17.7427 12.3509C17.7428 12.3507 17.7429 12.3506 17.5 12.1745C17.2571 11.9984 17.2572 11.9983 17.2572 11.9983C17.2572 11.9983 17.2572 11.9983 17.2572 11.9984C17.2571 11.9985 17.2569 11.9987 17.2567 11.999C17.2562 11.9996 17.2555 12.0006 17.2544 12.0021C17.2523 12.005 17.249 12.0095 17.2445 12.0156C17.2355 12.0277 17.2217 12.0461 17.2034 12.0703C17.1666 12.1186 17.1114 12.1901 17.0389 12.2808C16.8937 12.4622 16.6793 12.7203 16.404 13.0246C15.8527 13.6339 15.0609 14.4246 14.0963 15.1541C12.1566 16.6213 9.58453 17.7947 6.87797 16.8728L6.68452 17.4408Z\" fill=\"%23FE5000\" mask=\"url(%23path-2-outside-1_4_254)\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_4_254\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-autoconverter,.bim-mm-app-item.selected .bim-mm-icon-autoconverter{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%23FE5000\"/>%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%23FE5000\"/>%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%23FE5000\"/>%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%23FE5000\"/>%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%23FE5000\"/>%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%23FE5000\"/>%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%23FE5000\"/>%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%23FE5000\"/>%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%23FE5000\"/>%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%23FE5000\"/>%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%23FE5000\"/>%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%23FE5000\"/>%0A</svg>%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-connexis,.bim-mm-app-item.selected .bim-mm-icon-connexis{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-users,.bim-mm-app-item.selected .bim-mm-icon-users{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-models,.bim-mm-app-item.selected .bim-mm-icon-models{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-documents,.bim-mm-app-item.selected .bim-mm-icon-documents{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4l0,0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-project-settings,.bim-mm-app-item.selected .bim-mm-icon-project-settings{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-processes,.bim-mm-app-item.selected .bim-mm-icon-processes{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-team-members,.bim-mm-app-item.selected .bim-mm-icon-team-members{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-property-manager,.bim-mm-app-item.selected .bim-mm-icon-property-manager{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-footer-container .bim-mm-app-item.active{background-color:#ffd5c4}#portalSelectProjectBtn{padding:.36em 0 .52em;line-height:2em;font-size:1em;background-color:#fff}#portalSelectProjectBtn .bim-mm-icon{box-sizing:border-box;width:2.8125em;margin:0 0 0 .0625em}#portalSelectProjectBtn .bim-mm-app-item-info{width:1.13em;margin-right:.375em}#portalSelectProjectBtn .bim-mm-app-item-details span{font-weight:600;color:#444;text-transform:capitalize}#portalSelectProjectBtn.disabled .bim-mm-app-item-details span{font-weight:600;color:#d3d3d3}#portalSelectProjectBtn.selected .bim-mm-app-item-details span{font-weight:600;color:#fe5000}#portalTeamManagementBtn,#portalPropertyManagerBtn{text-transform:capitalize}#portalShopBtn .bim-mm-app-item-info,#portalBimProcesses .bim-mm-app-item-info,#portalCloudViewerBtn .bim-mm-app-item-info,#portalConnexisBtn .bim-mm-app-item-info{display:none}.bim-mm-container{background-color:#f5f5f5;width:15.31em;min-height:100%;font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif}.bim-mm-apps-container{justify-content:space-between;background-color:#f5f5f5;flex:1 0 auto;margin-top:.5em}.bim-mm-apps-container .bim-mm-icon{margin:0 .8125em 0 .9375em}.bim-mm-icon-users{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-users.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-users.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23D3D3D3\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-models{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-models.active{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-models.disabled{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23D3D3D3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-documents{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4h0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-documents.active{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4l0,0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-documents.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4h0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-project-settings{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-project-settings.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-project-settings.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23d3d3d3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-processes{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-processes.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-processes.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23D3D3D3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-bim-explorer{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill-rule:evenodd;clip-rule:evenodd;fill:%23444;}%0D%0A%09.st1{fill:%23444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M14.5,8.8c-1.4,0-2.5-0.5-3.5-1.1l-3,2L3.8,6.9L8,4l0,0l0.6-1C8.6,3,8.8,2.7,9,2.4l0,0L8,1.7L7,2.4l-6,4v8%0D%0A%09%09L8,19l7-4.6V8.8C14.8,8.8,14.7,8.8,14.5,8.8z M7,16l-4-2.7V8.7l4,2.7V16z M13,13.4L9,16v-4.7l4-2.7V13.4z\"/>%0D%0A%09<g>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,2.5C15.3,2.5,16,3.2,16,4s-0.7,1.5-1.5,1.5C13.6,5.5,13,4.8,13,4S13.6,2.5,14.5,2.5z\"/>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,1C11.8,1,10,4,10,4s1.8,3,4.5,3S19,4,19,4S17.3,1,14.5,1z M14.5,6.5C13.1,6.5,12,5.4,12,4%0D%0A%09%09%09s1.1-2.5,2.5-2.5S17,2.6,17,4S15.9,6.5,14.5,6.5z\"/>%0D%0A%09</g>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-bim-explorer.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill-rule:evenodd;clip-rule:evenodd;fill:%23d3d3d3;}%0D%0A%09.st1{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M14.5,8.8c-1.4,0-2.5-0.5-3.5-1.1l-3,2L3.8,6.9L8,4l0,0l0.6-1C8.6,3,8.8,2.7,9,2.4l0,0L8,1.7L7,2.4l-6,4v8%0D%0A%09%09L8,19l7-4.6V8.8C14.8,8.8,14.7,8.8,14.5,8.8z M7,16l-4-2.7V8.7l4,2.7V16z M13,13.4L9,16v-4.7l4-2.7V13.4z\"/>%0D%0A%09<g>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,2.5C15.3,2.5,16,3.2,16,4s-0.7,1.5-1.5,1.5C13.6,5.5,13,4.8,13,4S13.6,2.5,14.5,2.5z\"/>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,1C11.8,1,10,4,10,4s1.8,3,4.5,3S19,4,19,4S17.3,1,14.5,1z M14.5,6.5C13.1,6.5,12,5.4,12,4%0D%0A%09%09%09s1.1-2.5,2.5-2.5S17,2.6,17,4S15.9,6.5,14.5,6.5z\"/>%0D%0A%09</g>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-cloud-viewer{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9.39643 4.95238L9.36216 4.84999H9.25419H7.98877H7.88066L7.84647 4.95256L5.29373 12.6105L5.22792 12.8079H5.43604H6.51245H6.62321L6.65581 12.702L8.54282 6.5744L10.4092 12.7016L10.4416 12.8079H10.5527H11.8176H12.026L11.9599 12.6103L9.39643 4.95238Z\" fill=\"%23444444\" stroke=\"%23444444\" stroke-width=\"0.3\"/>%0D%0A<mask id=\"path-2-outside-1_4_241\" maskUnits=\"userSpaceOnUse\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\" fill=\"black\">%0D%0A<rect fill=\"white\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\"/>%0D%0A</mask>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0.5 5.8784L0.229911 5.74782L0.195679 5.81862L0.200584 5.89711L0.5 5.8784ZM9.57155 0.840903L9.66827 0.556923V0.556923L9.57155 0.840903ZM1.26094 10.0038L0.972537 10.0864L1.55807 9.96244L1.26094 10.0038ZM1.18469 8.62655L1.48457 8.63474L1.18469 8.62655ZM8.68481 1.27295L8.70111 0.973394L8.68481 1.27295ZM12.3419 2.53626L12.1714 2.78309L12.5443 2.31481L12.3419 2.53626ZM3.05232 14.0845L3.28325 13.893L2.8016 14.2492L3.05232 14.0845ZM6.78125 17.1568L6.68452 17.4408H6.68452L6.78125 17.1568ZM8.26145 16.7731L8.27775 16.4735L8.26145 16.7731ZM15.7616 9.4195L15.4617 9.41131L15.7616 9.4195ZM15.3529 6.60824L15.6181 6.46786L15.0679 6.70186L15.3529 6.60824ZM17.5 12.1745L17.7429 12.3506L17.8237 12.2392L17.7919 12.1052L17.5 12.1745ZM0.5 5.8784C0.770089 6.00899 0.770053 6.00906 0.770029 6.00911C0.770039 6.00909 0.770028 6.00911 0.770046 6.00907C0.770083 6.009 0.770171 6.00882 0.770309 6.00853C0.770587 6.00796 0.771068 6.00698 0.771753 6.00558C0.773123 6.00279 0.775307 5.99837 0.7783 5.99237C0.784287 5.98037 0.79351 5.96207 0.805938 5.93796C0.830796 5.88974 0.868455 5.81829 0.918652 5.72749C1.01908 5.5458 1.16949 5.287 1.36775 4.98183C1.76497 4.37042 2.3508 3.57829 3.10749 2.84773C4.62223 1.38528 6.77634 0.20577 9.47482 1.12488L9.66827 0.556923C6.669 -0.464637 4.28734 0.874604 2.69074 2.41608C1.89176 3.18747 1.27804 4.01859 0.864612 4.65495C0.657555 4.97366 0.49987 5.24486 0.39354 5.43721C0.340357 5.53342 0.299968 5.61001 0.272623 5.66305C0.258949 5.68958 0.248532 5.71023 0.241404 5.72452C0.23784 5.73166 0.235098 5.73722 0.233181 5.74112C0.232222 5.74307 0.23147 5.74461 0.230925 5.74573C0.230653 5.74629 0.230432 5.74675 0.230263 5.74709C0.230178 5.74727 0.23009 5.74745 0.230048 5.74754C0.229973 5.74769 0.229911 5.74782 0.5 5.8784ZM1.54934 9.92123C1.23214 8.81373 1.04437 7.796 0.935975 7.05508C0.881817 6.68487 0.847573 6.38443 0.826916 6.17726C0.816589 6.07368 0.809662 5.99347 0.805342 5.93955C0.803183 5.91259 0.801675 5.89221 0.800721 5.87878C0.800243 5.87206 0.799904 5.86708 0.799691 5.86389C0.799584 5.86229 0.799509 5.86114 0.799464 5.86044C0.799441 5.86008 0.799426 5.85985 0.799418 5.85972C0.799414 5.85966 0.799412 5.85963 0.799412 5.85962C0.799411 5.85962 0.799413 5.85964 0.799412 5.85964C0.799414 5.85966 0.799416 5.85969 0.5 5.8784C0.200584 5.89711 0.200587 5.89716 0.20059 5.89721C0.200592 5.89724 0.200596 5.8973 0.200599 5.89735C0.200606 5.89746 0.200615 5.8976 0.200625 5.89777C0.200647 5.8981 0.200675 5.89855 0.200711 5.89911C0.200784 5.90023 0.200887 5.90181 0.201022 5.90383C0.201292 5.90788 0.201691 5.91373 0.20223 5.92132C0.203309 5.9365 0.204952 5.95867 0.207259 5.98746C0.211872 6.04505 0.219144 6.12914 0.229876 6.23679C0.251339 6.45204 0.286663 6.76165 0.342295 7.14193C0.453484 7.90198 0.646178 8.94696 0.972537 10.0864L1.54934 9.92123ZM0.884797 8.61836C0.871562 9.10292 0.89898 9.57982 0.96381 10.0452L1.55807 9.96244C1.49778 9.52965 1.47225 9.08592 1.48457 8.63474L0.884797 8.61836ZM8.70111 0.973394C4.48974 0.744304 1.00582 4.18732 0.884797 8.61836L1.48457 8.63474C1.59736 4.50528 4.82929 1.36366 8.66852 1.57251L8.70111 0.973394ZM12.5124 2.28942C11.4065 1.52548 10.1044 1.04973 8.70111 0.973394L8.66852 1.57251C9.95499 1.64249 11.1513 2.07845 12.1714 2.78309L12.5124 2.28942ZM9.47482 1.12488C10.4632 1.46152 11.3493 2.03547 12.1395 2.7577L12.5443 2.31481C11.7068 1.54936 10.7509 0.925661 9.66827 0.556923L9.47482 1.12488ZM2.8016 14.2492C3.72385 15.6529 4.98008 16.8602 6.68452 17.4408L6.87797 16.8728C5.33628 16.3477 4.17639 15.249 3.30305 13.9197L2.8016 14.2492ZM8.27775 16.4735C6.29393 16.3656 4.52192 15.3867 3.28325 13.893L2.8214 14.276C4.1566 15.8861 6.07909 16.9548 8.24516 17.0727L8.27775 16.4735ZM15.4617 9.41131C15.3489 13.5408 12.117 16.6824 8.27775 16.4735L8.24516 17.0727C12.4565 17.3017 15.9404 13.8587 16.0615 9.42769L15.4617 9.41131ZM15.0679 6.70186C15.3468 7.55091 15.4875 8.46482 15.4617 9.41131L16.0615 9.42769C16.0892 8.41096 15.938 7.42821 15.638 6.51462L15.0679 6.70186ZM17.5 12.1745C17.7919 12.1052 17.7919 12.1051 17.7919 12.1051C17.7918 12.105 17.7918 12.105 17.7918 12.1049C17.7918 12.1048 17.7917 12.1046 17.7917 12.1044C17.7916 12.1039 17.7914 12.1033 17.7913 12.1025C17.7909 12.101 17.7903 12.0988 17.7897 12.0959C17.7883 12.0902 17.7862 12.0819 17.7836 12.071C17.7782 12.0494 17.7702 12.0176 17.7596 11.9764C17.7384 11.894 17.7066 11.7739 17.6638 11.6212C17.5782 11.3159 17.4486 10.8801 17.2719 10.3554C16.9187 9.30693 16.376 7.89939 15.6181 6.46786L15.0878 6.74862C15.8262 8.14319 16.357 9.51878 16.7033 10.5469C16.8763 11.0606 17.0029 11.4864 17.0861 11.7832C17.1277 11.9315 17.1584 12.0475 17.1786 12.1261C17.1887 12.1653 17.1962 12.1952 17.2011 12.215C17.2035 12.2249 17.2054 12.2324 17.2065 12.2372C17.2071 12.2396 17.2075 12.2414 17.2078 12.2425C17.2079 12.243 17.208 12.2434 17.2081 12.2436C17.2081 12.2438 17.2081 12.2438 17.2081 12.2439C17.2081 12.2439 17.2081 12.2439 17.2081 12.2439C17.2081 12.2438 17.2081 12.2438 17.5 12.1745ZM6.68452 17.4408C9.67572 18.4596 12.463 17.1419 14.4583 15.6327C15.4612 14.8741 16.2806 14.0553 16.8489 13.4272C17.1334 13.1127 17.3557 12.8452 17.5074 12.6556C17.5832 12.5608 17.6415 12.4854 17.6811 12.4333C17.7009 12.4072 17.716 12.387 17.7264 12.373C17.7315 12.3661 17.7355 12.3607 17.7383 12.3569C17.7396 12.3551 17.7407 12.3536 17.7415 12.3525C17.7419 12.352 17.7422 12.3516 17.7424 12.3513C17.7425 12.3511 17.7426 12.351 17.7427 12.3509C17.7428 12.3507 17.7429 12.3506 17.5 12.1745C17.2571 11.9984 17.2572 11.9983 17.2572 11.9983C17.2572 11.9983 17.2572 11.9983 17.2572 11.9984C17.2571 11.9985 17.2569 11.9987 17.2567 11.999C17.2562 11.9996 17.2555 12.0006 17.2544 12.0021C17.2523 12.005 17.249 12.0095 17.2445 12.0156C17.2355 12.0277 17.2217 12.0461 17.2034 12.0703C17.1666 12.1186 17.1114 12.1901 17.0389 12.2808C16.8937 12.4622 16.6793 12.7203 16.404 13.0246C15.8527 13.6339 15.0609 14.4246 14.0963 15.1541C12.1566 16.6213 9.58453 17.7947 6.87797 16.8728L6.68452 17.4408Z\" fill=\"%23444444\" mask=\"url(%23path-2-outside-1_4_241)\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-cloud-viewer.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9.39643 4.95238L9.36216 4.84999H9.25419H7.98877H7.88066L7.84647 4.95256L5.29373 12.6105L5.22792 12.8079H5.43604H6.51245H6.62321L6.65581 12.702L8.54282 6.5744L10.4092 12.7016L10.4416 12.8079H10.5527H11.8176H12.026L11.9599 12.6103L9.39643 4.95238Z\" fill=\"%23D3D3D3\" stroke=\"%23D3D3D3\" stroke-width=\"0.3\"/>%0D%0A<mask id=\"path-2-outside-1_4_241\" maskUnits=\"userSpaceOnUse\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\" fill=\"%23D3D3D3\">%0D%0A<rect fill=\"white\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\"/>%0D%0A</mask>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\" fill=\"%23DED3D3\"/>%0D%0A<path d=\"M0.5 5.8784L0.229911 5.74782L0.195679 5.81862L0.200584 5.89711L0.5 5.8784ZM9.57155 0.840903L9.66827 0.556923V0.556923L9.57155 0.840903ZM1.26094 10.0038L0.972537 10.0864L1.55807 9.96244L1.26094 10.0038ZM1.18469 8.62655L1.48457 8.63474L1.18469 8.62655ZM8.68481 1.27295L8.70111 0.973394L8.68481 1.27295ZM12.3419 2.53626L12.1714 2.78309L12.5443 2.31481L12.3419 2.53626ZM3.05232 14.0845L3.28325 13.893L2.8016 14.2492L3.05232 14.0845ZM6.78125 17.1568L6.68452 17.4408H6.68452L6.78125 17.1568ZM8.26145 16.7731L8.27775 16.4735L8.26145 16.7731ZM15.7616 9.4195L15.4617 9.41131L15.7616 9.4195ZM15.3529 6.60824L15.6181 6.46786L15.0679 6.70186L15.3529 6.60824ZM17.5 12.1745L17.7429 12.3506L17.8237 12.2392L17.7919 12.1052L17.5 12.1745ZM0.5 5.8784C0.770089 6.00899 0.770053 6.00906 0.770029 6.00911C0.770039 6.00909 0.770028 6.00911 0.770046 6.00907C0.770083 6.009 0.770171 6.00882 0.770309 6.00853C0.770587 6.00796 0.771068 6.00698 0.771753 6.00558C0.773123 6.00279 0.775307 5.99837 0.7783 5.99237C0.784287 5.98037 0.79351 5.96207 0.805938 5.93796C0.830796 5.88974 0.868455 5.81829 0.918652 5.72749C1.01908 5.5458 1.16949 5.287 1.36775 4.98183C1.76497 4.37042 2.3508 3.57829 3.10749 2.84773C4.62223 1.38528 6.77634 0.20577 9.47482 1.12488L9.66827 0.556923C6.669 -0.464637 4.28734 0.874604 2.69074 2.41608C1.89176 3.18747 1.27804 4.01859 0.864612 4.65495C0.657555 4.97366 0.49987 5.24486 0.39354 5.43721C0.340357 5.53342 0.299968 5.61001 0.272623 5.66305C0.258949 5.68958 0.248532 5.71023 0.241404 5.72452C0.23784 5.73166 0.235098 5.73722 0.233181 5.74112C0.232222 5.74307 0.23147 5.74461 0.230925 5.74573C0.230653 5.74629 0.230432 5.74675 0.230263 5.74709C0.230178 5.74727 0.23009 5.74745 0.230048 5.74754C0.229973 5.74769 0.229911 5.74782 0.5 5.8784ZM1.54934 9.92123C1.23214 8.81373 1.04437 7.796 0.935975 7.05508C0.881817 6.68487 0.847573 6.38443 0.826916 6.17726C0.816589 6.07368 0.809662 5.99347 0.805342 5.93955C0.803183 5.91259 0.801675 5.89221 0.800721 5.87878C0.800243 5.87206 0.799904 5.86708 0.799691 5.86389C0.799584 5.86229 0.799509 5.86114 0.799464 5.86044C0.799441 5.86008 0.799426 5.85985 0.799418 5.85972C0.799414 5.85966 0.799412 5.85963 0.799412 5.85962C0.799411 5.85962 0.799413 5.85964 0.799412 5.85964C0.799414 5.85966 0.799416 5.85969 0.5 5.8784C0.200584 5.89711 0.200587 5.89716 0.20059 5.89721C0.200592 5.89724 0.200596 5.8973 0.200599 5.89735C0.200606 5.89746 0.200615 5.8976 0.200625 5.89777C0.200647 5.8981 0.200675 5.89855 0.200711 5.89911C0.200784 5.90023 0.200887 5.90181 0.201022 5.90383C0.201292 5.90788 0.201691 5.91373 0.20223 5.92132C0.203309 5.9365 0.204952 5.95867 0.207259 5.98746C0.211872 6.04505 0.219144 6.12914 0.229876 6.23679C0.251339 6.45204 0.286663 6.76165 0.342295 7.14193C0.453484 7.90198 0.646178 8.94696 0.972537 10.0864L1.54934 9.92123ZM0.884797 8.61836C0.871562 9.10292 0.89898 9.57982 0.96381 10.0452L1.55807 9.96244C1.49778 9.52965 1.47225 9.08592 1.48457 8.63474L0.884797 8.61836ZM8.70111 0.973394C4.48974 0.744304 1.00582 4.18732 0.884797 8.61836L1.48457 8.63474C1.59736 4.50528 4.82929 1.36366 8.66852 1.57251L8.70111 0.973394ZM12.5124 2.28942C11.4065 1.52548 10.1044 1.04973 8.70111 0.973394L8.66852 1.57251C9.95499 1.64249 11.1513 2.07845 12.1714 2.78309L12.5124 2.28942ZM9.47482 1.12488C10.4632 1.46152 11.3493 2.03547 12.1395 2.7577L12.5443 2.31481C11.7068 1.54936 10.7509 0.925661 9.66827 0.556923L9.47482 1.12488ZM2.8016 14.2492C3.72385 15.6529 4.98008 16.8602 6.68452 17.4408L6.87797 16.8728C5.33628 16.3477 4.17639 15.249 3.30305 13.9197L2.8016 14.2492ZM8.27775 16.4735C6.29393 16.3656 4.52192 15.3867 3.28325 13.893L2.8214 14.276C4.1566 15.8861 6.07909 16.9548 8.24516 17.0727L8.27775 16.4735ZM15.4617 9.41131C15.3489 13.5408 12.117 16.6824 8.27775 16.4735L8.24516 17.0727C12.4565 17.3017 15.9404 13.8587 16.0615 9.42769L15.4617 9.41131ZM15.0679 6.70186C15.3468 7.55091 15.4875 8.46482 15.4617 9.41131L16.0615 9.42769C16.0892 8.41096 15.938 7.42821 15.638 6.51462L15.0679 6.70186ZM17.5 12.1745C17.7919 12.1052 17.7919 12.1051 17.7919 12.1051C17.7918 12.105 17.7918 12.105 17.7918 12.1049C17.7918 12.1048 17.7917 12.1046 17.7917 12.1044C17.7916 12.1039 17.7914 12.1033 17.7913 12.1025C17.7909 12.101 17.7903 12.0988 17.7897 12.0959C17.7883 12.0902 17.7862 12.0819 17.7836 12.071C17.7782 12.0494 17.7702 12.0176 17.7596 11.9764C17.7384 11.894 17.7066 11.7739 17.6638 11.6212C17.5782 11.3159 17.4486 10.8801 17.2719 10.3554C16.9187 9.30693 16.376 7.89939 15.6181 6.46786L15.0878 6.74862C15.8262 8.14319 16.357 9.51878 16.7033 10.5469C16.8763 11.0606 17.0029 11.4864 17.0861 11.7832C17.1277 11.9315 17.1584 12.0475 17.1786 12.1261C17.1887 12.1653 17.1962 12.1952 17.2011 12.215C17.2035 12.2249 17.2054 12.2324 17.2065 12.2372C17.2071 12.2396 17.2075 12.2414 17.2078 12.2425C17.2079 12.243 17.208 12.2434 17.2081 12.2436C17.2081 12.2438 17.2081 12.2438 17.2081 12.2439C17.2081 12.2439 17.2081 12.2439 17.2081 12.2439C17.2081 12.2438 17.2081 12.2438 17.5 12.1745ZM6.68452 17.4408C9.67572 18.4596 12.463 17.1419 14.4583 15.6327C15.4612 14.8741 16.2806 14.0553 16.8489 13.4272C17.1334 13.1127 17.3557 12.8452 17.5074 12.6556C17.5832 12.5608 17.6415 12.4854 17.6811 12.4333C17.7009 12.4072 17.716 12.387 17.7264 12.373C17.7315 12.3661 17.7355 12.3607 17.7383 12.3569C17.7396 12.3551 17.7407 12.3536 17.7415 12.3525C17.7419 12.352 17.7422 12.3516 17.7424 12.3513C17.7425 12.3511 17.7426 12.351 17.7427 12.3509C17.7428 12.3507 17.7429 12.3506 17.5 12.1745C17.2571 11.9984 17.2572 11.9983 17.2572 11.9983C17.2572 11.9983 17.2572 11.9983 17.2572 11.9984C17.2571 11.9985 17.2569 11.9987 17.2567 11.999C17.2562 11.9996 17.2555 12.0006 17.2544 12.0021C17.2523 12.005 17.249 12.0095 17.2445 12.0156C17.2355 12.0277 17.2217 12.0461 17.2034 12.0703C17.1666 12.1186 17.1114 12.1901 17.0389 12.2808C16.8937 12.4622 16.6793 12.7203 16.404 13.0246C15.8527 13.6339 15.0609 14.4246 14.0963 15.1541C12.1566 16.6213 9.58453 17.7947 6.87797 16.8728L6.68452 17.4408Z\" fill=\"%23D3D3D3\" mask=\"url(%23path-2-outside-1_4_241)\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-autoconverter{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%232F3133\"/>%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%232F3133\"/>%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%232F3133\"/>%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%232F3133\"/>%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%232F3133\"/>%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%232F3133\"/>%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%232F3133\"/>%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%232F3133\"/>%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%232F3133\"/>%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%232F3133\"/>%0A</svg>%0A') no-repeat center}.bim-mm-icon-autoconverter.active{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%232F3133\"/>%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%232F3133\"/>%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%232F3133\"/>%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%232F3133\"/>%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%232F3133\"/>%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%232F3133\"/>%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%232F3133\"/>%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%232F3133\"/>%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%232F3133\"/>%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%232F3133\"/>%0A</svg>%0A') no-repeat center}.bim-mm-icon-autoconverter.disabled{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%23d3d3d3\"/>%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%23d3d3d3\"/>%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%23d3d3d3\"/>%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%23d3d3d3\"/>%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%23d3d3d3\"/>%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%23d3d3d3\"/>%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%23d3d3d3\"/>%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%23d3d3d3\"/>%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%23d3d3d3\"/>%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%23d3d3d3\"/>%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%23d3d3d3\"/>%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%23d3d3d3\"/>%0A</svg>%0A') no-repeat center}.bim-mm-icon-connexis{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-connexis.disabled{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23d3d3d3\"/>%0D%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23d3d3d3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-team-members{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-team-members.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-property-manager{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-property-manager.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-property-manager.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23d3d3d3\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23d3d3d3\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23d3d3d3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-shop{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M8.5,16c0.8,0,1.5,0.7,1.5,1.5S9.3,19,8.5,19S7,18.3,7,17.5S7.7,16,8.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M17.5,16c0.8,0,1.5,0.7,1.5,1.5S18.3,19,17.5,19S16,18.3,16,17.5S16.7,16,17.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M0,2v2h3l5,10h12V6H6.1L4,2H0z M7.1,7.9H18V12H9.2L7.1,7.9z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-shop.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M8.5,16c0.8,0,1.5,0.7,1.5,1.5S9.3,19,8.5,19S7,18.3,7,17.5S7.7,16,8.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M17.5,16c0.8,0,1.5,0.7,1.5,1.5S18.3,19,17.5,19S16,18.3,16,17.5S16.7,16,17.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M0,2v2h3l5,10h12V6H6.1L4,2H0z M7.1,7.9H18V12H9.2L7.1,7.9z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-info{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center;background-size:auto!important}.bim-mm-icon-info:hover{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23F05423;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center;background-size:auto!important;cursor:pointer}.bim-mm-icon-folder{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M17,7V5V4V1h-6L8,3H0v16h2h15l3-12H17z M8,5h0.6l0.5-0.3L11.6,3H15v1v1v2H3l-1,4V5H8z M15.4,17H2.6l2-8H15h2%0D%0A%09h0.4L15.4,17z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-folder.active{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M17,7V5V4V1h-6L8,3H0v16h2h15l3-12H17z M8,5h0.6l0.5-0.3L11.6,3H15v1v1v2H3l-1,4V5H8z M15.4,17H2.6l2-8H15h2%0D%0A%09h0.4L15.4,17z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-folder.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M17,7V5V4V1h-6L8,3H0v16h2h15l3-12H17z M8,5h0.6l0.5-0.3L11.6,3H15v1v1v2H3l-1,4V5H8z M15.4,17H2.6l2-8H15h2%0D%0A%09h0.4L15.4,17z\"/>%0D%0A</svg>%0D%0A') no-repeat center}\n"] }]
1968
+ args: [{ selector: 'lib-bimplus-main-menu', standalone: true, imports: [CommonModule, TranslateModule, BimplusProjectMenuComponent], providers: [TranslateService], encapsulation: ViewEncapsulation.ShadowDom, template: "<ng-template #appItemContent let-contextData>\r\n @if (contextData.item.type === 'divider'){\r\n <div class=\"bim-mm-app-item\" [class]=\"contextData.item.class\" [id]=\"contextData.item.id\"></div>\r\n }@else {\r\n <div class=\"bim-mm-app-item\" [id]=\"contextData.item.id\"\r\n [ngClass]=\"isTouch?'':'hover-show-info '+(contextData.active?'active ':' ') +(contextData.disabled?'disabled ':' ')+(contextData.clickable?' ':'not-clickable ')+(contextData.selected?'selected ':' ')\"\r\n [title] =\"((contextData.disabled) ? (contextData.item.disabledTitle | translate) : '' )\"\r\n >\r\n <div class=\"bim-mm-app-item-details\"\r\n [ngClass] = \" contextData.clickable ? '' : 'not-clickable' \"\r\n (click)=\"_mainMenuItemClicked(contextData.item,'normal',$event)\">\r\n <div class=\"bim-mm-icon\"\r\n [ngClass]=\"contextData.item.class + (contextData.active?' active':'') + (contextData.disabled?' disabled ':'')\">\r\n </div>\r\n <span>{{(contextData.isDisabled && (contextData.item.textIdDisabled !==\"\") ? contextData.item.textIdDisabled : contextData.item.textId) | translate}}</span>\r\n </div>\r\n @if(contextData.showInfoIcon){\r\n <div class=\"bim-mm-app-item-info bim-mm-icon bim-mm-icon-info\"\r\n (click)=\"_mainMenuItemClicked(contextData.item, 'info',$event)\">\r\n </div>\r\n }\r\n </div>\r\n }\r\n</ng-template>\r\n\r\n\r\n\r\n<div class=\"bim-mm-wrapper\" [ngClass]=\"showOverlay ? 'bim-mm-overlay' : ''\" (click)=\"_overlayClicked()\">\r\n <div class= \"bim-mm-container\">\r\n @if(!_isHidden(_openPrjBtn)){\r\n <ng-container\r\n *ngTemplateOutlet=\"appItemContent; context: { $implicit: _getContextData(_openPrjBtn,projectActiveItem === 'projectlist',_isDisabled(_openPrjBtn),true,projectActiveItem === 'projectlist') }\"\r\n ></ng-container>\r\n }\r\n\r\n @if(bimplusProjectMenuVisible){\r\n <lib-bimplus-project-menu\r\n projectName = {{projectName}}\r\n projectImageUrl = {{projectImageUrl}}\r\n projectExplorerUrl = {{projectExplorerUrl}}\r\n projectActiveItem = {{projectActiveItem}}\r\n projectmembersDisabled = {{projectmembersDisabled}}\r\n modelsDisabled = {{modelsDisabled}}\r\n documentsDisabled = {{documentsDisabled}}\r\n projectsettingsDisabled = {{projectsettingsDisabled}}\r\n processesDisabled = {{processesDisabled}}\r\n projectmembersVisible = {{projectmembersVisible}}\r\n modelsVisible = {{modelsVisible}}\r\n documentsVisible = {{documentsVisible}}\r\n projectsettingsVisible = {{projectsettingsVisible}}\r\n processesVisible = {{processesVisible}}\r\n isCollapsed = {{isCollapsed}}\r\n isMiniMode = {{isTouch}}\r\n isTouch = {{isTouch}}\r\n hideMenuIcons = {{hideProjectMenuIcons}}\r\n showHorizontalMenuIcons = {{showHorizontalMenuIcons}}\r\n ></lib-bimplus-project-menu>\r\n }\r\n <div [ngClass]=\"appsList.length || footerList.length ? 'bim-mm-apps-container' : ''\">\r\n <div class=\"bim-mm-apps-list\">\r\n <div *ngFor=\"let appItem of appsList\">\r\n <ng-container\r\n *ngTemplateOutlet=\"appItemContent; context: { $implicit: _getContextData(appItem,!_isSubscribed(appItem),_isDisabled(appItem),_isClickable(appItem),menuActiveItem === appItem.action)}\"\r\n ></ng-container>\r\n </div>\r\n </div>\r\n <div class=\"bim-mm-footer-container\">\r\n <div *ngFor=\"let footerItem of footerList\">\r\n <ng-container\r\n *ngTemplateOutlet=\"appItemContent; context: { $implicit: _getContextData(footerItem,footerActiveItem === footerItem.action,_isDisabled(footerItem),true,false)}\"\r\n ></ng-container>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".bim-mm-container,.bim-mm-apps-container,.bim-mm-footer-container{display:flex;flex-direction:column;justify-content:flex-start}.bim-mm-wrapper{height:100%;font-size:1.6rem}.bim-mm-overlay{position:relative;height:100%;width:100vw;z-index:1;background-color:#0000004d}.bim-mm-icon{flex-shrink:0;display:inline-block;vertical-align:middle;width:1.13em;height:1.13em;background-size:1.13em 1.13em!important}.bim-mm-app-item{display:flex;flex-direction:row;justify-content:space-between;align-items:center;cursor:pointer;line-height:2em;min-height:2.5em;position:relative}.bim-mm-app-item.disabled{cursor:default;color:#d3d3d3}.bim-mm-app-item .bim-mm-app-item-details{display:flex;align-items:center;width:100%}.bim-mm-app-item .bim-mm-app-item-info{position:absolute;right:.375em;display:none}.bim-mm-app-item .not-clickable{pointer-events:none}.bim-mm-app-item-divider{width:100%;height:1px;min-height:1px;border-bottom:1px solid #E6E6E6;margin-top:.75em;margin-bottom:.75em}.hover-show-info:hover{background-color:#fff1eb}.hover-show-info:hover .bim-mm-app-item-info{display:block}.hover-show-info.selected,.bim-mm-app-item.selected{color:#fe5000}.hover-show-info.selected .bim-mm-icon-bim-explorer,.bim-mm-app-item.selected .bim-mm-icon-bim-explorer{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill-rule:evenodd;clip-rule:evenodd;fill:%23FE5000;}%0D%0A%09.st1{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M14.5,8.8c-1.4,0-2.5-0.5-3.5-1.1l-3,2L3.8,6.9L8,4l0,0l0.6-1C8.6,3,8.8,2.7,9,2.4l0,0L8,1.7L7,2.4l-6,4v8%0D%0A%09%09L8,19l7-4.6V8.8C14.8,8.8,14.7,8.8,14.5,8.8z M7,16l-4-2.7V8.7l4,2.7V16z M13,13.4L9,16v-4.7l4-2.7V13.4z\"/>%0D%0A%09<g>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,2.5C15.3,2.5,16,3.2,16,4s-0.7,1.5-1.5,1.5C13.6,5.5,13,4.8,13,4S13.6,2.5,14.5,2.5z\"/>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,1C11.8,1,10,4,10,4s1.8,3,4.5,3S19,4,19,4S17.3,1,14.5,1z M14.5,6.5C13.1,6.5,12,5.4,12,4%0D%0A%09%09%09s1.1-2.5,2.5-2.5S17,2.6,17,4S15.9,6.5,14.5,6.5z\"/>%0D%0A%09</g>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-cloud-viewer,.bim-mm-app-item.selected .bim-mm-icon-cloud-viewer{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_4_254)\">%0D%0A<path d=\"M9.39643 4.95238L9.36216 4.85H9.25419H7.98877H7.88066L7.84647 4.95256L5.29373 12.6105L5.22792 12.8079H5.43604H6.51245H6.62321L6.65581 12.702L8.54282 6.5744L10.4092 12.7016L10.4416 12.8079H10.5527H11.8176H12.026L11.9599 12.6103L9.39643 4.95238Z\" fill=\"%23FE5000\" stroke=\"%23FE5000\" stroke-width=\"0.3\"/>%0D%0A<mask id=\"path-2-outside-1_4_254\" maskUnits=\"userSpaceOnUse\" x=\"-0.5\" y=\"-0.500004\" width=\"19\" height=\"19\" fill=\"black\">%0D%0A<rect fill=\"white\" x=\"-0.5\" y=\"-0.500004\" width=\"19\" height=\"19\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840905C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55474 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80197 12.3419 2.53626C11.528 1.79242 10.607 1.19359 9.57155 0.840905ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6998 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\"/>%0D%0A</mask>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840905C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55474 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80197 12.3419 2.53626C11.528 1.79242 10.607 1.19359 9.57155 0.840905ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6998 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M0.5 5.8784L0.229911 5.74782L0.195679 5.81862L0.200584 5.89711L0.5 5.8784ZM9.57155 0.840905L9.66827 0.556925V0.556925L9.57155 0.840905ZM1.26094 10.0038L0.972537 10.0864L1.55807 9.96244L1.26094 10.0038ZM1.18469 8.62655L1.48457 8.63474L1.18469 8.62655ZM8.68481 1.27295L8.70111 0.973396L8.68481 1.27295ZM12.3419 2.53626L12.1714 2.78309L12.5443 2.31481L12.3419 2.53626ZM3.05232 14.0845L3.28325 13.893L2.8016 14.2492L3.05232 14.0845ZM6.78125 17.1568L6.68452 17.4408H6.68452L6.78125 17.1568ZM8.26145 16.7731L8.27775 16.4735L8.26145 16.7731ZM15.7616 9.4195L15.4617 9.41131L15.7616 9.4195ZM15.3529 6.60824L15.6181 6.46786L15.0679 6.70186L15.3529 6.60824ZM17.5 12.1745L17.7429 12.3506L17.8237 12.2392L17.7919 12.1052L17.5 12.1745ZM0.5 5.8784C0.770089 6.00899 0.770053 6.00906 0.770029 6.00911C0.770039 6.00909 0.770028 6.00911 0.770046 6.00908C0.770083 6.009 0.770171 6.00882 0.770309 6.00854C0.770587 6.00797 0.771068 6.00698 0.771753 6.00559C0.773123 6.0028 0.775307 5.99837 0.7783 5.99237C0.784287 5.98037 0.79351 5.96207 0.805938 5.93796C0.830796 5.88974 0.868455 5.8183 0.918652 5.72749C1.01908 5.5458 1.16949 5.287 1.36775 4.98183C1.76497 4.37042 2.3508 3.57829 3.10749 2.84773C4.62223 1.38528 6.77634 0.205772 9.47482 1.12488L9.66827 0.556925C6.669 -0.464635 4.28734 0.874606 2.69074 2.41608C1.89176 3.18747 1.27804 4.0186 0.864612 4.65495C0.657555 4.97366 0.49987 5.24486 0.39354 5.43722C0.340357 5.53343 0.299968 5.61001 0.272623 5.66306C0.258949 5.68958 0.248532 5.71023 0.241404 5.72452C0.23784 5.73167 0.235098 5.73722 0.233181 5.74112C0.232222 5.74308 0.23147 5.74461 0.230925 5.74573C0.230653 5.74629 0.230432 5.74675 0.230263 5.7471C0.230178 5.74727 0.23009 5.74745 0.230048 5.74754C0.229973 5.74769 0.229911 5.74782 0.5 5.8784ZM1.54934 9.92123C1.23214 8.81373 1.04437 7.796 0.935975 7.05508C0.881817 6.68487 0.847573 6.38444 0.826916 6.17726C0.816589 6.07368 0.809662 5.99347 0.805342 5.93955C0.803183 5.91259 0.801675 5.89221 0.800721 5.87878C0.800243 5.87206 0.799904 5.86708 0.799691 5.86389C0.799584 5.86229 0.799509 5.86114 0.799464 5.86044C0.799441 5.86009 0.799426 5.85985 0.799418 5.85972C0.799414 5.85966 0.799412 5.85963 0.799412 5.85962C0.799411 5.85962 0.799413 5.85964 0.799412 5.85964C0.799414 5.85966 0.799416 5.85969 0.5 5.8784C0.200584 5.89711 0.200587 5.89716 0.20059 5.89721C0.200592 5.89724 0.200596 5.8973 0.200599 5.89736C0.200606 5.89747 0.200615 5.8976 0.200625 5.89777C0.200647 5.8981 0.200675 5.89855 0.200711 5.89911C0.200784 5.90023 0.200887 5.90181 0.201022 5.90384C0.201292 5.90788 0.201691 5.91373 0.20223 5.92132C0.203309 5.9365 0.204952 5.95867 0.207259 5.98747C0.211872 6.04505 0.219144 6.12915 0.229876 6.23679C0.251339 6.45204 0.286663 6.76165 0.342295 7.14193C0.453484 7.90198 0.646178 8.94697 0.972537 10.0864L1.54934 9.92123ZM0.884797 8.61836C0.871562 9.10293 0.89898 9.57982 0.96381 10.0452L1.55807 9.96244C1.49778 9.52965 1.47225 9.08592 1.48457 8.63474L0.884797 8.61836ZM8.70111 0.973396C4.48974 0.744306 1.00582 4.18733 0.884797 8.61836L1.48457 8.63474C1.59736 4.50528 4.82929 1.36366 8.66852 1.57251L8.70111 0.973396ZM12.5124 2.28943C11.4065 1.52548 10.1044 1.04973 8.70111 0.973396L8.66852 1.57251C9.95499 1.64249 11.1513 2.07845 12.1714 2.78309L12.5124 2.28943ZM9.47482 1.12488C10.4632 1.46153 11.3493 2.03547 12.1395 2.75771L12.5443 2.31481C11.7068 1.54936 10.7509 0.925663 9.66827 0.556925L9.47482 1.12488ZM2.8016 14.2492C3.72385 15.6529 4.98008 16.8603 6.68452 17.4408L6.87797 16.8728C5.33628 16.3477 4.17639 15.249 3.30305 13.9197L2.8016 14.2492ZM8.27775 16.4735C6.29393 16.3656 4.52192 15.3867 3.28325 13.893L2.8214 14.276C4.1566 15.8861 6.07909 16.9548 8.24516 17.0727L8.27775 16.4735ZM15.4617 9.41131C15.3489 13.5408 12.117 16.6824 8.27775 16.4735L8.24516 17.0727C12.4565 17.3017 15.9404 13.8587 16.0615 9.4277L15.4617 9.41131ZM15.0679 6.70186C15.3468 7.55091 15.4875 8.46482 15.4617 9.41131L16.0615 9.4277C16.0892 8.41096 15.938 7.42821 15.638 6.51463L15.0679 6.70186ZM17.5 12.1745C17.7919 12.1052 17.7919 12.1051 17.7919 12.1051C17.7918 12.105 17.7918 12.105 17.7918 12.1049C17.7918 12.1048 17.7917 12.1046 17.7917 12.1044C17.7916 12.1039 17.7914 12.1033 17.7913 12.1025C17.7909 12.101 17.7903 12.0988 17.7897 12.0959C17.7883 12.0902 17.7862 12.0819 17.7836 12.071C17.7782 12.0494 17.7702 12.0176 17.7596 11.9764C17.7384 11.894 17.7066 11.7739 17.6638 11.6212C17.5782 11.3159 17.4486 10.8801 17.2719 10.3554C16.9187 9.30693 16.376 7.89939 15.6181 6.46786L15.0878 6.74862C15.8262 8.14319 16.357 9.51878 16.7033 10.5469C16.8763 11.0606 17.0029 11.4864 17.0861 11.7832C17.1277 11.9315 17.1584 12.0475 17.1786 12.1261C17.1887 12.1653 17.1962 12.1952 17.2011 12.215C17.2035 12.225 17.2054 12.2324 17.2065 12.2372C17.2071 12.2396 17.2075 12.2414 17.2078 12.2425C17.2079 12.243 17.208 12.2434 17.2081 12.2436C17.2081 12.2438 17.2081 12.2438 17.2081 12.2439C17.2081 12.2439 17.2081 12.2439 17.2081 12.2439C17.2081 12.2439 17.2081 12.2438 17.5 12.1745ZM6.68452 17.4408C9.67572 18.4596 12.463 17.1419 14.4583 15.6327C15.4612 14.8741 16.2806 14.0553 16.8489 13.4272C17.1334 13.1127 17.3557 12.8452 17.5074 12.6556C17.5832 12.5608 17.6415 12.4854 17.6811 12.4333C17.7009 12.4072 17.716 12.387 17.7264 12.3731C17.7315 12.3661 17.7355 12.3607 17.7383 12.3569C17.7396 12.3551 17.7407 12.3536 17.7415 12.3525C17.7419 12.352 17.7422 12.3516 17.7424 12.3513C17.7425 12.3511 17.7426 12.351 17.7427 12.3509C17.7428 12.3507 17.7429 12.3506 17.5 12.1745C17.2571 11.9984 17.2572 11.9983 17.2572 11.9983C17.2572 11.9983 17.2572 11.9983 17.2572 11.9984C17.2571 11.9985 17.2569 11.9987 17.2567 11.999C17.2562 11.9996 17.2555 12.0006 17.2544 12.0021C17.2523 12.005 17.249 12.0095 17.2445 12.0156C17.2355 12.0277 17.2217 12.0461 17.2034 12.0703C17.1666 12.1186 17.1114 12.1901 17.0389 12.2808C16.8937 12.4622 16.6793 12.7203 16.404 13.0246C15.8527 13.6339 15.0609 14.4246 14.0963 15.1541C12.1566 16.6213 9.58453 17.7947 6.87797 16.8728L6.68452 17.4408Z\" fill=\"%23FE5000\" mask=\"url(%23path-2-outside-1_4_254)\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_4_254\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-autoconverter,.bim-mm-app-item.selected .bim-mm-icon-autoconverter{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%23FE5000\"/>%0D%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%23FE5000\"/>%0D%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%23FE5000\"/>%0D%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%23FE5000\"/>%0D%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%23FE5000\"/>%0D%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-connexis,.bim-mm-app-item.selected .bim-mm-icon-connexis{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-users,.bim-mm-app-item.selected .bim-mm-icon-users{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-models,.bim-mm-app-item.selected .bim-mm-icon-models{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-documents,.bim-mm-app-item.selected .bim-mm-icon-documents{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4l0,0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-project-settings,.bim-mm-app-item.selected .bim-mm-icon-project-settings{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-processes,.bim-mm-app-item.selected .bim-mm-icon-processes{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-team-members,.bim-mm-app-item.selected .bim-mm-icon-team-members{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.hover-show-info.selected .bim-mm-icon-property-manager,.bim-mm-app-item.selected .bim-mm-icon-property-manager{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-footer-container .bim-mm-app-item.active{background-color:#ffd5c4}#portalSelectProjectBtn{padding:.36em 0 .52em;line-height:2em;font-size:1em;background-color:#fff}#portalSelectProjectBtn .bim-mm-icon{box-sizing:border-box;width:2.8125em;margin:0 0 0 .0625em}#portalSelectProjectBtn .bim-mm-app-item-info{width:1.13em;margin-right:.375em}#portalSelectProjectBtn .bim-mm-app-item-details span{font-weight:600;color:#444;text-transform:capitalize}#portalSelectProjectBtn.disabled .bim-mm-app-item-details span{font-weight:600;color:#d3d3d3}#portalSelectProjectBtn.selected .bim-mm-app-item-details span{font-weight:600;color:#fe5000}#portalTeamManagementBtn,#portalPropertyManagerBtn{text-transform:capitalize}#portalShopBtn .bim-mm-app-item-info,#portalBimProcesses .bim-mm-app-item-info,#portalCloudViewerBtn .bim-mm-app-item-info,#portalConnexisBtn .bim-mm-app-item-info{display:none}.bim-mm-container{background-color:#f5f5f5;width:15.31em;min-height:100%;font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif}.bim-mm-apps-container{justify-content:space-between;background-color:#f5f5f5;flex:1 0 auto;margin-top:.5em}.bim-mm-apps-container .bim-mm-icon{margin:0 .8125em 0 .9375em}.bim-mm-icon-users{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-users.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-users.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23D3D3D3\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-models{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-models.active{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-models.disabled{background:url('data:image/svg+xml,<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 18L16 13.2V4.89999L8 0L0 4.89999V13.2L8 18ZM14 7.3L9 10V14.9L14 12.1V7.3ZM2 12.1L7 14.9V10L2 7.3V12.1ZM2.82141 5.3847L8 2.39999L13.1786 5.3847L8 8.29999L2.82141 5.3847Z\" fill=\"%23D3D3D3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-documents{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4h0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-documents.active{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4l0,0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-documents.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M6,9h4V7H6V9z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,4v2h8V4H6z\"/>%0D%0A%09<path class=\"st0\" d=\"M6,12h4v-2H6V12z\"/>%0D%0A%09<path class=\"st0\" d=\"M17,1H3v18h10l0,0l0,0l4-4h0l0,0V1z M13,15v2H5V3h10v12H13z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-project-settings{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-project-settings.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-project-settings.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H10V1.73083C10 2.51128 10.589 3.1599 11.3093 3.46049C12.0293 3.761 12.8805 3.70519 13.4322 3.15348L14.6569 1.92883L16.0711 3.34304L14.8465 4.56768C14.2948 5.11939 14.239 5.97063 14.5395 6.69066C14.8401 7.41088 15.4887 7.99986 16.2691 7.99986H18V9.99986H16.2693C15.4888 9.99986 14.8401 10.5889 14.5395 11.3092C14.239 12.0292 14.2949 12.8805 14.8466 13.4322L16.0713 14.6569L14.657 16.0711L13.0748 14.4888C12.7295 14.1435 12.189 14.1068 11.7554 14.3313C11.7064 14.3567 11.657 14.3814 11.6073 14.4054C10.7277 14.8305 10 15.6326 10 16.6095V18H8V16.6095C8 15.6326 7.27227 14.8305 6.39272 14.4054C6.34304 14.3814 6.29375 14.3567 6.24485 14.3314C5.81124 14.1069 5.27074 14.1437 4.92547 14.489L3.34326 16.0712L1.92905 14.657L3.15355 13.4325C3.70528 12.8807 3.76108 12.0294 3.46055 11.3094C3.15993 10.5891 2.51132 10.0001 1.73086 10.0001H0V8.00014H1.73076C2.51123 8.00014 3.15986 7.41111 3.46046 6.69084C3.76095 5.9708 3.70513 5.11957 3.15343 4.56786L1.92871 3.34315L3.34292 1.92893L4.56751 3.15351C5.11926 3.70527 5.97058 3.76107 6.69067 3.46052C7.41096 3.1599 8 2.51125 8 1.73075V0ZM13 9C13 11.2091 11.2091 13 9 13C6.79086 13 5 11.2091 5 9C5 6.79086 6.79086 5 9 5C11.2091 5 13 6.79086 13 9Z\" fill=\"%23d3d3d3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-processes{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-processes.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-processes.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1C10.8231 1 12.5038 1.60982 13.8491 2.63662L12.3474 4.0198C11.3912 3.37585 10.2395 3 9 3C5.68629 3 3 5.68629 3 9C3 12.3137 5.68629 15 9 15C12.3137 15 15 12.3137 15 9C15 8.798 14.99 8.59832 14.9705 8.40145L16.6969 6.81133C16.8943 7.50694 17 8.24113 17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1ZM16.7862 5.11382C17.2909 4.64277 17.3182 3.85179 16.8472 3.3471C16.3761 2.84241 15.5851 2.81514 15.0804 3.28618L9.07623 8.89014L7.18623 7.12614C6.68154 6.6551 5.89056 6.68237 5.41952 7.18706C4.94847 7.69175 4.97575 8.48273 5.48043 8.95378L8.22333 11.5138C8.70359 11.9621 9.44887 11.9621 9.92913 11.5138L16.7862 5.11382Z\" fill=\"%23D3D3D3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-bim-explorer{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill-rule:evenodd;clip-rule:evenodd;fill:%23444;}%0D%0A%09.st1{fill:%23444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M14.5,8.8c-1.4,0-2.5-0.5-3.5-1.1l-3,2L3.8,6.9L8,4l0,0l0.6-1C8.6,3,8.8,2.7,9,2.4l0,0L8,1.7L7,2.4l-6,4v8%0D%0A%09%09L8,19l7-4.6V8.8C14.8,8.8,14.7,8.8,14.5,8.8z M7,16l-4-2.7V8.7l4,2.7V16z M13,13.4L9,16v-4.7l4-2.7V13.4z\"/>%0D%0A%09<g>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,2.5C15.3,2.5,16,3.2,16,4s-0.7,1.5-1.5,1.5C13.6,5.5,13,4.8,13,4S13.6,2.5,14.5,2.5z\"/>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,1C11.8,1,10,4,10,4s1.8,3,4.5,3S19,4,19,4S17.3,1,14.5,1z M14.5,6.5C13.1,6.5,12,5.4,12,4%0D%0A%09%09%09s1.1-2.5,2.5-2.5S17,2.6,17,4S15.9,6.5,14.5,6.5z\"/>%0D%0A%09</g>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-bim-explorer.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill-rule:evenodd;clip-rule:evenodd;fill:%23d3d3d3;}%0D%0A%09.st1{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M14.5,8.8c-1.4,0-2.5-0.5-3.5-1.1l-3,2L3.8,6.9L8,4l0,0l0.6-1C8.6,3,8.8,2.7,9,2.4l0,0L8,1.7L7,2.4l-6,4v8%0D%0A%09%09L8,19l7-4.6V8.8C14.8,8.8,14.7,8.8,14.5,8.8z M7,16l-4-2.7V8.7l4,2.7V16z M13,13.4L9,16v-4.7l4-2.7V13.4z\"/>%0D%0A%09<g>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,2.5C15.3,2.5,16,3.2,16,4s-0.7,1.5-1.5,1.5C13.6,5.5,13,4.8,13,4S13.6,2.5,14.5,2.5z\"/>%0D%0A%09%09<path class=\"st1\" d=\"M14.5,1C11.8,1,10,4,10,4s1.8,3,4.5,3S19,4,19,4S17.3,1,14.5,1z M14.5,6.5C13.1,6.5,12,5.4,12,4%0D%0A%09%09%09s1.1-2.5,2.5-2.5S17,2.6,17,4S15.9,6.5,14.5,6.5z\"/>%0D%0A%09</g>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-cloud-viewer{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9.39643 4.95238L9.36216 4.84999H9.25419H7.98877H7.88066L7.84647 4.95256L5.29373 12.6105L5.22792 12.8079H5.43604H6.51245H6.62321L6.65581 12.702L8.54282 6.5744L10.4092 12.7016L10.4416 12.8079H10.5527H11.8176H12.026L11.9599 12.6103L9.39643 4.95238Z\" fill=\"%23444444\" stroke=\"%23444444\" stroke-width=\"0.3\"/>%0D%0A<mask id=\"path-2-outside-1_4_241\" maskUnits=\"userSpaceOnUse\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\" fill=\"black\">%0D%0A<rect fill=\"white\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\"/>%0D%0A</mask>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0.5 5.8784L0.229911 5.74782L0.195679 5.81862L0.200584 5.89711L0.5 5.8784ZM9.57155 0.840903L9.66827 0.556923V0.556923L9.57155 0.840903ZM1.26094 10.0038L0.972537 10.0864L1.55807 9.96244L1.26094 10.0038ZM1.18469 8.62655L1.48457 8.63474L1.18469 8.62655ZM8.68481 1.27295L8.70111 0.973394L8.68481 1.27295ZM12.3419 2.53626L12.1714 2.78309L12.5443 2.31481L12.3419 2.53626ZM3.05232 14.0845L3.28325 13.893L2.8016 14.2492L3.05232 14.0845ZM6.78125 17.1568L6.68452 17.4408H6.68452L6.78125 17.1568ZM8.26145 16.7731L8.27775 16.4735L8.26145 16.7731ZM15.7616 9.4195L15.4617 9.41131L15.7616 9.4195ZM15.3529 6.60824L15.6181 6.46786L15.0679 6.70186L15.3529 6.60824ZM17.5 12.1745L17.7429 12.3506L17.8237 12.2392L17.7919 12.1052L17.5 12.1745ZM0.5 5.8784C0.770089 6.00899 0.770053 6.00906 0.770029 6.00911C0.770039 6.00909 0.770028 6.00911 0.770046 6.00907C0.770083 6.009 0.770171 6.00882 0.770309 6.00853C0.770587 6.00796 0.771068 6.00698 0.771753 6.00558C0.773123 6.00279 0.775307 5.99837 0.7783 5.99237C0.784287 5.98037 0.79351 5.96207 0.805938 5.93796C0.830796 5.88974 0.868455 5.81829 0.918652 5.72749C1.01908 5.5458 1.16949 5.287 1.36775 4.98183C1.76497 4.37042 2.3508 3.57829 3.10749 2.84773C4.62223 1.38528 6.77634 0.20577 9.47482 1.12488L9.66827 0.556923C6.669 -0.464637 4.28734 0.874604 2.69074 2.41608C1.89176 3.18747 1.27804 4.01859 0.864612 4.65495C0.657555 4.97366 0.49987 5.24486 0.39354 5.43721C0.340357 5.53342 0.299968 5.61001 0.272623 5.66305C0.258949 5.68958 0.248532 5.71023 0.241404 5.72452C0.23784 5.73166 0.235098 5.73722 0.233181 5.74112C0.232222 5.74307 0.23147 5.74461 0.230925 5.74573C0.230653 5.74629 0.230432 5.74675 0.230263 5.74709C0.230178 5.74727 0.23009 5.74745 0.230048 5.74754C0.229973 5.74769 0.229911 5.74782 0.5 5.8784ZM1.54934 9.92123C1.23214 8.81373 1.04437 7.796 0.935975 7.05508C0.881817 6.68487 0.847573 6.38443 0.826916 6.17726C0.816589 6.07368 0.809662 5.99347 0.805342 5.93955C0.803183 5.91259 0.801675 5.89221 0.800721 5.87878C0.800243 5.87206 0.799904 5.86708 0.799691 5.86389C0.799584 5.86229 0.799509 5.86114 0.799464 5.86044C0.799441 5.86008 0.799426 5.85985 0.799418 5.85972C0.799414 5.85966 0.799412 5.85963 0.799412 5.85962C0.799411 5.85962 0.799413 5.85964 0.799412 5.85964C0.799414 5.85966 0.799416 5.85969 0.5 5.8784C0.200584 5.89711 0.200587 5.89716 0.20059 5.89721C0.200592 5.89724 0.200596 5.8973 0.200599 5.89735C0.200606 5.89746 0.200615 5.8976 0.200625 5.89777C0.200647 5.8981 0.200675 5.89855 0.200711 5.89911C0.200784 5.90023 0.200887 5.90181 0.201022 5.90383C0.201292 5.90788 0.201691 5.91373 0.20223 5.92132C0.203309 5.9365 0.204952 5.95867 0.207259 5.98746C0.211872 6.04505 0.219144 6.12914 0.229876 6.23679C0.251339 6.45204 0.286663 6.76165 0.342295 7.14193C0.453484 7.90198 0.646178 8.94696 0.972537 10.0864L1.54934 9.92123ZM0.884797 8.61836C0.871562 9.10292 0.89898 9.57982 0.96381 10.0452L1.55807 9.96244C1.49778 9.52965 1.47225 9.08592 1.48457 8.63474L0.884797 8.61836ZM8.70111 0.973394C4.48974 0.744304 1.00582 4.18732 0.884797 8.61836L1.48457 8.63474C1.59736 4.50528 4.82929 1.36366 8.66852 1.57251L8.70111 0.973394ZM12.5124 2.28942C11.4065 1.52548 10.1044 1.04973 8.70111 0.973394L8.66852 1.57251C9.95499 1.64249 11.1513 2.07845 12.1714 2.78309L12.5124 2.28942ZM9.47482 1.12488C10.4632 1.46152 11.3493 2.03547 12.1395 2.7577L12.5443 2.31481C11.7068 1.54936 10.7509 0.925661 9.66827 0.556923L9.47482 1.12488ZM2.8016 14.2492C3.72385 15.6529 4.98008 16.8602 6.68452 17.4408L6.87797 16.8728C5.33628 16.3477 4.17639 15.249 3.30305 13.9197L2.8016 14.2492ZM8.27775 16.4735C6.29393 16.3656 4.52192 15.3867 3.28325 13.893L2.8214 14.276C4.1566 15.8861 6.07909 16.9548 8.24516 17.0727L8.27775 16.4735ZM15.4617 9.41131C15.3489 13.5408 12.117 16.6824 8.27775 16.4735L8.24516 17.0727C12.4565 17.3017 15.9404 13.8587 16.0615 9.42769L15.4617 9.41131ZM15.0679 6.70186C15.3468 7.55091 15.4875 8.46482 15.4617 9.41131L16.0615 9.42769C16.0892 8.41096 15.938 7.42821 15.638 6.51462L15.0679 6.70186ZM17.5 12.1745C17.7919 12.1052 17.7919 12.1051 17.7919 12.1051C17.7918 12.105 17.7918 12.105 17.7918 12.1049C17.7918 12.1048 17.7917 12.1046 17.7917 12.1044C17.7916 12.1039 17.7914 12.1033 17.7913 12.1025C17.7909 12.101 17.7903 12.0988 17.7897 12.0959C17.7883 12.0902 17.7862 12.0819 17.7836 12.071C17.7782 12.0494 17.7702 12.0176 17.7596 11.9764C17.7384 11.894 17.7066 11.7739 17.6638 11.6212C17.5782 11.3159 17.4486 10.8801 17.2719 10.3554C16.9187 9.30693 16.376 7.89939 15.6181 6.46786L15.0878 6.74862C15.8262 8.14319 16.357 9.51878 16.7033 10.5469C16.8763 11.0606 17.0029 11.4864 17.0861 11.7832C17.1277 11.9315 17.1584 12.0475 17.1786 12.1261C17.1887 12.1653 17.1962 12.1952 17.2011 12.215C17.2035 12.2249 17.2054 12.2324 17.2065 12.2372C17.2071 12.2396 17.2075 12.2414 17.2078 12.2425C17.2079 12.243 17.208 12.2434 17.2081 12.2436C17.2081 12.2438 17.2081 12.2438 17.2081 12.2439C17.2081 12.2439 17.2081 12.2439 17.2081 12.2439C17.2081 12.2438 17.2081 12.2438 17.5 12.1745ZM6.68452 17.4408C9.67572 18.4596 12.463 17.1419 14.4583 15.6327C15.4612 14.8741 16.2806 14.0553 16.8489 13.4272C17.1334 13.1127 17.3557 12.8452 17.5074 12.6556C17.5832 12.5608 17.6415 12.4854 17.6811 12.4333C17.7009 12.4072 17.716 12.387 17.7264 12.373C17.7315 12.3661 17.7355 12.3607 17.7383 12.3569C17.7396 12.3551 17.7407 12.3536 17.7415 12.3525C17.7419 12.352 17.7422 12.3516 17.7424 12.3513C17.7425 12.3511 17.7426 12.351 17.7427 12.3509C17.7428 12.3507 17.7429 12.3506 17.5 12.1745C17.2571 11.9984 17.2572 11.9983 17.2572 11.9983C17.2572 11.9983 17.2572 11.9983 17.2572 11.9984C17.2571 11.9985 17.2569 11.9987 17.2567 11.999C17.2562 11.9996 17.2555 12.0006 17.2544 12.0021C17.2523 12.005 17.249 12.0095 17.2445 12.0156C17.2355 12.0277 17.2217 12.0461 17.2034 12.0703C17.1666 12.1186 17.1114 12.1901 17.0389 12.2808C16.8937 12.4622 16.6793 12.7203 16.404 13.0246C15.8527 13.6339 15.0609 14.4246 14.0963 15.1541C12.1566 16.6213 9.58453 17.7947 6.87797 16.8728L6.68452 17.4408Z\" fill=\"%23444444\" mask=\"url(%23path-2-outside-1_4_241)\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-cloud-viewer.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9.39643 4.95238L9.36216 4.84999H9.25419H7.98877H7.88066L7.84647 4.95256L5.29373 12.6105L5.22792 12.8079H5.43604H6.51245H6.62321L6.65581 12.702L8.54282 6.5744L10.4092 12.7016L10.4416 12.8079H10.5527H11.8176H12.026L11.9599 12.6103L9.39643 4.95238Z\" fill=\"%23D3D3D3\" stroke=\"%23D3D3D3\" stroke-width=\"0.3\"/>%0D%0A<mask id=\"path-2-outside-1_4_241\" maskUnits=\"userSpaceOnUse\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\" fill=\"%23D3D3D3\">%0D%0A<rect fill=\"white\" x=\"-0.5\" y=\"-0.500006\" width=\"19\" height=\"19\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\"/>%0D%0A</mask>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.57155 0.840903C3.87379 -1.09977 0.5 5.8784 0.5 5.8784C0.5 5.8784 0.61738 7.75686 1.26094 10.0038C1.19838 9.55473 1.17191 9.09442 1.18469 8.62655C1.30159 4.3463 4.65951 1.05398 8.68481 1.27295C10.0297 1.34611 11.2789 1.80196 12.3419 2.53626C11.528 1.79241 10.607 1.19359 9.57155 0.840903ZM6.78125 17.1568C5.15818 16.604 3.95012 15.4509 3.05232 14.0845C4.33926 15.6364 6.18651 16.6602 8.26145 16.7731C12.2867 16.9921 15.6447 13.6997 15.7616 9.4195C15.7884 8.43789 15.6424 7.48956 15.3529 6.60824C16.8492 9.43434 17.5 12.1745 17.5 12.1745C17.5 12.1745 12.479 19.0975 6.78125 17.1568Z\" fill=\"%23DED3D3\"/>%0D%0A<path d=\"M0.5 5.8784L0.229911 5.74782L0.195679 5.81862L0.200584 5.89711L0.5 5.8784ZM9.57155 0.840903L9.66827 0.556923V0.556923L9.57155 0.840903ZM1.26094 10.0038L0.972537 10.0864L1.55807 9.96244L1.26094 10.0038ZM1.18469 8.62655L1.48457 8.63474L1.18469 8.62655ZM8.68481 1.27295L8.70111 0.973394L8.68481 1.27295ZM12.3419 2.53626L12.1714 2.78309L12.5443 2.31481L12.3419 2.53626ZM3.05232 14.0845L3.28325 13.893L2.8016 14.2492L3.05232 14.0845ZM6.78125 17.1568L6.68452 17.4408H6.68452L6.78125 17.1568ZM8.26145 16.7731L8.27775 16.4735L8.26145 16.7731ZM15.7616 9.4195L15.4617 9.41131L15.7616 9.4195ZM15.3529 6.60824L15.6181 6.46786L15.0679 6.70186L15.3529 6.60824ZM17.5 12.1745L17.7429 12.3506L17.8237 12.2392L17.7919 12.1052L17.5 12.1745ZM0.5 5.8784C0.770089 6.00899 0.770053 6.00906 0.770029 6.00911C0.770039 6.00909 0.770028 6.00911 0.770046 6.00907C0.770083 6.009 0.770171 6.00882 0.770309 6.00853C0.770587 6.00796 0.771068 6.00698 0.771753 6.00558C0.773123 6.00279 0.775307 5.99837 0.7783 5.99237C0.784287 5.98037 0.79351 5.96207 0.805938 5.93796C0.830796 5.88974 0.868455 5.81829 0.918652 5.72749C1.01908 5.5458 1.16949 5.287 1.36775 4.98183C1.76497 4.37042 2.3508 3.57829 3.10749 2.84773C4.62223 1.38528 6.77634 0.20577 9.47482 1.12488L9.66827 0.556923C6.669 -0.464637 4.28734 0.874604 2.69074 2.41608C1.89176 3.18747 1.27804 4.01859 0.864612 4.65495C0.657555 4.97366 0.49987 5.24486 0.39354 5.43721C0.340357 5.53342 0.299968 5.61001 0.272623 5.66305C0.258949 5.68958 0.248532 5.71023 0.241404 5.72452C0.23784 5.73166 0.235098 5.73722 0.233181 5.74112C0.232222 5.74307 0.23147 5.74461 0.230925 5.74573C0.230653 5.74629 0.230432 5.74675 0.230263 5.74709C0.230178 5.74727 0.23009 5.74745 0.230048 5.74754C0.229973 5.74769 0.229911 5.74782 0.5 5.8784ZM1.54934 9.92123C1.23214 8.81373 1.04437 7.796 0.935975 7.05508C0.881817 6.68487 0.847573 6.38443 0.826916 6.17726C0.816589 6.07368 0.809662 5.99347 0.805342 5.93955C0.803183 5.91259 0.801675 5.89221 0.800721 5.87878C0.800243 5.87206 0.799904 5.86708 0.799691 5.86389C0.799584 5.86229 0.799509 5.86114 0.799464 5.86044C0.799441 5.86008 0.799426 5.85985 0.799418 5.85972C0.799414 5.85966 0.799412 5.85963 0.799412 5.85962C0.799411 5.85962 0.799413 5.85964 0.799412 5.85964C0.799414 5.85966 0.799416 5.85969 0.5 5.8784C0.200584 5.89711 0.200587 5.89716 0.20059 5.89721C0.200592 5.89724 0.200596 5.8973 0.200599 5.89735C0.200606 5.89746 0.200615 5.8976 0.200625 5.89777C0.200647 5.8981 0.200675 5.89855 0.200711 5.89911C0.200784 5.90023 0.200887 5.90181 0.201022 5.90383C0.201292 5.90788 0.201691 5.91373 0.20223 5.92132C0.203309 5.9365 0.204952 5.95867 0.207259 5.98746C0.211872 6.04505 0.219144 6.12914 0.229876 6.23679C0.251339 6.45204 0.286663 6.76165 0.342295 7.14193C0.453484 7.90198 0.646178 8.94696 0.972537 10.0864L1.54934 9.92123ZM0.884797 8.61836C0.871562 9.10292 0.89898 9.57982 0.96381 10.0452L1.55807 9.96244C1.49778 9.52965 1.47225 9.08592 1.48457 8.63474L0.884797 8.61836ZM8.70111 0.973394C4.48974 0.744304 1.00582 4.18732 0.884797 8.61836L1.48457 8.63474C1.59736 4.50528 4.82929 1.36366 8.66852 1.57251L8.70111 0.973394ZM12.5124 2.28942C11.4065 1.52548 10.1044 1.04973 8.70111 0.973394L8.66852 1.57251C9.95499 1.64249 11.1513 2.07845 12.1714 2.78309L12.5124 2.28942ZM9.47482 1.12488C10.4632 1.46152 11.3493 2.03547 12.1395 2.7577L12.5443 2.31481C11.7068 1.54936 10.7509 0.925661 9.66827 0.556923L9.47482 1.12488ZM2.8016 14.2492C3.72385 15.6529 4.98008 16.8602 6.68452 17.4408L6.87797 16.8728C5.33628 16.3477 4.17639 15.249 3.30305 13.9197L2.8016 14.2492ZM8.27775 16.4735C6.29393 16.3656 4.52192 15.3867 3.28325 13.893L2.8214 14.276C4.1566 15.8861 6.07909 16.9548 8.24516 17.0727L8.27775 16.4735ZM15.4617 9.41131C15.3489 13.5408 12.117 16.6824 8.27775 16.4735L8.24516 17.0727C12.4565 17.3017 15.9404 13.8587 16.0615 9.42769L15.4617 9.41131ZM15.0679 6.70186C15.3468 7.55091 15.4875 8.46482 15.4617 9.41131L16.0615 9.42769C16.0892 8.41096 15.938 7.42821 15.638 6.51462L15.0679 6.70186ZM17.5 12.1745C17.7919 12.1052 17.7919 12.1051 17.7919 12.1051C17.7918 12.105 17.7918 12.105 17.7918 12.1049C17.7918 12.1048 17.7917 12.1046 17.7917 12.1044C17.7916 12.1039 17.7914 12.1033 17.7913 12.1025C17.7909 12.101 17.7903 12.0988 17.7897 12.0959C17.7883 12.0902 17.7862 12.0819 17.7836 12.071C17.7782 12.0494 17.7702 12.0176 17.7596 11.9764C17.7384 11.894 17.7066 11.7739 17.6638 11.6212C17.5782 11.3159 17.4486 10.8801 17.2719 10.3554C16.9187 9.30693 16.376 7.89939 15.6181 6.46786L15.0878 6.74862C15.8262 8.14319 16.357 9.51878 16.7033 10.5469C16.8763 11.0606 17.0029 11.4864 17.0861 11.7832C17.1277 11.9315 17.1584 12.0475 17.1786 12.1261C17.1887 12.1653 17.1962 12.1952 17.2011 12.215C17.2035 12.2249 17.2054 12.2324 17.2065 12.2372C17.2071 12.2396 17.2075 12.2414 17.2078 12.2425C17.2079 12.243 17.208 12.2434 17.2081 12.2436C17.2081 12.2438 17.2081 12.2438 17.2081 12.2439C17.2081 12.2439 17.2081 12.2439 17.2081 12.2439C17.2081 12.2438 17.2081 12.2438 17.5 12.1745ZM6.68452 17.4408C9.67572 18.4596 12.463 17.1419 14.4583 15.6327C15.4612 14.8741 16.2806 14.0553 16.8489 13.4272C17.1334 13.1127 17.3557 12.8452 17.5074 12.6556C17.5832 12.5608 17.6415 12.4854 17.6811 12.4333C17.7009 12.4072 17.716 12.387 17.7264 12.373C17.7315 12.3661 17.7355 12.3607 17.7383 12.3569C17.7396 12.3551 17.7407 12.3536 17.7415 12.3525C17.7419 12.352 17.7422 12.3516 17.7424 12.3513C17.7425 12.3511 17.7426 12.351 17.7427 12.3509C17.7428 12.3507 17.7429 12.3506 17.5 12.1745C17.2571 11.9984 17.2572 11.9983 17.2572 11.9983C17.2572 11.9983 17.2572 11.9983 17.2572 11.9984C17.2571 11.9985 17.2569 11.9987 17.2567 11.999C17.2562 11.9996 17.2555 12.0006 17.2544 12.0021C17.2523 12.005 17.249 12.0095 17.2445 12.0156C17.2355 12.0277 17.2217 12.0461 17.2034 12.0703C17.1666 12.1186 17.1114 12.1901 17.0389 12.2808C16.8937 12.4622 16.6793 12.7203 16.404 13.0246C15.8527 13.6339 15.0609 14.4246 14.0963 15.1541C12.1566 16.6213 9.58453 17.7947 6.87797 16.8728L6.68452 17.4408Z\" fill=\"%23D3D3D3\" mask=\"url(%23path-2-outside-1_4_241)\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-autoconverter{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%232F3133\"/>%0D%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%232F3133\"/>%0D%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0D%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%232F3133\"/>%0D%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%232F3133\"/>%0D%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0D%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%232F3133\"/>%0D%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%232F3133\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-autoconverter.active{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%232F3133\"/>%0D%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%232F3133\"/>%0D%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0D%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%232F3133\"/>%0D%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%232F3133\"/>%0D%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%232F3133\"/>%0D%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%232F3133\"/>%0D%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%232F3133\"/>%0D%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%232F3133\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-autoconverter.disabled{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M64.9154 31H55.0008L35 91H43.4338L59.2596 39.6091H59.4352L75.0894 91H85L64.9154 31Z\" fill=\"%23d3d3d3\"/>%0D%0A<rect y=\"2\" width=\"10\" height=\"116\" fill=\"%23d3d3d3\"/>%0D%0A<rect x=\"110\" y=\"17\" width=\"8\" height=\"32\" fill=\"%23d3d3d3\"/>%0D%0A<rect x=\"103\" y=\"2\" width=\"8\" height=\"32\" transform=\"rotate(90 103 2)\" fill=\"%23d3d3d3\"/>%0D%0A<rect x=\"103\" y=\"110\" width=\"8\" height=\"32\" transform=\"rotate(90 103 110)\" fill=\"%23d3d3d3\"/>%0D%0A<rect x=\"110\" y=\"71\" width=\"8\" height=\"32\" fill=\"%23d3d3d3\"/>%0D%0A<rect x=\"48\" width=\"10\" height=\"48\" transform=\"rotate(90 48 0)\" fill=\"%23d3d3d3\"/>%0D%0A<rect x=\"48\" y=\"110\" width=\"10\" height=\"48\" transform=\"rotate(90 48 110)\" fill=\"%23d3d3d3\"/>%0D%0A<circle cx=\"116\" cy=\"60\" r=\"4\" fill=\"%23d3d3d3\"/>%0D%0A<circle cx=\"114\" cy=\"6\" r=\"6\" fill=\"%23d3d3d3\"/>%0D%0A<circle cx=\"114\" cy=\"60\" r=\"6\" fill=\"%23d3d3d3\"/>%0D%0A<circle cx=\"114\" cy=\"114\" r=\"6\" fill=\"%23d3d3d3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-connexis{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-connexis.disabled{background:url('data:image/svg+xml,<svg width=\"120\" height=\"120\" viewBox=\"0 0 120 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23d3d3d3\"/>%0D%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23d3d3d3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-team-members{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-team-members.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M10.3851 15.8723C10.4807 15.7761 10.567 15.6711 10.6429 15.5566C10.9079 15.1567 10.978 14.7432 10.9948 14.4175C10.9997 14.3224 11 13.1932 10.9992 12.5C10.9992 12.0037 10.9979 11.7592 10.9955 11.6926C10.9828 11.3363 10.9078 10.9657 10.7094 10.599C10.5298 10.2669 10.2765 9.98896 9.97363 9.74341C10.3933 9.54278 10.8971 9.32543 11.5 9.08198C11.6893 8.94573 11.6893 8.91419 11.6893 8.55639C11.6893 7.97762 11.5 7.85335 11.5 7.85335C10.6999 6.96414 10.5145 6.56647 10.3229 5.18961C10.1313 3.81268 10.9252 2 12.9998 2C15.0743 2 15.8683 3.81268 15.6767 5.18961C15.4851 6.56647 15.2996 6.96414 14.4995 7.85335C14.4995 7.85335 14.3102 7.97762 14.3102 8.55639C14.3102 8.91419 14.3102 8.94573 14.4995 9.08198C17.3036 10.2142 17.9627 10.782 17.9964 11.7282C17.998 11.7718 17.9995 12.2155 17.9995 12.7272C18.0003 13.4493 17.9995 14.3067 17.9964 14.366C17.9497 15.2733 17.3634 16 12.9998 16C11.9091 16 11.0544 15.9546 10.3851 15.8723Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M2.32311 5.18961C2.13152 3.81268 2.92547 2 5 2C7.07453 2 7.86848 3.81268 7.67689 5.18961C7.4853 6.56647 7.29984 6.96414 6.49976 7.85335C6.49976 7.85335 6.31047 7.97762 6.31047 8.55639C6.31047 8.91419 6.31047 8.94573 6.49976 9.08198C9.30387 10.2142 9.96294 10.782 9.99666 11.7282C9.99819 11.7718 9.99972 12.2155 9.99972 12.7272C10.0005 13.4493 9.99972 14.3067 9.99666 14.366C9.94991 15.2733 9.36365 16 5 16C0.636354 16 0.0500897 15.2733 0.00334184 14.366C0.00027641 14.3057 -0.000489949 13.4204 0.00027641 12.6911C0.00027641 12.1948 0.00180913 11.7708 0.00334184 11.7282C0.0370616 10.782 0.69613 10.2142 3.50024 9.08198C3.68953 8.94573 3.68953 8.91419 3.68953 8.55639C3.68953 7.97762 3.50024 7.85335 3.50024 7.85335C2.70016 6.96414 2.5147 6.56647 2.32311 5.18961Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-property-manager{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-property-manager.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-property-manager.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16.0377 10.965L12.0419 14.9955L14.0047 16.9754L18.0005 12.9448L16.0377 10.965Z\" fill=\"%23d3d3d3\"/>%0D%0A<path d=\"M11.0291 18H13.0118L11.0291 16V18Z\" fill=\"%23d3d3d3\"/>%0D%0A<path d=\"M13.21 6.10001L13.3092 2.89999C13.3092 0.299994 13.21 0 10.6324 0L7.36097 0.100006C6.96442 0.200006 6.66701 0.300006 6.3696 0.600006L0.520471 6.5C-0.17349 7.2 -0.17349 8.19999 0.520471 8.89999L4.48596 12.9C5.17992 13.6 6.17132 13.6 6.86528 12.9L12.7143 7C13.0117 6.8 13.1108 6.50001 13.21 6.10001ZM11.6238 3.39999C11.6238 4.29999 10.8308 5.10001 9.93852 5.10001C9.04628 5.10001 8.25311 4.29999 8.25311 3.39999C8.25311 2.49999 9.04628 1.7 9.93852 1.7C10.8308 1.7 11.6238 2.49999 11.6238 3.39999Z\" fill=\"%23d3d3d3\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-shop{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M8.5,16c0.8,0,1.5,0.7,1.5,1.5S9.3,19,8.5,19S7,18.3,7,17.5S7.7,16,8.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M17.5,16c0.8,0,1.5,0.7,1.5,1.5S18.3,19,17.5,19S16,18.3,16,17.5S16.7,16,17.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M0,2v2h3l5,10h12V6H6.1L4,2H0z M7.1,7.9H18V12H9.2L7.1,7.9z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-shop.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M8.5,16c0.8,0,1.5,0.7,1.5,1.5S9.3,19,8.5,19S7,18.3,7,17.5S7.7,16,8.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M17.5,16c0.8,0,1.5,0.7,1.5,1.5S18.3,19,17.5,19S16,18.3,16,17.5S16.7,16,17.5,16z\"/>%0D%0A%09<path class=\"st0\" d=\"M0,2v2h3l5,10h12V6H6.1L4,2H0z M7.1,7.9H18V12H9.2L7.1,7.9z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-info{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center;background-size:auto!important}.bim-mm-icon-info:hover{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23F05423;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center;background-size:auto!important;cursor:pointer}.bim-mm-icon-folder{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M17,7V5V4V1h-6L8,3H0v16h2h15l3-12H17z M8,5h0.6l0.5-0.3L11.6,3H15v1v1v2H3l-1,4V5H8z M15.4,17H2.6l2-8H15h2%0D%0A%09h0.4L15.4,17z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-folder.active{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23FE5000;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M17,7V5V4V1h-6L8,3H0v16h2h15l3-12H17z M8,5h0.6l0.5-0.3L11.6,3H15v1v1v2H3l-1,4V5H8z M15.4,17H2.6l2-8H15h2%0D%0A%09h0.4L15.4,17z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-folder.disabled{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23d3d3d3;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M17,7V5V4V1h-6L8,3H0v16h2h15l3-12H17z M8,5h0.6l0.5-0.3L11.6,3H15v1v1v2H3l-1,4V5H8z M15.4,17H2.6l2-8H15h2%0D%0A%09h0.4L15.4,17z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bim-mm-icon-add-ins{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M15 8H10V3H8V8H3V10H8V15H10V10H15V8Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}\n"] }]
1647
1969
  }], ctorParameters: () => [{ type: i1.TranslateService }], propDecorators: { isEmbedded: [{
1648
1970
  type: Input,
1649
1971
  args: [{ transform: booleanAttribute }]
@@ -1731,6 +2053,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
1731
2053
  }], shopDisabled: [{
1732
2054
  type: Input,
1733
2055
  args: [{ transform: booleanAttribute }]
2056
+ }], addinsDisabled: [{
2057
+ type: Input,
2058
+ args: [{ transform: booleanAttribute }]
1734
2059
  }], openProjectVisible: [{
1735
2060
  type: Input,
1736
2061
  args: [{ transform: booleanAttribute }]
@@ -1770,6 +2095,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
1770
2095
  }], shopVisible: [{
1771
2096
  type: Input,
1772
2097
  args: [{ transform: booleanAttribute }]
2098
+ }], addinsVisible: [{
2099
+ type: Input,
2100
+ args: [{ transform: booleanAttribute }]
1773
2101
  }], dividerprojectmanagementVisible: [{
1774
2102
  type: Input,
1775
2103
  args: [{ transform: booleanAttribute }]
@@ -1874,7 +2202,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
1874
2202
 
1875
2203
  const BIMPLUS_NOTIFY_MESSAGES = "bimplus-notify-messages";
1876
2204
  class BimplusNotifyComponent extends BimplusLocalizedWidgetComponent {
1877
- constructor(translateService, elementRef) {
2205
+ constructor(translateService) {
1878
2206
  super(translateService);
1879
2207
  // Expose Array constructor as a property
1880
2208
  this.Array = Array;
@@ -1922,7 +2250,6 @@ class BimplusNotifyComponent extends BimplusLocalizedWidgetComponent {
1922
2250
  * Message action event
1923
2251
  --------------------------------------------------------------------------*/
1924
2252
  this.bimplusNotifyMessageAction = new EventEmitter();
1925
- this._element = elementRef.nativeElement;
1926
2253
  }
1927
2254
  get newMessages() {
1928
2255
  return this._alertActive;
@@ -1973,36 +2300,6 @@ class BimplusNotifyComponent extends BimplusLocalizedWidgetComponent {
1973
2300
  this.updateMessages(this.messages);
1974
2301
  }
1975
2302
  /**--------------------------------------------------------------------------
1976
- * component did load
1977
- --------------------------------------------------------------------------*/
1978
- ngAfterViewInit() {
1979
- // init simple bar scrollbar
1980
- const messagesContainer = this._element?.querySelector('.messages-container');
1981
- if (messagesContainer) {
1982
- this._simpleBar = new SimpleBar(messagesContainer);
1983
- }
1984
- }
1985
- /**--------------------------------------------------------------------------
1986
- * component did render
1987
- --------------------------------------------------------------------------*/
1988
- ngAfterViewChecked() {
1989
- //--- fix for simple bar component update -----------------------------------------------------------------------
1990
- //--- message-item items are rerendered outside of the simple bar container so we need to move them inside of the scroll container --
1991
- const _element = this._element;
1992
- const barElem = _element?.querySelector('.messages-container');
1993
- if (!barElem) {
1994
- return;
1995
- }
1996
- const msgItems = _element?.querySelectorAll(".messages-container > .message-item");
1997
- const barContent = _element?.querySelector(".simplebar-content");
1998
- if (!barContent || !msgItems) {
1999
- return;
2000
- }
2001
- if (this._simpleBar) {
2002
- this._simpleBar.recalculate();
2003
- }
2004
- }
2005
- /**--------------------------------------------------------------------------
2006
2303
  * close single message
2007
2304
  --------------------------------------------------------------------------*/
2008
2305
  _closeMessage(item, preview, event) {
@@ -2088,13 +2385,17 @@ class BimplusNotifyComponent extends BimplusLocalizedWidgetComponent {
2088
2385
  }
2089
2386
  return itemLinksTitles[index] ?? '';
2090
2387
  }
2091
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusNotifyComponent, deps: [{ token: i1.TranslateService }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
2092
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.10", type: BimplusNotifyComponent, isStandalone: true, selector: "lib-bimplus-notify", inputs: { messagePreviewTime: "messagePreviewTime", showMessagePreview: ["showMessagePreview", "showMessagePreview", booleanAttribute], previewMessagesLimit: "previewMessagesLimit", previewMessagesOffsetY: "previewMessagesOffsetY", messages: "messages" }, outputs: { bimplusNotifyDeleteMessage: "bimplusNotifyDeleteMessage", bimplusNotifyDeleteAllMessages: "bimplusNotifyDeleteAllMessages", bimplusNotifyMessageAction: "bimplusNotifyMessageAction" }, host: { properties: { "class.new-messages": "this.newMessages", "class.bim-notify": "this.bimNotify" } }, providers: [TranslateService], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<div\r\n class=\"dropdown\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n (click)=\"_toggleOpened()\"\r\n [title]=\"'_BimplusNotifyTitle' | translate\"\r\n>\r\n <div class=\"dropdown-toggle\" >\r\n <div\r\n class=\"main-icon\"\r\n [ngClass]=\"'icon-notify' + (this._alertActive ? '-alert notify' : '')\"\r\n ></div>\r\n </div>\r\n\r\n <div\r\n class=\"bimcomp-dropdown-menu\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n >\r\n <div class=\"notify-tick\"></div>\r\n <div class=\"messages-title\">\r\n <div class=\"messages-count\">\r\n ({{this._messagesList.length}})\r\n </div>\r\n <div\r\n class=\"messages-delete-all\"\r\n (click)=\"_deleteAllMessages()\"\r\n >\r\n {{\"_Notify_Mark_All\" | translate}}\r\n </div>\r\n </div>\r\n <div class=\"messages-container\">\r\n @if (_messagesList.length) {\r\n <div\r\n *ngFor=\"let item of _messagesList\"\r\n class=\"message-item\"\r\n >\r\n <div class=\"message-item-title\">\r\n <div [ngClass]=\"'message-item-icon-' + item.type\"></div>\r\n <div\r\n class=\"message-item-title-text\"\r\n [ngClass]=\"{'capitalize':item.capitalizedTitle}\"\r\n >\r\n {{item.title}}\r\n </div>\r\n <div\r\n class=\"message-item-icon-close\"\r\n (click)=\"_closeMessage(item, false, $event)\"\r\n ></div>\r\n </div>\r\n\r\n <div class=\"message-item-body-text\">{{item.text}}</div>\r\n @if (item.linkText) {\r\n <div\r\n *ngFor=\"let link of (item.linkText.constructor === Array ? item.linkText : [item.linkText]); let i = index\"\r\n class=\"message-item-link\"\r\n [title]=\"_getItemLinkTitle(item, i)\"\r\n (click)=\"_messageAction(item, i)\"\r\n >{{link}}</div>\r\n } \r\n </div>\r\n } @else {\r\n <div class=\"message-item-empty\">\r\n <div class=\"message-item-empty-icon\"></div>\r\n <div class=\"message-item-empty-text\">{{\"_Notify_No_Messages\" | translate}}</div>\r\n </div>\r\n }\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div\r\n class=\"bimcomp-overlay\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n (click)=\"_toggleOpened()\"\r\n></div>\r\n\r\n<div\r\n class=\"bimcomp-messages-preview\"\r\n [ngClass]=\"(showMessagePreview && !_menuOpened && _previewMessagesList.length > 0) ? 'visible' : ''\"\r\n [style.top]=\"previewMessagesOffsetY\"\r\n>\r\n <div class=\"messages-container-preview\">\r\n <div\r\n *ngFor=\"let item of _previewMessagesList\"\r\n class=\"message-item\"\r\n >\r\n <div class=\"message-item-title\">\r\n <div [ngClass]=\"'message-item-icon-' + item.type\"></div>\r\n <div\r\n class=\"message-item-title-text\"\r\n [ngClass]=\"{'capitalize':item.capitalizedTitle}\"\r\n >\r\n {{item.title}}\r\n </div>\r\n <div\r\n class=\"message-item-icon-close\"\r\n (click)=\"_closeMessage(item, true, $event)\"\r\n ></div>\r\n </div>\r\n\r\n <div class=\"message-item-body-text\">\r\n {{item.text}}\r\n </div>\r\n @if (item.linkText) {\r\n <div\r\n *ngFor=\"let link of (item.linkText.constructor === Array ? item.linkText : [item.linkText]); let i = index\"\r\n class=\"message-item-link\"\r\n [title]=\"_getItemLinkTitle(item, i)\"\r\n (click)=\"_messageAction(item, i)\"\r\n >{{link}}</div>\r\n }\r\n </div>\r\n </div>\r\n</div>", styles: ["[data-simplebar]{position:relative;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.simplebar-wrapper{overflow:hidden;width:inherit;height:inherit;max-width:inherit;max-height:inherit}.simplebar-mask{direction:inherit;position:absolute;overflow:hidden;padding:0;margin:0;inset:0;width:auto!important;height:auto!important;z-index:0}.simplebar-offset{direction:inherit!important;box-sizing:inherit!important;resize:none!important;position:absolute;inset:0;padding:0;margin:0;-webkit-overflow-scrolling:touch}.simplebar-content-wrapper{direction:inherit;box-sizing:border-box!important;position:relative;display:block;height:100%;width:auto;max-width:100%;max-height:100%;overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.simplebar-content-wrapper::-webkit-scrollbar,.simplebar-hide-scrollbar::-webkit-scrollbar{display:none;width:0;height:0}.simplebar-content:after,.simplebar-content:before{content:\" \";display:table}.simplebar-placeholder{max-height:100%;max-width:100%;width:100%;pointer-events:none}.simplebar-height-auto-observer-wrapper{box-sizing:inherit!important;height:100%;width:100%;max-width:1px;position:relative;float:left;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0}.simplebar-height-auto-observer{box-sizing:inherit;display:block;opacity:0;position:absolute;top:0;left:0;height:1000%;width:1000%;min-height:1px;min-width:1px;overflow:hidden;pointer-events:none;z-index:-1}.simplebar-track{z-index:1;position:absolute;right:0;bottom:0;pointer-events:none;overflow:hidden}[data-simplebar].simplebar-dragging,[data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}[data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}.simplebar-scrollbar{position:absolute;left:0;right:0;min-height:10px}.simplebar-scrollbar:before{position:absolute;content:\"\";background:#000;border-radius:7px;left:2px;right:2px;opacity:0;transition:opacity .2s .5s linear}.simplebar-scrollbar.simplebar-visible:before{opacity:.5;transition-delay:0s;transition-duration:0s}.simplebar-track.simplebar-vertical{top:0;width:11px}.simplebar-scrollbar:before{inset:2px}.simplebar-track.simplebar-horizontal{left:0;height:11px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar{inset:0 auto 0 0;min-height:0;min-width:10px;width:auto}[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{right:auto;left:0}.simplebar-dummy-scrollbar-size{direction:rtl;position:fixed;opacity:0;visibility:hidden;height:500px;width:500px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:scrollbar!important}.simplebar-dummy-scrollbar-size>div{width:200%;height:200%;margin:10px 0}.simplebar-hide-scrollbar{position:fixed;left:0;visibility:hidden;overflow-y:scroll;scrollbar-width:none;-ms-overflow-style:none}.bim-notify{position:relative}.bim-notify .dropdown{position:relative;width:3.25em;display:flex;flex-direction:column;justify-content:space-around;align-items:center}.bim-notify .dropdown-toggle{position:relative;margin-left:.44em;margin-right:.44em;background-size:1.4em 1.4em;cursor:pointer}.bim-notify .bimcomp-dropdown-menu,.bim-notify .bimcomp-messages-preview{font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif;position:absolute;top:100%;right:0;z-index:2;display:none;width:19em;margin:0;padding:.5em .65em .57em 0}.bim-notify .bimcomp-dropdown-menu .messages-title,.bim-notify .bimcomp-messages-preview .messages-title{height:2em;display:flex;flex-direction:row;justify-content:space-between;align-items:center;color:#fff;background-color:#444}.bim-notify .bimcomp-dropdown-menu .messages-title .messages-count,.bim-notify .bimcomp-messages-preview .messages-title .messages-count,.bim-notify .bimcomp-dropdown-menu .messages-title .messages-delete-all,.bim-notify .bimcomp-messages-preview .messages-title .messages-delete-all{cursor:pointer;font-size:.8125em;font-weight:400;margin:0 .8125em}.bim-notify .bimcomp-dropdown-menu .messages-title .messages-delete-all,.bim-notify .bimcomp-messages-preview .messages-title .messages-delete-all{text-decoration:underline}.bim-notify .bimcomp-dropdown-menu div,.bim-notify .bimcomp-messages-preview div{font-size:1em}.bim-notify .bimcomp-dropdown-menu .noselect,.bim-notify .bimcomp-messages-preview .noselect{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bim-notify .bimcomp-dropdown-menu li,.bim-notify .bimcomp-messages-preview li{display:flex;flex-direction:row;align-items:center;box-sizing:content-box;padding:.21em 2.1em}.bim-notify .bimcomp-dropdown-menu li span,.bim-notify .bimcomp-messages-preview li span{display:inline-block;flex:1 0 auto;margin-right:1.43em;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bim-notify .bimcomp-dropdown-menu li:hover,.bim-notify .bimcomp-messages-preview li:hover{background-color:#f5f5f5}.bim-notify .bimcomp-dropdown-menu ul,.bim-notify .bimcomp-messages-preview ul,.bim-notify .bimcomp-dropdown-menu li,.bim-notify .bimcomp-messages-preview li{list-style:none}.bim-notify .bimcomp-dropdown-menu .notify-tick,.bim-notify .bimcomp-messages-preview .notify-tick{width:2em;height:1em;align-self:flex-end;background-image:url('data:image/svg+xml,<svg width=\"32\" height=\"16\" viewBox=\"0 0 32 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16 -6.99383e-07L32 16L-1.97729e-05 16L16 -6.99383e-07Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');background-size:cover}.bim-notify .bimcomp-dropdown-menu.open,.bim-notify .bimcomp-messages-preview.visible{display:flex;flex-direction:column}.bim-notify .messages-container,.bim-notify .messages-container-preview{list-style:none;background-color:#fff;border:thin solid rgba(0,0,0,.15);-webkit-box-shadow:0 .43em .86em rgba(0,0,0,.175);box-shadow:0 .43em .86em #0000002d;text-decoration-color:#333;text-decoration-line:none;text-decoration-style:solid;line-height:2.71em;font-weight:400;max-height:16em;overflow:hidden;overflow-y:visible;scrollbar-width:none}.bim-notify .messages-container::-webkit-scrollbar,.bim-notify .messages-container-preview::-webkit-scrollbar{display:none}.bim-notify .messages-container .message-item-empty,.bim-notify .messages-container-preview .message-item-empty{max-width:19em;max-height:6em;padding:.6em .8125em 0;box-sizing:border-box;display:flex;flex-direction:column;align-items:center}.bim-notify .messages-container .message-item-empty-icon,.bim-notify .messages-container-preview .message-item-empty-icon{width:2.5em;height:2.5em;background-image:url('data:image/svg+xml,<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M18.7779 2.22227C18.2256 2.22227 17.7779 2.66999 17.7779 3.22228V6.66672H22.2223V3.22227C22.2223 2.66999 21.7746 2.22227 21.2223 2.22227H18.7779Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M4.44455 30.8889C4.44455 29.7844 5.33998 28.8889 6.44455 28.8889L6.66678 28.8889C7.89407 28.8889 8.889 27.894 8.889 26.6667V17.8889C8.889 12.9184 12.9184 8.88894 17.889 8.88894H22.1112C27.0818 8.88894 31.1112 12.9184 31.1112 17.8889V26.6667C31.1112 27.894 32.1061 28.8889 33.3334 28.8889L33.5557 28.8889C34.6602 28.8889 35.5557 29.7844 35.5557 30.8889V31.3334C35.5557 32.438 34.6602 33.3334 33.5557 33.3334H6.44455C5.33999 33.3334 4.44455 32.438 4.44455 31.3334V30.8889Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M15.5557 35.5556C15.5557 38.0102 17.5455 40.0001 20.0001 40.0001C22.4547 40.0001 24.4446 38.0102 24.4446 35.5556H15.5557Z\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A');background-size:cover}.bim-notify .messages-container .message-item-empty-text,.bim-notify .messages-container-preview .message-item-empty-text{font-size:.8125em;line-height:2.2em}.bim-notify .messages-container .message-item,.bim-notify .messages-container-preview .message-item{max-width:19em;border-bottom:1px solid #D3D3D3;padding:.6em .8125em;box-sizing:border-box}.bim-notify .messages-container .message-item-title,.bim-notify .messages-container-preview .message-item-title{display:flex;align-items:center;line-height:1.5em}.bim-notify .messages-container .message-item-title-text,.bim-notify .messages-container-preview .message-item-title-text{font-size:.8125em;font-weight:700;flex:1 1 auto;margin-left:.8125em}.bim-notify .messages-container .message-item-icon-info,.bim-notify .messages-container-preview .message-item-icon-info{width:1.125em;height:1.125em;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A');flex:0 0 auto}.bim-notify .messages-container .message-item-icon-failure,.bim-notify .messages-container-preview .message-item-icon-failure{width:1.125em;height:1.125em;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A');flex:0 0 auto}.bim-notify .messages-container .message-item-icon-close,.bim-notify .messages-container-preview .message-item-icon-close{cursor:pointer;width:1.125em;height:1.125em;background-repeat:no-repeat;background-size:auto;background-position:center;background-image:url('data:image/svg+xml,<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M4.57764e-05 6.87023L1.12989 8.00012L4.00029 5.12959L6.87016 7.99951L8.00001 6.86963L5.13014 3.9997L8.0001 1.12962L6.87025 -0.000274658L4.00028 2.86982L1.13106 0.000548095L0.00120898 1.13044L2.87043 3.99971L4.57764e-05 6.87023Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');flex:0 0 auto}.bim-notify .messages-container .message-item-body-text,.bim-notify .messages-container-preview .message-item-body-text{font-size:.8125em;line-height:1.3em;margin-top:.5em;word-wrap:break-word;white-space:normal}.bim-notify .messages-container .message-item-link,.bim-notify .messages-container-preview .message-item-link{color:#fe5000;text-decoration:underline;font-size:.8125em;line-height:1.3em;margin-top:.5em;word-wrap:break-word;white-space:normal;cursor:pointer}.bim-notify .messages-container .message-item:last-child,.bim-notify .messages-container-preview .message-item:last-child{border-bottom:none}.bim-notify .messages-container-preview{max-height:none;background-color:transparent;border:none;-webkit-box-shadow:none;box-shadow:none}.bim-notify .messages-container-preview .message-item{background-color:#fff;border:thin solid rgba(0,0,0,.15);-webkit-box-shadow:0 .3em .3em rgba(0,0,0,.175);box-shadow:0 .3em .3em #0000002d;margin-bottom:.5em}.bim-notify .icon{flex-shrink:0;display:inline-block;vertical-align:middle;margin:0 1.36em 0 0;width:1.64em;height:1.64em;background-size:contain;background-position:center;background-repeat:no-repeat}.bim-notify .main-icon{flex-shrink:0;display:inline-block;vertical-align:middle;width:1.375em;height:1.375em;background-size:contain;background-position:center;background-repeat:no-repeat}.bim-notify .main-icon.notify{transform-origin:center top}@keyframes ringbell{0%{transform:rotate(0)}5%{transform:rotate(35deg)}15%{transform:rotate(-30deg)}25%{transform:rotate(25deg)}35%{transform:rotate(-20deg)}45%{transform:rotate(15deg)}55%{transform:rotate(-10deg)}65%{transform:rotate(5deg)}70%{transform:rotate(0)}to{transform:rotate(0)}}.bim-notify .bimcomp-overlay{position:fixed;width:100vw;height:100vh;left:0;top:0;display:none}.bim-notify .bimcomp-overlay.open{display:block;z-index:1}.bim-notify .icon-notify{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 1C8.44772 1 8 1.44772 8 2V3H10V2C10 1.44772 9.55228 1 9 1Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M2 14C2 13.4477 2.44772 13 3 13C3.55228 13 4 12.5523 4 12V8C4 5.79086 5.79086 4 8 4H10C12.2091 4 14 5.79086 14 8V12C14 12.5523 14.4477 13 15 13C15.5523 13 16 13.4477 16 14C16 14.5523 15.5523 15 15 15H3C2.44772 15 2 14.5523 2 14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 16C7 17.1046 7.89543 18 9 18C10.1046 18 11 17.1046 11 16H7Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-alert{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 1C8.44772 1 8 1.44772 8 2V3H10V2C10 1.44772 9.55228 1 9 1Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M2 14C2 13.4477 2.44772 13 3 13C3.55228 13 4 12.5523 4 12V8C4 5.79086 5.79086 4 8 4H10C12.2091 4 14 5.79086 14 8V12C14 12.5523 14.4477 13 15 13C15.5523 13 16 13.4477 16 14C16 14.5523 15.5523 15 15 15H3C2.44772 15 2 14.5523 2 14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 16C7 17.1046 7.89543 18 9 18C10.1046 18 11 17.1046 11 16H7Z\" fill=\"%23444444\"/>%0D%0A<circle cx=\"15.5\" cy=\"2.5\" r=\"2.5\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-tick-up{background-image:url('data:image/svg+xml,<svg width=\"32\" height=\"16\" viewBox=\"0 0 32 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16 -6.99383e-07L32 16L-1.97729e-05 16L16 -6.99383e-07Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-info{background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-failure{background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-close{background-image:url('data:image/svg+xml,<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M4.57764e-05 6.87023L1.12989 8.00012L4.00029 5.12959L6.87016 7.99951L8.00001 6.86963L5.13014 3.9997L8.0001 1.12962L6.87025 -0.000274658L4.00028 2.86982L1.13106 0.000548095L0.00120898 1.13044L2.87043 3.99971L4.57764e-05 6.87023Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-empty{background-image:url('data:image/svg+xml,<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M18.7779 2.22227C18.2256 2.22227 17.7779 2.66999 17.7779 3.22228V6.66672H22.2223V3.22227C22.2223 2.66999 21.7746 2.22227 21.2223 2.22227H18.7779Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M4.44455 30.8889C4.44455 29.7844 5.33998 28.8889 6.44455 28.8889L6.66678 28.8889C7.89407 28.8889 8.889 27.894 8.889 26.6667V17.8889C8.889 12.9184 12.9184 8.88894 17.889 8.88894H22.1112C27.0818 8.88894 31.1112 12.9184 31.1112 17.8889V26.6667C31.1112 27.894 32.1061 28.8889 33.3334 28.8889L33.5557 28.8889C34.6602 28.8889 35.5557 29.7844 35.5557 30.8889V31.3334C35.5557 32.438 34.6602 33.3334 33.5557 33.3334H6.44455C5.33999 33.3334 4.44455 32.438 4.44455 31.3334V30.8889Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M15.5557 35.5556C15.5557 38.0102 17.5455 40.0001 20.0001 40.0001C22.4547 40.0001 24.4446 38.0102 24.4446 35.5556H15.5557Z\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }], encapsulation: i0.ViewEncapsulation.None }); }
2388
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusNotifyComponent, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
2389
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.10", type: BimplusNotifyComponent, isStandalone: true, selector: "lib-bimplus-notify", inputs: { messagePreviewTime: "messagePreviewTime", showMessagePreview: ["showMessagePreview", "showMessagePreview", booleanAttribute], previewMessagesLimit: "previewMessagesLimit", previewMessagesOffsetY: "previewMessagesOffsetY", messages: "messages" }, outputs: { bimplusNotifyDeleteMessage: "bimplusNotifyDeleteMessage", bimplusNotifyDeleteAllMessages: "bimplusNotifyDeleteAllMessages", bimplusNotifyMessageAction: "bimplusNotifyMessageAction" }, host: { properties: { "class.new-messages": "this.newMessages", "class.bim-notify": "this.bimNotify" } }, providers: [TranslateService], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<div\r\n class=\"dropdown\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n (click)=\"_toggleOpened()\"\r\n [title]=\"'_BimplusNotifyTitle' | translate\"\r\n>\r\n <div class=\"dropdown-toggle\" >\r\n <div\r\n class=\"main-icon\"\r\n [ngClass]=\"'icon-notify' + (this._alertActive ? '-alert notify' : '')\"\r\n ></div>\r\n </div>\r\n\r\n <div\r\n class=\"bimcomp-dropdown-menu\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n >\r\n <div class=\"notify-tick\"></div>\r\n <div class=\"messages-title\">\r\n <div class=\"messages-count\">\r\n ({{this._messagesList.length}})\r\n </div>\r\n <div\r\n class=\"messages-delete-all\"\r\n (click)=\"_deleteAllMessages()\"\r\n >\r\n {{\"_Notify_Mark_All\" | translate}}\r\n </div>\r\n </div>\r\n <div class=\"messages-container\">\r\n @if (_messagesList.length) {\r\n <lib-bimplus-scrollable-container>\r\n <div\r\n *ngFor=\"let item of _messagesList\"\r\n class=\"message-item\"\r\n >\r\n <div class=\"message-item-title\">\r\n <div [ngClass]=\"'message-item-icon-' + item.type\"></div>\r\n <div\r\n class=\"message-item-title-text\"\r\n [ngClass]=\"{'capitalize':item.capitalizedTitle}\"\r\n >\r\n {{item.title}}\r\n </div>\r\n <div\r\n class=\"message-item-icon-close\"\r\n (click)=\"_closeMessage(item, false, $event)\"\r\n ></div>\r\n </div>\r\n \r\n <div class=\"message-item-body-text\">{{item.text}}</div>\r\n @if (item.linkText) {\r\n <div\r\n *ngFor=\"let link of (item.linkText.constructor === Array ? item.linkText : [item.linkText]); let i = index\"\r\n class=\"message-item-link\"\r\n [title]=\"_getItemLinkTitle(item, i)\"\r\n (click)=\"_messageAction(item, i)\"\r\n >{{link}}</div>\r\n } \r\n </div>\r\n </lib-bimplus-scrollable-container>\r\n } @else {\r\n <div class=\"message-item-empty\">\r\n <div class=\"message-item-empty-icon\"></div>\r\n <div class=\"message-item-empty-text\">{{\"_Notify_No_Messages\" | translate}}</div>\r\n </div>\r\n }\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div\r\n class=\"bimcomp-overlay\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n (click)=\"_toggleOpened()\"\r\n></div>\r\n\r\n<div\r\n class=\"bimcomp-messages-preview\"\r\n [ngClass]=\"(showMessagePreview && !_menuOpened && _previewMessagesList.length > 0) ? 'visible' : ''\"\r\n [style.top]=\"previewMessagesOffsetY\"\r\n>\r\n <div class=\"messages-container-preview\">\r\n <div\r\n *ngFor=\"let item of _previewMessagesList\"\r\n class=\"message-item\"\r\n >\r\n <div class=\"message-item-title\">\r\n <div [ngClass]=\"'message-item-icon-' + item.type\"></div>\r\n <div\r\n class=\"message-item-title-text\"\r\n [ngClass]=\"{'capitalize':item.capitalizedTitle}\"\r\n >\r\n {{item.title}}\r\n </div>\r\n <div\r\n class=\"message-item-icon-close\"\r\n (click)=\"_closeMessage(item, true, $event)\"\r\n ></div>\r\n </div>\r\n\r\n <div class=\"message-item-body-text\">\r\n {{item.text}}\r\n </div>\r\n @if (item.linkText) {\r\n <div\r\n *ngFor=\"let link of (item.linkText.constructor === Array ? item.linkText : [item.linkText]); let i = index\"\r\n class=\"message-item-link\"\r\n [title]=\"_getItemLinkTitle(item, i)\"\r\n (click)=\"_messageAction(item, i)\"\r\n >{{link}}</div>\r\n }\r\n </div>\r\n </div>\r\n</div>", styles: [".bim-notify{position:relative}.bim-notify .dropdown{position:relative;width:3.25em;display:flex;flex-direction:column;justify-content:space-around;align-items:center}.bim-notify .dropdown-toggle{position:relative;margin-left:.44em;margin-right:.44em;background-size:1.4em 1.4em;cursor:pointer}.bim-notify .bimcomp-dropdown-menu,.bim-notify .bimcomp-messages-preview{font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif;position:absolute;top:100%;right:0;z-index:2;display:none;width:19em;margin:0;padding:.5em .65em .57em 0}.bim-notify .bimcomp-dropdown-menu .messages-title,.bim-notify .bimcomp-messages-preview .messages-title{height:2em;display:flex;flex-direction:row;justify-content:space-between;align-items:center;color:#fff;background-color:#444}.bim-notify .bimcomp-dropdown-menu .messages-title .messages-count,.bim-notify .bimcomp-messages-preview .messages-title .messages-count,.bim-notify .bimcomp-dropdown-menu .messages-title .messages-delete-all,.bim-notify .bimcomp-messages-preview .messages-title .messages-delete-all{cursor:pointer;font-size:.8125em;font-weight:400;margin:0 .8125em}.bim-notify .bimcomp-dropdown-menu .messages-title .messages-delete-all,.bim-notify .bimcomp-messages-preview .messages-title .messages-delete-all{text-decoration:underline}.bim-notify .bimcomp-dropdown-menu div,.bim-notify .bimcomp-messages-preview div{font-size:1em}.bim-notify .bimcomp-dropdown-menu .noselect,.bim-notify .bimcomp-messages-preview .noselect{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bim-notify .bimcomp-dropdown-menu li,.bim-notify .bimcomp-messages-preview li{display:flex;flex-direction:row;align-items:center;box-sizing:content-box;padding:.21em 2.1em}.bim-notify .bimcomp-dropdown-menu li span,.bim-notify .bimcomp-messages-preview li span{display:inline-block;flex:1 0 auto;margin-right:1.43em;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bim-notify .bimcomp-dropdown-menu li:hover,.bim-notify .bimcomp-messages-preview li:hover{background-color:#f5f5f5}.bim-notify .bimcomp-dropdown-menu ul,.bim-notify .bimcomp-messages-preview ul,.bim-notify .bimcomp-dropdown-menu li,.bim-notify .bimcomp-messages-preview li{list-style:none}.bim-notify .bimcomp-dropdown-menu .notify-tick,.bim-notify .bimcomp-messages-preview .notify-tick{width:2em;height:1em;align-self:flex-end;background-image:url('data:image/svg+xml,<svg width=\"32\" height=\"16\" viewBox=\"0 0 32 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16 -6.99383e-07L32 16L-1.97729e-05 16L16 -6.99383e-07Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');background-size:cover}.bim-notify .bimcomp-dropdown-menu.open,.bim-notify .bimcomp-messages-preview.visible{display:flex;flex-direction:column}.bim-notify .messages-container,.bim-notify .messages-container-preview{list-style:none;background-color:#fff;border:thin solid rgba(0,0,0,.15);-webkit-box-shadow:0 .43em .86em rgba(0,0,0,.175);box-shadow:0 .43em .86em #0000002d;text-decoration-color:#333;text-decoration-line:none;text-decoration-style:solid;line-height:2.71em;font-weight:400;max-height:16em}.bim-notify .messages-container .message-item-empty,.bim-notify .messages-container-preview .message-item-empty{max-width:19em;max-height:6em;padding:.6em .8125em 0;box-sizing:border-box;display:flex;flex-direction:column;align-items:center}.bim-notify .messages-container .message-item-empty-icon,.bim-notify .messages-container-preview .message-item-empty-icon{width:2.5em;height:2.5em;background-image:url('data:image/svg+xml,<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M18.7779 2.22227C18.2256 2.22227 17.7779 2.66999 17.7779 3.22228V6.66672H22.2223V3.22227C22.2223 2.66999 21.7746 2.22227 21.2223 2.22227H18.7779Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M4.44455 30.8889C4.44455 29.7844 5.33998 28.8889 6.44455 28.8889L6.66678 28.8889C7.89407 28.8889 8.889 27.894 8.889 26.6667V17.8889C8.889 12.9184 12.9184 8.88894 17.889 8.88894H22.1112C27.0818 8.88894 31.1112 12.9184 31.1112 17.8889V26.6667C31.1112 27.894 32.1061 28.8889 33.3334 28.8889L33.5557 28.8889C34.6602 28.8889 35.5557 29.7844 35.5557 30.8889V31.3334C35.5557 32.438 34.6602 33.3334 33.5557 33.3334H6.44455C5.33999 33.3334 4.44455 32.438 4.44455 31.3334V30.8889Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M15.5557 35.5556C15.5557 38.0102 17.5455 40.0001 20.0001 40.0001C22.4547 40.0001 24.4446 38.0102 24.4446 35.5556H15.5557Z\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A');background-size:cover}.bim-notify .messages-container .message-item-empty-text,.bim-notify .messages-container-preview .message-item-empty-text{font-size:.8125em;line-height:2.2em}.bim-notify .messages-container .message-item,.bim-notify .messages-container-preview .message-item{max-width:19em;border-bottom:1px solid #D3D3D3;padding:.6em .8125em;box-sizing:border-box}.bim-notify .messages-container .message-item-title,.bim-notify .messages-container-preview .message-item-title{display:flex;align-items:center;line-height:1.5em}.bim-notify .messages-container .message-item-title-text,.bim-notify .messages-container-preview .message-item-title-text{font-size:.8125em;font-weight:700;flex:1 1 auto;margin-left:.8125em}.bim-notify .messages-container .message-item-icon-info,.bim-notify .messages-container-preview .message-item-icon-info{width:1.125em;height:1.125em;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A');flex:0 0 auto}.bim-notify .messages-container .message-item-icon-failure,.bim-notify .messages-container-preview .message-item-icon-failure{width:1.125em;height:1.125em;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A');flex:0 0 auto}.bim-notify .messages-container .message-item-icon-close,.bim-notify .messages-container-preview .message-item-icon-close{cursor:pointer;width:1.125em;height:1.125em;background-repeat:no-repeat;background-size:auto;background-position:center;background-image:url('data:image/svg+xml,<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M4.57764e-05 6.87023L1.12989 8.00012L4.00029 5.12959L6.87016 7.99951L8.00001 6.86963L5.13014 3.9997L8.0001 1.12962L6.87025 -0.000274658L4.00028 2.86982L1.13106 0.000548095L0.00120898 1.13044L2.87043 3.99971L4.57764e-05 6.87023Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');flex:0 0 auto}.bim-notify .messages-container .message-item-body-text,.bim-notify .messages-container-preview .message-item-body-text{font-size:.8125em;line-height:1.3em;margin-top:.5em;word-wrap:break-word;white-space:normal}.bim-notify .messages-container .message-item-link,.bim-notify .messages-container-preview .message-item-link{color:#fe5000;text-decoration:underline;font-size:.8125em;line-height:1.3em;margin-top:.5em;word-wrap:break-word;white-space:normal;cursor:pointer}.bim-notify .messages-container .message-item:last-child,.bim-notify .messages-container-preview .message-item:last-child{border-bottom:none}.bim-notify .messages-container{position:relative;display:flex;flex:1 1 auto}.bim-notify .messages-container lib-bimplus-scrollable-container{max-height:100%;min-width:100%}.bim-notify .messages-container-preview{max-height:none;background-color:transparent;border:none;-webkit-box-shadow:none;box-shadow:none}.bim-notify .messages-container-preview .message-item{background-color:#fff;border:thin solid rgba(0,0,0,.15);-webkit-box-shadow:0 .3em .3em rgba(0,0,0,.175);box-shadow:0 .3em .3em #0000002d;margin-bottom:.5em}.bim-notify .icon{flex-shrink:0;display:inline-block;vertical-align:middle;margin:0 1.36em 0 0;width:1.64em;height:1.64em;background-size:contain;background-position:center;background-repeat:no-repeat}.bim-notify .main-icon{flex-shrink:0;display:inline-block;vertical-align:middle;width:1.375em;height:1.375em;background-size:contain;background-position:center;background-repeat:no-repeat}.bim-notify .main-icon.notify{transform-origin:center top}@keyframes ringbell{0%{transform:rotate(0)}5%{transform:rotate(35deg)}15%{transform:rotate(-30deg)}25%{transform:rotate(25deg)}35%{transform:rotate(-20deg)}45%{transform:rotate(15deg)}55%{transform:rotate(-10deg)}65%{transform:rotate(5deg)}70%{transform:rotate(0)}to{transform:rotate(0)}}.bim-notify .bimcomp-overlay{position:fixed;width:100vw;height:100vh;left:0;top:0;display:none}.bim-notify .bimcomp-overlay.open{display:block;z-index:1}.bim-notify .icon-notify{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 1C8.44772 1 8 1.44772 8 2V3H10V2C10 1.44772 9.55228 1 9 1Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M2 14C2 13.4477 2.44772 13 3 13C3.55228 13 4 12.5523 4 12V8C4 5.79086 5.79086 4 8 4H10C12.2091 4 14 5.79086 14 8V12C14 12.5523 14.4477 13 15 13C15.5523 13 16 13.4477 16 14C16 14.5523 15.5523 15 15 15H3C2.44772 15 2 14.5523 2 14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 16C7 17.1046 7.89543 18 9 18C10.1046 18 11 17.1046 11 16H7Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-alert{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 1C8.44772 1 8 1.44772 8 2V3H10V2C10 1.44772 9.55228 1 9 1Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M2 14C2 13.4477 2.44772 13 3 13C3.55228 13 4 12.5523 4 12V8C4 5.79086 5.79086 4 8 4H10C12.2091 4 14 5.79086 14 8V12C14 12.5523 14.4477 13 15 13C15.5523 13 16 13.4477 16 14C16 14.5523 15.5523 15 15 15H3C2.44772 15 2 14.5523 2 14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 16C7 17.1046 7.89543 18 9 18C10.1046 18 11 17.1046 11 16H7Z\" fill=\"%23444444\"/>%0D%0A<circle cx=\"15.5\" cy=\"2.5\" r=\"2.5\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-tick-up{background-image:url('data:image/svg+xml,<svg width=\"32\" height=\"16\" viewBox=\"0 0 32 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16 -6.99383e-07L32 16L-1.97729e-05 16L16 -6.99383e-07Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-info{background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-failure{background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-close{background-image:url('data:image/svg+xml,<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M4.57764e-05 6.87023L1.12989 8.00012L4.00029 5.12959L6.87016 7.99951L8.00001 6.86963L5.13014 3.9997L8.0001 1.12962L6.87025 -0.000274658L4.00028 2.86982L1.13106 0.000548095L0.00120898 1.13044L2.87043 3.99971L4.57764e-05 6.87023Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-empty{background-image:url('data:image/svg+xml,<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M18.7779 2.22227C18.2256 2.22227 17.7779 2.66999 17.7779 3.22228V6.66672H22.2223V3.22227C22.2223 2.66999 21.7746 2.22227 21.2223 2.22227H18.7779Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M4.44455 30.8889C4.44455 29.7844 5.33998 28.8889 6.44455 28.8889L6.66678 28.8889C7.89407 28.8889 8.889 27.894 8.889 26.6667V17.8889C8.889 12.9184 12.9184 8.88894 17.889 8.88894H22.1112C27.0818 8.88894 31.1112 12.9184 31.1112 17.8889V26.6667C31.1112 27.894 32.1061 28.8889 33.3334 28.8889L33.5557 28.8889C34.6602 28.8889 35.5557 29.7844 35.5557 30.8889V31.3334C35.5557 32.438 34.6602 33.3334 33.5557 33.3334H6.44455C5.33999 33.3334 4.44455 32.438 4.44455 31.3334V30.8889Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M15.5557 35.5556C15.5557 38.0102 17.5455 40.0001 20.0001 40.0001C22.4547 40.0001 24.4446 38.0102 24.4446 35.5556H15.5557Z\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }, { kind: "component", type: BimplusScrollableContainerComponent, selector: "lib-bimplus-scrollable-container" }], encapsulation: i0.ViewEncapsulation.None }); }
2093
2390
  }
2094
2391
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusNotifyComponent, decorators: [{
2095
2392
  type: Component,
2096
- args: [{ selector: 'lib-bimplus-notify', standalone: true, imports: [CommonModule, TranslateModule], providers: [TranslateService], encapsulation: ViewEncapsulation.None, template: "<div\r\n class=\"dropdown\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n (click)=\"_toggleOpened()\"\r\n [title]=\"'_BimplusNotifyTitle' | translate\"\r\n>\r\n <div class=\"dropdown-toggle\" >\r\n <div\r\n class=\"main-icon\"\r\n [ngClass]=\"'icon-notify' + (this._alertActive ? '-alert notify' : '')\"\r\n ></div>\r\n </div>\r\n\r\n <div\r\n class=\"bimcomp-dropdown-menu\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n >\r\n <div class=\"notify-tick\"></div>\r\n <div class=\"messages-title\">\r\n <div class=\"messages-count\">\r\n ({{this._messagesList.length}})\r\n </div>\r\n <div\r\n class=\"messages-delete-all\"\r\n (click)=\"_deleteAllMessages()\"\r\n >\r\n {{\"_Notify_Mark_All\" | translate}}\r\n </div>\r\n </div>\r\n <div class=\"messages-container\">\r\n @if (_messagesList.length) {\r\n <div\r\n *ngFor=\"let item of _messagesList\"\r\n class=\"message-item\"\r\n >\r\n <div class=\"message-item-title\">\r\n <div [ngClass]=\"'message-item-icon-' + item.type\"></div>\r\n <div\r\n class=\"message-item-title-text\"\r\n [ngClass]=\"{'capitalize':item.capitalizedTitle}\"\r\n >\r\n {{item.title}}\r\n </div>\r\n <div\r\n class=\"message-item-icon-close\"\r\n (click)=\"_closeMessage(item, false, $event)\"\r\n ></div>\r\n </div>\r\n\r\n <div class=\"message-item-body-text\">{{item.text}}</div>\r\n @if (item.linkText) {\r\n <div\r\n *ngFor=\"let link of (item.linkText.constructor === Array ? item.linkText : [item.linkText]); let i = index\"\r\n class=\"message-item-link\"\r\n [title]=\"_getItemLinkTitle(item, i)\"\r\n (click)=\"_messageAction(item, i)\"\r\n >{{link}}</div>\r\n } \r\n </div>\r\n } @else {\r\n <div class=\"message-item-empty\">\r\n <div class=\"message-item-empty-icon\"></div>\r\n <div class=\"message-item-empty-text\">{{\"_Notify_No_Messages\" | translate}}</div>\r\n </div>\r\n }\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div\r\n class=\"bimcomp-overlay\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n (click)=\"_toggleOpened()\"\r\n></div>\r\n\r\n<div\r\n class=\"bimcomp-messages-preview\"\r\n [ngClass]=\"(showMessagePreview && !_menuOpened && _previewMessagesList.length > 0) ? 'visible' : ''\"\r\n [style.top]=\"previewMessagesOffsetY\"\r\n>\r\n <div class=\"messages-container-preview\">\r\n <div\r\n *ngFor=\"let item of _previewMessagesList\"\r\n class=\"message-item\"\r\n >\r\n <div class=\"message-item-title\">\r\n <div [ngClass]=\"'message-item-icon-' + item.type\"></div>\r\n <div\r\n class=\"message-item-title-text\"\r\n [ngClass]=\"{'capitalize':item.capitalizedTitle}\"\r\n >\r\n {{item.title}}\r\n </div>\r\n <div\r\n class=\"message-item-icon-close\"\r\n (click)=\"_closeMessage(item, true, $event)\"\r\n ></div>\r\n </div>\r\n\r\n <div class=\"message-item-body-text\">\r\n {{item.text}}\r\n </div>\r\n @if (item.linkText) {\r\n <div\r\n *ngFor=\"let link of (item.linkText.constructor === Array ? item.linkText : [item.linkText]); let i = index\"\r\n class=\"message-item-link\"\r\n [title]=\"_getItemLinkTitle(item, i)\"\r\n (click)=\"_messageAction(item, i)\"\r\n >{{link}}</div>\r\n }\r\n </div>\r\n </div>\r\n</div>", styles: ["[data-simplebar]{position:relative;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.simplebar-wrapper{overflow:hidden;width:inherit;height:inherit;max-width:inherit;max-height:inherit}.simplebar-mask{direction:inherit;position:absolute;overflow:hidden;padding:0;margin:0;inset:0;width:auto!important;height:auto!important;z-index:0}.simplebar-offset{direction:inherit!important;box-sizing:inherit!important;resize:none!important;position:absolute;inset:0;padding:0;margin:0;-webkit-overflow-scrolling:touch}.simplebar-content-wrapper{direction:inherit;box-sizing:border-box!important;position:relative;display:block;height:100%;width:auto;max-width:100%;max-height:100%;overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.simplebar-content-wrapper::-webkit-scrollbar,.simplebar-hide-scrollbar::-webkit-scrollbar{display:none;width:0;height:0}.simplebar-content:after,.simplebar-content:before{content:\" \";display:table}.simplebar-placeholder{max-height:100%;max-width:100%;width:100%;pointer-events:none}.simplebar-height-auto-observer-wrapper{box-sizing:inherit!important;height:100%;width:100%;max-width:1px;position:relative;float:left;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0}.simplebar-height-auto-observer{box-sizing:inherit;display:block;opacity:0;position:absolute;top:0;left:0;height:1000%;width:1000%;min-height:1px;min-width:1px;overflow:hidden;pointer-events:none;z-index:-1}.simplebar-track{z-index:1;position:absolute;right:0;bottom:0;pointer-events:none;overflow:hidden}[data-simplebar].simplebar-dragging,[data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}[data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}.simplebar-scrollbar{position:absolute;left:0;right:0;min-height:10px}.simplebar-scrollbar:before{position:absolute;content:\"\";background:#000;border-radius:7px;left:2px;right:2px;opacity:0;transition:opacity .2s .5s linear}.simplebar-scrollbar.simplebar-visible:before{opacity:.5;transition-delay:0s;transition-duration:0s}.simplebar-track.simplebar-vertical{top:0;width:11px}.simplebar-scrollbar:before{inset:2px}.simplebar-track.simplebar-horizontal{left:0;height:11px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar{inset:0 auto 0 0;min-height:0;min-width:10px;width:auto}[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{right:auto;left:0}.simplebar-dummy-scrollbar-size{direction:rtl;position:fixed;opacity:0;visibility:hidden;height:500px;width:500px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:scrollbar!important}.simplebar-dummy-scrollbar-size>div{width:200%;height:200%;margin:10px 0}.simplebar-hide-scrollbar{position:fixed;left:0;visibility:hidden;overflow-y:scroll;scrollbar-width:none;-ms-overflow-style:none}.bim-notify{position:relative}.bim-notify .dropdown{position:relative;width:3.25em;display:flex;flex-direction:column;justify-content:space-around;align-items:center}.bim-notify .dropdown-toggle{position:relative;margin-left:.44em;margin-right:.44em;background-size:1.4em 1.4em;cursor:pointer}.bim-notify .bimcomp-dropdown-menu,.bim-notify .bimcomp-messages-preview{font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif;position:absolute;top:100%;right:0;z-index:2;display:none;width:19em;margin:0;padding:.5em .65em .57em 0}.bim-notify .bimcomp-dropdown-menu .messages-title,.bim-notify .bimcomp-messages-preview .messages-title{height:2em;display:flex;flex-direction:row;justify-content:space-between;align-items:center;color:#fff;background-color:#444}.bim-notify .bimcomp-dropdown-menu .messages-title .messages-count,.bim-notify .bimcomp-messages-preview .messages-title .messages-count,.bim-notify .bimcomp-dropdown-menu .messages-title .messages-delete-all,.bim-notify .bimcomp-messages-preview .messages-title .messages-delete-all{cursor:pointer;font-size:.8125em;font-weight:400;margin:0 .8125em}.bim-notify .bimcomp-dropdown-menu .messages-title .messages-delete-all,.bim-notify .bimcomp-messages-preview .messages-title .messages-delete-all{text-decoration:underline}.bim-notify .bimcomp-dropdown-menu div,.bim-notify .bimcomp-messages-preview div{font-size:1em}.bim-notify .bimcomp-dropdown-menu .noselect,.bim-notify .bimcomp-messages-preview .noselect{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bim-notify .bimcomp-dropdown-menu li,.bim-notify .bimcomp-messages-preview li{display:flex;flex-direction:row;align-items:center;box-sizing:content-box;padding:.21em 2.1em}.bim-notify .bimcomp-dropdown-menu li span,.bim-notify .bimcomp-messages-preview li span{display:inline-block;flex:1 0 auto;margin-right:1.43em;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bim-notify .bimcomp-dropdown-menu li:hover,.bim-notify .bimcomp-messages-preview li:hover{background-color:#f5f5f5}.bim-notify .bimcomp-dropdown-menu ul,.bim-notify .bimcomp-messages-preview ul,.bim-notify .bimcomp-dropdown-menu li,.bim-notify .bimcomp-messages-preview li{list-style:none}.bim-notify .bimcomp-dropdown-menu .notify-tick,.bim-notify .bimcomp-messages-preview .notify-tick{width:2em;height:1em;align-self:flex-end;background-image:url('data:image/svg+xml,<svg width=\"32\" height=\"16\" viewBox=\"0 0 32 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16 -6.99383e-07L32 16L-1.97729e-05 16L16 -6.99383e-07Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');background-size:cover}.bim-notify .bimcomp-dropdown-menu.open,.bim-notify .bimcomp-messages-preview.visible{display:flex;flex-direction:column}.bim-notify .messages-container,.bim-notify .messages-container-preview{list-style:none;background-color:#fff;border:thin solid rgba(0,0,0,.15);-webkit-box-shadow:0 .43em .86em rgba(0,0,0,.175);box-shadow:0 .43em .86em #0000002d;text-decoration-color:#333;text-decoration-line:none;text-decoration-style:solid;line-height:2.71em;font-weight:400;max-height:16em;overflow:hidden;overflow-y:visible;scrollbar-width:none}.bim-notify .messages-container::-webkit-scrollbar,.bim-notify .messages-container-preview::-webkit-scrollbar{display:none}.bim-notify .messages-container .message-item-empty,.bim-notify .messages-container-preview .message-item-empty{max-width:19em;max-height:6em;padding:.6em .8125em 0;box-sizing:border-box;display:flex;flex-direction:column;align-items:center}.bim-notify .messages-container .message-item-empty-icon,.bim-notify .messages-container-preview .message-item-empty-icon{width:2.5em;height:2.5em;background-image:url('data:image/svg+xml,<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M18.7779 2.22227C18.2256 2.22227 17.7779 2.66999 17.7779 3.22228V6.66672H22.2223V3.22227C22.2223 2.66999 21.7746 2.22227 21.2223 2.22227H18.7779Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M4.44455 30.8889C4.44455 29.7844 5.33998 28.8889 6.44455 28.8889L6.66678 28.8889C7.89407 28.8889 8.889 27.894 8.889 26.6667V17.8889C8.889 12.9184 12.9184 8.88894 17.889 8.88894H22.1112C27.0818 8.88894 31.1112 12.9184 31.1112 17.8889V26.6667C31.1112 27.894 32.1061 28.8889 33.3334 28.8889L33.5557 28.8889C34.6602 28.8889 35.5557 29.7844 35.5557 30.8889V31.3334C35.5557 32.438 34.6602 33.3334 33.5557 33.3334H6.44455C5.33999 33.3334 4.44455 32.438 4.44455 31.3334V30.8889Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M15.5557 35.5556C15.5557 38.0102 17.5455 40.0001 20.0001 40.0001C22.4547 40.0001 24.4446 38.0102 24.4446 35.5556H15.5557Z\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A');background-size:cover}.bim-notify .messages-container .message-item-empty-text,.bim-notify .messages-container-preview .message-item-empty-text{font-size:.8125em;line-height:2.2em}.bim-notify .messages-container .message-item,.bim-notify .messages-container-preview .message-item{max-width:19em;border-bottom:1px solid #D3D3D3;padding:.6em .8125em;box-sizing:border-box}.bim-notify .messages-container .message-item-title,.bim-notify .messages-container-preview .message-item-title{display:flex;align-items:center;line-height:1.5em}.bim-notify .messages-container .message-item-title-text,.bim-notify .messages-container-preview .message-item-title-text{font-size:.8125em;font-weight:700;flex:1 1 auto;margin-left:.8125em}.bim-notify .messages-container .message-item-icon-info,.bim-notify .messages-container-preview .message-item-icon-info{width:1.125em;height:1.125em;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A');flex:0 0 auto}.bim-notify .messages-container .message-item-icon-failure,.bim-notify .messages-container-preview .message-item-icon-failure{width:1.125em;height:1.125em;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A');flex:0 0 auto}.bim-notify .messages-container .message-item-icon-close,.bim-notify .messages-container-preview .message-item-icon-close{cursor:pointer;width:1.125em;height:1.125em;background-repeat:no-repeat;background-size:auto;background-position:center;background-image:url('data:image/svg+xml,<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M4.57764e-05 6.87023L1.12989 8.00012L4.00029 5.12959L6.87016 7.99951L8.00001 6.86963L5.13014 3.9997L8.0001 1.12962L6.87025 -0.000274658L4.00028 2.86982L1.13106 0.000548095L0.00120898 1.13044L2.87043 3.99971L4.57764e-05 6.87023Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');flex:0 0 auto}.bim-notify .messages-container .message-item-body-text,.bim-notify .messages-container-preview .message-item-body-text{font-size:.8125em;line-height:1.3em;margin-top:.5em;word-wrap:break-word;white-space:normal}.bim-notify .messages-container .message-item-link,.bim-notify .messages-container-preview .message-item-link{color:#fe5000;text-decoration:underline;font-size:.8125em;line-height:1.3em;margin-top:.5em;word-wrap:break-word;white-space:normal;cursor:pointer}.bim-notify .messages-container .message-item:last-child,.bim-notify .messages-container-preview .message-item:last-child{border-bottom:none}.bim-notify .messages-container-preview{max-height:none;background-color:transparent;border:none;-webkit-box-shadow:none;box-shadow:none}.bim-notify .messages-container-preview .message-item{background-color:#fff;border:thin solid rgba(0,0,0,.15);-webkit-box-shadow:0 .3em .3em rgba(0,0,0,.175);box-shadow:0 .3em .3em #0000002d;margin-bottom:.5em}.bim-notify .icon{flex-shrink:0;display:inline-block;vertical-align:middle;margin:0 1.36em 0 0;width:1.64em;height:1.64em;background-size:contain;background-position:center;background-repeat:no-repeat}.bim-notify .main-icon{flex-shrink:0;display:inline-block;vertical-align:middle;width:1.375em;height:1.375em;background-size:contain;background-position:center;background-repeat:no-repeat}.bim-notify .main-icon.notify{transform-origin:center top}@keyframes ringbell{0%{transform:rotate(0)}5%{transform:rotate(35deg)}15%{transform:rotate(-30deg)}25%{transform:rotate(25deg)}35%{transform:rotate(-20deg)}45%{transform:rotate(15deg)}55%{transform:rotate(-10deg)}65%{transform:rotate(5deg)}70%{transform:rotate(0)}to{transform:rotate(0)}}.bim-notify .bimcomp-overlay{position:fixed;width:100vw;height:100vh;left:0;top:0;display:none}.bim-notify .bimcomp-overlay.open{display:block;z-index:1}.bim-notify .icon-notify{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 1C8.44772 1 8 1.44772 8 2V3H10V2C10 1.44772 9.55228 1 9 1Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M2 14C2 13.4477 2.44772 13 3 13C3.55228 13 4 12.5523 4 12V8C4 5.79086 5.79086 4 8 4H10C12.2091 4 14 5.79086 14 8V12C14 12.5523 14.4477 13 15 13C15.5523 13 16 13.4477 16 14C16 14.5523 15.5523 15 15 15H3C2.44772 15 2 14.5523 2 14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 16C7 17.1046 7.89543 18 9 18C10.1046 18 11 17.1046 11 16H7Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-alert{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 1C8.44772 1 8 1.44772 8 2V3H10V2C10 1.44772 9.55228 1 9 1Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M2 14C2 13.4477 2.44772 13 3 13C3.55228 13 4 12.5523 4 12V8C4 5.79086 5.79086 4 8 4H10C12.2091 4 14 5.79086 14 8V12C14 12.5523 14.4477 13 15 13C15.5523 13 16 13.4477 16 14C16 14.5523 15.5523 15 15 15H3C2.44772 15 2 14.5523 2 14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 16C7 17.1046 7.89543 18 9 18C10.1046 18 11 17.1046 11 16H7Z\" fill=\"%23444444\"/>%0D%0A<circle cx=\"15.5\" cy=\"2.5\" r=\"2.5\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-tick-up{background-image:url('data:image/svg+xml,<svg width=\"32\" height=\"16\" viewBox=\"0 0 32 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16 -6.99383e-07L32 16L-1.97729e-05 16L16 -6.99383e-07Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-info{background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-failure{background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-close{background-image:url('data:image/svg+xml,<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M4.57764e-05 6.87023L1.12989 8.00012L4.00029 5.12959L6.87016 7.99951L8.00001 6.86963L5.13014 3.9997L8.0001 1.12962L6.87025 -0.000274658L4.00028 2.86982L1.13106 0.000548095L0.00120898 1.13044L2.87043 3.99971L4.57764e-05 6.87023Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-empty{background-image:url('data:image/svg+xml,<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M18.7779 2.22227C18.2256 2.22227 17.7779 2.66999 17.7779 3.22228V6.66672H22.2223V3.22227C22.2223 2.66999 21.7746 2.22227 21.2223 2.22227H18.7779Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M4.44455 30.8889C4.44455 29.7844 5.33998 28.8889 6.44455 28.8889L6.66678 28.8889C7.89407 28.8889 8.889 27.894 8.889 26.6667V17.8889C8.889 12.9184 12.9184 8.88894 17.889 8.88894H22.1112C27.0818 8.88894 31.1112 12.9184 31.1112 17.8889V26.6667C31.1112 27.894 32.1061 28.8889 33.3334 28.8889L33.5557 28.8889C34.6602 28.8889 35.5557 29.7844 35.5557 30.8889V31.3334C35.5557 32.438 34.6602 33.3334 33.5557 33.3334H6.44455C5.33999 33.3334 4.44455 32.438 4.44455 31.3334V30.8889Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M15.5557 35.5556C15.5557 38.0102 17.5455 40.0001 20.0001 40.0001C22.4547 40.0001 24.4446 38.0102 24.4446 35.5556H15.5557Z\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A')}\n"] }]
2097
- }], ctorParameters: () => [{ type: i1.TranslateService }, { type: i0.ElementRef }], propDecorators: { newMessages: [{
2393
+ args: [{ selector: 'lib-bimplus-notify', standalone: true, imports: [
2394
+ CommonModule,
2395
+ TranslateModule,
2396
+ BimplusScrollableContainerComponent
2397
+ ], providers: [TranslateService], encapsulation: ViewEncapsulation.None, template: "<div\r\n class=\"dropdown\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n (click)=\"_toggleOpened()\"\r\n [title]=\"'_BimplusNotifyTitle' | translate\"\r\n>\r\n <div class=\"dropdown-toggle\" >\r\n <div\r\n class=\"main-icon\"\r\n [ngClass]=\"'icon-notify' + (this._alertActive ? '-alert notify' : '')\"\r\n ></div>\r\n </div>\r\n\r\n <div\r\n class=\"bimcomp-dropdown-menu\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n >\r\n <div class=\"notify-tick\"></div>\r\n <div class=\"messages-title\">\r\n <div class=\"messages-count\">\r\n ({{this._messagesList.length}})\r\n </div>\r\n <div\r\n class=\"messages-delete-all\"\r\n (click)=\"_deleteAllMessages()\"\r\n >\r\n {{\"_Notify_Mark_All\" | translate}}\r\n </div>\r\n </div>\r\n <div class=\"messages-container\">\r\n @if (_messagesList.length) {\r\n <lib-bimplus-scrollable-container>\r\n <div\r\n *ngFor=\"let item of _messagesList\"\r\n class=\"message-item\"\r\n >\r\n <div class=\"message-item-title\">\r\n <div [ngClass]=\"'message-item-icon-' + item.type\"></div>\r\n <div\r\n class=\"message-item-title-text\"\r\n [ngClass]=\"{'capitalize':item.capitalizedTitle}\"\r\n >\r\n {{item.title}}\r\n </div>\r\n <div\r\n class=\"message-item-icon-close\"\r\n (click)=\"_closeMessage(item, false, $event)\"\r\n ></div>\r\n </div>\r\n \r\n <div class=\"message-item-body-text\">{{item.text}}</div>\r\n @if (item.linkText) {\r\n <div\r\n *ngFor=\"let link of (item.linkText.constructor === Array ? item.linkText : [item.linkText]); let i = index\"\r\n class=\"message-item-link\"\r\n [title]=\"_getItemLinkTitle(item, i)\"\r\n (click)=\"_messageAction(item, i)\"\r\n >{{link}}</div>\r\n } \r\n </div>\r\n </lib-bimplus-scrollable-container>\r\n } @else {\r\n <div class=\"message-item-empty\">\r\n <div class=\"message-item-empty-icon\"></div>\r\n <div class=\"message-item-empty-text\">{{\"_Notify_No_Messages\" | translate}}</div>\r\n </div>\r\n }\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div\r\n class=\"bimcomp-overlay\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n (click)=\"_toggleOpened()\"\r\n></div>\r\n\r\n<div\r\n class=\"bimcomp-messages-preview\"\r\n [ngClass]=\"(showMessagePreview && !_menuOpened && _previewMessagesList.length > 0) ? 'visible' : ''\"\r\n [style.top]=\"previewMessagesOffsetY\"\r\n>\r\n <div class=\"messages-container-preview\">\r\n <div\r\n *ngFor=\"let item of _previewMessagesList\"\r\n class=\"message-item\"\r\n >\r\n <div class=\"message-item-title\">\r\n <div [ngClass]=\"'message-item-icon-' + item.type\"></div>\r\n <div\r\n class=\"message-item-title-text\"\r\n [ngClass]=\"{'capitalize':item.capitalizedTitle}\"\r\n >\r\n {{item.title}}\r\n </div>\r\n <div\r\n class=\"message-item-icon-close\"\r\n (click)=\"_closeMessage(item, true, $event)\"\r\n ></div>\r\n </div>\r\n\r\n <div class=\"message-item-body-text\">\r\n {{item.text}}\r\n </div>\r\n @if (item.linkText) {\r\n <div\r\n *ngFor=\"let link of (item.linkText.constructor === Array ? item.linkText : [item.linkText]); let i = index\"\r\n class=\"message-item-link\"\r\n [title]=\"_getItemLinkTitle(item, i)\"\r\n (click)=\"_messageAction(item, i)\"\r\n >{{link}}</div>\r\n }\r\n </div>\r\n </div>\r\n</div>", styles: [".bim-notify{position:relative}.bim-notify .dropdown{position:relative;width:3.25em;display:flex;flex-direction:column;justify-content:space-around;align-items:center}.bim-notify .dropdown-toggle{position:relative;margin-left:.44em;margin-right:.44em;background-size:1.4em 1.4em;cursor:pointer}.bim-notify .bimcomp-dropdown-menu,.bim-notify .bimcomp-messages-preview{font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif;position:absolute;top:100%;right:0;z-index:2;display:none;width:19em;margin:0;padding:.5em .65em .57em 0}.bim-notify .bimcomp-dropdown-menu .messages-title,.bim-notify .bimcomp-messages-preview .messages-title{height:2em;display:flex;flex-direction:row;justify-content:space-between;align-items:center;color:#fff;background-color:#444}.bim-notify .bimcomp-dropdown-menu .messages-title .messages-count,.bim-notify .bimcomp-messages-preview .messages-title .messages-count,.bim-notify .bimcomp-dropdown-menu .messages-title .messages-delete-all,.bim-notify .bimcomp-messages-preview .messages-title .messages-delete-all{cursor:pointer;font-size:.8125em;font-weight:400;margin:0 .8125em}.bim-notify .bimcomp-dropdown-menu .messages-title .messages-delete-all,.bim-notify .bimcomp-messages-preview .messages-title .messages-delete-all{text-decoration:underline}.bim-notify .bimcomp-dropdown-menu div,.bim-notify .bimcomp-messages-preview div{font-size:1em}.bim-notify .bimcomp-dropdown-menu .noselect,.bim-notify .bimcomp-messages-preview .noselect{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bim-notify .bimcomp-dropdown-menu li,.bim-notify .bimcomp-messages-preview li{display:flex;flex-direction:row;align-items:center;box-sizing:content-box;padding:.21em 2.1em}.bim-notify .bimcomp-dropdown-menu li span,.bim-notify .bimcomp-messages-preview li span{display:inline-block;flex:1 0 auto;margin-right:1.43em;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bim-notify .bimcomp-dropdown-menu li:hover,.bim-notify .bimcomp-messages-preview li:hover{background-color:#f5f5f5}.bim-notify .bimcomp-dropdown-menu ul,.bim-notify .bimcomp-messages-preview ul,.bim-notify .bimcomp-dropdown-menu li,.bim-notify .bimcomp-messages-preview li{list-style:none}.bim-notify .bimcomp-dropdown-menu .notify-tick,.bim-notify .bimcomp-messages-preview .notify-tick{width:2em;height:1em;align-self:flex-end;background-image:url('data:image/svg+xml,<svg width=\"32\" height=\"16\" viewBox=\"0 0 32 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16 -6.99383e-07L32 16L-1.97729e-05 16L16 -6.99383e-07Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');background-size:cover}.bim-notify .bimcomp-dropdown-menu.open,.bim-notify .bimcomp-messages-preview.visible{display:flex;flex-direction:column}.bim-notify .messages-container,.bim-notify .messages-container-preview{list-style:none;background-color:#fff;border:thin solid rgba(0,0,0,.15);-webkit-box-shadow:0 .43em .86em rgba(0,0,0,.175);box-shadow:0 .43em .86em #0000002d;text-decoration-color:#333;text-decoration-line:none;text-decoration-style:solid;line-height:2.71em;font-weight:400;max-height:16em}.bim-notify .messages-container .message-item-empty,.bim-notify .messages-container-preview .message-item-empty{max-width:19em;max-height:6em;padding:.6em .8125em 0;box-sizing:border-box;display:flex;flex-direction:column;align-items:center}.bim-notify .messages-container .message-item-empty-icon,.bim-notify .messages-container-preview .message-item-empty-icon{width:2.5em;height:2.5em;background-image:url('data:image/svg+xml,<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M18.7779 2.22227C18.2256 2.22227 17.7779 2.66999 17.7779 3.22228V6.66672H22.2223V3.22227C22.2223 2.66999 21.7746 2.22227 21.2223 2.22227H18.7779Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M4.44455 30.8889C4.44455 29.7844 5.33998 28.8889 6.44455 28.8889L6.66678 28.8889C7.89407 28.8889 8.889 27.894 8.889 26.6667V17.8889C8.889 12.9184 12.9184 8.88894 17.889 8.88894H22.1112C27.0818 8.88894 31.1112 12.9184 31.1112 17.8889V26.6667C31.1112 27.894 32.1061 28.8889 33.3334 28.8889L33.5557 28.8889C34.6602 28.8889 35.5557 29.7844 35.5557 30.8889V31.3334C35.5557 32.438 34.6602 33.3334 33.5557 33.3334H6.44455C5.33999 33.3334 4.44455 32.438 4.44455 31.3334V30.8889Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M15.5557 35.5556C15.5557 38.0102 17.5455 40.0001 20.0001 40.0001C22.4547 40.0001 24.4446 38.0102 24.4446 35.5556H15.5557Z\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A');background-size:cover}.bim-notify .messages-container .message-item-empty-text,.bim-notify .messages-container-preview .message-item-empty-text{font-size:.8125em;line-height:2.2em}.bim-notify .messages-container .message-item,.bim-notify .messages-container-preview .message-item{max-width:19em;border-bottom:1px solid #D3D3D3;padding:.6em .8125em;box-sizing:border-box}.bim-notify .messages-container .message-item-title,.bim-notify .messages-container-preview .message-item-title{display:flex;align-items:center;line-height:1.5em}.bim-notify .messages-container .message-item-title-text,.bim-notify .messages-container-preview .message-item-title-text{font-size:.8125em;font-weight:700;flex:1 1 auto;margin-left:.8125em}.bim-notify .messages-container .message-item-icon-info,.bim-notify .messages-container-preview .message-item-icon-info{width:1.125em;height:1.125em;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A');flex:0 0 auto}.bim-notify .messages-container .message-item-icon-failure,.bim-notify .messages-container-preview .message-item-icon-failure{width:1.125em;height:1.125em;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A');flex:0 0 auto}.bim-notify .messages-container .message-item-icon-close,.bim-notify .messages-container-preview .message-item-icon-close{cursor:pointer;width:1.125em;height:1.125em;background-repeat:no-repeat;background-size:auto;background-position:center;background-image:url('data:image/svg+xml,<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M4.57764e-05 6.87023L1.12989 8.00012L4.00029 5.12959L6.87016 7.99951L8.00001 6.86963L5.13014 3.9997L8.0001 1.12962L6.87025 -0.000274658L4.00028 2.86982L1.13106 0.000548095L0.00120898 1.13044L2.87043 3.99971L4.57764e-05 6.87023Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');flex:0 0 auto}.bim-notify .messages-container .message-item-body-text,.bim-notify .messages-container-preview .message-item-body-text{font-size:.8125em;line-height:1.3em;margin-top:.5em;word-wrap:break-word;white-space:normal}.bim-notify .messages-container .message-item-link,.bim-notify .messages-container-preview .message-item-link{color:#fe5000;text-decoration:underline;font-size:.8125em;line-height:1.3em;margin-top:.5em;word-wrap:break-word;white-space:normal;cursor:pointer}.bim-notify .messages-container .message-item:last-child,.bim-notify .messages-container-preview .message-item:last-child{border-bottom:none}.bim-notify .messages-container{position:relative;display:flex;flex:1 1 auto}.bim-notify .messages-container lib-bimplus-scrollable-container{max-height:100%;min-width:100%}.bim-notify .messages-container-preview{max-height:none;background-color:transparent;border:none;-webkit-box-shadow:none;box-shadow:none}.bim-notify .messages-container-preview .message-item{background-color:#fff;border:thin solid rgba(0,0,0,.15);-webkit-box-shadow:0 .3em .3em rgba(0,0,0,.175);box-shadow:0 .3em .3em #0000002d;margin-bottom:.5em}.bim-notify .icon{flex-shrink:0;display:inline-block;vertical-align:middle;margin:0 1.36em 0 0;width:1.64em;height:1.64em;background-size:contain;background-position:center;background-repeat:no-repeat}.bim-notify .main-icon{flex-shrink:0;display:inline-block;vertical-align:middle;width:1.375em;height:1.375em;background-size:contain;background-position:center;background-repeat:no-repeat}.bim-notify .main-icon.notify{transform-origin:center top}@keyframes ringbell{0%{transform:rotate(0)}5%{transform:rotate(35deg)}15%{transform:rotate(-30deg)}25%{transform:rotate(25deg)}35%{transform:rotate(-20deg)}45%{transform:rotate(15deg)}55%{transform:rotate(-10deg)}65%{transform:rotate(5deg)}70%{transform:rotate(0)}to{transform:rotate(0)}}.bim-notify .bimcomp-overlay{position:fixed;width:100vw;height:100vh;left:0;top:0;display:none}.bim-notify .bimcomp-overlay.open{display:block;z-index:1}.bim-notify .icon-notify{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 1C8.44772 1 8 1.44772 8 2V3H10V2C10 1.44772 9.55228 1 9 1Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M2 14C2 13.4477 2.44772 13 3 13C3.55228 13 4 12.5523 4 12V8C4 5.79086 5.79086 4 8 4H10C12.2091 4 14 5.79086 14 8V12C14 12.5523 14.4477 13 15 13C15.5523 13 16 13.4477 16 14C16 14.5523 15.5523 15 15 15H3C2.44772 15 2 14.5523 2 14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 16C7 17.1046 7.89543 18 9 18C10.1046 18 11 17.1046 11 16H7Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-alert{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 1C8.44772 1 8 1.44772 8 2V3H10V2C10 1.44772 9.55228 1 9 1Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M2 14C2 13.4477 2.44772 13 3 13C3.55228 13 4 12.5523 4 12V8C4 5.79086 5.79086 4 8 4H10C12.2091 4 14 5.79086 14 8V12C14 12.5523 14.4477 13 15 13C15.5523 13 16 13.4477 16 14C16 14.5523 15.5523 15 15 15H3C2.44772 15 2 14.5523 2 14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 16C7 17.1046 7.89543 18 9 18C10.1046 18 11 17.1046 11 16H7Z\" fill=\"%23444444\"/>%0D%0A<circle cx=\"15.5\" cy=\"2.5\" r=\"2.5\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-tick-up{background-image:url('data:image/svg+xml,<svg width=\"32\" height=\"16\" viewBox=\"0 0 32 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M16 -6.99383e-07L32 16L-1.97729e-05 16L16 -6.99383e-07Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-info{background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-failure{background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444;}%0D%0A%09.st1{fill:%23FFFFFF;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M15,0C6.7,0,0,6.7,0,15s6.7,15,15,15s15-6.7,15-15S23.3,0,15,0z\"/>%0D%0A<g>%0D%0A%09<rect x=\"14\" y=\"6\" class=\"st1\" width=\"3\" height=\"3\"/>%0D%0A</g>%0D%0A<g>%0D%0A%09<polygon class=\"st1\" points=\"19,23 12,23 12,21 14,21 14,13 12,13 12,11 17,11 17,21 19,21 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-close{background-image:url('data:image/svg+xml,<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M4.57764e-05 6.87023L1.12989 8.00012L4.00029 5.12959L6.87016 7.99951L8.00001 6.86963L5.13014 3.9997L8.0001 1.12962L6.87025 -0.000274658L4.00028 2.86982L1.13106 0.000548095L0.00120898 1.13044L2.87043 3.99971L4.57764e-05 6.87023Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.bim-notify .icon-notify-empty{background-image:url('data:image/svg+xml,<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M18.7779 2.22227C18.2256 2.22227 17.7779 2.66999 17.7779 3.22228V6.66672H22.2223V3.22227C22.2223 2.66999 21.7746 2.22227 21.2223 2.22227H18.7779Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M4.44455 30.8889C4.44455 29.7844 5.33998 28.8889 6.44455 28.8889L6.66678 28.8889C7.89407 28.8889 8.889 27.894 8.889 26.6667V17.8889C8.889 12.9184 12.9184 8.88894 17.889 8.88894H22.1112C27.0818 8.88894 31.1112 12.9184 31.1112 17.8889V26.6667C31.1112 27.894 32.1061 28.8889 33.3334 28.8889L33.5557 28.8889C34.6602 28.8889 35.5557 29.7844 35.5557 30.8889V31.3334C35.5557 32.438 34.6602 33.3334 33.5557 33.3334H6.44455C5.33999 33.3334 4.44455 32.438 4.44455 31.3334V30.8889Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M15.5557 35.5556C15.5557 38.0102 17.5455 40.0001 20.0001 40.0001C22.4547 40.0001 24.4446 38.0102 24.4446 35.5556H15.5557Z\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A')}\n"] }]
2398
+ }], ctorParameters: () => [{ type: i1.TranslateService }], propDecorators: { newMessages: [{
2098
2399
  type: HostBinding,
2099
2400
  args: ['class.new-messages']
2100
2401
  }], bimNotify: [{
@@ -2502,6 +2803,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
2502
2803
  args: ['class.center-sub-menu-button']
2503
2804
  }] } });
2504
2805
 
2806
+ //import { fireEvent } from '../../utils/utils';
2505
2807
  function createDefaultVisualSettings() {
2506
2808
  const settings = {
2507
2809
  subMenuStartAngle: 50,
@@ -2670,27 +2972,31 @@ function createDefaultItems() {
2670
2972
  items.map(item => { item.active = false; item.disabled = true; });
2671
2973
  return items;
2672
2974
  }
2975
+ const DEFAULT_POSITION_LEFT = 350;
2976
+ const DEFAULT_POSITION_TOP = 670;
2673
2977
  class BimplusToolHubComponent extends BimplusLocalizedWidgetComponent {
2674
- constructor(translateService, layoutManagerService, element) {
2978
+ constructor(translateService, layoutManagerService, resizeObserverService, element) {
2675
2979
  super(translateService);
2980
+ this.layoutManagerService = layoutManagerService;
2981
+ this.resizeObserverService = resizeObserverService;
2676
2982
  this.element = element;
2677
- // #region public fields
2678
- this.left = 350;
2679
- this.top = 670;
2680
2983
  this.isEmbedded = false;
2681
2984
  this.isFocused = false;
2682
2985
  this.isActive = true;
2683
2986
  this.itemClicked = new EventEmitter();
2684
2987
  this.subItemClicked = new EventEmitter();
2988
+ // Define event handler for reusing draggable also from resize parent
2989
+ this.resizedragging = new EventEmitter();
2990
+ this.componentId = 'center-menu-fp-id';
2991
+ this.subscription = null; // Initialize to null
2685
2992
  // #endregion public methods
2686
2993
  // #region private fields
2687
- this._isOpened = true;
2994
+ this._isCollapsed = false;
2688
2995
  this._itemStates = Array();
2689
2996
  this._items = Array();
2690
2997
  this._activeSubItemsView = null;
2691
2998
  this._activeSubItems = null;
2692
2999
  this._hoveredElements = Array();
2693
- this.layoutManagerService = layoutManagerService;
2694
3000
  this.items = createDefaultItems();
2695
3001
  this._visualSettings = createDefaultVisualSettings();
2696
3002
  this._units = this.calculateCurrentMenuItemUnits();
@@ -2699,6 +3005,7 @@ class BimplusToolHubComponent extends BimplusLocalizedWidgetComponent {
2699
3005
  this._annularSectorBorder = SVGGenerator.generateAnnularSectorBorder(this._visualSettings);
2700
3006
  this._deadZoneAnnularSector = SVGGenerator.generateDeadZoneAnnularSector(this._visualSettings);
2701
3007
  }
3008
+ // #region public fields
2702
3009
  get itemStates() {
2703
3010
  return this._itemStates;
2704
3011
  }
@@ -2736,11 +3043,11 @@ class BimplusToolHubComponent extends BimplusLocalizedWidgetComponent {
2736
3043
  get activeSubItems() {
2737
3044
  return this._activeSubItems;
2738
3045
  }
2739
- get isOpened() {
2740
- return this._isOpened;
3046
+ get isCollapsed() {
3047
+ return this._isCollapsed;
2741
3048
  }
2742
- set isOpened(value) {
2743
- this._isOpened = value;
3049
+ set isCollapsed(value) {
3050
+ this._isCollapsed = value;
2744
3051
  }
2745
3052
  get units() {
2746
3053
  return this._units;
@@ -2757,6 +3064,20 @@ class BimplusToolHubComponent extends BimplusLocalizedWidgetComponent {
2757
3064
  get deadZoneAnnularSector() {
2758
3065
  return this._deadZoneAnnularSector;
2759
3066
  }
3067
+ ngOnInit() {
3068
+ this.layoutManagerService.registerObject(this.element, this.componentId, DEFAULT_POSITION_LEFT, DEFAULT_POSITION_TOP, '#center-menu-fp-id', true);
3069
+ this.layoutManagerService.registeredItems$.subscribe(items => {
3070
+ const layoutManagerItem = items.find(item => item.id === this.componentId);
3071
+ this.isCollapsed = !!layoutManagerItem?.isCollapsed;
3072
+ });
3073
+ }
3074
+ ngAfterViewInit() {
3075
+ // if the component wants to be registered in layout manager system
3076
+ // Subscribe to the observable
3077
+ this.subscription = this.resizeObserverService.parentAppRect$.subscribe(value => {
3078
+ this.handleParentAppRectSizeChange(value);
3079
+ });
3080
+ }
2760
3081
  // #endregion public fields
2761
3082
  // #region public methods
2762
3083
  getSVGViewBox() {
@@ -2772,10 +3093,10 @@ class BimplusToolHubComponent extends BimplusLocalizedWidgetComponent {
2772
3093
  return SVGGenerator.getSVGCenterSubMenuItemPath(this._subMenuUnits);
2773
3094
  }
2774
3095
  toggleMenu() {
2775
- this.isOpened = !this.isOpened;
2776
- const { deltaX, deltaY } = this.layoutManagerService.checkPosition(this.element, this.isOpened ? '.center-menu-fp' : '#center-menu-controller', this.left, this.top, 0, 0, true);
2777
- this.left += deltaX;
2778
- this.top += deltaY;
3096
+ this.isCollapsed = !this.isCollapsed;
3097
+ setTimeout(() => {
3098
+ this.layoutManagerService.checkPosition('center-menu-fp-id', this.getSelector(), undefined, 0, 0, true);
3099
+ });
2779
3100
  }
2780
3101
  findToolHubItemById(id) {
2781
3102
  return this._items.find(x => x.buttonId === id);
@@ -2845,12 +3166,16 @@ class BimplusToolHubComponent extends BimplusLocalizedWidgetComponent {
2845
3166
  }, 1000);
2846
3167
  }
2847
3168
  }
3169
+ getSelector() {
3170
+ return this.isCollapsed ? '#center-menu-controller' : '.center-menu-fp';
3171
+ }
2848
3172
  dragElement(event) {
2849
3173
  const deltaX1 = event[0];
2850
3174
  const deltaY1 = event[1];
2851
- const { deltaX, deltaY } = this.layoutManagerService.checkPosition(this.element, this.isOpened ? '.center-menu-fp' : '#center-menu-controller', this.left, this.top, deltaX1, deltaY1);
2852
- this.left += deltaX;
2853
- this.top += deltaY;
3175
+ this.layoutManagerService.checkPosition('center-menu-fp-id', this.getSelector(), undefined, deltaX1, deltaY1);
3176
+ }
3177
+ onDragEnd() {
3178
+ this.layoutManagerService.handleDragEnd('center-menu-fp-id');
2854
3179
  }
2855
3180
  // #endregion private fields
2856
3181
  // #region private methods
@@ -2860,8 +3185,11 @@ class BimplusToolHubComponent extends BimplusLocalizedWidgetComponent {
2860
3185
  calculateCurrentSubMenuItemUnits() {
2861
3186
  return SVGGenerator.drawMenuItemSvg(this._visualSettings.svgRadius, this._visualSettings.svgRadiusInner, 20, this.isEmbedded);
2862
3187
  }
2863
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusToolHubComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
2864
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.10", type: BimplusToolHubComponent, isStandalone: true, selector: "lib-bimplus-tool-hub", inputs: { left: "left", top: "top", itemStates: "itemStates", items: "items", isOpened: ["isOpened", "isOpened", booleanAttribute], isEmbedded: ["isEmbedded", "isEmbedded", booleanAttribute], isFocused: ["isFocused", "isFocused", booleanAttribute], isActive: ["isActive", "isActive", booleanAttribute] }, outputs: { itemClicked: "itemClicked", subItemClicked: "subItemClicked" }, host: { properties: { "style.left.px": "this.left", "style.top.px": "this.top" } }, providers: [TranslateService, LayoutManagerService], usesInheritance: true, ngImport: i0, template: "<div class=\"center-menu\">\r\n <div\r\n class=\"center-menu-fp\"\r\n id=\"center-menu-fp-id\"\r\n [ngClass]=\"activeSubItems ? 'submenu-active' : ''\"\r\n >\r\n <div\r\n libDraggable\r\n id=\"center-menu-controller\"\r\n class=\"center-menu-controller dragger\"\r\n data-test=\"toolhub_controller\"\r\n [ngClass]=\"{\r\n opened: isOpened,\r\n active: isActive\r\n }\"\r\n [title]=\"\r\n isOpened\r\n ? ('_Minimize_toolhub_tooltip' | translate)\r\n : ('_Show_toolhub_tooltip' | translate)\r\n \"\r\n (clicked)=\"toggleMenu()\"\r\n (dragging)=\"dragElement($event)\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-inner\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-outer\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircleBorderOuter', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircleBorderOuter', true)\"\r\n ></div>\r\n <div\r\n libDraggable\r\n class=\"center-menu-circle\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircle', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircle', true)\"\r\n (dragging)=\"dragElement($event)\"\r\n >\r\n <lib-tool-hub-item\r\n libDraggable\r\n *ngFor=\"let item of items\"\r\n [attr.data-test]=\"'toolhub_item_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n [active]=\"!!item.active\"\r\n [isEnabled]=\"!item.disabled\"\r\n (clicked)=\"clickToolHubItem(item.buttonId)\"\r\n ></lib-tool-hub-item>\r\n\r\n <svg\r\n class=\"centermenu-button-svg\"\r\n [attr.viewBox]=\"getSVGViewBox()\"\r\n fill=\"none\"\r\n >\r\n <clipPath id=\"svgCenterMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterSubMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterSubMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuSubMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"annularSector\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuBorder\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"annularSectorBorder\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuDeadZone\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"deadZoneAnnularSector\" fill=\"none\" />\r\n </clipPath>\r\n </svg>\r\n </div>\r\n\r\n @if (activeSubItems) {\r\n <div\r\n class=\"center-menu-sub-menu-border\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenuBorder', false)\"\r\n (mouseenter)=\"setHoveredState('submenuBorder', true)\"\r\n ></div>\r\n <div\r\n class=\"center-menu-sub-menu\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenu', false)\"\r\n (mouseenter)=\"setHoveredState('submenu', true)\"\r\n >\r\n <lib-tool-hub-sub-item\r\n *ngFor=\"let item of activeSubItems\"\r\n [attr.data-test]=\"'toolhub_subitem_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n (click)=\"clickToolHubSubItem(item.buttonId)\"\r\n ></lib-tool-hub-sub-item>\r\n </div>\r\n <div\r\n class=\"center-menu-sub-menu-dead-zone\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('deadZone', false)\"\r\n (mouseenter)=\"setHoveredState('deadZone', true)\"\r\n ></div>\r\n }\r\n </div>\r\n</div>\r\n", styles: [".flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.shadow{box-shadow:.3rem .3rem .7rem #0000004d}.is-touch .center-menu .submenu-container{-webkit-box-justify-content:flex-end;-moz-box-justify-content:flex-end;-webkit-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end}.is-touch #cmb-view-submenu{display:none;top:19rem}.is-touch #cmb-view-submenu .bim-ui-popupwin-tick-down{display:none}@media (max-width: 75.8rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 76.8rem) and (max-width: 98.2rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 99.2rem) and (max-width: 119rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 120rem) and (max-width: 159rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 160rem){.touch-center-menu-left-position{left:-35rem}}#center-menu-fp-id{background-color:transparent;pointer-events:none;min-width:20.5rem;min-height:20.5rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;z-index:3;position:relative}#center-menu-fp-id.embedded{min-width:16.5rem;min-height:16.5rem}.center-menu{position:absolute;height:100%;width:100%;bottom:22.1rem;pointer-events:none}.center-menu>*{pointer-events:all}.center-menu .hidden{display:none!important}.center-menu .center-menu-fp.submenu-active{width:27rem}.center-menu .center-menu-controller{cursor:pointer;pointer-events:all;position:absolute;width:4.9rem;height:4.9rem;left:7.8rem;top:7.9rem;border-radius:50%;background-position:center;background-repeat:no-repeat;background-size:2.7rem 2.7rem;background-color:#fff;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');border:1px solid #8D8D8D}.center-menu .center-menu-controller.opened{background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"28\" viewBox=\"0 0 27 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_519_386)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.5 13.0223L21 14.5223L20 13.5223V20.0223H7V13.5223L6 14.5223L4.5 13.0223L13.4998 4.02234L22.5 13.0223ZM13.5 7.02234L18 11.5223V18.0223H16V14.0223H11V18.0223H9V11.5223L13.5 7.02234ZM14 16.0223V18.0223H13V16.0223H14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 0.0223389L0 5.02234H5V0.0223389Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 27.0223L0 22.0223H5V27.0223Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M27 5.02234L22 0.0223389V5.02234H27Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M22 27.0223L27 22.0223H22V27.0223Z\" fill=\"%23444444\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_519_386\">%0D%0A<rect width=\"27\" height=\"27\" fill=\"white\" transform=\"matrix(-1 0 0 1 27 0.0223389)\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A');transition:width .5s ease-in-out,height .5s ease-in-out}.center-menu .center-menu-controller:not(.opened).active{background-color:#fe5000;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');border-color:transparent}.center-menu .center-menu-sub-menu-dead-zone{position:absolute;top:-7rem;left:-7rem;width:55rem;height:55rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#fff0;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuDeadZone);clip-path:url(#svgCenterMenuSubMenuDeadZone);font-size:0;z-index:-1}.center-menu .center-menu-sub-menu-border{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#c3c3c3;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuBorder);clip-path:url(#svgCenterMenuSubMenuBorder);font-size:0}.center-menu .center-menu-sub-menu{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#ffffffe6;pointer-events:all;overflow:hidden;-webkit-clip-path:url(#svgCenterMenuSubMenu);clip-path:url(#svgCenterMenuSubMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-sub-menu .centermenu-button{width:35rem;height:35rem;left:auto;right:0}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-text{display:none}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-icon{width:2rem;height:3rem;background-size:1.8rem 1.8rem}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(62.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(82.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(102.5deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(122.5deg) translate(-.7rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .center-sub-menu-button{position:absolute;width:35rem;height:35rem;overflow:hidden;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterSubMenuItem);clip-path:url(#svgCenterSubMenuItem);font-size:0;background-position:center top}.center-menu .center-menu-sub-menu .center-sub-menu-button.active:not(.disabled){background-color:#fe5000}.center-menu .center-menu-sub-menu .center-sub-menu-button .center-sub-menu-button-icon{width:2rem;height:2rem;display:inline-block;margin:0;padding:0;background-position:center;background-repeat:no-repeat;background-size:2rem 2rem;cursor:pointer}.center-menu .center-menu-circle-border-outer,.center-menu .center-menu-circle-border-inner{position:absolute;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#8d8d8d80;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0}.center-menu .center-menu-circle-border-outer{width:20.5rem;height:20.5rem;transform:translate(0) scale(1.01)}.center-menu .center-menu-circle-border-inner{width:20.5rem;height:20.5rem;transform:scale(.97)}.center-menu .center-menu-circle{width:20.5rem;height:20.5rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#444444e6;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-circle .centermenu-button-text{display:none}.center-menu .center-menu-circle .bim-ui-popupwin-content{box-shadow:.3rem .3rem .7rem #0000004d}.center-menu .center-menu-circle .bim-ui-popupwin-content .section-menu-item,.center-menu .center-menu-circle .bim-ui-popupwin-content .annotation-menu-item{text-align:center}.center-menu .center-menu-circle .bim-ui-popupwin-item{min-width:7.125em}.center-menu .center-menu-circle .submenu-container{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center}.center-menu .center-menu-circle .centermenu-button:nth-child(1){transform:rotate(calc(90deg + 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(calc(-90deg - 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2){transform:rotate(calc(90deg + 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(calc(-90deg - 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3){transform:rotate(calc(90deg + 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(calc(-90deg - 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4){transform:rotate(calc(90deg + 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(calc(-90deg - 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5){transform:rotate(calc(90deg + 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5) .centermenu-button-icon{transform:rotate(calc(-90deg - 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6){transform:rotate(calc(90deg + 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6) .centermenu-button-icon{transform:rotate(calc(-90deg - 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7){transform:rotate(calc(90deg + 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7) .centermenu-button-icon{transform:rotate(calc(-90deg - 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8){transform:rotate(calc(90deg + 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8) .centermenu-button-icon{transform:rotate(calc(-90deg - 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9){transform:rotate(calc(90deg + 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9) .centermenu-button-icon{transform:rotate(calc(-90deg - 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10){transform:rotate(calc(90deg + 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10) .centermenu-button-icon{transform:rotate(calc(-90deg - 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11){transform:rotate(calc(90deg + 11 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11) .centermenu-button-icon{transform:rotate(calc(-90deg - 11 * 360deg / var(--menu-items)))}.center-menu .centermenu-button{position:absolute;width:20.5rem;height:20.5rem;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterMenuItem);clip-path:url(#svgCenterMenuItem);font-size:0;overflow:hidden;background-position:center top}.center-menu .centermenu-button.active:not(.disabled){background-color:#fe5000}.center-menu .centermenu-button .centermenu-button-icon{width:5.8rem;height:5.8rem;margin:-.6rem;display:inline-block;padding:0;background-position:center;background-repeat:no-repeat;background-size:1.8rem 1.8rem}.center-sub-menu-button:nth-child(1){transform:rotate(65deg);left:auto;right:0}.center-sub-menu-button:nth-child(1) .center-sub-menu-button-icon{transform:rotate(-65deg)}.center-sub-menu-button:nth-child(2){transform:rotate(80deg);left:auto;right:0}.center-sub-menu-button:nth-child(2) .center-sub-menu-button-icon{transform:rotate(-85deg)}.center-sub-menu-button:nth-child(3){transform:rotate(95deg);left:auto;right:0}.center-sub-menu-button:nth-child(3) .center-sub-menu-button-icon{transform:rotate(-105deg)}.center-sub-menu-button:nth-child(4){transform:rotate(110deg);left:auto;right:0}.center-sub-menu-button:nth-child(4) .center-sub-menu-button-icon{transform:rotate(-125deg)}@-webkit-keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}@keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}.center-menu .center-menu-fp.is-dragging .center-menu-controller,.center-menu .center-menu-fp.is-dragging .centermenu-button{cursor:move}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-controller,.center-menu .center-menu-fp:not(.is-dragging) .centermenu-button{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button:not(.active):hover{background-color:#8d8d8d}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button.pulse:not(.disabled){-webkit-animation:highlight .25s linear;animation:highlight .25s linear}#cmb-view-submenu{display:none;text-align:left;position:absolute;bottom:7.4rem;width:35rem;left:25.5rem}.bim-bottom-submenu{display:none;text-align:left;position:absolute}.center-menu{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .embedded .center-menu-circle{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-controller{left:5.8rem;top:5.8rem}.center-menu .embedded .centermenu-button,.center-menu .embedded .center-menu-circle-border-outer,.center-menu .embedded .center-menu-circle-border-inner{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-sub-menu{width:30rem;height:31rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button{width:30rem;height:30rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(64.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(84.5deg) translate(-1rem,3.1rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(105.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(124.5deg) translate(-.7rem,2.7rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu-border{width:30rem;height:31rem}.ui-icon-create-task{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1470)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1470\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-create-task.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1495)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1495\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path d=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-markup{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1472)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1472\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-markup.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1497)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1497\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-section{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-section.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path d=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1476)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1476\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1501)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1501\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1478)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1478\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1503)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1503\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path d=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1486)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1486\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1511)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1511\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1484)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1484\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1509)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1509\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-front-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-front-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: ToolHubItemComponent, selector: "lib-tool-hub-item", inputs: ["item", "active", "isEnabled"] }, { kind: "component", type: ToolHubSubItemComponent, selector: "lib-tool-hub-sub-item", inputs: ["item", "active", "isEnabled"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "clicked"] }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
3188
+ handleParentAppRectSizeChange(parentRect) {
3189
+ this.layoutManagerService.checkPosition(this.componentId, this.getSelector(), parentRect, 0, 0, true);
3190
+ }
3191
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusToolHubComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }, { token: ResizeObserverService }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
3192
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.10", type: BimplusToolHubComponent, isStandalone: true, selector: "lib-bimplus-tool-hub", inputs: { itemStates: "itemStates", items: "items", isCollapsed: ["isCollapsed", "isCollapsed", booleanAttribute], isEmbedded: ["isEmbedded", "isEmbedded", booleanAttribute], isFocused: ["isFocused", "isFocused", booleanAttribute], isActive: ["isActive", "isActive", booleanAttribute] }, outputs: { itemClicked: "itemClicked", subItemClicked: "subItemClicked", resizedragging: "resizedragging" }, providers: [TranslateService], usesInheritance: true, ngImport: i0, template: "<div class=\"center-menu\">\r\n <div\r\n class=\"center-menu-fp\"\r\n id=\"center-menu-fp-id\"\r\n [ngClass]=\"activeSubItems ? 'submenu-active' : ''\"\r\n >\r\n <div\r\n libDraggable\r\n id=\"center-menu-controller\"\r\n class=\"center-menu-controller dragger\"\r\n data-test=\"toolhub_controller\"\r\n [ngClass]=\"{\r\n opened: !isCollapsed,\r\n active: isActive\r\n }\"\r\n [title]=\"\r\n isCollapsed\r\n ? ('_Show_toolhub_tooltip' | translate)\r\n : ('_Minimize_toolhub_tooltip' | translate) \r\n \"\r\n (clicked)=\"toggleMenu()\"\r\n (dragging)=\"dragElement($event)\"\r\n (dragEnd) =\"onDragEnd()\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-inner\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-outer\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircleBorderOuter', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircleBorderOuter', true)\"\r\n ></div>\r\n <div\r\n libDraggable\r\n class=\"center-menu-circle\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircle', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircle', true)\"\r\n (dragging)=\"dragElement($event)\"\r\n >\r\n <lib-tool-hub-item\r\n libDraggable\r\n *ngFor=\"let item of items\"\r\n [attr.data-test]=\"'toolhub_item_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n [active]=\"!!item.active\"\r\n [isEnabled]=\"!item.disabled\"\r\n (clicked)=\"clickToolHubItem(item.buttonId)\"\r\n ></lib-tool-hub-item>\r\n\r\n <svg\r\n class=\"centermenu-button-svg\"\r\n [attr.viewBox]=\"getSVGViewBox()\"\r\n fill=\"none\"\r\n >\r\n <clipPath id=\"svgCenterMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterSubMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterSubMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuSubMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"annularSector\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuBorder\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"annularSectorBorder\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuDeadZone\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"deadZoneAnnularSector\" fill=\"none\" />\r\n </clipPath>\r\n </svg>\r\n </div>\r\n\r\n @if (activeSubItems) {\r\n <div\r\n class=\"center-menu-sub-menu-border\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenuBorder', false)\"\r\n (mouseenter)=\"setHoveredState('submenuBorder', true)\"\r\n ></div>\r\n <div\r\n class=\"center-menu-sub-menu\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenu', false)\"\r\n (mouseenter)=\"setHoveredState('submenu', true)\"\r\n >\r\n <lib-tool-hub-sub-item\r\n *ngFor=\"let item of activeSubItems\"\r\n [attr.data-test]=\"'toolhub_subitem_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n (click)=\"clickToolHubSubItem(item.buttonId)\"\r\n ></lib-tool-hub-sub-item>\r\n </div>\r\n <div\r\n class=\"center-menu-sub-menu-dead-zone\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('deadZone', false)\"\r\n (mouseenter)=\"setHoveredState('deadZone', true)\"\r\n ></div>\r\n }\r\n </div>\r\n</div>\r\n", styles: [".flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.shadow{box-shadow:.3rem .3rem .7rem #0000004d}.is-touch .center-menu .submenu-container{-webkit-box-justify-content:flex-end;-moz-box-justify-content:flex-end;-webkit-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end}.is-touch #cmb-view-submenu{display:none;top:19rem}.is-touch #cmb-view-submenu .bim-ui-popupwin-tick-down{display:none}@media (max-width: 75.8rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 76.8rem) and (max-width: 98.2rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 99.2rem) and (max-width: 119rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 120rem) and (max-width: 159rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 160rem){.touch-center-menu-left-position{left:-35rem}}#center-menu-fp-id{background-color:transparent;pointer-events:none;min-width:20.5rem;min-height:20.5rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;z-index:3;position:relative}#center-menu-fp-id.embedded{min-width:16.5rem;min-height:16.5rem}.center-menu{position:absolute;height:100%;width:100%;bottom:22.1rem;pointer-events:none}.center-menu>*{pointer-events:all}.center-menu .hidden{display:none!important}.center-menu .center-menu-fp.submenu-active{width:27rem}.center-menu .center-menu-controller{cursor:pointer;pointer-events:all;position:absolute;width:4.9rem;height:4.9rem;left:7.8rem;top:7.9rem;border-radius:50%;background-position:center;background-repeat:no-repeat;background-size:2.7rem 2.7rem;background-color:#fff;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');border:1px solid #8D8D8D}.center-menu .center-menu-controller.opened{background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"28\" viewBox=\"0 0 27 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_519_386)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.5 13.0223L21 14.5223L20 13.5223V20.0223H7V13.5223L6 14.5223L4.5 13.0223L13.4998 4.02234L22.5 13.0223ZM13.5 7.02234L18 11.5223V18.0223H16V14.0223H11V18.0223H9V11.5223L13.5 7.02234ZM14 16.0223V18.0223H13V16.0223H14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 0.0223389L0 5.02234H5V0.0223389Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 27.0223L0 22.0223H5V27.0223Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M27 5.02234L22 0.0223389V5.02234H27Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M22 27.0223L27 22.0223H22V27.0223Z\" fill=\"%23444444\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_519_386\">%0D%0A<rect width=\"27\" height=\"27\" fill=\"white\" transform=\"matrix(-1 0 0 1 27 0.0223389)\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A');transition:width .5s ease-in-out,height .5s ease-in-out}.center-menu .center-menu-controller:not(.opened).active{background-color:#fe5000;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');border-color:transparent}.center-menu .center-menu-sub-menu-dead-zone{position:absolute;top:-7rem;left:-7rem;width:55rem;height:55rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#fff0;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuDeadZone);clip-path:url(#svgCenterMenuSubMenuDeadZone);font-size:0;z-index:-1}.center-menu .center-menu-sub-menu-border{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#c3c3c3;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuBorder);clip-path:url(#svgCenterMenuSubMenuBorder);font-size:0}.center-menu .center-menu-sub-menu{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#ffffffe6;pointer-events:all;overflow:hidden;-webkit-clip-path:url(#svgCenterMenuSubMenu);clip-path:url(#svgCenterMenuSubMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-sub-menu .centermenu-button{width:35rem;height:35rem;left:auto;right:0}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-text{display:none}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-icon{width:2rem;height:3rem;background-size:1.8rem 1.8rem}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(62.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(82.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(102.5deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(122.5deg) translate(-.7rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .center-sub-menu-button{position:absolute;width:35rem;height:35rem;overflow:hidden;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterSubMenuItem);clip-path:url(#svgCenterSubMenuItem);font-size:0;background-position:center top}.center-menu .center-menu-sub-menu .center-sub-menu-button.active:not(.disabled){background-color:#fe5000}.center-menu .center-menu-sub-menu .center-sub-menu-button .center-sub-menu-button-icon{width:2rem;height:2rem;display:inline-block;margin:0;padding:0;background-position:center;background-repeat:no-repeat;background-size:2rem 2rem;cursor:pointer}.center-menu .center-menu-circle-border-outer,.center-menu .center-menu-circle-border-inner{position:absolute;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#8d8d8d80;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0}.center-menu .center-menu-circle-border-outer{width:20.5rem;height:20.5rem;transform:translate(0) scale(1.01)}.center-menu .center-menu-circle-border-inner{width:20.5rem;height:20.5rem;transform:scale(.97)}.center-menu .center-menu-circle{width:20.5rem;height:20.5rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#444444e6;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-circle .centermenu-button-text{display:none}.center-menu .center-menu-circle .bim-ui-popupwin-content{box-shadow:.3rem .3rem .7rem #0000004d}.center-menu .center-menu-circle .bim-ui-popupwin-content .section-menu-item,.center-menu .center-menu-circle .bim-ui-popupwin-content .annotation-menu-item{text-align:center}.center-menu .center-menu-circle .bim-ui-popupwin-item{min-width:7.125em}.center-menu .center-menu-circle .submenu-container{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center}.center-menu .center-menu-circle .centermenu-button:nth-child(1){transform:rotate(calc(90deg + 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(calc(-90deg - 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2){transform:rotate(calc(90deg + 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(calc(-90deg - 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3){transform:rotate(calc(90deg + 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(calc(-90deg - 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4){transform:rotate(calc(90deg + 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(calc(-90deg - 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5){transform:rotate(calc(90deg + 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5) .centermenu-button-icon{transform:rotate(calc(-90deg - 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6){transform:rotate(calc(90deg + 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6) .centermenu-button-icon{transform:rotate(calc(-90deg - 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7){transform:rotate(calc(90deg + 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7) .centermenu-button-icon{transform:rotate(calc(-90deg - 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8){transform:rotate(calc(90deg + 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8) .centermenu-button-icon{transform:rotate(calc(-90deg - 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9){transform:rotate(calc(90deg + 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9) .centermenu-button-icon{transform:rotate(calc(-90deg - 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10){transform:rotate(calc(90deg + 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10) .centermenu-button-icon{transform:rotate(calc(-90deg - 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11){transform:rotate(calc(90deg + 11 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11) .centermenu-button-icon{transform:rotate(calc(-90deg - 11 * 360deg / var(--menu-items)))}.center-menu .centermenu-button{position:absolute;width:20.5rem;height:20.5rem;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterMenuItem);clip-path:url(#svgCenterMenuItem);font-size:0;overflow:hidden;background-position:center top}.center-menu .centermenu-button.active:not(.disabled){background-color:#fe5000}.center-menu .centermenu-button .centermenu-button-icon{width:5.8rem;height:5.8rem;margin:-.6rem;display:inline-block;padding:0;background-position:center;background-repeat:no-repeat;background-size:1.8rem 1.8rem}.center-sub-menu-button:nth-child(1){transform:rotate(65deg);left:auto;right:0}.center-sub-menu-button:nth-child(1) .center-sub-menu-button-icon{transform:rotate(-65deg)}.center-sub-menu-button:nth-child(2){transform:rotate(80deg);left:auto;right:0}.center-sub-menu-button:nth-child(2) .center-sub-menu-button-icon{transform:rotate(-85deg)}.center-sub-menu-button:nth-child(3){transform:rotate(95deg);left:auto;right:0}.center-sub-menu-button:nth-child(3) .center-sub-menu-button-icon{transform:rotate(-105deg)}.center-sub-menu-button:nth-child(4){transform:rotate(110deg);left:auto;right:0}.center-sub-menu-button:nth-child(4) .center-sub-menu-button-icon{transform:rotate(-125deg)}@-webkit-keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}@keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}.center-menu .center-menu-fp.is-dragging .center-menu-controller,.center-menu .center-menu-fp.is-dragging .centermenu-button{cursor:move}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-controller,.center-menu .center-menu-fp:not(.is-dragging) .centermenu-button{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button:not(.active):hover{background-color:#8d8d8d}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button.pulse:not(.disabled){-webkit-animation:highlight .25s linear;animation:highlight .25s linear}#cmb-view-submenu{display:none;text-align:left;position:absolute;bottom:7.4rem;width:35rem;left:25.5rem}.bim-bottom-submenu{display:none;text-align:left;position:absolute}.center-menu{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .embedded .center-menu-circle{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-controller{left:5.8rem;top:5.8rem}.center-menu .embedded .centermenu-button,.center-menu .embedded .center-menu-circle-border-outer,.center-menu .embedded .center-menu-circle-border-inner{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-sub-menu{width:30rem;height:31rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button{width:30rem;height:30rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(64.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(84.5deg) translate(-1rem,3.1rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(105.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(124.5deg) translate(-.7rem,2.7rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu-border{width:30rem;height:31rem}.ui-icon-create-task{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1470)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1470\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-create-task.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1495)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1495\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path d=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-markup{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1472)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1472\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-markup.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1497)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1497\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-section{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-section.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path d=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1476)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1476\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1501)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1501\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1478)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1478\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1503)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1503\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path d=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1486)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1486\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1511)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1511\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1484)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1484\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1509)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1509\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-front-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-front-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: ToolHubItemComponent, selector: "lib-tool-hub-item", inputs: ["item", "active", "isEnabled"] }, { kind: "component", type: ToolHubSubItemComponent, selector: "lib-tool-hub-sub-item", inputs: ["item", "active", "isEnabled"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "dragEnd", "clicked"] }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
2865
3193
  }
2866
3194
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusToolHubComponent, decorators: [{
2867
3195
  type: Component,
@@ -2871,22 +3199,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
2871
3199
  ToolHubItemComponent,
2872
3200
  ToolHubSubItemComponent,
2873
3201
  DraggableDirective
2874
- ], providers: [TranslateService, LayoutManagerService], encapsulation: ViewEncapsulation.ShadowDom, template: "<div class=\"center-menu\">\r\n <div\r\n class=\"center-menu-fp\"\r\n id=\"center-menu-fp-id\"\r\n [ngClass]=\"activeSubItems ? 'submenu-active' : ''\"\r\n >\r\n <div\r\n libDraggable\r\n id=\"center-menu-controller\"\r\n class=\"center-menu-controller dragger\"\r\n data-test=\"toolhub_controller\"\r\n [ngClass]=\"{\r\n opened: isOpened,\r\n active: isActive\r\n }\"\r\n [title]=\"\r\n isOpened\r\n ? ('_Minimize_toolhub_tooltip' | translate)\r\n : ('_Show_toolhub_tooltip' | translate)\r\n \"\r\n (clicked)=\"toggleMenu()\"\r\n (dragging)=\"dragElement($event)\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-inner\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-outer\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircleBorderOuter', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircleBorderOuter', true)\"\r\n ></div>\r\n <div\r\n libDraggable\r\n class=\"center-menu-circle\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircle', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircle', true)\"\r\n (dragging)=\"dragElement($event)\"\r\n >\r\n <lib-tool-hub-item\r\n libDraggable\r\n *ngFor=\"let item of items\"\r\n [attr.data-test]=\"'toolhub_item_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n [active]=\"!!item.active\"\r\n [isEnabled]=\"!item.disabled\"\r\n (clicked)=\"clickToolHubItem(item.buttonId)\"\r\n ></lib-tool-hub-item>\r\n\r\n <svg\r\n class=\"centermenu-button-svg\"\r\n [attr.viewBox]=\"getSVGViewBox()\"\r\n fill=\"none\"\r\n >\r\n <clipPath id=\"svgCenterMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterSubMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterSubMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuSubMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"annularSector\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuBorder\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"annularSectorBorder\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuDeadZone\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"deadZoneAnnularSector\" fill=\"none\" />\r\n </clipPath>\r\n </svg>\r\n </div>\r\n\r\n @if (activeSubItems) {\r\n <div\r\n class=\"center-menu-sub-menu-border\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenuBorder', false)\"\r\n (mouseenter)=\"setHoveredState('submenuBorder', true)\"\r\n ></div>\r\n <div\r\n class=\"center-menu-sub-menu\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenu', false)\"\r\n (mouseenter)=\"setHoveredState('submenu', true)\"\r\n >\r\n <lib-tool-hub-sub-item\r\n *ngFor=\"let item of activeSubItems\"\r\n [attr.data-test]=\"'toolhub_subitem_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n (click)=\"clickToolHubSubItem(item.buttonId)\"\r\n ></lib-tool-hub-sub-item>\r\n </div>\r\n <div\r\n class=\"center-menu-sub-menu-dead-zone\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('deadZone', false)\"\r\n (mouseenter)=\"setHoveredState('deadZone', true)\"\r\n ></div>\r\n }\r\n </div>\r\n</div>\r\n", styles: [".flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.shadow{box-shadow:.3rem .3rem .7rem #0000004d}.is-touch .center-menu .submenu-container{-webkit-box-justify-content:flex-end;-moz-box-justify-content:flex-end;-webkit-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end}.is-touch #cmb-view-submenu{display:none;top:19rem}.is-touch #cmb-view-submenu .bim-ui-popupwin-tick-down{display:none}@media (max-width: 75.8rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 76.8rem) and (max-width: 98.2rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 99.2rem) and (max-width: 119rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 120rem) and (max-width: 159rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 160rem){.touch-center-menu-left-position{left:-35rem}}#center-menu-fp-id{background-color:transparent;pointer-events:none;min-width:20.5rem;min-height:20.5rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;z-index:3;position:relative}#center-menu-fp-id.embedded{min-width:16.5rem;min-height:16.5rem}.center-menu{position:absolute;height:100%;width:100%;bottom:22.1rem;pointer-events:none}.center-menu>*{pointer-events:all}.center-menu .hidden{display:none!important}.center-menu .center-menu-fp.submenu-active{width:27rem}.center-menu .center-menu-controller{cursor:pointer;pointer-events:all;position:absolute;width:4.9rem;height:4.9rem;left:7.8rem;top:7.9rem;border-radius:50%;background-position:center;background-repeat:no-repeat;background-size:2.7rem 2.7rem;background-color:#fff;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');border:1px solid #8D8D8D}.center-menu .center-menu-controller.opened{background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"28\" viewBox=\"0 0 27 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_519_386)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.5 13.0223L21 14.5223L20 13.5223V20.0223H7V13.5223L6 14.5223L4.5 13.0223L13.4998 4.02234L22.5 13.0223ZM13.5 7.02234L18 11.5223V18.0223H16V14.0223H11V18.0223H9V11.5223L13.5 7.02234ZM14 16.0223V18.0223H13V16.0223H14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 0.0223389L0 5.02234H5V0.0223389Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 27.0223L0 22.0223H5V27.0223Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M27 5.02234L22 0.0223389V5.02234H27Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M22 27.0223L27 22.0223H22V27.0223Z\" fill=\"%23444444\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_519_386\">%0D%0A<rect width=\"27\" height=\"27\" fill=\"white\" transform=\"matrix(-1 0 0 1 27 0.0223389)\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A');transition:width .5s ease-in-out,height .5s ease-in-out}.center-menu .center-menu-controller:not(.opened).active{background-color:#fe5000;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');border-color:transparent}.center-menu .center-menu-sub-menu-dead-zone{position:absolute;top:-7rem;left:-7rem;width:55rem;height:55rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#fff0;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuDeadZone);clip-path:url(#svgCenterMenuSubMenuDeadZone);font-size:0;z-index:-1}.center-menu .center-menu-sub-menu-border{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#c3c3c3;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuBorder);clip-path:url(#svgCenterMenuSubMenuBorder);font-size:0}.center-menu .center-menu-sub-menu{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#ffffffe6;pointer-events:all;overflow:hidden;-webkit-clip-path:url(#svgCenterMenuSubMenu);clip-path:url(#svgCenterMenuSubMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-sub-menu .centermenu-button{width:35rem;height:35rem;left:auto;right:0}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-text{display:none}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-icon{width:2rem;height:3rem;background-size:1.8rem 1.8rem}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(62.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(82.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(102.5deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(122.5deg) translate(-.7rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .center-sub-menu-button{position:absolute;width:35rem;height:35rem;overflow:hidden;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterSubMenuItem);clip-path:url(#svgCenterSubMenuItem);font-size:0;background-position:center top}.center-menu .center-menu-sub-menu .center-sub-menu-button.active:not(.disabled){background-color:#fe5000}.center-menu .center-menu-sub-menu .center-sub-menu-button .center-sub-menu-button-icon{width:2rem;height:2rem;display:inline-block;margin:0;padding:0;background-position:center;background-repeat:no-repeat;background-size:2rem 2rem;cursor:pointer}.center-menu .center-menu-circle-border-outer,.center-menu .center-menu-circle-border-inner{position:absolute;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#8d8d8d80;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0}.center-menu .center-menu-circle-border-outer{width:20.5rem;height:20.5rem;transform:translate(0) scale(1.01)}.center-menu .center-menu-circle-border-inner{width:20.5rem;height:20.5rem;transform:scale(.97)}.center-menu .center-menu-circle{width:20.5rem;height:20.5rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#444444e6;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-circle .centermenu-button-text{display:none}.center-menu .center-menu-circle .bim-ui-popupwin-content{box-shadow:.3rem .3rem .7rem #0000004d}.center-menu .center-menu-circle .bim-ui-popupwin-content .section-menu-item,.center-menu .center-menu-circle .bim-ui-popupwin-content .annotation-menu-item{text-align:center}.center-menu .center-menu-circle .bim-ui-popupwin-item{min-width:7.125em}.center-menu .center-menu-circle .submenu-container{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center}.center-menu .center-menu-circle .centermenu-button:nth-child(1){transform:rotate(calc(90deg + 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(calc(-90deg - 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2){transform:rotate(calc(90deg + 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(calc(-90deg - 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3){transform:rotate(calc(90deg + 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(calc(-90deg - 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4){transform:rotate(calc(90deg + 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(calc(-90deg - 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5){transform:rotate(calc(90deg + 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5) .centermenu-button-icon{transform:rotate(calc(-90deg - 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6){transform:rotate(calc(90deg + 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6) .centermenu-button-icon{transform:rotate(calc(-90deg - 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7){transform:rotate(calc(90deg + 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7) .centermenu-button-icon{transform:rotate(calc(-90deg - 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8){transform:rotate(calc(90deg + 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8) .centermenu-button-icon{transform:rotate(calc(-90deg - 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9){transform:rotate(calc(90deg + 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9) .centermenu-button-icon{transform:rotate(calc(-90deg - 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10){transform:rotate(calc(90deg + 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10) .centermenu-button-icon{transform:rotate(calc(-90deg - 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11){transform:rotate(calc(90deg + 11 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11) .centermenu-button-icon{transform:rotate(calc(-90deg - 11 * 360deg / var(--menu-items)))}.center-menu .centermenu-button{position:absolute;width:20.5rem;height:20.5rem;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterMenuItem);clip-path:url(#svgCenterMenuItem);font-size:0;overflow:hidden;background-position:center top}.center-menu .centermenu-button.active:not(.disabled){background-color:#fe5000}.center-menu .centermenu-button .centermenu-button-icon{width:5.8rem;height:5.8rem;margin:-.6rem;display:inline-block;padding:0;background-position:center;background-repeat:no-repeat;background-size:1.8rem 1.8rem}.center-sub-menu-button:nth-child(1){transform:rotate(65deg);left:auto;right:0}.center-sub-menu-button:nth-child(1) .center-sub-menu-button-icon{transform:rotate(-65deg)}.center-sub-menu-button:nth-child(2){transform:rotate(80deg);left:auto;right:0}.center-sub-menu-button:nth-child(2) .center-sub-menu-button-icon{transform:rotate(-85deg)}.center-sub-menu-button:nth-child(3){transform:rotate(95deg);left:auto;right:0}.center-sub-menu-button:nth-child(3) .center-sub-menu-button-icon{transform:rotate(-105deg)}.center-sub-menu-button:nth-child(4){transform:rotate(110deg);left:auto;right:0}.center-sub-menu-button:nth-child(4) .center-sub-menu-button-icon{transform:rotate(-125deg)}@-webkit-keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}@keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}.center-menu .center-menu-fp.is-dragging .center-menu-controller,.center-menu .center-menu-fp.is-dragging .centermenu-button{cursor:move}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-controller,.center-menu .center-menu-fp:not(.is-dragging) .centermenu-button{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button:not(.active):hover{background-color:#8d8d8d}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button.pulse:not(.disabled){-webkit-animation:highlight .25s linear;animation:highlight .25s linear}#cmb-view-submenu{display:none;text-align:left;position:absolute;bottom:7.4rem;width:35rem;left:25.5rem}.bim-bottom-submenu{display:none;text-align:left;position:absolute}.center-menu{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .embedded .center-menu-circle{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-controller{left:5.8rem;top:5.8rem}.center-menu .embedded .centermenu-button,.center-menu .embedded .center-menu-circle-border-outer,.center-menu .embedded .center-menu-circle-border-inner{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-sub-menu{width:30rem;height:31rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button{width:30rem;height:30rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(64.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(84.5deg) translate(-1rem,3.1rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(105.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(124.5deg) translate(-.7rem,2.7rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu-border{width:30rem;height:31rem}.ui-icon-create-task{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1470)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1470\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-create-task.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1495)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1495\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path d=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-markup{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1472)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1472\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-markup.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1497)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1497\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-section{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-section.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path d=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1476)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1476\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1501)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1501\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1478)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1478\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1503)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1503\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path d=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1486)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1486\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1511)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1511\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1484)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1484\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1509)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1509\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-front-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-front-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}\n"] }]
2875
- }], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: i0.ElementRef }], propDecorators: { left: [{
2876
- type: HostBinding,
2877
- args: ['style.left.px']
2878
- }, {
2879
- type: Input
2880
- }], top: [{
2881
- type: HostBinding,
2882
- args: ['style.top.px']
2883
- }, {
2884
- type: Input
2885
- }], itemStates: [{
3202
+ ], providers: [TranslateService], encapsulation: ViewEncapsulation.ShadowDom, template: "<div class=\"center-menu\">\r\n <div\r\n class=\"center-menu-fp\"\r\n id=\"center-menu-fp-id\"\r\n [ngClass]=\"activeSubItems ? 'submenu-active' : ''\"\r\n >\r\n <div\r\n libDraggable\r\n id=\"center-menu-controller\"\r\n class=\"center-menu-controller dragger\"\r\n data-test=\"toolhub_controller\"\r\n [ngClass]=\"{\r\n opened: !isCollapsed,\r\n active: isActive\r\n }\"\r\n [title]=\"\r\n isCollapsed\r\n ? ('_Show_toolhub_tooltip' | translate)\r\n : ('_Minimize_toolhub_tooltip' | translate) \r\n \"\r\n (clicked)=\"toggleMenu()\"\r\n (dragging)=\"dragElement($event)\"\r\n (dragEnd) =\"onDragEnd()\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-inner\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-outer\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircleBorderOuter', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircleBorderOuter', true)\"\r\n ></div>\r\n <div\r\n libDraggable\r\n class=\"center-menu-circle\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircle', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircle', true)\"\r\n (dragging)=\"dragElement($event)\"\r\n >\r\n <lib-tool-hub-item\r\n libDraggable\r\n *ngFor=\"let item of items\"\r\n [attr.data-test]=\"'toolhub_item_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n [active]=\"!!item.active\"\r\n [isEnabled]=\"!item.disabled\"\r\n (clicked)=\"clickToolHubItem(item.buttonId)\"\r\n ></lib-tool-hub-item>\r\n\r\n <svg\r\n class=\"centermenu-button-svg\"\r\n [attr.viewBox]=\"getSVGViewBox()\"\r\n fill=\"none\"\r\n >\r\n <clipPath id=\"svgCenterMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterSubMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterSubMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuSubMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"annularSector\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuBorder\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"annularSectorBorder\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuDeadZone\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"deadZoneAnnularSector\" fill=\"none\" />\r\n </clipPath>\r\n </svg>\r\n </div>\r\n\r\n @if (activeSubItems) {\r\n <div\r\n class=\"center-menu-sub-menu-border\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenuBorder', false)\"\r\n (mouseenter)=\"setHoveredState('submenuBorder', true)\"\r\n ></div>\r\n <div\r\n class=\"center-menu-sub-menu\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenu', false)\"\r\n (mouseenter)=\"setHoveredState('submenu', true)\"\r\n >\r\n <lib-tool-hub-sub-item\r\n *ngFor=\"let item of activeSubItems\"\r\n [attr.data-test]=\"'toolhub_subitem_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n (click)=\"clickToolHubSubItem(item.buttonId)\"\r\n ></lib-tool-hub-sub-item>\r\n </div>\r\n <div\r\n class=\"center-menu-sub-menu-dead-zone\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('deadZone', false)\"\r\n (mouseenter)=\"setHoveredState('deadZone', true)\"\r\n ></div>\r\n }\r\n </div>\r\n</div>\r\n", styles: [".flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.shadow{box-shadow:.3rem .3rem .7rem #0000004d}.is-touch .center-menu .submenu-container{-webkit-box-justify-content:flex-end;-moz-box-justify-content:flex-end;-webkit-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end}.is-touch #cmb-view-submenu{display:none;top:19rem}.is-touch #cmb-view-submenu .bim-ui-popupwin-tick-down{display:none}@media (max-width: 75.8rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 76.8rem) and (max-width: 98.2rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 99.2rem) and (max-width: 119rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 120rem) and (max-width: 159rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 160rem){.touch-center-menu-left-position{left:-35rem}}#center-menu-fp-id{background-color:transparent;pointer-events:none;min-width:20.5rem;min-height:20.5rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;z-index:3;position:relative}#center-menu-fp-id.embedded{min-width:16.5rem;min-height:16.5rem}.center-menu{position:absolute;height:100%;width:100%;bottom:22.1rem;pointer-events:none}.center-menu>*{pointer-events:all}.center-menu .hidden{display:none!important}.center-menu .center-menu-fp.submenu-active{width:27rem}.center-menu .center-menu-controller{cursor:pointer;pointer-events:all;position:absolute;width:4.9rem;height:4.9rem;left:7.8rem;top:7.9rem;border-radius:50%;background-position:center;background-repeat:no-repeat;background-size:2.7rem 2.7rem;background-color:#fff;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');border:1px solid #8D8D8D}.center-menu .center-menu-controller.opened{background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"28\" viewBox=\"0 0 27 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_519_386)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.5 13.0223L21 14.5223L20 13.5223V20.0223H7V13.5223L6 14.5223L4.5 13.0223L13.4998 4.02234L22.5 13.0223ZM13.5 7.02234L18 11.5223V18.0223H16V14.0223H11V18.0223H9V11.5223L13.5 7.02234ZM14 16.0223V18.0223H13V16.0223H14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 0.0223389L0 5.02234H5V0.0223389Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 27.0223L0 22.0223H5V27.0223Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M27 5.02234L22 0.0223389V5.02234H27Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M22 27.0223L27 22.0223H22V27.0223Z\" fill=\"%23444444\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_519_386\">%0D%0A<rect width=\"27\" height=\"27\" fill=\"white\" transform=\"matrix(-1 0 0 1 27 0.0223389)\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A');transition:width .5s ease-in-out,height .5s ease-in-out}.center-menu .center-menu-controller:not(.opened).active{background-color:#fe5000;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');border-color:transparent}.center-menu .center-menu-sub-menu-dead-zone{position:absolute;top:-7rem;left:-7rem;width:55rem;height:55rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#fff0;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuDeadZone);clip-path:url(#svgCenterMenuSubMenuDeadZone);font-size:0;z-index:-1}.center-menu .center-menu-sub-menu-border{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#c3c3c3;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuBorder);clip-path:url(#svgCenterMenuSubMenuBorder);font-size:0}.center-menu .center-menu-sub-menu{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#ffffffe6;pointer-events:all;overflow:hidden;-webkit-clip-path:url(#svgCenterMenuSubMenu);clip-path:url(#svgCenterMenuSubMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-sub-menu .centermenu-button{width:35rem;height:35rem;left:auto;right:0}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-text{display:none}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-icon{width:2rem;height:3rem;background-size:1.8rem 1.8rem}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(62.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(82.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(102.5deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(122.5deg) translate(-.7rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .center-sub-menu-button{position:absolute;width:35rem;height:35rem;overflow:hidden;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterSubMenuItem);clip-path:url(#svgCenterSubMenuItem);font-size:0;background-position:center top}.center-menu .center-menu-sub-menu .center-sub-menu-button.active:not(.disabled){background-color:#fe5000}.center-menu .center-menu-sub-menu .center-sub-menu-button .center-sub-menu-button-icon{width:2rem;height:2rem;display:inline-block;margin:0;padding:0;background-position:center;background-repeat:no-repeat;background-size:2rem 2rem;cursor:pointer}.center-menu .center-menu-circle-border-outer,.center-menu .center-menu-circle-border-inner{position:absolute;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#8d8d8d80;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0}.center-menu .center-menu-circle-border-outer{width:20.5rem;height:20.5rem;transform:translate(0) scale(1.01)}.center-menu .center-menu-circle-border-inner{width:20.5rem;height:20.5rem;transform:scale(.97)}.center-menu .center-menu-circle{width:20.5rem;height:20.5rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#444444e6;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-circle .centermenu-button-text{display:none}.center-menu .center-menu-circle .bim-ui-popupwin-content{box-shadow:.3rem .3rem .7rem #0000004d}.center-menu .center-menu-circle .bim-ui-popupwin-content .section-menu-item,.center-menu .center-menu-circle .bim-ui-popupwin-content .annotation-menu-item{text-align:center}.center-menu .center-menu-circle .bim-ui-popupwin-item{min-width:7.125em}.center-menu .center-menu-circle .submenu-container{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center}.center-menu .center-menu-circle .centermenu-button:nth-child(1){transform:rotate(calc(90deg + 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(calc(-90deg - 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2){transform:rotate(calc(90deg + 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(calc(-90deg - 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3){transform:rotate(calc(90deg + 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(calc(-90deg - 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4){transform:rotate(calc(90deg + 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(calc(-90deg - 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5){transform:rotate(calc(90deg + 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5) .centermenu-button-icon{transform:rotate(calc(-90deg - 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6){transform:rotate(calc(90deg + 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6) .centermenu-button-icon{transform:rotate(calc(-90deg - 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7){transform:rotate(calc(90deg + 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7) .centermenu-button-icon{transform:rotate(calc(-90deg - 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8){transform:rotate(calc(90deg + 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8) .centermenu-button-icon{transform:rotate(calc(-90deg - 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9){transform:rotate(calc(90deg + 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9) .centermenu-button-icon{transform:rotate(calc(-90deg - 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10){transform:rotate(calc(90deg + 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10) .centermenu-button-icon{transform:rotate(calc(-90deg - 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11){transform:rotate(calc(90deg + 11 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11) .centermenu-button-icon{transform:rotate(calc(-90deg - 11 * 360deg / var(--menu-items)))}.center-menu .centermenu-button{position:absolute;width:20.5rem;height:20.5rem;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterMenuItem);clip-path:url(#svgCenterMenuItem);font-size:0;overflow:hidden;background-position:center top}.center-menu .centermenu-button.active:not(.disabled){background-color:#fe5000}.center-menu .centermenu-button .centermenu-button-icon{width:5.8rem;height:5.8rem;margin:-.6rem;display:inline-block;padding:0;background-position:center;background-repeat:no-repeat;background-size:1.8rem 1.8rem}.center-sub-menu-button:nth-child(1){transform:rotate(65deg);left:auto;right:0}.center-sub-menu-button:nth-child(1) .center-sub-menu-button-icon{transform:rotate(-65deg)}.center-sub-menu-button:nth-child(2){transform:rotate(80deg);left:auto;right:0}.center-sub-menu-button:nth-child(2) .center-sub-menu-button-icon{transform:rotate(-85deg)}.center-sub-menu-button:nth-child(3){transform:rotate(95deg);left:auto;right:0}.center-sub-menu-button:nth-child(3) .center-sub-menu-button-icon{transform:rotate(-105deg)}.center-sub-menu-button:nth-child(4){transform:rotate(110deg);left:auto;right:0}.center-sub-menu-button:nth-child(4) .center-sub-menu-button-icon{transform:rotate(-125deg)}@-webkit-keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}@keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}.center-menu .center-menu-fp.is-dragging .center-menu-controller,.center-menu .center-menu-fp.is-dragging .centermenu-button{cursor:move}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-controller,.center-menu .center-menu-fp:not(.is-dragging) .centermenu-button{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button:not(.active):hover{background-color:#8d8d8d}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button.pulse:not(.disabled){-webkit-animation:highlight .25s linear;animation:highlight .25s linear}#cmb-view-submenu{display:none;text-align:left;position:absolute;bottom:7.4rem;width:35rem;left:25.5rem}.bim-bottom-submenu{display:none;text-align:left;position:absolute}.center-menu{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .embedded .center-menu-circle{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-controller{left:5.8rem;top:5.8rem}.center-menu .embedded .centermenu-button,.center-menu .embedded .center-menu-circle-border-outer,.center-menu .embedded .center-menu-circle-border-inner{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-sub-menu{width:30rem;height:31rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button{width:30rem;height:30rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(64.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(84.5deg) translate(-1rem,3.1rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(105.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(124.5deg) translate(-.7rem,2.7rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu-border{width:30rem;height:31rem}.ui-icon-create-task{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1470)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1470\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-create-task.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1495)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1495\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path d=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-markup{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1472)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1472\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-markup.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1497)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1497\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-section{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-section.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path d=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1476)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1476\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1501)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1501\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1478)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1478\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1503)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1503\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path d=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1486)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1486\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1511)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1511\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_201_1484)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1484\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1509)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1509\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp.disabled{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-front-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-front-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view:hover{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}\n"] }]
3203
+ }], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: ResizeObserverService }, { type: i0.ElementRef }], propDecorators: { itemStates: [{
2886
3204
  type: Input
2887
3205
  }], items: [{
2888
3206
  type: Input
2889
- }], isOpened: [{
3207
+ }], isCollapsed: [{
2890
3208
  type: Input,
2891
3209
  args: [{ transform: booleanAttribute }]
2892
3210
  }], isEmbedded: [{
@@ -2902,6 +3220,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
2902
3220
  type: Output
2903
3221
  }], subItemClicked: [{
2904
3222
  type: Output
3223
+ }], resizedragging: [{
3224
+ type: Output
2905
3225
  }] } });
2906
3226
 
2907
3227
  class BimplusUserMenuComponent extends BimplusLocalizedWidgetComponent {
@@ -4857,5 +5177,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
4857
5177
  * Generated bundle index. Do not edit.
4858
5178
  */
4859
5179
 
4860
- export { BimplusConnectionDesignerComponent, BimplusConnectionDesignerResultsComponent, BimplusContactComponent, BimplusContextMenuComponent, BimplusFlatTreeComponent, BimplusFloatingBarHideObjectsComponent, BimplusFloatingBarIsolationObjectsComponent, BimplusFloatingBarProjectNavigatorComponent, BimplusLanguageMenuComponent, BimplusLocalizedWidgetComponent, BimplusMainMenuComponent, BimplusNavbarComponent, BimplusNotifyComponent, BimplusObjectNavigatorComponent, BimplusProjectMenuComponent, BimplusScrollableContainerComponent, BimplusSidenavComponent, BimplusSidenavDrawerContentComponent, BimplusStorageInfoComponent, BimplusToolHubComponent, BimplusTooltipMessageComponent, BimplusTouchMenuComponent, BimplusUserMenuComponent, BimplusZoomComponent, FilterCriteriaSelectionMode, LanguageStringsService, LoadingSpinnerComponent, LogoState, MaxFilterCriteria, NgxBimplusComponentsComponent, NgxBimplusComponentsService };
5180
+ export { BimplusConnectionDesignerComponent, BimplusConnectionDesignerResultsComponent, BimplusContactComponent, BimplusContextMenuComponent, BimplusFlatTreeComponent, BimplusFloatingBarHideObjectsComponent, BimplusFloatingBarIsolationObjectsComponent, BimplusFloatingBarProjectNavigatorComponent, BimplusLanguageMenuComponent, BimplusLocalizedWidgetComponent, BimplusMainMenuComponent, BimplusNavbarComponent, BimplusNotifyComponent, BimplusObjectNavigatorComponent, BimplusProjectMenuComponent, BimplusScrollableContainerComponent, BimplusSidenavComponent, BimplusSidenavDrawerContentComponent, BimplusStorageInfoComponent, BimplusToolHubComponent, BimplusTooltipMessageComponent, BimplusTouchMenuComponent, BimplusUserMenuComponent, BimplusZoomComponent, FilterCriteriaSelectionMode, LanguageStringsService, LoadingSpinnerComponent, LogoState, MaxFilterCriteria, NgxBimplusComponentsComponent, NgxBimplusComponentsService, ResizeObserverService };
4861
5181
  //# sourceMappingURL=ngx-bimplus-components.mjs.map