libey-ng-component-library 0.0.21 → 0.0.22

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.
@@ -310,7 +310,7 @@
310
310
  return LibeyNgTableComponent;
311
311
  }());
312
312
  LibeyNgTableComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: LibeyNgTableComponent, deps: [{ token: i0__namespace.ChangeDetectorRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
313
- LibeyNgTableComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: LibeyNgTableComponent, selector: "libey-ng-table", inputs: { data: "data", pageSize: "pageSize", totalSize: "totalSize", maxPageButtons: "maxPageButtons", height: "height", expandable: "expandable", viewPaginate: "viewPaginate", childTableTemplate: "childTableTemplate", headerfixed: "headerfixed", class: "class", internalPagination: "internalPagination", currentPage: "currentPage" }, outputs: { pageChange: "pageChange" }, queries: [{ propertyName: "columns", predicate: LibeyColumnDirective }], viewQueries: [{ propertyName: "tableContainer", first: true, predicate: ["tableContainer"], descendants: true }, { propertyName: "tableElement", first: true, predicate: ["table"], descendants: true }], usesOnChanges: true, ngImport: i0__namespace, template: "<div class=\"table-container\" #tableContainer [style.height]=\"height == null ? 'auto':(height + 'px')\">\r\n <!-- <table cdkDropList (cdkDropListDropped)=\"drop($event)\"> -->\r\n <table #table [ngClass]=\"class\">\r\n <thead>\r\n <tr>\r\n <th *ngIf=\"expandable\" [ngClass]=\"headerfixed == true ? 'th-fixed':''\" style=\"width: 25px;\"></th>\r\n <ng-container *ngFor=\"let column of columns; let i = index\">\r\n <th *ngIf=\"column.view\" [style.width]=\"column.width ? (column.width + 'px') : 'auto'\"\r\n [ngClass]=\"headerfixed == true ? (column.classHeader + ' th-fixed'): column.classHeader\">\r\n <!-- Custom header template -->\r\n <ng-container *ngIf=\"column.headerTemplate; else defaultHeader\">\r\n <ng-container [ngTemplateOutlet]=\"column.headerTemplate\"\r\n [ngTemplateOutletContext]=\"{ column: column, index: i }\">\r\n </ng-container>\r\n </ng-container>\r\n <ng-template #defaultHeader>\r\n <span style=\"white-space: nowrap;\">{{ column.header }}</span>\r\n </ng-template>\r\n <div class=\"resize-handle\" (mousedown)=\"onResizeStart(i, $event)\"></div>\r\n </th>\r\n </ng-container>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <ng-container *ngIf=\"_data.length == 0\">\r\n <tr>\r\n <td [colSpan]=\"expandable ? (columns.length + 1) : (columns.length)\" class=\"text-center\">\r\n No existen datos disponibles\r\n </td>\r\n </tr>\r\n </ng-container>\r\n <ng-container *ngIf=\"paginatedData.length != 0\">\r\n <ng-container *ngFor=\"let item of paginatedData; let a = index\">\r\n <tr>\r\n <td *ngIf=\"expandable\">\r\n <button (click)=\"toggleRow(a)\">\r\n <i [ngClass]=\"rowExpandable[a] ? 'icon-arrow-up':'icon-arrow-down'\"></i>\r\n </button>\r\n </td>\r\n <ng-container *ngFor=\"let column of columns; let i = index\">\r\n <td \r\n *ngIf=\"column.view && (column.isRowspan && column.rowspan(item) > 0)\"\r\n [attr.rowspan]=\"column.rowspan(item)\"\r\n [ngClass]=\"column.class\" (click)=\"toggleRowDetail(i, a, column, item)\" [class]=\"column.expandable ? 'cursor-pointer': ''\">\r\n <ng-container \r\n [ngTemplateOutlet]=\"detailTd\" \r\n [ngTemplateOutletContext]=\"{item:item, column:column, indexData:a, indexColumn:i}\">\r\n </ng-container> \r\n </td>\r\n <td \r\n *ngIf=\"column.view && column.isRowspan != true\"\r\n [ngClass]=\"column.class\" (click)=\"toggleRowDetail(i, a, column, item)\" [class]=\"column.expandable ? 'cursor-pointer': ''\">\r\n <ng-container \r\n [ngTemplateOutlet]=\"detailTd\" \r\n [ngTemplateOutletContext]=\"{item:item, column:column, indexData:a, indexColumn:i}\">\r\n </ng-container> \r\n </td>\r\n </ng-container>\r\n </tr>\r\n <ng-container *ngIf=\"viewRowExpandableDetail(a)\">\r\n <ng-container *ngTemplateOutlet=\"findRowExpandableDetail(a); context: { $implicit: item }\"></ng-container>\r\n </ng-container>\r\n <tr *ngIf=\"rowExpandable[a]\">\r\n <td [attr.colspan]=\"columns.length + (expandable ? 1 : 0)\">\r\n <ng-container [ngTemplateOutlet]=\"childTableTemplate\"\r\n [ngTemplateOutletContext]=\"{ parentRow: item }\">\r\n </ng-container>\r\n </td>\r\n </tr>\r\n </ng-container>\r\n </ng-container>\r\n </tbody>\r\n </table>\r\n</div>\r\n<div *ngIf=\"viewPaginate && _data.length != 0\" class=\"pagination-controls\">\r\n <div class=\"d-align-center\">\r\n <label class=\"lbl-footer me-20px\"># Registros: {{this.totalSize}}</label>\r\n <label class=\"lbl-footer\"># Filas: {{this.pageSize}}</label>\r\n </div>\r\n <div>\r\n <button (click)=\"goToPage(1)\" [disabled]=\"currentPage === 1\">\r\n <i class=\"icon-first-page\"></i>\r\n </button>\r\n <button (click)=\"goToPage(currentPage - 1)\" [disabled]=\"currentPage === 1\">\r\n <i class=\"icon-previous-page\"></i>\r\n </button>\r\n <ng-container *ngFor=\"let page of pageRange()\">\r\n <button\r\n (click)=\"goToPage(page)\"\r\n [class.active]=\"currentPage === page\"\r\n [disabled]=\"currentPage === page\">\r\n {{ page }}\r\n </button>\r\n </ng-container>\r\n <button (click)=\"goToPage(currentPage + 1)\" [disabled]=\"currentPage === totalPages\">\r\n <i class=\"icon-next-page\"></i>\r\n </button>\r\n <button (click)=\"goToPage(totalPages)\" [disabled]=\"currentPage === totalPages\">\r\n <i class=\"icon-last-page\"></i>\r\n </button>\r\n </div>\r\n</div>\r\n<ng-template #detailTd let-item=\"item\" let-column=\"column\" let-indexData=\"indexData\" let-indexColumn=\"indexColumn\">\r\n <ng-container *ngIf=\"column.getCellTemplate(); else defaultCell\">\r\n <div style=\"display: flex; justify-content: space-between; white-space: nowrap;\">\r\n <ng-container [ngTemplateOutlet]=\"column.getCellTemplate()\"\r\n [ngTemplateOutletContext]=\"{ $implicit: item, column: column, index: indexData }\">\r\n </ng-container>\r\n <button *ngIf=\"column.expandable\">\r\n <i [ngClass]=\"existRowExpandableDetail(indexColumn, indexData) ? 'icon-arrow-up':'icon-arrow-down'\"></i>\r\n </button>\r\n </div>\r\n </ng-container>\r\n <ng-template #defaultCell>\r\n <div style=\"display: flex; justify-content: space-between; white-space: nowrap;\">\r\n {{ getCellValue(item, column) }}\r\n <button *ngIf=\"column.expandable\">\r\n <i [ngClass]=\"existRowExpandableDetail(indexColumn, indexData) ? 'icon-arrow-up':'icon-arrow-down'\"></i>\r\n </button>\r\n </div>\r\n </ng-template>\r\n</ng-template>", styles: [".libey-table{table {width: 100%; border-collapse: separate; border-spacing: 0; table-layout: fixed;};.table-container {width: 100%; overflow-x: auto;};td,th {padding: 5px 15px; text-align: left; position: relative; overflow: hidden;};th {font-weight: 400; color: #1087E8; border-top: 1px solid #D6DEE5; background-color: #EEF5FC; border-right: 1px solid #fff;};th:last-child {border-right: 1px solid #D6DEE5;};td {border-bottom: 1px solid #D6DEE5; border-style: none none solid none;};tr td:last-child {border-right: 1px solid #D6DEE5;};tr td:first-child {border-left: 1px solid #D6DEE5;};th.sortable {cursor: pointer;};.th-fixed{position: sticky !important; top: 0 !important; z-index: 1 !important;};.th-fixed::after {content: \"\"; position: absolute; left: 0; bottom: 0; width: 100%;};.table-actions {margin-bottom: 10px; display: flex; justify-content: space-between;};.table-pagination {margin-top: 10px; display: flex; justify-content: space-between;};.pagination-controls {border-radius: 10px; justify-content: space-between; border: 1px solid #D6DEE5; padding: 0px 15px; display: flex; align-items: center; margin-top: 10px; grid-gap: 5px; gap: 5px;};button {font-size: 14px; border: 0px; padding: 5px; cursor: pointer; background-color: transparent;};button.active {font-weight: 600; color: #38E8C6;};tr:first-child th:first-child {border-top-left-radius: 10px; border-left: 1px solid #D6DEE5;};tr:first-child th:last-child {border-top-right-radius: 10px; border-right: 1px solid #D6DEE5;};tr:last-child td:first-child {border-bottom-left-radius: 10px;};tr:last-child td:last-child {border-bottom-right-radius: 10px;};.d-align-center {display: flex !important; align-items: center !important;};.me-20px{margin-right: 20px;};.icon-first-page {background-repeat: no-repeat; display: block; width: 12px; height: 10px; background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.0922 0.292893C10.4827 -0.0976311 11.1159 -0.0976311 11.5064 0.292893C11.8969 0.683417 11.8969 1.31658 11.5064 1.70711L8.21353 5L11.5064 8.29289C11.8969 8.68342 11.8969 9.31658 11.5064 9.70711C11.1159 10.0976 10.4827 10.0976 10.0922 9.70711L6.09221 5.70711C5.70169 5.31658 5.70169 4.68342 6.09221 4.29289L10.0922 0.292893ZM4.49211 0.292893C4.88264 -0.0976311 5.5158 -0.0976311 5.90633 0.292893C6.29685 0.683417 6.29685 1.31658 5.90633 1.70711L2.61343 5L5.90633 8.29289C6.29685 8.68342 6.29685 9.31658 5.90633 9.70711C5.5158 10.0976 4.88264 10.0976 4.49211 9.70711L0.492111 5.70711C0.101587 5.31658 0.101587 4.68342 0.492111 4.29289L4.49211 0.292893Z' fill='%2338E8C6'/%3E%3C/svg%3E%0A\");};button:disabled .icon-first-page {background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.0922 0.292893C10.4827 -0.0976311 11.1159 -0.0976311 11.5064 0.292893C11.8969 0.683417 11.8969 1.31658 11.5064 1.70711L8.21353 5L11.5064 8.29289C11.8969 8.68342 11.8969 9.31658 11.5064 9.70711C11.1159 10.0976 10.4827 10.0976 10.0922 9.70711L6.09221 5.70711C5.70169 5.31658 5.70169 4.68342 6.09221 4.29289L10.0922 0.292893ZM4.49211 0.292893C4.88264 -0.0976311 5.5158 -0.0976311 5.90633 0.292893C6.29685 0.683417 6.29685 1.31658 5.90633 1.70711L2.61343 5L5.90633 8.29289C6.29685 8.68342 6.29685 9.31658 5.90633 9.70711C5.5158 10.0976 4.88264 10.0976 4.49211 9.70711L0.492111 5.70711C0.101587 5.31658 0.101587 4.68342 0.492111 4.29289L4.49211 0.292893Z' fill='%23D0D0D0'/%3E%3C/svg%3E%0A\");};.icon-previous-page {background-repeat: no-repeat; display: block; width: 7px; height: 10px; background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.90681 0.292893C6.29734 0.683417 6.29734 1.31658 5.90681 1.70711L2.61392 5L5.90681 8.29289C6.29734 8.68342 6.29734 9.31658 5.90681 9.70711C5.51629 10.0976 4.88312 10.0976 4.4926 9.70711L0.4926 5.70711C0.102076 5.31658 0.102076 4.68342 0.4926 4.29289L4.4926 0.292893C4.88312 -0.0976311 5.51629 -0.0976311 5.90681 0.292893Z' fill='%2338E8C6'/%3E%3C/svg%3E%0A\");};button:disabled .icon-previous-page {background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.90681 0.292893C6.29734 0.683417 6.29734 1.31658 5.90681 1.70711L2.61392 5L5.90681 8.29289C6.29734 8.68342 6.29734 9.31658 5.90681 9.70711C5.51629 10.0976 4.88312 10.0976 4.4926 9.70711L0.4926 5.70711C0.102076 5.31658 0.102076 4.68342 0.4926 4.29289L4.4926 0.292893C4.88312 -0.0976311 5.51629 -0.0976311 5.90681 0.292893Z' fill='%23D0D0D0'/%3E%3C/svg%3E%0A\");};.icon-next-page {background-repeat: no-repeat; display: block; width: 7px; height: 10px; background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.4926 0.292893C0.102076 0.683417 0.102076 1.31658 0.4926 1.70711L3.78549 5L0.4926 8.29289C0.102076 8.68342 0.102076 9.31658 0.4926 9.70711C0.883124 10.0976 1.51629 10.0976 1.90681 9.70711L5.90681 5.70711C6.29734 5.31658 6.29734 4.68342 5.90681 4.29289L1.90681 0.292893C1.51629 -0.0976311 0.883124 -0.0976311 0.4926 0.292893Z' fill='%2338E8C6'/%3E%3C/svg%3E%0A\");};button:disabled .icon-next-page {background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.4926 0.292893C0.102076 0.683417 0.102076 1.31658 0.4926 1.70711L3.78549 5L0.4926 8.29289C0.102076 8.68342 0.102076 9.31658 0.4926 9.70711C0.883124 10.0976 1.51629 10.0976 1.90681 9.70711L5.90681 5.70711C6.29734 5.31658 6.29734 4.68342 5.90681 4.29289L1.90681 0.292893C1.51629 -0.0976311 0.883124 -0.0976311 0.4926 0.292893Z' fill='%23D0D0D0'/%3E%3C/svg%3E%0A\");};.icon-last-page {background-repeat: no-repeat; display: block; width: 12px; height: 10px; background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.10701 0.292893C1.71648 -0.0976311 1.08332 -0.0976311 0.692796 0.292893C0.302271 0.683417 0.302271 1.31658 0.692796 1.70711L3.98569 5L0.692796 8.29289C0.302271 8.68342 0.302271 9.31658 0.692796 9.70711C1.08332 10.0976 1.71648 10.0976 2.10701 9.70711L6.10701 5.70711C6.49753 5.31658 6.49753 4.68342 6.10701 4.29289L2.10701 0.292893ZM7.70711 0.292893C7.31658 -0.0976311 6.68342 -0.0976311 6.29289 0.292893C5.90237 0.683417 5.90237 1.31658 6.29289 1.70711L9.58579 5L6.29289 8.29289C5.90237 8.68342 5.90237 9.31658 6.29289 9.70711C6.68342 10.0976 7.31658 10.0976 7.70711 9.70711L11.7071 5.70711C12.0976 5.31658 12.0976 4.68342 11.7071 4.29289L7.70711 0.292893Z' fill='%2338E8C6'/%3E%3C/svg%3E%0A\");};button:disabled .icon-last-page {background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.10701 0.292893C1.71648 -0.0976311 1.08332 -0.0976311 0.692796 0.292893C0.302271 0.683417 0.302271 1.31658 0.692796 1.70711L3.98569 5L0.692796 8.29289C0.302271 8.68342 0.302271 9.31658 0.692796 9.70711C1.08332 10.0976 1.71648 10.0976 2.10701 9.70711L6.10701 5.70711C6.49753 5.31658 6.49753 4.68342 6.10701 4.29289L2.10701 0.292893ZM7.70711 0.292893C7.31658 -0.0976311 6.68342 -0.0976311 6.29289 0.292893C5.90237 0.683417 5.90237 1.31658 6.29289 1.70711L9.58579 5L6.29289 8.29289C5.90237 8.68342 5.90237 9.31658 6.29289 9.70711C6.68342 10.0976 7.31658 10.0976 7.70711 9.70711L11.7071 5.70711C12.0976 5.31658 12.0976 4.68342 11.7071 4.29289L7.70711 0.292893Z' fill='%23D0D0D0'/%3E%3C/svg%3E%0A\");};.resize-handle {position: absolute; right: 0; top: 0; bottom: 0; width: 5px; cursor: col-resize; background-color: transparent;};::-webkit-scrollbar {width: .7rem; height: .7rem;};::-webkit-scrollbar-thumb {background-color: #d9d9d9 !important; border-radius: 20px !important; border: 3px solid #d9d9d9 !important;};.icon-arrow-up {background-repeat: no-repeat; display: block; width: 12px; height: 8px; background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 19 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.347794 9.61517C0.825615 10.1134 1.6169 10.13 2.11517 9.65221L9.07106 2.98186L16.0269 9.65221C16.5252 10.13 17.3165 10.1134 17.7943 9.61517C18.2721 9.11689 18.2556 8.32561 17.7573 7.84779L9.93623 0.347793C9.45266 -0.115931 8.68946 -0.115931 8.20589 0.347793L0.38483 7.84779C-0.113445 8.32561 -0.130027 9.11689 0.347794 9.61517Z' fill='%23224051'/%3E%3C/svg%3E%0A\");};.icon-arrow-down {background-repeat: no-repeat; display: block; width: 12px; height: 8px; background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.6234 0.387653C17.1213 -0.129218 16.3073 -0.129218 15.8051 0.387653L9 7.39295L2.19485 0.387652C1.69275 -0.129219 0.878679 -0.129219 0.376577 0.387651C-0.125527 0.904522 -0.125527 1.74253 0.376577 2.25941L8.09086 10.2006C8.59296 10.7175 9.40703 10.7175 9.90914 10.2006L17.6234 2.25941C18.1255 1.74254 18.1255 0.904523 17.6234 0.387653Z' fill='%23224051'/%3E%3C/svg%3E%0A\");};.text-center {text-align: center !important;};.cursor-pointer{cursor: pointer;}}\n"], directives: [{ type: i1__namespace.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1__namespace.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
313
+ LibeyNgTableComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: LibeyNgTableComponent, selector: "libey-ng-table", inputs: { data: "data", pageSize: "pageSize", totalSize: "totalSize", maxPageButtons: "maxPageButtons", height: "height", expandable: "expandable", viewPaginate: "viewPaginate", childTableTemplate: "childTableTemplate", headerfixed: "headerfixed", class: "class", internalPagination: "internalPagination", currentPage: "currentPage" }, outputs: { pageChange: "pageChange" }, queries: [{ propertyName: "columns", predicate: LibeyColumnDirective }], viewQueries: [{ propertyName: "tableContainer", first: true, predicate: ["tableContainer"], descendants: true }, { propertyName: "tableElement", first: true, predicate: ["table"], descendants: true }], usesOnChanges: true, ngImport: i0__namespace, template: "<div class=\"table-container\" #tableContainer [style.height]=\"height == null ? 'auto':(height + 'px')\">\r\n <!-- <table cdkDropList (cdkDropListDropped)=\"drop($event)\"> -->\r\n <table #table [ngClass]=\"class\">\r\n <thead>\r\n <tr>\r\n <th *ngIf=\"expandable\" [ngClass]=\"headerfixed == true ? 'th-fixed':''\" style=\"width: 25px;\"></th>\r\n <ng-container *ngFor=\"let column of columns; let i = index\">\r\n <th *ngIf=\"column.view\" [style.width]=\"column.width ? (column.width + 'px') : 'auto'\"\r\n [ngClass]=\"headerfixed == true ? (column.classHeader + ' th-fixed'): column.classHeader\">\r\n <!-- Custom header template -->\r\n <ng-container *ngIf=\"column.headerTemplate; else defaultHeader\">\r\n <ng-container [ngTemplateOutlet]=\"column.headerTemplate\"\r\n [ngTemplateOutletContext]=\"{ column: column, index: i }\">\r\n </ng-container>\r\n </ng-container>\r\n <ng-template #defaultHeader>\r\n <span style=\"white-space: nowrap;\">{{ column.header }}</span>\r\n </ng-template>\r\n <div class=\"resize-handle\" (mousedown)=\"onResizeStart(i, $event)\"></div>\r\n </th>\r\n </ng-container>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <ng-container *ngIf=\"_data.length == 0\">\r\n <tr>\r\n <td [colSpan]=\"expandable ? (columns.length + 1) : (columns.length)\" class=\"text-center\">\r\n No existen datos disponibles\r\n </td>\r\n </tr>\r\n </ng-container>\r\n <ng-container *ngIf=\"paginatedData.length != 0\">\r\n <ng-container *ngFor=\"let item of paginatedData; let a = index\">\r\n <tr>\r\n <td *ngIf=\"expandable\">\r\n <button (click)=\"toggleRow(a)\">\r\n <i [ngClass]=\"rowExpandable[a] ? 'icon-arrow-up':'icon-arrow-down'\"></i>\r\n </button>\r\n </td>\r\n <ng-container *ngFor=\"let column of columns; let i = index\">\r\n <td\r\n *ngIf=\"column.view && (column.isRowspan && column.rowspan(item) > 0)\"\r\n [attr.rowspan]=\"column.rowspan(item)\"\r\n [ngClass]=\"column.class\" (click)=\"toggleRowDetail(i, a, column, item)\" [class]=\"column.expandable ? 'cursor-pointer': ''\">\r\n <ng-container\r\n [ngTemplateOutlet]=\"detailTd\"\r\n [ngTemplateOutletContext]=\"{item:item, column:column, indexData:a, indexColumn:i}\">\r\n </ng-container>\r\n </td>\r\n <td\r\n *ngIf=\"column.view && column.isRowspan != true\"\r\n [ngClass]=\"column.class\" (click)=\"toggleRowDetail(i, a, column, item)\" [class]=\"column.expandable ? 'cursor-pointer': ''\">\r\n <ng-container\r\n [ngTemplateOutlet]=\"detailTd\"\r\n [ngTemplateOutletContext]=\"{item:item, column:column, indexData:a, indexColumn:i}\">\r\n </ng-container>\r\n </td>\r\n </ng-container>\r\n </tr>\r\n <ng-container *ngIf=\"viewRowExpandableDetail(a)\">\r\n <ng-container *ngTemplateOutlet=\"findRowExpandableDetail(a); context: { $implicit: item }\"></ng-container>\r\n </ng-container>\r\n <tr *ngIf=\"rowExpandable[a]\">\r\n <td [attr.colspan]=\"columns.length + (expandable ? 1 : 0)\">\r\n <ng-container [ngTemplateOutlet]=\"childTableTemplate\"\r\n [ngTemplateOutletContext]=\"{ parentRow: item }\">\r\n </ng-container>\r\n </td>\r\n </tr>\r\n </ng-container>\r\n </ng-container>\r\n </tbody>\r\n </table>\r\n</div>\r\n<div *ngIf=\"viewPaginate && _data.length != 0\" class=\"pagination-controls\">\r\n <div class=\"d-align-center\">\r\n <label class=\"lbl-footer me-20px\"># Registros: {{this.totalSize}}</label>\r\n <label class=\"lbl-footer\"># Filas: {{this.pageSize}}</label>\r\n </div>\r\n <div class=\"d-align-center\">\r\n <button (click)=\"goToPage(1)\" [disabled]=\"currentPage === 1\">\r\n <i class=\"icon-first-page\"></i>\r\n </button>\r\n <button (click)=\"goToPage(currentPage - 1)\" [disabled]=\"currentPage === 1\">\r\n <i class=\"icon-previous-page\"></i>\r\n </button>\r\n <ng-container *ngFor=\"let page of pageRange()\">\r\n <button class=\"numbers\"\r\n (click)=\"goToPage(page)\"\r\n [class.active]=\"currentPage === page\"\r\n [disabled]=\"currentPage === page\">\r\n {{ page }}\r\n </button>\r\n </ng-container>\r\n <button (click)=\"goToPage(currentPage + 1)\" [disabled]=\"currentPage === totalPages\">\r\n <i class=\"icon-next-page\"></i>\r\n </button>\r\n <button (click)=\"goToPage(totalPages)\" [disabled]=\"currentPage === totalPages\">\r\n <i class=\"icon-last-page\"></i>\r\n </button>\r\n </div>\r\n</div>\r\n<ng-template #detailTd let-item=\"item\" let-column=\"column\" let-indexData=\"indexData\" let-indexColumn=\"indexColumn\">\r\n <ng-container *ngIf=\"column.getCellTemplate(); else defaultCell\">\r\n <div style=\"display: flex; justify-content: space-between; white-space: nowrap;\">\r\n <ng-container [ngTemplateOutlet]=\"column.getCellTemplate()\"\r\n [ngTemplateOutletContext]=\"{ $implicit: item, column: column, index: indexData }\">\r\n </ng-container>\r\n <button *ngIf=\"column.expandable\">\r\n <i [ngClass]=\"existRowExpandableDetail(indexColumn, indexData) ? 'icon-arrow-up':'icon-arrow-down'\"></i>\r\n </button>\r\n </div>\r\n </ng-container>\r\n <ng-template #defaultCell>\r\n <div style=\"display: flex; justify-content: space-between; white-space: nowrap;\">\r\n {{ getCellValue(item, column) }}\r\n <button *ngIf=\"column.expandable\">\r\n <i [ngClass]=\"existRowExpandableDetail(indexColumn, indexData) ? 'icon-arrow-up':'icon-arrow-down'\"></i>\r\n </button>\r\n </div>\r\n </ng-template>\r\n</ng-template>", styles: [".libey-table{table {font-size: 1.077rem; width: 100%; border-collapse: separate; border-spacing: 0; table-layout: fixed;};.table-container {width: 100%; overflow-x: auto;};td,th {height: 30px; padding: 0rem 1.154rem; text-align: left; position: relative; overflow: hidden; vertical-align: middle;};td lib-libey-ng-icons {height: 30px;};th {font-weight: 400; color: #1087E8; border-top: .077rem solid #D6DEE5; background-color: #EEF5FC; border-right: .077rem solid #fff;};th:last-child {border-right: .077rem solid #D6DEE5;};td {border-bottom: .077rem solid #D6DEE5; border-style: none none solid none; text-transform: uppercase;};tr td:last-child {border-right: .077rem solid #D6DEE5;};tr td:first-child {border-left: .077rem solid #D6DEE5;};th.sortable {cursor: pointer;};.th-fixed{position: sticky !important; top: 0 !important; z-index: 1 !important;};.th-fixed::after {content: \"\"; position: absolute; left: 0; bottom: 0; width: 100%;};.table-actions {margin-bottom: .769rem; display: flex; justify-content: space-between;};.table-pagination {margin-top: .769rem; display: flex; justify-content: space-between;};.pagination-controls {border-radius: .769rem; justify-content: space-between; border: .077rem solid #D6DEE5; padding: 0 1.154rem; display: flex; align-items: center; margin-top: .769rem; grid-gap: .385rem; gap: .385rem; height: 2.308rem;};button {font-size: 1.077rem; border: .077rem solid transparent; border-radius: .308rem; cursor: pointer; min-width: 1.692rem; margin: .077rem; justify-content: center; height: 1.692rem; background-color: transparent; padding: 0 .231rem; display: flex; justify-content: center; align-items: center;};button.active {border: .077rem solid #38E8C6; background-color: #38E8C6; font-weight: 600; color: #FFF;};button:hover.numbers {border: .077rem solid #38E8C6 !important; border-radius: .308rem;};tr:first-child th:first-child {border-top-left-radius: .769rem; border-left: .077rem solid #D6DEE5;};tr:first-child th:last-child {border-top-right-radius: .769rem; border-right: .077rem solid #D6DEE5;};tr:last-child td:first-child {border-bottom-left-radius: .769rem;};tr:last-child td:last-child {border-bottom-right-radius: .769rem;};.d-align-center {display: flex !important; align-items: center !important;};.me-20px{margin-right: 1.538rem;};.icon-first-page {background-repeat: no-repeat; display: block; width: .923rem; height: .769rem; background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.0922 0.292893C10.4827 -0.0976311 11.1159 -0.0976311 11.5064 0.292893C11.8969 0.683417 11.8969 1.31658 11.5064 1.70711L8.21353 5L11.5064 8.29289C11.8969 8.68342 11.8969 9.31658 11.5064 9.70711C11.1159 10.0976 10.4827 10.0976 10.0922 9.70711L6.09221 5.70711C5.70169 5.31658 5.70169 4.68342 6.09221 4.29289L10.0922 0.292893ZM4.49211 0.292893C4.88264 -0.0976311 5.5158 -0.0976311 5.90633 0.292893C6.29685 0.683417 6.29685 1.31658 5.90633 1.70711L2.61343 5L5.90633 8.29289C6.29685 8.68342 6.29685 9.31658 5.90633 9.70711C5.5158 10.0976 4.88264 10.0976 4.49211 9.70711L0.492111 5.70711C0.101587 5.31658 0.101587 4.68342 0.492111 4.29289L4.49211 0.292893Z' fill='%2338E8C6'/%3E%3C/svg%3E%0A\");};button:disabled .icon-first-page {background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.0922 0.292893C10.4827 -0.0976311 11.1159 -0.0976311 11.5064 0.292893C11.8969 0.683417 11.8969 1.31658 11.5064 1.70711L8.21353 5L11.5064 8.29289C11.8969 8.68342 11.8969 9.31658 11.5064 9.70711C11.1159 10.0976 10.4827 10.0976 10.0922 9.70711L6.09221 5.70711C5.70169 5.31658 5.70169 4.68342 6.09221 4.29289L10.0922 0.292893ZM4.49211 0.292893C4.88264 -0.0976311 5.5158 -0.0976311 5.90633 0.292893C6.29685 0.683417 6.29685 1.31658 5.90633 1.70711L2.61343 5L5.90633 8.29289C6.29685 8.68342 6.29685 9.31658 5.90633 9.70711C5.5158 10.0976 4.88264 10.0976 4.49211 9.70711L0.492111 5.70711C0.101587 5.31658 0.101587 4.68342 0.492111 4.29289L4.49211 0.292893Z' fill='%23D0D0D0'/%3E%3C/svg%3E%0A\");};.icon-previous-page {background-repeat: no-repeat; display: block; width: .538rem; height: .769rem; background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.90681 0.292893C6.29734 0.683417 6.29734 1.31658 5.90681 1.70711L2.61392 5L5.90681 8.29289C6.29734 8.68342 6.29734 9.31658 5.90681 9.70711C5.51629 10.0976 4.88312 10.0976 4.4926 9.70711L0.4926 5.70711C0.102076 5.31658 0.102076 4.68342 0.4926 4.29289L4.4926 0.292893C4.88312 -0.0976311 5.51629 -0.0976311 5.90681 0.292893Z' fill='%2338E8C6'/%3E%3C/svg%3E%0A\");};button:disabled .icon-previous-page {background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.90681 0.292893C6.29734 0.683417 6.29734 1.31658 5.90681 1.70711L2.61392 5L5.90681 8.29289C6.29734 8.68342 6.29734 9.31658 5.90681 9.70711C5.51629 10.0976 4.88312 10.0976 4.4926 9.70711L0.4926 5.70711C0.102076 5.31658 0.102076 4.68342 0.4926 4.29289L4.4926 0.292893C4.88312 -0.0976311 5.51629 -0.0976311 5.90681 0.292893Z' fill='%23D0D0D0'/%3E%3C/svg%3E%0A\");};.icon-next-page {background-repeat: no-repeat; display: block; width: .538rem; height: .769rem; background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.4926 0.292893C0.102076 0.683417 0.102076 1.31658 0.4926 1.70711L3.78549 5L0.4926 8.29289C0.102076 8.68342 0.102076 9.31658 0.4926 9.70711C0.883124 10.0976 1.51629 10.0976 1.90681 9.70711L5.90681 5.70711C6.29734 5.31658 6.29734 4.68342 5.90681 4.29289L1.90681 0.292893C1.51629 -0.0976311 0.883124 -0.0976311 0.4926 0.292893Z' fill='%2338E8C6'/%3E%3C/svg%3E%0A\");};button:disabled .icon-next-page {background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.4926 0.292893C0.102076 0.683417 0.102076 1.31658 0.4926 1.70711L3.78549 5L0.4926 8.29289C0.102076 8.68342 0.102076 9.31658 0.4926 9.70711C0.883124 10.0976 1.51629 10.0976 1.90681 9.70711L5.90681 5.70711C6.29734 5.31658 6.29734 4.68342 5.90681 4.29289L1.90681 0.292893C1.51629 -0.0976311 0.883124 -0.0976311 0.4926 0.292893Z' fill='%23D0D0D0'/%3E%3C/svg%3E%0A\");};.icon-last-page {background-repeat: no-repeat; display: block; width: .923rem; height: .769rem; background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.10701 0.292893C1.71648 -0.0976311 1.08332 -0.0976311 0.692796 0.292893C0.302271 0.683417 0.302271 1.31658 0.692796 1.70711L3.98569 5L0.692796 8.29289C0.302271 8.68342 0.302271 9.31658 0.692796 9.70711C1.08332 10.0976 1.71648 10.0976 2.10701 9.70711L6.10701 5.70711C6.49753 5.31658 6.49753 4.68342 6.10701 4.29289L2.10701 0.292893ZM7.70711 0.292893C7.31658 -0.0976311 6.68342 -0.0976311 6.29289 0.292893C5.90237 0.683417 5.90237 1.31658 6.29289 1.70711L9.58579 5L6.29289 8.29289C5.90237 8.68342 5.90237 9.31658 6.29289 9.70711C6.68342 10.0976 7.31658 10.0976 7.70711 9.70711L11.7071 5.70711C12.0976 5.31658 12.0976 4.68342 11.7071 4.29289L7.70711 0.292893Z' fill='%2338E8C6'/%3E%3C/svg%3E%0A\");};button:disabled .icon-last-page {background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.10701 0.292893C1.71648 -0.0976311 1.08332 -0.0976311 0.692796 0.292893C0.302271 0.683417 0.302271 1.31658 0.692796 1.70711L3.98569 5L0.692796 8.29289C0.302271 8.68342 0.302271 9.31658 0.692796 9.70711C1.08332 10.0976 1.71648 10.0976 2.10701 9.70711L6.10701 5.70711C6.49753 5.31658 6.49753 4.68342 6.10701 4.29289L2.10701 0.292893ZM7.70711 0.292893C7.31658 -0.0976311 6.68342 -0.0976311 6.29289 0.292893C5.90237 0.683417 5.90237 1.31658 6.29289 1.70711L9.58579 5L6.29289 8.29289C5.90237 8.68342 5.90237 9.31658 6.29289 9.70711C6.68342 10.0976 7.31658 10.0976 7.70711 9.70711L11.7071 5.70711C12.0976 5.31658 12.0976 4.68342 11.7071 4.29289L7.70711 0.292893Z' fill='%23D0D0D0'/%3E%3C/svg%3E%0A\");};.resize-handle {position: absolute; right: 0; top: 0; bottom: 0; width: .385rem; cursor: col-resize; background-color: transparent;};::-webkit-scrollbar {width: .7rem; height: .7rem;};::-webkit-scrollbar-thumb {background-color: #d9d9d9 !important; border-radius: 1.538rem !important; border: .231rem solid #d9d9d9 !important;};.icon-arrow-up {background-repeat: no-repeat; display: block; width: .923rem; height: .615rem; background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 19 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.347794 9.61517C0.825615 10.1134 1.6169 10.13 2.11517 9.65221L9.07106 2.98186L16.0269 9.65221C16.5252 10.13 17.3165 10.1134 17.7943 9.61517C18.2721 9.11689 18.2556 8.32561 17.7573 7.84779L9.93623 0.347793C9.45266 -0.115931 8.68946 -0.115931 8.20589 0.347793L0.38483 7.84779C-0.113445 8.32561 -0.130027 9.11689 0.347794 9.61517Z' fill='%23224051'/%3E%3C/svg%3E%0A\");};.icon-arrow-down {background-repeat: no-repeat; display: block; width: .923rem; height: .615rem; background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.6234 0.387653C17.1213 -0.129218 16.3073 -0.129218 15.8051 0.387653L9 7.39295L2.19485 0.387652C1.69275 -0.129219 0.878679 -0.129219 0.376577 0.387651C-0.125527 0.904522 -0.125527 1.74253 0.376577 2.25941L8.09086 10.2006C8.59296 10.7175 9.40703 10.7175 9.90914 10.2006L17.6234 2.25941C18.1255 1.74254 18.1255 0.904523 17.6234 0.387653Z' fill='%23224051'/%3E%3C/svg%3E%0A\");};.text-center {text-align: center !important;};.cursor-pointer{cursor: pointer;}}\n"], directives: [{ type: i1__namespace.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1__namespace.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
314
314
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: LibeyNgTableComponent, decorators: [{
315
315
  type: i0.Component,
316
316
  args: [{
@@ -2068,6 +2068,75 @@
2068
2068
  }]
2069
2069
  }] });
2070
2070
 
2071
+ var LibeyNgIconsComponent = /** @class */ (function () {
2072
+ function LibeyNgIconsComponent() {
2073
+ this.color = "#224051";
2074
+ this.bgColorHover = "#ABBED1";
2075
+ this.icon = "";
2076
+ this.width = 30;
2077
+ this.height = 30;
2078
+ this.activeHover = false;
2079
+ this.hover = false;
2080
+ }
2081
+ LibeyNgIconsComponent.prototype.ngOnInit = function () {
2082
+ };
2083
+ LibeyNgIconsComponent.prototype.onMouseEnter = function () {
2084
+ if (this.activeHover)
2085
+ this.hover = true;
2086
+ };
2087
+ LibeyNgIconsComponent.prototype.onMouseLeave = function () {
2088
+ this.hover = false;
2089
+ };
2090
+ return LibeyNgIconsComponent;
2091
+ }());
2092
+ LibeyNgIconsComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: LibeyNgIconsComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
2093
+ LibeyNgIconsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: LibeyNgIconsComponent, selector: "lib-libey-ng-icons", inputs: { color: "color", bgColorHover: "bgColorHover", icon: "icon", width: "width", height: "height", activeHover: "activeHover" }, ngImport: i0__namespace, template: "<!-- ICON SEARCH -->\r\n<div *ngIf=\"icon == 'search'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <!-- 1ERA INSTANCIA -->\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M22.7081 21.2976L19.6119 18.2014C21.9308 15.1055 21.3003 10.7163 18.2037 8.39793C15.1071 6.07959 10.7171 6.70991 8.39822 9.80586C6.07938 12.9018 6.70988 17.291 9.80646 19.6093C12.2943 21.4719 15.7123 21.4727 18.2011 19.6113L21.2985 22.7081C21.6878 23.0973 22.3188 23.0973 22.7081 22.7081C23.0973 22.319 23.0973 21.688 22.7081 21.2989V21.2976ZM14.0321 19.0136C11.2806 19.0136 9.05014 16.7836 9.05014 14.0326C9.05014 11.2817 11.2807 9.05169 14.0321 9.05169C16.7836 9.05169 19.0141 11.2817 19.0141 14.0326C19.0112 16.7823 16.7824 19.0107 14.0321 19.0136Z\"/>\r\n </svg>\r\n\r\n <!-- CON HOVER -->\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M22.7081 21.2976L19.6119 18.2014C21.9308 15.1055 21.3003 10.7163 18.2037 8.39793C15.1071 6.07959 10.7171 6.70991 8.39822 9.80586C6.07938 12.9018 6.70988 17.291 9.80646 19.6093C12.2943 21.4719 15.7123 21.4727 18.2011 19.6113L21.2985 22.7081C21.6878 23.0973 22.3188 23.0973 22.7081 22.7081C23.0973 22.319 23.0973 21.688 22.7081 21.2989V21.2976ZM14.0321 19.0136C11.2806 19.0136 9.05014 16.7836 9.05014 14.0326C9.05014 11.2817 11.2807 9.05169 14.0321 9.05169C16.7836 9.05169 19.0141 11.2817 19.0141 14.0326C19.0112 16.7823 16.7824 19.0107 14.0321 19.0136Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON EXCEL -->\r\n<div *ngIf=\"icon == 'excel'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M15.7398 7.12245C15.637 7.11874 15.5321 7.12686 15.4268 7.14789L9.42784 8.34752C8.60112 8.5131 8 9.24615 8 10.0891V19.9113C8 20.7541 8.60119 21.4876 9.42784 21.6529L15.4268 22.8526C16.1943 23.006 16.9039 22.4572 17.0296 21.7108H20.8289C22.021 21.7108 23 20.7317 23 19.5397V10.8555C23 9.66348 22.021 8.68444 20.8289 8.68444H17.0789V8.50249C17.0789 7.75049 16.4592 7.14846 15.7398 7.12245ZM15.6588 8.30898C15.7927 8.28224 15.8947 8.3656 15.8947 8.50249V21.498C15.8947 21.6349 15.7926 21.7183 15.6588 21.6915V21.6907L9.66067 20.4911H9.6599C9.37929 20.4351 9.18421 20.1973 9.18421 19.9113V10.0891C9.18421 9.8032 9.37976 9.56487 9.66067 9.50861L15.6588 8.30898ZM17.0789 9.86865H20.8289C21.3809 9.86865 21.8158 10.3036 21.8158 10.8555V19.5397C21.8158 20.0916 21.3809 20.5265 20.8289 20.5265H17.0789V9.86865ZM18.4605 11.4476C18.3821 11.4465 18.3042 11.461 18.2314 11.4902C18.1585 11.5195 18.0923 11.5629 18.0364 11.618C17.9805 11.6731 17.9362 11.7388 17.9059 11.8112C17.8756 11.8835 17.86 11.9612 17.86 12.0397C17.86 12.1182 17.8756 12.1959 17.9059 12.2682C17.9362 12.3406 17.9805 12.4063 18.0364 12.4614C18.0923 12.5165 18.1585 12.5599 18.2314 12.5892C18.3042 12.6184 18.3821 12.6329 18.4605 12.6318H20.0395C20.1179 12.6329 20.1958 12.6184 20.2686 12.5892C20.3415 12.5599 20.4077 12.5165 20.4636 12.4614C20.5195 12.4063 20.5638 12.3406 20.5941 12.2682C20.6244 12.1959 20.64 12.1182 20.64 12.0397C20.64 11.9612 20.6244 11.8835 20.5941 11.8112C20.5638 11.7388 20.5195 11.6731 20.4636 11.618C20.4077 11.5629 20.3415 11.5195 20.2686 11.4902C20.1958 11.461 20.1179 11.4465 20.0395 11.4476H18.4605ZM11.1571 12.2995C11.0431 12.2965 10.9266 12.3265 10.8233 12.392C10.5478 12.5677 10.4669 12.9333 10.6421 13.2093L11.8217 15.0627L10.6421 16.9161C10.4669 17.192 10.5478 17.5577 10.8233 17.7333C10.922 17.7957 11.032 17.8258 11.1409 17.8258C11.3363 17.8258 11.5284 17.7294 11.6413 17.5521L12.5233 16.1659L13.4053 17.5514C13.5186 17.7286 13.7102 17.8258 13.9056 17.8258C14.0146 17.8258 14.1238 17.7965 14.2225 17.7333C14.498 17.5577 14.5797 17.1912 14.4045 16.9153L13.2256 15.0627L14.4045 13.21C14.5797 12.9341 14.498 12.5677 14.2225 12.392C13.9474 12.2168 13.5813 12.2977 13.4053 12.574L12.5233 13.9594L11.6413 12.5732C11.5315 12.4005 11.3471 12.3046 11.1571 12.2995ZM18.4605 14.6055C18.3821 14.6044 18.3042 14.6189 18.2314 14.6481C18.1585 14.6774 18.0923 14.7208 18.0364 14.7759C17.9805 14.831 17.9362 14.8967 17.9059 14.9691C17.8756 15.0414 17.86 15.1191 17.86 15.1976C17.86 15.2761 17.8756 15.3538 17.9059 15.4261C17.9362 15.4985 17.9805 15.5642 18.0364 15.6193C18.0923 15.6744 18.1585 15.7178 18.2314 15.7471C18.3042 15.7763 18.3821 15.7908 18.4605 15.7897H20.0395C20.1179 15.7908 20.1958 15.7763 20.2686 15.7471C20.3415 15.7178 20.4077 15.6744 20.4636 15.6193C20.5195 15.5642 20.5638 15.4985 20.5941 15.4261C20.6244 15.3538 20.64 15.2761 20.64 15.1976C20.64 15.1191 20.6244 15.0414 20.5941 14.9691C20.5638 14.8967 20.5195 14.831 20.4636 14.7759C20.4077 14.7208 20.3415 14.6774 20.2686 14.6481C20.1958 14.6189 20.1179 14.6044 20.0395 14.6055H18.4605ZM18.4605 17.7634C18.3821 17.7623 18.3042 17.7768 18.2314 17.806C18.1585 17.8353 18.0923 17.8787 18.0364 17.9338C17.9805 17.9889 17.9362 18.0546 17.9059 18.1269C17.8756 18.1993 17.86 18.277 17.86 18.3555C17.86 18.434 17.8756 18.5116 17.9059 18.584C17.9362 18.6564 17.9805 18.7221 18.0364 18.7772C18.0923 18.8323 18.1585 18.8757 18.2314 18.905C18.3042 18.9342 18.3821 18.9487 18.4605 18.9476H20.0395C20.1179 18.9487 20.1958 18.9342 20.2686 18.905C20.3415 18.8757 20.4077 18.8323 20.4636 18.7772C20.5195 18.7221 20.5638 18.6564 20.5941 18.584C20.6244 18.5116 20.64 18.434 20.64 18.3555C20.64 18.277 20.6244 18.1993 20.5941 18.1269C20.5638 18.0546 20.5195 17.9889 20.4636 17.9338C20.4077 17.8787 20.3415 17.8353 20.2686 17.806C20.1958 17.7768 20.1179 17.7623 20.0395 17.7634H18.4605Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.7398 7.12245C15.637 7.11874 15.5321 7.12686 15.4268 7.14789L9.42784 8.34752C8.60112 8.5131 8 9.24615 8 10.0891V19.9113C8 20.7541 8.60119 21.4876 9.42784 21.6529L15.4268 22.8526C16.1943 23.006 16.9039 22.4572 17.0296 21.7108H20.8289C22.021 21.7108 23 20.7317 23 19.5397V10.8555C23 9.66348 22.021 8.68444 20.8289 8.68444H17.0789V8.50249C17.0789 7.75049 16.4592 7.14846 15.7398 7.12245ZM15.6588 8.30898C15.7927 8.28224 15.8947 8.3656 15.8947 8.50249V21.498C15.8947 21.6349 15.7926 21.7183 15.6588 21.6915V21.6907L9.66067 20.4911H9.6599C9.37929 20.4351 9.18421 20.1973 9.18421 19.9113V10.0891C9.18421 9.8032 9.37976 9.56487 9.66067 9.50861L15.6588 8.30898ZM17.0789 9.86865H20.8289C21.3809 9.86865 21.8158 10.3036 21.8158 10.8555V19.5397C21.8158 20.0916 21.3809 20.5265 20.8289 20.5265H17.0789V9.86865ZM18.4605 11.4476C18.3821 11.4465 18.3042 11.461 18.2314 11.4902C18.1585 11.5195 18.0923 11.5629 18.0364 11.618C17.9805 11.6731 17.9362 11.7388 17.9059 11.8112C17.8756 11.8835 17.86 11.9612 17.86 12.0397C17.86 12.1182 17.8756 12.1959 17.9059 12.2682C17.9362 12.3406 17.9805 12.4063 18.0364 12.4614C18.0923 12.5165 18.1585 12.5599 18.2314 12.5892C18.3042 12.6184 18.3821 12.6329 18.4605 12.6318H20.0395C20.1179 12.6329 20.1958 12.6184 20.2686 12.5892C20.3415 12.5599 20.4077 12.5165 20.4636 12.4614C20.5195 12.4063 20.5638 12.3406 20.5941 12.2682C20.6244 12.1959 20.64 12.1182 20.64 12.0397C20.64 11.9612 20.6244 11.8835 20.5941 11.8112C20.5638 11.7388 20.5195 11.6731 20.4636 11.618C20.4077 11.5629 20.3415 11.5195 20.2686 11.4902C20.1958 11.461 20.1179 11.4465 20.0395 11.4476H18.4605ZM11.1571 12.2995C11.0431 12.2965 10.9266 12.3265 10.8233 12.392C10.5478 12.5677 10.4669 12.9333 10.6421 13.2093L11.8217 15.0627L10.6421 16.9161C10.4669 17.192 10.5478 17.5577 10.8233 17.7333C10.922 17.7957 11.032 17.8258 11.1409 17.8258C11.3363 17.8258 11.5284 17.7294 11.6413 17.5521L12.5233 16.1659L13.4053 17.5514C13.5186 17.7286 13.7102 17.8258 13.9056 17.8258C14.0146 17.8258 14.1238 17.7965 14.2225 17.7333C14.498 17.5577 14.5797 17.1912 14.4045 16.9153L13.2256 15.0627L14.4045 13.21C14.5797 12.9341 14.498 12.5677 14.2225 12.392C13.9474 12.2168 13.5813 12.2977 13.4053 12.574L12.5233 13.9594L11.6413 12.5732C11.5315 12.4005 11.3471 12.3046 11.1571 12.2995ZM18.4605 14.6055C18.3821 14.6044 18.3042 14.6189 18.2314 14.6481C18.1585 14.6774 18.0923 14.7208 18.0364 14.7759C17.9805 14.831 17.9362 14.8967 17.9059 14.9691C17.8756 15.0414 17.86 15.1191 17.86 15.1976C17.86 15.2761 17.8756 15.3538 17.9059 15.4261C17.9362 15.4985 17.9805 15.5642 18.0364 15.6193C18.0923 15.6744 18.1585 15.7178 18.2314 15.7471C18.3042 15.7763 18.3821 15.7908 18.4605 15.7897H20.0395C20.1179 15.7908 20.1958 15.7763 20.2686 15.7471C20.3415 15.7178 20.4077 15.6744 20.4636 15.6193C20.5195 15.5642 20.5638 15.4985 20.5941 15.4261C20.6244 15.3538 20.64 15.2761 20.64 15.1976C20.64 15.1191 20.6244 15.0414 20.5941 14.9691C20.5638 14.8967 20.5195 14.831 20.4636 14.7759C20.4077 14.7208 20.3415 14.6774 20.2686 14.6481C20.1958 14.6189 20.1179 14.6044 20.0395 14.6055H18.4605ZM18.4605 17.7634C18.3821 17.7623 18.3042 17.7768 18.2314 17.806C18.1585 17.8353 18.0923 17.8787 18.0364 17.9338C17.9805 17.9889 17.9362 18.0546 17.9059 18.1269C17.8756 18.1993 17.86 18.277 17.86 18.3555C17.86 18.434 17.8756 18.5116 17.9059 18.584C17.9362 18.6564 17.9805 18.7221 18.0364 18.7772C18.0923 18.8323 18.1585 18.8757 18.2314 18.905C18.3042 18.9342 18.3821 18.9487 18.4605 18.9476H20.0395C20.1179 18.9487 20.1958 18.9342 20.2686 18.905C20.3415 18.8757 20.4077 18.8323 20.4636 18.7772C20.5195 18.7221 20.5638 18.6564 20.5941 18.584C20.6244 18.5116 20.64 18.434 20.64 18.3555C20.64 18.277 20.6244 18.1993 20.5941 18.1269C20.5638 18.0546 20.5195 17.9889 20.4636 17.9338C20.4077 17.8787 20.3415 17.8353 20.2686 17.806C20.1958 17.7768 20.1179 17.7623 20.0395 17.7634H18.4605Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON ENVIAR E-MAIL -->\r\n<div *ngIf=\"icon == 'send-email'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M9.60736 8.35916C13.1897 7.87973 16.8201 7.87985 20.4023 8.36014C21.0569 8.45211 21.6647 8.75276 22.1347 9.21756C22.6047 9.68234 22.9114 10.2867 23.0107 10.9402C23.2118 12.2839 23.3139 13.6412 23.3144 14.9998C23.3139 16.3582 23.2118 17.715 23.0107 19.0584C22.9103 19.713 22.6014 20.318 22.1298 20.783C21.6583 21.2479 21.0494 21.5482 20.3935 21.6394C18.6058 21.8792 16.8036 22.0003 14.9999 22.0008C13.1932 22.0004 11.3882 21.8792 9.59759 21.6385C8.94322 21.5465 8.33608 21.2456 7.86615 20.781C7.39613 20.3162 7.08845 19.7119 6.9892 19.0584C6.58609 16.3687 6.5855 13.6339 6.98822 10.9441C7.0882 10.2888 7.39731 9.68331 7.86908 9.21756C8.34094 8.7518 8.95068 8.45065 9.60736 8.35916ZM20.2851 9.22733C16.7808 8.75532 13.229 8.7552 9.72455 9.22635C9.25549 9.29183 8.81932 9.50683 8.48236 9.83963C8.14539 10.1725 7.92469 10.6057 7.85345 11.074C7.46364 13.6776 7.46423 16.3249 7.85443 18.9285C7.9249 19.3949 8.14429 19.8261 8.47943 20.158C8.81457 20.4898 9.24777 20.7053 9.71478 20.7713C13.2196 21.2411 16.7714 21.2413 20.2763 20.7723C20.7449 20.707 21.1798 20.4922 21.5165 20.1599C21.8532 19.8278 22.0738 19.396 22.1454 18.9285C22.5359 16.3237 22.5359 13.6749 22.1454 11.0701C22.075 10.6038 21.8564 10.1725 21.5214 9.84061C21.1863 9.50867 20.7522 9.29329 20.2851 9.22733ZM9.64349 10.5135C9.70095 10.5135 9.75838 10.5247 9.81146 10.5467C9.86445 10.5686 9.91249 10.6009 9.95306 10.6414L13.7607 14.448C14.0906 14.7744 14.5358 14.9578 14.9999 14.9578C15.464 14.9578 15.9092 14.7744 16.2392 14.448L20.0468 10.6414C20.1292 10.5614 20.2396 10.5166 20.3544 10.5174C20.4694 10.5182 20.5798 10.565 20.6611 10.6463C20.7421 10.7275 20.7881 10.8372 20.789 10.9519C20.7898 11.0669 20.7451 11.1781 20.665 11.2605L16.8583 15.0672C16.3654 15.5597 15.6968 15.8357 14.9999 15.8357C14.3031 15.8357 13.6345 15.5597 13.1415 15.0672L9.3349 11.2605C9.29427 11.2199 9.26216 11.171 9.24017 11.118C9.21822 11.0649 9.20602 11.0083 9.20599 10.951C9.20599 10.8935 9.21819 10.8361 9.24017 10.783C9.26216 10.7301 9.29438 10.6819 9.3349 10.6414C9.37548 10.6009 9.42351 10.5686 9.4765 10.5467C9.52945 10.5247 9.58619 10.5135 9.64349 10.5135Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M9.60736 8.35916L9.58083 8.16093L9.57977 8.16108L9.60736 8.35916ZM20.4023 8.36014L20.4301 8.16208L20.4289 8.16192L20.4023 8.36014ZM22.1347 9.21756L22.2753 9.07536L22.2753 9.07535L22.1347 9.21756ZM23.0107 10.9402L23.2085 10.9106L23.2084 10.9102L23.0107 10.9402ZM23.3144 14.9998L23.5144 14.9999L23.5144 14.9997L23.3144 14.9998ZM23.0107 19.0584L23.2084 19.0887L23.2085 19.088L23.0107 19.0584ZM22.1298 20.783L22.2702 20.9254L22.2702 20.9254L22.1298 20.783ZM20.3935 21.6394L20.4201 21.8377L20.421 21.8375L20.3935 21.6394ZM14.9999 22.0008L14.9999 22.2008L15 22.2008L14.9999 22.0008ZM9.59759 21.6385L9.56976 21.8365L9.57095 21.8367L9.59759 21.6385ZM7.86615 20.781L7.72552 20.9232L7.72554 20.9233L7.86615 20.781ZM6.9892 19.0584L6.7914 19.088L6.79146 19.0884L6.9892 19.0584ZM6.98822 10.9441L6.79051 10.914L6.79042 10.9145L6.98822 10.9441ZM7.86908 9.21756L7.72858 9.07523L7.72857 9.07524L7.86908 9.21756ZM20.2851 9.22733L20.3131 9.02929L20.3118 9.02912L20.2851 9.22733ZM9.72455 9.22635L9.6979 9.02813L9.6969 9.02827L9.72455 9.22635ZM8.48236 9.83963L8.34182 9.69734L8.34181 9.69735L8.48236 9.83963ZM7.85345 11.074L7.65573 11.0439L7.65566 11.0444L7.85345 11.074ZM7.85443 18.9285L7.65664 18.9581L7.65668 18.9584L7.85443 18.9285ZM8.47943 20.158L8.33869 20.3001L8.33871 20.3001L8.47943 20.158ZM9.71478 20.7713L9.68681 20.9693L9.68821 20.9695L9.71478 20.7713ZM20.2763 20.7723L20.3028 20.9705L20.3039 20.9703L20.2763 20.7723ZM21.5165 20.1599L21.657 20.3023L21.657 20.3023L21.5165 20.1599ZM22.1454 18.9285L22.3431 18.9588L22.3432 18.9581L22.1454 18.9285ZM22.1454 11.0701L22.3432 11.0405L22.3432 11.0402L22.1454 11.0701ZM21.5214 9.84061L21.6622 9.69853L21.6622 9.69851L21.5214 9.84061ZM9.64349 10.5135L9.64349 10.3135L9.64329 10.3135L9.64349 10.5135ZM9.81146 10.5467L9.88806 10.3619L9.888 10.3619L9.81146 10.5467ZM9.95306 10.6414L10.0945 10.5L10.0944 10.4999L9.95306 10.6414ZM13.7607 14.448L13.6193 14.5895L13.62 14.5902L13.7607 14.448ZM14.9999 14.9578L14.9999 15.1578L14.9999 15.1578L14.9999 14.9578ZM16.2392 14.448L16.3798 14.5902L16.3806 14.5895L16.2392 14.448ZM20.0468 10.6414L19.9075 10.4979L19.9054 10.5L20.0468 10.6414ZM20.3544 10.5174L20.3559 10.3174L20.3558 10.3174L20.3544 10.5174ZM20.6611 10.6463L20.8026 10.505L20.8025 10.5049L20.6611 10.6463ZM20.789 10.9519L20.989 10.9505L20.989 10.9504L20.789 10.9519ZM20.665 11.2605L20.8064 11.402L20.8084 11.3999L20.665 11.2605ZM16.8583 15.0672L16.9997 15.2087L16.9998 15.2086L16.8583 15.0672ZM14.9999 15.8357L14.9999 16.0357L14.9999 16.0357L14.9999 15.8357ZM13.1415 15.0672L13.0001 15.2086L13.0002 15.2087L13.1415 15.0672ZM9.3349 11.2605L9.47632 11.1191L9.47632 11.1191L9.3349 11.2605ZM9.24017 11.118L9.05539 11.1945L9.0554 11.1945L9.24017 11.118ZM9.20599 10.951L9.00599 10.951L9.00599 10.9511L9.20599 10.951ZM9.24017 10.783L9.05548 10.7063L9.0554 10.7065L9.24017 10.783ZM9.3349 10.6414L9.19355 10.4999L9.19348 10.5L9.3349 10.6414ZM9.4765 10.5467L9.39997 10.3619L9.39994 10.3619L9.4765 10.5467ZM9.60736 8.35916L9.63389 8.5574C13.1986 8.08032 16.8111 8.08044 20.3757 8.55837L20.4023 8.36014L20.4289 8.16192C16.829 7.67926 13.1808 7.67914 9.58083 8.16093L9.60736 8.35916ZM20.4023 8.36014L20.3745 8.5582C20.9865 8.64418 21.5547 8.92528 21.9941 9.35977L22.1347 9.21756L22.2753 9.07535C21.7747 8.58025 21.1273 8.26003 20.4301 8.16209L20.4023 8.36014ZM22.1347 9.21756L21.9941 9.35977C22.4333 9.79415 22.7201 10.3592 22.8129 10.9703L23.0107 10.9402L23.2084 10.9102C23.1027 10.2143 22.776 9.57053 22.2753 9.07536L22.1347 9.21756ZM23.0107 10.9402L22.8129 10.9698C23.0126 12.3038 23.114 13.6512 23.1144 14.9999L23.3144 14.9998L23.5144 14.9997C23.5139 13.6311 23.4111 12.264 23.2085 10.9106L23.0107 10.9402ZM23.3144 14.9998L23.1144 14.9997C23.1139 16.3481 23.0126 17.6951 22.8129 19.0288L23.0107 19.0584L23.2085 19.088C23.4111 17.7349 23.5139 16.3682 23.5144 14.9999L23.3144 14.9998ZM23.0107 19.0584L22.813 19.0281C22.7191 19.6402 22.4303 20.2058 21.9894 20.6406L22.1298 20.783L22.2702 20.9254C22.7725 20.4301 23.1014 19.7858 23.2084 19.0887L23.0107 19.0584ZM22.1298 20.783L21.9894 20.6406C21.5485 21.0752 20.9792 21.3561 20.3659 21.4413L20.3935 21.6394L20.421 21.8375C21.1195 21.7404 21.768 21.4205 22.2702 20.9254L22.1298 20.783ZM20.3935 21.6394L20.3669 21.4412C18.588 21.6798 16.7947 21.8003 14.9999 21.8008L14.9999 22.0008L15 22.2008C16.8126 22.2003 18.6236 22.0786 20.4201 21.8377L20.3935 21.6394ZM14.9999 22.0008L15 21.8008C13.2022 21.8004 11.4061 21.6798 9.62424 21.4402L9.59759 21.6385L9.57095 21.8367C11.3704 22.0786 13.1842 22.2004 14.9999 22.2008L14.9999 22.0008ZM9.59759 21.6385L9.62543 21.4404C9.01374 21.3544 8.44612 21.0732 8.00676 20.6388L7.86615 20.781L7.72554 20.9233C8.22603 21.418 8.8727 21.7385 9.56976 21.8365L9.59759 21.6385ZM7.86615 20.781L8.00678 20.6388C7.56737 20.2043 7.27972 19.6393 7.18693 19.0284L6.9892 19.0584L6.79146 19.0884C6.89719 19.7845 7.2249 20.4282 7.72552 20.9232L7.86615 20.781ZM6.9892 19.0584L7.18699 19.0287C6.78682 16.3587 6.78624 13.6438 7.18602 10.9737L6.98822 10.9441L6.79042 10.9145C6.38476 13.6239 6.38536 16.3787 6.79141 19.088L6.9892 19.0584ZM6.98822 10.9441L7.18593 10.9743C7.27941 10.3616 7.56842 9.79542 8.00959 9.35989L7.86908 9.21756L7.72857 9.07524C7.2262 9.57119 6.897 10.216 6.79051 10.914L6.98822 10.9441ZM7.86908 9.21756L8.00958 9.3599C8.45079 8.92438 9.02095 8.64279 9.63496 8.55725L9.60736 8.35916L9.57977 8.16108C8.88042 8.2585 8.23108 8.57922 7.72858 9.07523L7.86908 9.21756ZM20.2851 9.22733L20.3118 9.02912C16.7898 8.55472 13.22 8.55461 9.6979 9.02814L9.72455 9.22635L9.7512 9.42457C13.2379 8.9558 16.7718 8.95591 20.2584 9.42554L20.2851 9.22733ZM9.72455 9.22635L9.6969 9.02827C9.18532 9.09969 8.70952 9.33417 8.34182 9.69734L8.48236 9.83963L8.6229 9.98193C8.92912 9.67949 9.32565 9.48398 9.7522 9.42443L9.72455 9.22635ZM8.48236 9.83963L8.34181 9.69735C7.97418 10.0605 7.73344 10.5331 7.65573 11.0439L7.85345 11.074L8.05118 11.1041C8.11594 10.6784 8.31659 10.2845 8.62291 9.98192L8.48236 9.83963ZM7.85345 11.074L7.65566 11.0444C7.2629 13.6677 7.2635 16.335 7.65664 18.9581L7.85443 18.9285L8.05222 18.8989C7.66496 16.3149 7.66438 13.6876 8.05125 11.1036L7.85345 11.074ZM7.85443 18.9285L7.65668 18.9584C7.73359 19.4674 7.97303 19.9379 8.33869 20.3001L8.47943 20.158L8.62017 20.0159C8.31556 19.7142 8.11621 19.3224 8.05219 18.8986L7.85443 18.9285ZM8.47943 20.158L8.33871 20.3001C8.70431 20.6621 9.17701 20.8973 9.68682 20.9693L9.71478 20.7713L9.74275 20.5732C9.31853 20.5133 8.92482 20.3176 8.62016 20.0159L8.47943 20.158ZM9.71478 20.7713L9.68821 20.9695C13.2106 21.4417 16.7803 21.4419 20.3028 20.9705L20.2763 20.7723L20.2498 20.574C16.7625 21.0407 13.2285 21.0406 9.74136 20.573L9.71478 20.7713ZM20.2763 20.7723L20.3039 20.9703C20.8151 20.8992 21.2896 20.6647 21.657 20.3023L21.5165 20.1599L21.3761 20.0176C21.0699 20.3196 20.6746 20.5149 20.2487 20.5742L20.2763 20.7723ZM21.5165 20.1599L21.657 20.3023C22.0243 19.94 22.2649 19.4688 22.3431 18.9588L22.1454 18.9285L21.9478 18.8982C21.8826 19.3231 21.6821 19.7157 21.3761 20.0176L21.5165 20.1599ZM22.1454 18.9285L22.3432 18.9581C22.7366 16.3337 22.7366 13.6649 22.3432 11.0405L22.1454 11.0701L21.9477 11.0998C22.3352 13.6849 22.3352 16.3137 21.9477 18.8989L22.1454 18.9285ZM22.1454 11.0701L22.3432 11.0402C22.2663 10.5316 22.0279 10.0608 21.6622 9.69853L21.5214 9.84061L21.3807 9.98269C21.685 10.2842 21.8836 10.6761 21.9477 11.1L22.1454 11.0701ZM21.5214 9.84061L21.6622 9.69851C21.2964 9.33629 20.8228 9.10128 20.3131 9.02929L20.2851 9.22733L20.2571 9.42536C20.6816 9.4853 21.0761 9.68105 21.3807 9.98271L21.5214 9.84061ZM9.64349 10.5135L9.64349 10.7135C9.67517 10.7135 9.70655 10.7197 9.73493 10.7314L9.81146 10.5467L9.888 10.3619C9.81021 10.3297 9.72673 10.3135 9.64349 10.3135L9.64349 10.5135ZM9.81146 10.5467L9.73487 10.7314C9.76342 10.7433 9.7895 10.7607 9.8117 10.7829L9.95306 10.6414L10.0944 10.4999C10.0355 10.441 9.96547 10.394 9.88806 10.3619L9.81146 10.5467ZM9.95306 10.6414L9.81166 10.7828L13.6193 14.5895L13.7607 14.448L13.9021 14.3066L10.0945 10.5L9.95306 10.6414ZM13.7607 14.448L13.62 14.5902C13.9873 14.9535 14.4831 15.1578 14.9999 15.1578L14.9999 14.9578L14.9999 14.7578C14.5886 14.7578 14.1939 14.5953 13.9013 14.3058L13.7607 14.448ZM14.9999 14.9578L14.9999 15.1578C15.5168 15.1578 16.0125 14.9535 16.3798 14.5902L16.2392 14.448L16.0985 14.3058C15.806 14.5953 15.4113 14.7578 14.9999 14.7578L14.9999 14.9578ZM16.2392 14.448L16.3806 14.5895L20.1882 10.7828L20.0468 10.6414L19.9054 10.5L16.0978 14.3066L16.2392 14.448ZM20.0468 10.6414L20.1861 10.7849C20.2313 10.7411 20.2913 10.7169 20.3531 10.7174L20.3544 10.5174L20.3558 10.3174C20.1879 10.3162 20.0271 10.3818 19.9075 10.4979L20.0468 10.6414ZM20.3544 10.5174L20.353 10.7174C20.4147 10.7178 20.475 10.7431 20.5197 10.7877L20.6611 10.6463L20.8025 10.5049C20.6845 10.3869 20.5241 10.3186 20.3559 10.3174L20.3544 10.5174ZM20.6611 10.6463L20.5195 10.7875C20.5636 10.8318 20.5885 10.8913 20.589 10.9535L20.789 10.9519L20.989 10.9504C20.9877 10.7831 20.9206 10.6232 20.8026 10.505L20.6611 10.6463ZM20.789 10.9519L20.589 10.9534C20.5895 11.0156 20.5651 11.0763 20.5215 11.1212L20.665 11.2605L20.8084 11.3999C20.925 11.2798 20.9902 11.1181 20.989 10.9505L20.789 10.9519ZM20.665 11.2605L20.5236 11.1191L16.7169 14.9258L16.8583 15.0672L16.9998 15.2086L20.8064 11.402L20.665 11.2605ZM16.8583 15.0672L16.717 14.9257C16.2616 15.3807 15.6439 15.6357 14.9999 15.6357L14.9999 15.8357L14.9999 16.0357C15.7497 16.0357 16.4691 15.7388 16.9997 15.2087L16.8583 15.0672ZM14.9999 15.8357V15.6357C14.3559 15.6357 13.7383 15.3807 13.2829 14.9257L13.1415 15.0672L13.0002 15.2087C13.5307 15.7388 14.2502 16.0357 14.9999 16.0357V15.8357ZM13.1415 15.0672L13.283 14.9258L9.47632 11.1191L9.3349 11.2605L9.19348 11.402L13.0001 15.2086L13.1415 15.0672ZM9.3349 11.2605L9.47632 11.1191C9.45501 11.0978 9.4373 11.0712 9.42495 11.0414L9.24017 11.118L9.0554 11.1945C9.08702 11.2708 9.13353 11.342 9.19348 11.402L9.3349 11.2605ZM9.24017 11.118L9.42495 11.0414C9.41219 11.0106 9.40601 10.9799 9.40599 10.9509L9.20599 10.951L9.00599 10.9511C9.00604 11.0368 9.02425 11.1193 9.05539 11.1945L9.24017 11.118ZM9.20599 10.951L9.40599 10.951C9.40599 10.9215 9.41232 10.89 9.42495 10.8595L9.24017 10.783L9.0554 10.7065C9.02405 10.7821 9.00599 10.8655 9.00599 10.951L9.20599 10.951ZM9.24017 10.783L9.42487 10.8597C9.4368 10.831 9.45432 10.8048 9.47632 10.7828L9.3349 10.6414L9.19348 10.5C9.13444 10.559 9.08751 10.6292 9.05548 10.7063L9.24017 10.783ZM9.3349 10.6414L9.47625 10.7829C9.49849 10.7607 9.52457 10.7432 9.55306 10.7314L9.4765 10.5467L9.39994 10.3619C9.32244 10.394 9.25247 10.441 9.19355 10.4999L9.3349 10.6414ZM9.4765 10.5467L9.55304 10.7314C9.58156 10.7196 9.61235 10.7135 9.64369 10.7135L9.64349 10.5135L9.64329 10.3135C9.56002 10.3135 9.47733 10.3298 9.39997 10.3619L9.4765 10.5467Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M9.60736 8.35916C13.1897 7.87973 16.8201 7.87985 20.4023 8.36014C21.0569 8.45211 21.6647 8.75276 22.1347 9.21756C22.6047 9.68234 22.9114 10.2867 23.0107 10.9402C23.2118 12.2839 23.3139 13.6412 23.3144 14.9998C23.3139 16.3582 23.2118 17.715 23.0107 19.0584C22.9103 19.713 22.6014 20.318 22.1298 20.783C21.6583 21.2479 21.0494 21.5482 20.3935 21.6394C18.6058 21.8792 16.8036 22.0003 14.9999 22.0008C13.1932 22.0004 11.3882 21.8792 9.59759 21.6385C8.94322 21.5465 8.33608 21.2456 7.86615 20.781C7.39613 20.3162 7.08845 19.7119 6.9892 19.0584C6.58609 16.3687 6.5855 13.6339 6.98822 10.9441C7.0882 10.2888 7.39731 9.68331 7.86908 9.21756C8.34094 8.7518 8.95068 8.45065 9.60736 8.35916ZM20.2851 9.22733C16.7808 8.75532 13.229 8.7552 9.72455 9.22635C9.25549 9.29183 8.81932 9.50683 8.48236 9.83963C8.14539 10.1725 7.92469 10.6057 7.85345 11.074C7.46364 13.6776 7.46423 16.3249 7.85443 18.9285C7.9249 19.3949 8.14429 19.8261 8.47943 20.158C8.81457 20.4898 9.24777 20.7053 9.71478 20.7713C13.2196 21.2411 16.7714 21.2413 20.2763 20.7723C20.7449 20.707 21.1798 20.4922 21.5165 20.1599C21.8532 19.8278 22.0738 19.396 22.1454 18.9285C22.5359 16.3237 22.5359 13.6749 22.1454 11.0701C22.075 10.6038 21.8564 10.1725 21.5214 9.84061C21.1863 9.50867 20.7522 9.29329 20.2851 9.22733ZM9.64349 10.5135C9.70095 10.5135 9.75838 10.5247 9.81146 10.5467C9.86445 10.5686 9.91249 10.6009 9.95306 10.6414L13.7607 14.448C14.0906 14.7744 14.5358 14.9578 14.9999 14.9578C15.464 14.9578 15.9092 14.7744 16.2392 14.448L20.0468 10.6414C20.1292 10.5614 20.2396 10.5166 20.3544 10.5174C20.4694 10.5182 20.5798 10.565 20.6611 10.6463C20.7421 10.7275 20.7881 10.8372 20.789 10.9519C20.7898 11.0669 20.7451 11.1781 20.665 11.2605L16.8583 15.0672C16.3654 15.5597 15.6968 15.8357 14.9999 15.8357C14.3031 15.8357 13.6345 15.5597 13.1415 15.0672L9.3349 11.2605C9.29427 11.2199 9.26216 11.171 9.24017 11.118C9.21822 11.0649 9.20602 11.0083 9.20599 10.951C9.20599 10.8935 9.21819 10.8361 9.24017 10.783C9.26216 10.7301 9.29438 10.6819 9.3349 10.6414C9.37548 10.6009 9.42351 10.5686 9.4765 10.5467C9.52945 10.5247 9.58619 10.5135 9.64349 10.5135Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M9.60736 8.35916L9.58083 8.16093L9.57977 8.16108L9.60736 8.35916ZM20.4023 8.36014L20.4301 8.16208L20.4289 8.16192L20.4023 8.36014ZM22.1347 9.21756L22.2753 9.07536L22.2753 9.07535L22.1347 9.21756ZM23.0107 10.9402L23.2085 10.9106L23.2084 10.9102L23.0107 10.9402ZM23.3144 14.9998L23.5144 14.9999L23.5144 14.9997L23.3144 14.9998ZM23.0107 19.0584L23.2084 19.0887L23.2085 19.088L23.0107 19.0584ZM22.1298 20.783L22.2702 20.9254L22.2702 20.9254L22.1298 20.783ZM20.3935 21.6394L20.4201 21.8377L20.421 21.8375L20.3935 21.6394ZM14.9999 22.0008L14.9999 22.2008L15 22.2008L14.9999 22.0008ZM9.59759 21.6385L9.56976 21.8365L9.57095 21.8367L9.59759 21.6385ZM7.86615 20.781L7.72552 20.9232L7.72554 20.9233L7.86615 20.781ZM6.9892 19.0584L6.7914 19.088L6.79146 19.0884L6.9892 19.0584ZM6.98822 10.9441L6.79051 10.914L6.79042 10.9145L6.98822 10.9441ZM7.86908 9.21756L7.72858 9.07523L7.72857 9.07524L7.86908 9.21756ZM20.2851 9.22733L20.3131 9.02929L20.3118 9.02912L20.2851 9.22733ZM9.72455 9.22635L9.6979 9.02813L9.6969 9.02827L9.72455 9.22635ZM8.48236 9.83963L8.34182 9.69734L8.34181 9.69735L8.48236 9.83963ZM7.85345 11.074L7.65573 11.0439L7.65566 11.0444L7.85345 11.074ZM7.85443 18.9285L7.65664 18.9581L7.65668 18.9584L7.85443 18.9285ZM8.47943 20.158L8.33869 20.3001L8.33871 20.3001L8.47943 20.158ZM9.71478 20.7713L9.68681 20.9693L9.68821 20.9695L9.71478 20.7713ZM20.2763 20.7723L20.3028 20.9705L20.3039 20.9703L20.2763 20.7723ZM21.5165 20.1599L21.657 20.3023L21.657 20.3023L21.5165 20.1599ZM22.1454 18.9285L22.3431 18.9588L22.3432 18.9581L22.1454 18.9285ZM22.1454 11.0701L22.3432 11.0405L22.3432 11.0402L22.1454 11.0701ZM21.5214 9.84061L21.6622 9.69853L21.6622 9.69851L21.5214 9.84061ZM9.64349 10.5135L9.64349 10.3135L9.64329 10.3135L9.64349 10.5135ZM9.81146 10.5467L9.88806 10.3619L9.888 10.3619L9.81146 10.5467ZM9.95306 10.6414L10.0945 10.5L10.0944 10.4999L9.95306 10.6414ZM13.7607 14.448L13.6193 14.5895L13.62 14.5902L13.7607 14.448ZM14.9999 14.9578L14.9999 15.1578L14.9999 15.1578L14.9999 14.9578ZM16.2392 14.448L16.3798 14.5902L16.3806 14.5895L16.2392 14.448ZM20.0468 10.6414L19.9075 10.4979L19.9054 10.5L20.0468 10.6414ZM20.3544 10.5174L20.3559 10.3174L20.3558 10.3174L20.3544 10.5174ZM20.6611 10.6463L20.8026 10.505L20.8025 10.5049L20.6611 10.6463ZM20.789 10.9519L20.989 10.9505L20.989 10.9504L20.789 10.9519ZM20.665 11.2605L20.8064 11.402L20.8084 11.3999L20.665 11.2605ZM16.8583 15.0672L16.9997 15.2087L16.9998 15.2086L16.8583 15.0672ZM14.9999 15.8357L14.9999 16.0357L14.9999 16.0357L14.9999 15.8357ZM13.1415 15.0672L13.0001 15.2086L13.0002 15.2087L13.1415 15.0672ZM9.3349 11.2605L9.47632 11.1191L9.47632 11.1191L9.3349 11.2605ZM9.24017 11.118L9.05539 11.1945L9.0554 11.1945L9.24017 11.118ZM9.20599 10.951L9.00599 10.951L9.00599 10.9511L9.20599 10.951ZM9.24017 10.783L9.05548 10.7063L9.0554 10.7065L9.24017 10.783ZM9.3349 10.6414L9.19355 10.4999L9.19348 10.5L9.3349 10.6414ZM9.4765 10.5467L9.39997 10.3619L9.39994 10.3619L9.4765 10.5467ZM9.60736 8.35916L9.63389 8.5574C13.1986 8.08032 16.8111 8.08044 20.3757 8.55837L20.4023 8.36014L20.4289 8.16192C16.829 7.67926 13.1808 7.67914 9.58083 8.16093L9.60736 8.35916ZM20.4023 8.36014L20.3745 8.5582C20.9865 8.64418 21.5547 8.92528 21.9941 9.35977L22.1347 9.21756L22.2753 9.07535C21.7747 8.58025 21.1273 8.26003 20.4301 8.16209L20.4023 8.36014ZM22.1347 9.21756L21.9941 9.35977C22.4333 9.79415 22.7201 10.3592 22.8129 10.9703L23.0107 10.9402L23.2084 10.9102C23.1027 10.2143 22.776 9.57053 22.2753 9.07536L22.1347 9.21756ZM23.0107 10.9402L22.8129 10.9698C23.0126 12.3038 23.114 13.6512 23.1144 14.9999L23.3144 14.9998L23.5144 14.9997C23.5139 13.6311 23.4111 12.264 23.2085 10.9106L23.0107 10.9402ZM23.3144 14.9998L23.1144 14.9997C23.1139 16.3481 23.0126 17.6951 22.8129 19.0288L23.0107 19.0584L23.2085 19.088C23.4111 17.7349 23.5139 16.3682 23.5144 14.9999L23.3144 14.9998ZM23.0107 19.0584L22.813 19.0281C22.7191 19.6402 22.4303 20.2058 21.9894 20.6406L22.1298 20.783L22.2702 20.9254C22.7725 20.4301 23.1014 19.7858 23.2084 19.0887L23.0107 19.0584ZM22.1298 20.783L21.9894 20.6406C21.5485 21.0752 20.9792 21.3561 20.3659 21.4413L20.3935 21.6394L20.421 21.8375C21.1195 21.7404 21.768 21.4205 22.2702 20.9254L22.1298 20.783ZM20.3935 21.6394L20.3669 21.4412C18.588 21.6798 16.7947 21.8003 14.9999 21.8008L14.9999 22.0008L15 22.2008C16.8126 22.2003 18.6236 22.0786 20.4201 21.8377L20.3935 21.6394ZM14.9999 22.0008L15 21.8008C13.2022 21.8004 11.4061 21.6798 9.62424 21.4402L9.59759 21.6385L9.57095 21.8367C11.3704 22.0786 13.1842 22.2004 14.9999 22.2008L14.9999 22.0008ZM9.59759 21.6385L9.62543 21.4404C9.01374 21.3544 8.44612 21.0732 8.00676 20.6388L7.86615 20.781L7.72554 20.9233C8.22603 21.418 8.8727 21.7385 9.56976 21.8365L9.59759 21.6385ZM7.86615 20.781L8.00678 20.6388C7.56737 20.2043 7.27972 19.6393 7.18693 19.0284L6.9892 19.0584L6.79146 19.0884C6.89719 19.7845 7.2249 20.4282 7.72552 20.9232L7.86615 20.781ZM6.9892 19.0584L7.18699 19.0287C6.78682 16.3587 6.78624 13.6438 7.18602 10.9737L6.98822 10.9441L6.79042 10.9145C6.38476 13.6239 6.38536 16.3787 6.79141 19.088L6.9892 19.0584ZM6.98822 10.9441L7.18593 10.9743C7.27941 10.3616 7.56842 9.79542 8.00959 9.35989L7.86908 9.21756L7.72857 9.07524C7.2262 9.57119 6.897 10.216 6.79051 10.914L6.98822 10.9441ZM7.86908 9.21756L8.00958 9.3599C8.45079 8.92438 9.02095 8.64279 9.63496 8.55725L9.60736 8.35916L9.57977 8.16108C8.88042 8.2585 8.23108 8.57922 7.72858 9.07523L7.86908 9.21756ZM20.2851 9.22733L20.3118 9.02912C16.7898 8.55472 13.22 8.55461 9.6979 9.02814L9.72455 9.22635L9.7512 9.42457C13.2379 8.9558 16.7718 8.95591 20.2584 9.42554L20.2851 9.22733ZM9.72455 9.22635L9.6969 9.02827C9.18532 9.09969 8.70952 9.33417 8.34182 9.69734L8.48236 9.83963L8.6229 9.98193C8.92912 9.67949 9.32565 9.48398 9.7522 9.42443L9.72455 9.22635ZM8.48236 9.83963L8.34181 9.69735C7.97418 10.0605 7.73344 10.5331 7.65573 11.0439L7.85345 11.074L8.05118 11.1041C8.11594 10.6784 8.31659 10.2845 8.62291 9.98192L8.48236 9.83963ZM7.85345 11.074L7.65566 11.0444C7.2629 13.6677 7.2635 16.335 7.65664 18.9581L7.85443 18.9285L8.05222 18.8989C7.66496 16.3149 7.66438 13.6876 8.05125 11.1036L7.85345 11.074ZM7.85443 18.9285L7.65668 18.9584C7.73359 19.4674 7.97303 19.9379 8.33869 20.3001L8.47943 20.158L8.62017 20.0159C8.31556 19.7142 8.11621 19.3224 8.05219 18.8986L7.85443 18.9285ZM8.47943 20.158L8.33871 20.3001C8.70431 20.6621 9.17701 20.8973 9.68682 20.9693L9.71478 20.7713L9.74275 20.5732C9.31853 20.5133 8.92482 20.3176 8.62016 20.0159L8.47943 20.158ZM9.71478 20.7713L9.68821 20.9695C13.2106 21.4417 16.7803 21.4419 20.3028 20.9705L20.2763 20.7723L20.2498 20.574C16.7625 21.0407 13.2285 21.0406 9.74136 20.573L9.71478 20.7713ZM20.2763 20.7723L20.3039 20.9703C20.8151 20.8992 21.2896 20.6647 21.657 20.3023L21.5165 20.1599L21.3761 20.0176C21.0699 20.3196 20.6746 20.5149 20.2487 20.5742L20.2763 20.7723ZM21.5165 20.1599L21.657 20.3023C22.0243 19.94 22.2649 19.4688 22.3431 18.9588L22.1454 18.9285L21.9478 18.8982C21.8826 19.3231 21.6821 19.7157 21.3761 20.0176L21.5165 20.1599ZM22.1454 18.9285L22.3432 18.9581C22.7366 16.3337 22.7366 13.6649 22.3432 11.0405L22.1454 11.0701L21.9477 11.0998C22.3352 13.6849 22.3352 16.3137 21.9477 18.8989L22.1454 18.9285ZM22.1454 11.0701L22.3432 11.0402C22.2663 10.5316 22.0279 10.0608 21.6622 9.69853L21.5214 9.84061L21.3807 9.98269C21.685 10.2842 21.8836 10.6761 21.9477 11.1L22.1454 11.0701ZM21.5214 9.84061L21.6622 9.69851C21.2964 9.33629 20.8228 9.10128 20.3131 9.02929L20.2851 9.22733L20.2571 9.42536C20.6816 9.4853 21.0761 9.68105 21.3807 9.98271L21.5214 9.84061ZM9.64349 10.5135L9.64349 10.7135C9.67517 10.7135 9.70655 10.7197 9.73493 10.7314L9.81146 10.5467L9.888 10.3619C9.81021 10.3297 9.72673 10.3135 9.64349 10.3135L9.64349 10.5135ZM9.81146 10.5467L9.73487 10.7314C9.76342 10.7433 9.7895 10.7607 9.8117 10.7829L9.95306 10.6414L10.0944 10.4999C10.0355 10.441 9.96547 10.394 9.88806 10.3619L9.81146 10.5467ZM9.95306 10.6414L9.81166 10.7828L13.6193 14.5895L13.7607 14.448L13.9021 14.3066L10.0945 10.5L9.95306 10.6414ZM13.7607 14.448L13.62 14.5902C13.9873 14.9535 14.4831 15.1578 14.9999 15.1578L14.9999 14.9578L14.9999 14.7578C14.5886 14.7578 14.1939 14.5953 13.9013 14.3058L13.7607 14.448ZM14.9999 14.9578L14.9999 15.1578C15.5168 15.1578 16.0125 14.9535 16.3798 14.5902L16.2392 14.448L16.0985 14.3058C15.806 14.5953 15.4113 14.7578 14.9999 14.7578L14.9999 14.9578ZM16.2392 14.448L16.3806 14.5895L20.1882 10.7828L20.0468 10.6414L19.9054 10.5L16.0978 14.3066L16.2392 14.448ZM20.0468 10.6414L20.1861 10.7849C20.2313 10.7411 20.2913 10.7169 20.3531 10.7174L20.3544 10.5174L20.3558 10.3174C20.1879 10.3162 20.0271 10.3818 19.9075 10.4979L20.0468 10.6414ZM20.3544 10.5174L20.353 10.7174C20.4147 10.7178 20.475 10.7431 20.5197 10.7877L20.6611 10.6463L20.8025 10.5049C20.6845 10.3869 20.5241 10.3186 20.3559 10.3174L20.3544 10.5174ZM20.6611 10.6463L20.5195 10.7875C20.5636 10.8318 20.5885 10.8913 20.589 10.9535L20.789 10.9519L20.989 10.9504C20.9877 10.7831 20.9206 10.6232 20.8026 10.505L20.6611 10.6463ZM20.789 10.9519L20.589 10.9534C20.5895 11.0156 20.5651 11.0763 20.5215 11.1212L20.665 11.2605L20.8084 11.3999C20.925 11.2798 20.9902 11.1181 20.989 10.9505L20.789 10.9519ZM20.665 11.2605L20.5236 11.1191L16.7169 14.9258L16.8583 15.0672L16.9998 15.2086L20.8064 11.402L20.665 11.2605ZM16.8583 15.0672L16.717 14.9257C16.2616 15.3807 15.6439 15.6357 14.9999 15.6357L14.9999 15.8357L14.9999 16.0357C15.7497 16.0357 16.4691 15.7388 16.9997 15.2087L16.8583 15.0672ZM14.9999 15.8357V15.6357C14.3559 15.6357 13.7383 15.3807 13.2829 14.9257L13.1415 15.0672L13.0002 15.2087C13.5307 15.7388 14.2502 16.0357 14.9999 16.0357V15.8357ZM13.1415 15.0672L13.283 14.9258L9.47632 11.1191L9.3349 11.2605L9.19348 11.402L13.0001 15.2086L13.1415 15.0672ZM9.3349 11.2605L9.47632 11.1191C9.45501 11.0978 9.4373 11.0712 9.42495 11.0414L9.24017 11.118L9.0554 11.1945C9.08702 11.2708 9.13353 11.342 9.19348 11.402L9.3349 11.2605ZM9.24017 11.118L9.42495 11.0414C9.41219 11.0106 9.40601 10.9799 9.40599 10.9509L9.20599 10.951L9.00599 10.9511C9.00604 11.0368 9.02425 11.1193 9.05539 11.1945L9.24017 11.118ZM9.20599 10.951L9.40599 10.951C9.40599 10.9215 9.41232 10.89 9.42495 10.8595L9.24017 10.783L9.0554 10.7065C9.02405 10.7821 9.00599 10.8655 9.00599 10.951L9.20599 10.951ZM9.24017 10.783L9.42487 10.8597C9.4368 10.831 9.45432 10.8048 9.47632 10.7828L9.3349 10.6414L9.19348 10.5C9.13444 10.559 9.08751 10.6292 9.05548 10.7063L9.24017 10.783ZM9.3349 10.6414L9.47625 10.7829C9.49849 10.7607 9.52457 10.7432 9.55306 10.7314L9.4765 10.5467L9.39994 10.3619C9.32244 10.394 9.25247 10.441 9.19355 10.4999L9.3349 10.6414ZM9.4765 10.5467L9.55304 10.7314C9.58156 10.7196 9.61235 10.7135 9.64369 10.7135L9.64349 10.5135L9.64329 10.3135C9.56002 10.3135 9.47733 10.3298 9.39997 10.3619L9.4765 10.5467Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON CLIP (ADJUNTAR ARCHIVO) -->\r\n<div *ngIf=\"icon == 'clip'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M12.8838 22.4668C12.2413 22.4637 11.6059 22.3314 11.0144 22.0778C10.423 21.8241 9.88742 21.4541 9.43882 20.9893C8.9936 20.5628 8.63595 20.0518 8.38635 19.4855C8.13675 18.9191 8.00009 18.3086 7.9842 17.6889C7.96831 17.0691 8.0735 16.4523 8.29374 15.8737C8.51399 15.2951 8.84497 14.766 9.26774 14.3168L14.9912 8.47744C15.2968 8.16911 15.6611 7.92657 16.0621 7.76448C16.4631 7.60238 16.8924 7.52409 17.3241 7.53434C17.7866 7.53593 18.2441 7.63056 18.67 7.81272C19.0959 7.99488 19.4817 8.26092 19.8048 8.59533C20.4479 9.22111 20.8209 10.078 20.8427 10.9799C20.8645 11.8819 20.5335 12.7562 19.9214 13.413L14.1669 19.2524C13.9826 19.4399 13.7632 19.5886 13.5216 19.6898C13.28 19.791 13.0209 19.8426 12.7594 19.8418C12.4768 19.8422 12.1971 19.7854 11.9366 19.6747C11.6762 19.564 11.4403 19.4017 11.243 19.1974C10.8485 18.8114 10.6207 18.2836 10.609 17.7288C10.5974 17.174 10.8028 16.637 11.1807 16.2345L16.492 10.8431C16.6432 10.7416 16.8247 10.6968 17.0051 10.7163C17.1856 10.7358 17.3535 10.8185 17.48 10.9501C17.6064 11.0816 17.6834 11.2537 17.6975 11.4365C17.7117 11.6193 17.6621 11.8014 17.5574 11.9512L12.2461 17.3426C12.1575 17.4504 12.1144 17.5891 12.1261 17.7288C12.1377 17.8684 12.2032 17.9979 12.3083 18.0892C12.4177 18.2006 12.5653 18.2653 12.7205 18.27C12.778 18.2708 12.8351 18.2601 12.8884 18.2385C12.9418 18.217 12.9905 18.1849 13.0315 18.1442L18.7783 12.3049C19.1009 11.9427 19.2695 11.4668 19.2477 10.98C19.2258 10.4932 19.0153 10.0347 18.6617 9.70347C18.3332 9.3588 17.8865 9.15448 17.4135 9.13255C16.9404 9.11062 16.4771 9.27275 16.1188 9.58558L10.372 15.3935C10.0925 15.6969 9.87521 16.0531 9.73248 16.4416C9.58976 16.8302 9.52447 17.2434 9.54037 17.6576C9.55627 18.0717 9.65305 18.4786 9.82513 18.8548C9.99721 19.231 10.2412 19.5691 10.5431 19.8497C10.8458 20.1668 11.208 20.4198 11.6086 20.5939C12.0091 20.768 12.44 20.8596 12.876 20.8635C13.2519 20.8666 13.6248 20.7946 13.9731 20.6516C14.3214 20.5087 14.6383 20.2976 14.9057 20.0304L20.6524 14.1911C20.7244 14.1178 20.81 14.0596 20.9043 14.0197C20.9985 13.9798 21.0996 13.9591 21.2018 13.9588C21.304 13.9584 21.4052 13.9784 21.4998 14.0176C21.5943 14.0568 21.6803 14.1144 21.7528 14.1871C21.8253 14.2599 21.8829 14.3464 21.9224 14.4416C21.9618 14.5369 21.9823 14.6391 21.9826 14.7424C21.983 14.8456 21.9632 14.948 21.9245 15.0435C21.8857 15.139 21.8287 15.2259 21.7567 15.2992L16.0099 21.1386C15.6019 21.5582 15.1154 21.8918 14.5787 22.1198C14.0421 22.3478 13.4659 22.4657 12.8838 22.4668Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.8838 22.4668C12.2413 22.4637 11.6059 22.3314 11.0144 22.0778C10.423 21.8241 9.88742 21.4541 9.43882 20.9893C8.9936 20.5628 8.63595 20.0518 8.38635 19.4855C8.13675 18.9191 8.00009 18.3086 7.9842 17.6889C7.96831 17.0691 8.0735 16.4523 8.29374 15.8737C8.51399 15.2951 8.84497 14.766 9.26774 14.3168L14.9912 8.47744C15.2968 8.16911 15.6611 7.92657 16.0621 7.76448C16.4631 7.60238 16.8924 7.52409 17.3241 7.53434C17.7866 7.53593 18.2441 7.63056 18.67 7.81272C19.0959 7.99488 19.4817 8.26092 19.8048 8.59533C20.4479 9.22111 20.8209 10.078 20.8427 10.9799C20.8645 11.8819 20.5335 12.7562 19.9214 13.413L14.1669 19.2524C13.9826 19.4399 13.7632 19.5886 13.5216 19.6898C13.28 19.791 13.0209 19.8426 12.7594 19.8418C12.4768 19.8422 12.1971 19.7854 11.9366 19.6747C11.6762 19.564 11.4403 19.4017 11.243 19.1974C10.8485 18.8114 10.6207 18.2836 10.609 17.7288C10.5974 17.174 10.8028 16.637 11.1807 16.2345L16.492 10.8431C16.6432 10.7416 16.8247 10.6968 17.0051 10.7163C17.1856 10.7358 17.3535 10.8185 17.48 10.9501C17.6064 11.0816 17.6834 11.2537 17.6975 11.4365C17.7117 11.6193 17.6621 11.8014 17.5574 11.9512L12.2461 17.3426C12.1575 17.4504 12.1144 17.5891 12.1261 17.7288C12.1377 17.8684 12.2032 17.9979 12.3083 18.0892C12.4177 18.2006 12.5653 18.2653 12.7205 18.27C12.778 18.2708 12.8351 18.2601 12.8884 18.2385C12.9418 18.217 12.9905 18.1849 13.0315 18.1442L18.7783 12.3049C19.1009 11.9427 19.2695 11.4668 19.2477 10.98C19.2258 10.4932 19.0153 10.0347 18.6617 9.70347C18.3332 9.3588 17.8865 9.15448 17.4135 9.13255C16.9404 9.11062 16.4771 9.27275 16.1188 9.58558L10.372 15.3935C10.0925 15.6969 9.87521 16.0531 9.73248 16.4416C9.58976 16.8302 9.52447 17.2434 9.54037 17.6576C9.55627 18.0717 9.65305 18.4786 9.82513 18.8548C9.99721 19.231 10.2412 19.5691 10.5431 19.8497C10.8458 20.1668 11.208 20.4198 11.6086 20.5939C12.0091 20.768 12.44 20.8596 12.876 20.8635C13.2519 20.8666 13.6248 20.7946 13.9731 20.6516C14.3214 20.5087 14.6383 20.2976 14.9057 20.0304L20.6524 14.1911C20.7244 14.1178 20.81 14.0596 20.9043 14.0197C20.9985 13.9798 21.0996 13.9591 21.2018 13.9588C21.304 13.9584 21.4052 13.9784 21.4998 14.0176C21.5943 14.0568 21.6803 14.1144 21.7528 14.1871C21.8253 14.2599 21.8829 14.3464 21.9224 14.4416C21.9618 14.5369 21.9823 14.6391 21.9826 14.7424C21.983 14.8456 21.9632 14.948 21.9245 15.0435C21.8857 15.139 21.8287 15.2259 21.7567 15.2992L16.0099 21.1386C15.6019 21.5582 15.1154 21.8918 14.5787 22.1198C14.0421 22.3478 13.4659 22.4657 12.8838 22.4668Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON LAPIZ (EDITAR) -->\r\n<div *ngIf=\"icon == 'pencil'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.1943 8.64308C18.0517 7.78564 19.4419 7.78564 20.2994 8.64308L21.3569 9.70064C22.2144 10.5581 22.2144 11.9483 21.3569 12.8057L12.8964 21.2662C12.7893 21.3733 12.6504 21.4428 12.5005 21.4642L8.799 21.993C8.58089 22.0241 8.36083 21.9508 8.20503 21.7949C8.04924 21.6391 7.97588 21.4191 8.00704 21.201L8.53582 17.4995C8.55724 17.3496 8.62672 17.2106 8.73381 17.1035L17.1943 8.64308ZM16.6317 11.1856L9.88876 17.9285L9.52497 20.475L12.0715 20.1112L18.8145 13.3683L16.6317 11.1856ZM19.8044 12.3783L17.6217 10.1956L18.1842 9.63303C18.495 9.32232 18.9987 9.32232 19.3094 9.63303L20.367 10.6906C20.6777 11.0013 20.6777 11.505 20.367 11.8158L19.8044 12.3783Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.1943 8.64308C18.0517 7.78564 19.4419 7.78564 20.2994 8.64308L21.3569 9.70064C22.2144 10.5581 22.2144 11.9483 21.3569 12.8057L12.8964 21.2662C12.7893 21.3733 12.6504 21.4428 12.5005 21.4642L8.799 21.993C8.58089 22.0241 8.36083 21.9508 8.20503 21.7949C8.04924 21.6391 7.97588 21.4191 8.00704 21.201L8.53582 17.4995C8.55724 17.3496 8.62672 17.2106 8.73381 17.1035L17.1943 8.64308ZM16.6317 11.1856L9.88876 17.9285L9.52497 20.475L12.0715 20.1112L18.8145 13.3683L16.6317 11.1856ZM19.8044 12.3783L17.6217 10.1956L18.1842 9.63303C18.495 9.32232 18.9987 9.32232 19.3094 9.63303L20.367 10.6906C20.6777 11.0013 20.6777 11.505 20.367 11.8158L19.8044 12.3783Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON BASURERO (ELIMINAR) -->\r\n<div *ngIf=\"icon == 'trash'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M21.125 9.5C21.4701 9.5001 21.75 9.77988 21.75 10.125C21.75 10.4701 21.4701 10.7499 21.125 10.75H20.5V19.875C20.5 21.5981 19.098 22.9999 17.375 23H12.375C10.6519 23 9.25 21.5981 9.25 19.875V10.75H8.625C8.27982 10.75 8 10.4702 8 10.125C8 9.77981 8.27982 9.5 8.625 9.5H21.125ZM10.5 19.875C10.5 20.9089 11.3411 21.75 12.375 21.75H17.375C18.4088 21.7499 19.25 20.9088 19.25 19.875V10.75H10.5V19.875ZM12.375 13.25C12.7202 13.25 13 13.5298 13 13.875V18.625C13 18.9702 12.7202 19.25 12.375 19.25C12.0298 19.25 11.75 18.9702 11.75 18.625V13.875C11.75 13.5298 12.0298 13.25 12.375 13.25ZM14.875 13.25C15.2202 13.25 15.5 13.5298 15.5 13.875V18.625C15.5 18.9702 15.2202 19.25 14.875 19.25C14.5298 19.25 14.25 18.9702 14.25 18.625V13.875C14.25 13.5298 14.5298 13.25 14.875 13.25ZM17.375 13.25C17.7202 13.25 18 13.5298 18 13.875V18.625C18 18.9702 17.7202 19.25 17.375 19.25C17.0298 19.25 16.75 18.9702 16.75 18.625V13.875C16.75 13.5298 17.0298 13.25 17.375 13.25ZM16.125 7C16.4702 7.00002 16.75 7.27983 16.75 7.625C16.75 7.97017 16.4702 8.24998 16.125 8.25H13.625C13.2798 8.25 13 7.97019 13 7.625C13 7.27981 13.2798 7 13.625 7H16.125Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.125 9.5C21.4701 9.5001 21.75 9.77988 21.75 10.125C21.75 10.4701 21.4701 10.7499 21.125 10.75H20.5V19.875C20.5 21.5981 19.098 22.9999 17.375 23H12.375C10.6519 23 9.25 21.5981 9.25 19.875V10.75H8.625C8.27982 10.75 8 10.4702 8 10.125C8 9.77981 8.27982 9.5 8.625 9.5H21.125ZM10.5 19.875C10.5 20.9089 11.3411 21.75 12.375 21.75H17.375C18.4088 21.7499 19.25 20.9088 19.25 19.875V10.75H10.5V19.875ZM12.375 13.25C12.7202 13.25 13 13.5298 13 13.875V18.625C13 18.9702 12.7202 19.25 12.375 19.25C12.0298 19.25 11.75 18.9702 11.75 18.625V13.875C11.75 13.5298 12.0298 13.25 12.375 13.25ZM14.875 13.25C15.2202 13.25 15.5 13.5298 15.5 13.875V18.625C15.5 18.9702 15.2202 19.25 14.875 19.25C14.5298 19.25 14.25 18.9702 14.25 18.625V13.875C14.25 13.5298 14.5298 13.25 14.875 13.25ZM17.375 13.25C17.7202 13.25 18 13.5298 18 13.875V18.625C18 18.9702 17.7202 19.25 17.375 19.25C17.0298 19.25 16.75 18.9702 16.75 18.625V13.875C16.75 13.5298 17.0298 13.25 17.375 13.25ZM16.125 7C16.4702 7.00002 16.75 7.27983 16.75 7.625C16.75 7.97017 16.4702 8.24998 16.125 8.25H13.625C13.2798 8.25 13 7.97019 13 7.625C13 7.27981 13.2798 7 13.625 7H16.125Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON DESCARGAR ARCHIVO -->\r\n<div *ngIf=\"icon == 'download'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M21.7951 13.6499C22.229 13.6475 22.5028 13.9492 22.4943 14.4536C22.4798 15.3006 22.538 16.1597 22.4084 16.9897C22.1332 18.7472 20.6124 19.9834 18.838 19.9956C17.5497 20.0041 16.2601 19.9968 14.9718 19.9956L14.9709 19.9966C13.7626 19.9966 12.5541 19.9978 11.3459 19.9966C9.08308 19.9929 7.50964 18.4144 7.50601 16.1489C7.50601 15.573 7.50238 14.9983 7.50601 14.4223C7.50964 13.9435 7.78238 13.6505 8.21011 13.6528C8.61238 13.654 8.88797 13.9551 8.89175 14.4155C8.8966 15.0413 8.88863 15.6674 8.89468 16.2944C8.90801 17.6131 9.86693 18.6005 11.1818 18.6079C13.7292 18.6225 16.2769 18.621 18.8244 18.6089C20.1223 18.6028 21.087 17.6211 21.1066 16.3208C21.1151 15.695 21.1069 15.0689 21.1105 14.4419C21.1129 13.9607 21.3832 13.6525 21.7951 13.6499ZM14.8517 10.0161C15.1365 9.94942 15.4613 10.0811 15.591 10.3569C15.6564 10.4955 15.6747 10.667 15.6759 10.8237C15.682 12.2176 15.6789 13.6115 15.6789 15.0054V15.3862C15.7892 15.3145 15.8501 15.2874 15.8937 15.2436C16.3153 14.8245 16.7287 14.3982 17.1564 13.9839C17.5733 13.5791 18.1405 13.6897 18.3332 14.2026C18.4373 14.4808 18.3542 14.7272 18.1593 14.9253C17.2746 15.8222 16.3862 16.7161 15.4894 17.602C15.201 17.8864 14.7979 17.884 14.5119 17.602C13.6235 16.7233 12.7399 15.8367 11.8625 14.9458C11.5513 14.6298 11.5492 14.2311 11.8302 13.9468C12.115 13.659 12.5055 13.6567 12.8253 13.9653C13.2459 14.3712 13.6533 14.7904 14.0666 15.2036C14.1211 15.257 14.1813 15.3052 14.2394 15.355C14.2672 15.3441 14.2948 15.3336 14.3214 15.3227H14.3244V15.0034C14.3244 13.5692 14.3217 12.1349 14.3253 10.7007C14.3254 10.3483 14.5342 10.0914 14.8517 10.0161Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.7951 13.6499C22.229 13.6475 22.5028 13.9492 22.4943 14.4536C22.4798 15.3006 22.538 16.1597 22.4084 16.9897C22.1332 18.7472 20.6124 19.9834 18.838 19.9956C17.5497 20.0041 16.2601 19.9968 14.9718 19.9956L14.9709 19.9966C13.7626 19.9966 12.5541 19.9978 11.3459 19.9966C9.08308 19.9929 7.50964 18.4144 7.50601 16.1489C7.50601 15.573 7.50238 14.9983 7.50601 14.4223C7.50964 13.9435 7.78238 13.6505 8.21011 13.6528C8.61238 13.654 8.88798 13.9551 8.89175 14.4155C8.8966 15.0413 8.88863 15.6674 8.89468 16.2944C8.90801 17.6131 9.86693 18.6005 11.1818 18.6079C13.7292 18.6225 16.2769 18.621 18.8244 18.6089C20.1223 18.6028 21.087 17.6211 21.1066 16.3208C21.1151 15.695 21.1069 15.0689 21.1105 14.4419C21.1129 13.9607 21.3832 13.6525 21.7951 13.6499ZM14.8517 10.0161C15.1365 9.94942 15.4613 10.0811 15.591 10.3569C15.6564 10.4955 15.6747 10.667 15.6759 10.8237C15.682 12.2176 15.6789 13.6115 15.6789 15.0054V15.3862C15.7892 15.3145 15.8501 15.2874 15.8937 15.2436C16.3153 14.8245 16.7287 14.3982 17.1564 13.9839C17.5733 13.5791 18.1405 13.6897 18.3332 14.2026C18.4373 14.4808 18.3542 14.7272 18.1593 14.9253C17.2746 15.8222 16.3862 16.7161 15.4894 17.602C15.201 17.8864 14.7979 17.884 14.5119 17.602C13.6235 16.7233 12.7399 15.8367 11.8625 14.9458C11.5513 14.6298 11.5492 14.2311 11.8302 13.9468C12.115 13.659 12.5055 13.6567 12.8253 13.9653C13.2459 14.3712 13.6533 14.7904 14.0666 15.2036C14.1211 15.257 14.1813 15.3052 14.2394 15.355C14.2672 15.3441 14.2948 15.3336 14.3214 15.3227H14.3244V15.0034C14.3244 13.5692 14.3217 12.1349 14.3253 10.7007C14.3254 10.3483 14.5342 10.0914 14.8517 10.0161Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON CARGAR O SUBIR ARCHIVO -->\r\n<div *ngIf=\"icon == 'upload'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M21.8 13.8095C22.2341 13.8072 22.5086 14.1009 22.5002 14.5927C22.4856 15.4188 22.543 16.257 22.4132 17.0664C22.1378 18.7798 20.6163 19.9852 18.841 19.997C17.5518 20.0053 16.261 19.9982 14.9718 19.997L14.9709 19.998C13.7619 19.998 12.5529 19.9992 11.3439 19.998C9.07976 19.9945 7.5058 18.4551 7.50211 16.2461C7.50211 15.6843 7.49847 15.1232 7.50211 14.5615C7.50589 14.0949 7.77835 13.8092 8.20621 13.8115C8.60874 13.8127 8.88408 14.1067 8.88785 14.5556C8.8927 15.1658 8.8857 15.7763 8.89175 16.3877C8.90509 17.6734 9.86413 18.6363 11.1798 18.6435C13.7289 18.6577 16.2782 18.6563 18.8273 18.6445C20.1261 18.6386 21.0921 17.6811 21.1115 16.4131C21.12 15.8028 21.1108 15.1925 21.1144 14.581C21.1168 14.1117 21.3877 13.8119 21.8 13.8095ZM14.5128 10.207C14.8015 9.92988 15.2042 9.93212 15.4904 10.207C16.3793 11.0638 17.2628 11.9282 18.1408 12.7968C18.4524 13.1049 18.4551 13.4932 18.174 13.7705C17.889 14.0513 17.498 14.0539 17.1779 13.7529C16.7571 13.3571 16.3502 12.9478 15.9367 12.5449C15.8821 12.4928 15.821 12.447 15.7628 12.3984C15.735 12.409 15.7074 12.419 15.6808 12.4297H15.6779V12.7412C15.6779 14.1395 15.6805 15.5381 15.6769 16.9365C15.6768 17.28 15.4681 17.53 15.1505 17.6035C14.8655 17.6687 14.5401 17.5405 14.4103 17.2715C14.3449 17.1364 14.3266 16.9692 14.3253 16.8164C14.3193 15.4571 14.3224 14.0975 14.3224 12.7382V12.3672C14.2123 12.4369 14.1512 12.4633 14.1076 12.5058C13.6855 12.9147 13.272 13.3312 12.8439 13.7353C12.4267 14.13 11.859 14.0216 11.6662 13.5215C11.5621 13.2502 11.6458 13.0095 11.841 12.8164C12.7262 11.9418 13.6155 11.0709 14.5128 10.207Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.8 13.8095C22.2341 13.8072 22.5086 14.1009 22.5002 14.5927C22.4856 15.4188 22.543 16.257 22.4132 17.0664C22.1378 18.7798 20.6163 19.9852 18.841 19.997C17.5518 20.0053 16.261 19.9982 14.9718 19.997L14.9709 19.998C13.7619 19.998 12.5529 19.9992 11.3439 19.998C9.07976 19.9945 7.5058 18.4551 7.50211 16.2461C7.50211 15.6843 7.49847 15.1232 7.50211 14.5615C7.50589 14.0949 7.77835 13.8092 8.20621 13.8115C8.60874 13.8127 8.88408 14.1067 8.88785 14.5556C8.8927 15.1658 8.8857 15.7763 8.89175 16.3877C8.90509 17.6734 9.86413 18.6363 11.1798 18.6435C13.7289 18.6577 16.2782 18.6563 18.8273 18.6445C20.1261 18.6386 21.0921 17.6811 21.1115 16.4131C21.12 15.8028 21.1108 15.1925 21.1144 14.581C21.1168 14.1117 21.3877 13.8119 21.8 13.8095ZM14.5128 10.207C14.8015 9.92988 15.2042 9.93212 15.4904 10.207C16.3793 11.0638 17.2628 11.9282 18.1408 12.7968C18.4524 13.1049 18.4551 13.4932 18.174 13.7705C17.889 14.0513 17.498 14.0539 17.1779 13.7529C16.7571 13.3571 16.3502 12.9478 15.9367 12.5449C15.8821 12.4928 15.821 12.447 15.7628 12.3984C15.735 12.409 15.7074 12.419 15.6808 12.4297H15.6779V12.7412C15.6779 14.1395 15.6805 15.5381 15.6769 16.9365C15.6768 17.28 15.4681 17.53 15.1505 17.6035C14.8655 17.6687 14.5401 17.5405 14.4103 17.2715C14.3449 17.1364 14.3266 16.9692 14.3253 16.8164C14.3193 15.4571 14.3224 14.0975 14.3224 12.7382V12.3672C14.2123 12.4369 14.1512 12.4633 14.1076 12.5058C13.6855 12.9147 13.272 13.3312 12.8439 13.7353C12.4267 14.13 11.859 14.0216 11.6662 13.5215C11.5621 13.2502 11.6458 13.0095 11.841 12.8164C12.7262 11.9418 13.6155 11.0709 14.5128 10.207Z\"/>\r\n </svg>\r\n</div>\r\n\r\n\r\n<!-- ICON GUARDAR (FALTA REVISI\u00D3N DE FIGMA) -->\r\n<!-- <div *ngIf=\"icon == 'save'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M11.2558 21.5116V22H12.2326V21.5116H11.2558ZM17.7674 21.5116V22H18.7442V21.5116H17.7674ZM16.9535 12.2326C17.2232 12.2326 17.4419 12.0139 17.4419 11.7442C17.4419 11.4745 17.2232 11.2558 16.9535 11.2558V12.2326ZM13.0465 11.2558C12.7768 11.2558 12.5581 11.4745 12.5581 11.7442C12.5581 12.0139 12.7768 12.2326 13.0465 12.2326V11.2558ZM21.0233 13.1848V18.907H22V13.1848H21.0233ZM18.907 21.0233H11.093V22H18.907V21.0233ZM8.97674 18.907V11.093H8V18.907H8.97674ZM11.093 8.97674H16.8152V8H11.093V8.97674ZM18.3116 9.59659L20.4034 11.6884L21.0941 10.9977L19.0022 8.90592L18.3116 9.59659ZM16.8152 8.97674C17.3764 8.97674 17.9147 9.19971 18.3116 9.59659L19.0022 8.90592C18.4223 8.32587 17.6355 8 16.8152 8V8.97674ZM11.093 21.0233C9.92423 21.0233 8.97674 20.0757 8.97674 18.907H8C8 20.6152 9.3848 22 11.093 22V21.0233ZM21.0233 18.907C21.0233 20.0757 20.0757 21.0233 18.907 21.0233V22C20.6152 22 22 20.6152 22 18.907H21.0233ZM22 13.1848C22 12.3645 21.6742 11.5778 21.0941 10.9977L20.4034 11.6884C20.8003 12.0853 21.0233 12.6236 21.0233 13.1848H22ZM8.97674 11.093C8.97674 9.92423 9.92424 8.97674 11.093 8.97674V8C9.3848 8 8 9.3848 8 11.093H8.97674ZM12.2326 21.5116V17.6047H11.2558V21.5116H12.2326ZM13.0465 16.7907H16.9535V15.814H13.0465V16.7907ZM17.7674 17.6047V21.5116H18.7442V17.6047H17.7674ZM16.9535 16.7907C17.4031 16.7907 17.7674 17.1551 17.7674 17.6047H18.7442C18.7442 16.6157 17.9425 15.814 16.9535 15.814V16.7907ZM12.2326 17.6047C12.2326 17.1551 12.597 16.7907 13.0465 16.7907V15.814C12.0575 15.814 11.2558 16.6157 11.2558 17.6047H12.2326ZM16.9535 11.2558H13.0465V12.2326H16.9535V11.2558Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.6569 9.25125L19.0022 8.90592M19.0022 8.90592L21.0941 10.9977M19.0022 8.90592L18.3116 9.59659M19.0022 8.90592C18.4223 8.32587 17.6355 8 16.8152 8M20.7487 11.3431L20.4034 11.6884M20.4034 11.6884L18.3116 9.59659M20.4034 11.6884L21.0941 10.9977M20.4034 11.6884C20.8003 12.0853 21.0233 12.6236 21.0233 13.1848M11.2558 21.5116V22H12.2326V21.5116M11.2558 21.5116H12.2326M11.2558 21.5116V17.6047M12.2326 21.5116V17.6047M17.7674 21.5116V22H18.7442V21.5116M17.7674 21.5116H18.7442M17.7674 21.5116V17.6047M18.7442 21.5116V17.6047M16.9535 12.2326C17.2232 12.2326 17.4419 12.0139 17.4419 11.7442C17.4419 11.4745 17.2232 11.2558 16.9535 11.2558M16.9535 12.2326V11.2558M16.9535 12.2326H13.0465M16.9535 11.2558H13.0465M13.0465 11.2558C12.7768 11.2558 12.5581 11.4745 12.5581 11.7442C12.5581 12.0139 12.7768 12.2326 13.0465 12.2326M13.0465 11.2558V12.2326M21.0233 13.1848V18.907M21.0233 13.1848H22M21.0233 18.907H22M21.0233 18.907C21.0233 20.0757 20.0757 21.0233 18.907 21.0233M22 18.907V13.1848M22 18.907C22 20.6152 20.6152 22 18.907 22M22 13.1848C22 12.3645 21.6742 11.5778 21.0941 10.9977M18.907 21.0233H11.093M18.907 21.0233V22M11.093 21.0233V22M11.093 21.0233C9.92423 21.0233 8.97674 20.0757 8.97674 18.907M11.093 22H18.907M11.093 22C9.3848 22 8 20.6152 8 18.907M8.97674 18.907V11.093M8.97674 18.907H8M8.97674 11.093H8M8.97674 11.093C8.97674 9.92423 9.92424 8.97674 11.093 8.97674M8 11.093V18.907M8 11.093C8 9.3848 9.3848 8 11.093 8M11.093 8.97674H16.8152M11.093 8.97674V8M16.8152 8.97674V8M16.8152 8.97674C17.3764 8.97674 17.9147 9.19971 18.3116 9.59659M16.8152 8H11.093M12.2326 17.6047H11.2558M12.2326 17.6047C12.2326 17.1551 12.597 16.7907 13.0465 16.7907M11.2558 17.6047C11.2558 16.6157 12.0575 15.814 13.0465 15.814M13.0465 16.7907H16.9535M13.0465 16.7907V15.814M16.9535 16.7907V15.814M16.9535 16.7907C17.4031 16.7907 17.7674 17.1551 17.7674 17.6047M16.9535 15.814H13.0465M16.9535 15.814C17.9425 15.814 18.7442 16.6157 18.7442 17.6047M17.7674 17.6047H18.7442\" stroke=\"#224051\" stroke-width=\"0.2\" stroke-linecap=\"round\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M11.2558 21.5116V22H12.2326V21.5116H11.2558ZM17.7674 21.5116V22H18.7442V21.5116H17.7674ZM16.9535 12.2326C17.2232 12.2326 17.4419 12.0139 17.4419 11.7442C17.4419 11.4745 17.2232 11.2558 16.9535 11.2558V12.2326ZM13.0465 11.2558C12.7768 11.2558 12.5581 11.4745 12.5581 11.7442C12.5581 12.0139 12.7768 12.2326 13.0465 12.2326V11.2558ZM21.0233 13.1848V18.907H22V13.1848H21.0233ZM18.907 21.0233H11.093V22H18.907V21.0233ZM8.97674 18.907V11.093H8V18.907H8.97674ZM11.093 8.97674H16.8152V8H11.093V8.97674ZM18.3116 9.59659L20.4034 11.6884L21.0941 10.9977L19.0022 8.90592L18.3116 9.59659ZM16.8152 8.97674C17.3764 8.97674 17.9147 9.19971 18.3116 9.59659L19.0022 8.90592C18.4223 8.32587 17.6355 8 16.8152 8V8.97674ZM11.093 21.0233C9.92423 21.0233 8.97674 20.0757 8.97674 18.907H8C8 20.6152 9.3848 22 11.093 22V21.0233ZM21.0233 18.907C21.0233 20.0757 20.0757 21.0233 18.907 21.0233V22C20.6152 22 22 20.6152 22 18.907H21.0233ZM22 13.1848C22 12.3645 21.6742 11.5778 21.0941 10.9977L20.4034 11.6884C20.8003 12.0853 21.0233 12.6236 21.0233 13.1848H22ZM8.97674 11.093C8.97674 9.92423 9.92424 8.97674 11.093 8.97674V8C9.3848 8 8 9.3848 8 11.093H8.97674ZM12.2326 21.5116V17.6047H11.2558V21.5116H12.2326ZM13.0465 16.7907H16.9535V15.814H13.0465V16.7907ZM17.7674 17.6047V21.5116H18.7442V17.6047H17.7674ZM16.9535 16.7907C17.4031 16.7907 17.7674 17.1551 17.7674 17.6047H18.7442C18.7442 16.6157 17.9425 15.814 16.9535 15.814V16.7907ZM12.2326 17.6047C12.2326 17.1551 12.597 16.7907 13.0465 16.7907V15.814C12.0575 15.814 11.2558 16.6157 11.2558 17.6047H12.2326ZM16.9535 11.2558H13.0465V12.2326H16.9535V11.2558Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.6569 9.25125L19.0022 8.90592M19.0022 8.90592L21.0941 10.9977M19.0022 8.90592L18.3116 9.59659M19.0022 8.90592C18.4223 8.32587 17.6355 8 16.8152 8M20.7487 11.3431L20.4034 11.6884M20.4034 11.6884L18.3116 9.59659M20.4034 11.6884L21.0941 10.9977M20.4034 11.6884C20.8003 12.0853 21.0233 12.6236 21.0233 13.1848M11.2558 21.5116V22H12.2326V21.5116M11.2558 21.5116H12.2326M11.2558 21.5116V17.6047M12.2326 21.5116V17.6047M17.7674 21.5116V22H18.7442V21.5116M17.7674 21.5116H18.7442M17.7674 21.5116V17.6047M18.7442 21.5116V17.6047M16.9535 12.2326C17.2232 12.2326 17.4419 12.0139 17.4419 11.7442C17.4419 11.4745 17.2232 11.2558 16.9535 11.2558M16.9535 12.2326V11.2558M16.9535 12.2326H13.0465M16.9535 11.2558H13.0465M13.0465 11.2558C12.7768 11.2558 12.5581 11.4745 12.5581 11.7442C12.5581 12.0139 12.7768 12.2326 13.0465 12.2326M13.0465 11.2558V12.2326M21.0233 13.1848V18.907M21.0233 13.1848H22M21.0233 18.907H22M21.0233 18.907C21.0233 20.0757 20.0757 21.0233 18.907 21.0233M22 18.907V13.1848M22 18.907C22 20.6152 20.6152 22 18.907 22M22 13.1848C22 12.3645 21.6742 11.5778 21.0941 10.9977M18.907 21.0233H11.093M18.907 21.0233V22M11.093 21.0233V22M11.093 21.0233C9.92423 21.0233 8.97674 20.0757 8.97674 18.907M11.093 22H18.907M11.093 22C9.3848 22 8 20.6152 8 18.907M8.97674 18.907V11.093M8.97674 18.907H8M8.97674 11.093H8M8.97674 11.093C8.97674 9.92423 9.92424 8.97674 11.093 8.97674M8 11.093V18.907M8 11.093C8 9.3848 9.3848 8 11.093 8M11.093 8.97674H16.8152M11.093 8.97674V8M16.8152 8.97674V8M16.8152 8.97674C17.3764 8.97674 17.9147 9.19971 18.3116 9.59659M16.8152 8H11.093M12.2326 17.6047H11.2558M12.2326 17.6047C12.2326 17.1551 12.597 16.7907 13.0465 16.7907M11.2558 17.6047C11.2558 16.6157 12.0575 15.814 13.0465 15.814M13.0465 16.7907H16.9535M13.0465 16.7907V15.814M16.9535 16.7907V15.814M16.9535 16.7907C17.4031 16.7907 17.7674 17.1551 17.7674 17.6047M16.9535 15.814H13.0465M16.9535 15.814C17.9425 15.814 18.7442 16.6157 18.7442 17.6047M17.7674 17.6047H18.7442\" stroke=\"#224051\" stroke-width=\"0.2\" stroke-linecap=\"round\"/>\r\n </svg>\r\n</div> -->\r\n\r\n\r\n<!-- ICON CHECK CON BORDE REDONDO (FALTA REVISI\u00D3N DE FIGMA) -->\r\n<!-- <div *ngIf=\"icon == 'border-circle-check'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 7.00001C16.0507 6.99877 17.0914 7.20513 18.0622 7.60725C19.0329 8.00937 19.9147 8.5993 20.6568 9.34317C21.4007 10.0853 21.9906 10.9671 22.3927 11.9378C22.7948 12.9086 23.0012 13.9492 23 15C23.0012 16.0507 22.7949 17.0914 22.3927 18.0622C21.9906 19.0329 21.4007 19.9147 20.6568 20.6568C19.9147 21.4007 19.0329 21.9906 18.0622 22.3927C17.0914 22.7949 16.0507 23.0012 15 23C13.9492 23.0012 12.9086 22.7948 11.9378 22.3927C10.9671 21.9906 10.0853 21.4007 9.3432 20.6568C8.59932 19.9147 8.00937 19.0329 7.60725 18.0622C7.20513 17.0914 6.99877 16.0507 7.00001 15C6.99879 13.9492 7.20517 12.9086 7.60728 11.9378C8.0094 10.9671 8.59933 10.0853 9.3432 9.3432C10.0853 8.59933 10.9671 8.0094 11.9378 7.60728C12.9086 7.20516 13.9492 6.99879 15 7.00001ZM17.5055 8.95107C16.7115 8.62218 15.8604 8.45344 15.0009 8.45455H14.9991C14.1396 8.45345 13.2885 8.6222 12.4945 8.9511C11.7005 9.28 10.9793 9.76256 10.3724 10.371L10.371 10.3724C9.76256 10.9793 9.28 11.7005 8.9511 12.4945C8.6222 13.2885 8.45345 14.1396 8.45455 14.9991V15.0009C8.45344 15.8604 8.62218 16.7115 8.95107 17.5055C9.27997 18.2995 9.76253 19.0207 10.371 19.6276L10.3724 19.6289C10.9793 20.2374 11.7005 20.72 12.4945 21.0489C13.2885 21.3778 14.1396 21.5465 14.9991 21.5454H15.0009C15.8604 21.5466 16.7115 21.3778 17.5055 21.0489C18.2995 20.72 19.0207 20.2375 19.6276 19.629L19.629 19.6276C20.2375 19.0207 20.72 18.2995 21.0489 17.5055C21.3778 16.7115 21.5466 15.8604 21.5454 15.0009V14.9991C21.5465 14.1396 21.3778 13.2885 21.0489 12.4945C20.72 11.7005 20.2374 10.9793 19.6289 10.3724L19.6276 10.371C19.0207 9.76253 18.2995 9.27997 17.5055 8.95107Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.1508 12.3041C19.4348 12.5881 19.4348 13.0486 19.1508 13.3326L14.7871 17.6962C14.5031 17.9802 14.0426 17.9802 13.7586 17.6962L11.5768 15.5144C11.2928 15.2304 11.2928 14.7699 11.5768 14.4859C11.8608 14.2019 12.3213 14.2019 12.6053 14.4859L14.2729 16.1535L18.1222 12.3041C18.4062 12.0201 18.8667 12.0201 19.1508 12.3041Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 7.00001C16.0507 6.99877 17.0914 7.20513 18.0622 7.60725C19.0329 8.00937 19.9147 8.5993 20.6568 9.34317C21.4007 10.0853 21.9906 10.9671 22.3927 11.9378C22.7948 12.9086 23.0012 13.9492 23 15C23.0012 16.0507 22.7949 17.0914 22.3927 18.0622C21.9906 19.0329 21.4007 19.9147 20.6568 20.6568C19.9147 21.4007 19.0329 21.9906 18.0622 22.3927C17.0914 22.7949 16.0507 23.0012 15 23C13.9492 23.0012 12.9086 22.7948 11.9378 22.3927C10.9671 21.9906 10.0853 21.4007 9.3432 20.6568C8.59932 19.9147 8.00937 19.0329 7.60725 18.0622C7.20513 17.0914 6.99877 16.0507 7.00001 15C6.99879 13.9492 7.20517 12.9086 7.60728 11.9378C8.0094 10.9671 8.59933 10.0853 9.3432 9.3432C10.0853 8.59933 10.9671 8.0094 11.9378 7.60728C12.9086 7.20516 13.9492 6.99879 15 7.00001ZM17.5055 8.95107C16.7115 8.62218 15.8604 8.45344 15.0009 8.45455H14.9991C14.1396 8.45345 13.2885 8.6222 12.4945 8.9511C11.7005 9.28 10.9793 9.76256 10.3724 10.371L10.371 10.3724C9.76256 10.9793 9.28 11.7005 8.9511 12.4945C8.6222 13.2885 8.45345 14.1396 8.45455 14.9991V15.0009C8.45344 15.8604 8.62218 16.7115 8.95107 17.5055C9.27997 18.2995 9.76253 19.0207 10.371 19.6276L10.3724 19.6289C10.9793 20.2374 11.7005 20.72 12.4945 21.0489C13.2885 21.3778 14.1396 21.5465 14.9991 21.5454H15.0009C15.8604 21.5466 16.7115 21.3778 17.5055 21.0489C18.2995 20.72 19.0207 20.2375 19.6276 19.629L19.629 19.6276C20.2375 19.0207 20.72 18.2995 21.0489 17.5055C21.3778 16.7115 21.5466 15.8604 21.5454 15.0009V14.9991C21.5465 14.1396 21.3778 13.2885 21.0489 12.4945C20.72 11.7005 20.2374 10.9793 19.6289 10.3724L19.6276 10.371C19.0207 9.76253 18.2995 9.27997 17.5055 8.95107Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.1507 12.3041C19.4348 12.5881 19.4348 13.0486 19.1507 13.3326L14.7871 17.6962C14.5031 17.9802 14.0426 17.9802 13.7586 17.6962L11.5768 15.5144C11.2928 15.2304 11.2928 14.7699 11.5768 14.4859C11.8608 14.2019 12.3213 14.2019 12.6053 14.4859L14.2729 16.1535L18.1222 12.3041C18.4062 12.0201 18.8667 12.0201 19.1507 12.3041Z\"/>\r\n </svg>\r\n</div> -->\r\n\r\n\r\n<!-- ICON RELOJ -->\r\n<div *ngIf=\"icon == 'clock'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" width=\"30\" height=\"30\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M15 7C19.4115 7 23 10.5885 23 15C23 19.4115 19.4115 23 15 23C10.5885 23 7 19.4115 7 15C7 10.5885 10.5885 7 15 7ZM15 8.23926C11.2727 8.23926 8.23926 11.2727 8.23926 15C8.23926 18.7273 11.2727 21.7607 15 21.7607C18.7273 21.7607 21.7607 18.7273 21.7607 15C21.7607 11.2727 18.728 8.23926 15 8.23926ZM15 10.7119C15.3425 10.712 15.619 10.9886 15.6191 11.3311V14.7393L17.8506 16.4131C18.124 16.6182 18.1799 17.0061 17.9746 17.2793C17.8531 17.4429 17.6665 17.5283 17.4775 17.5283C17.3481 17.5283 17.2179 17.4879 17.1064 17.4043L14.6279 15.5449C14.472 15.4285 14.38 15.2448 14.3799 15.0498V11.3311C14.3801 10.9885 14.6574 10.7119 15 10.7119Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 10.7119L15.0001 10.5119H15V10.7119ZM15.6191 11.3311H15.8191V11.3309L15.6191 11.3311ZM15.6191 14.7393H15.4191V14.8392L15.4991 14.8992L15.6191 14.7393ZM17.8506 16.4131L17.7306 16.5731L17.7306 16.5731L17.8506 16.4131ZM17.9746 17.2793L17.8147 17.1591L17.814 17.1601L17.9746 17.2793ZM17.4775 17.5283L17.4774 17.7283H17.4775V17.5283ZM17.1064 17.4043L16.9864 17.5643L16.9864 17.5643L17.1064 17.4043ZM14.6279 15.5449L14.748 15.3849L14.7476 15.3847L14.6279 15.5449ZM14.3799 15.0498H14.1799V15.0499L14.3799 15.0498ZM14.3799 11.3311L14.1799 11.3309V11.3311H14.3799ZM15 7V7.2C19.301 7.2 22.8 10.699 22.8 15H23H23.2C23.2 10.4781 19.5219 6.8 15 6.8V7ZM23 15H22.8C22.8 19.301 19.301 22.8 15 22.8V23V23.2C19.5219 23.2 23.2 19.5219 23.2 15H23ZM15 23V22.8C10.699 22.8 7.2 19.301 7.2 15H7H6.8C6.8 19.5219 10.4781 23.2 15 23.2V23ZM7 15H7.2C7.2 10.699 10.699 7.2 15 7.2V7V6.8C10.4781 6.8 6.8 10.4781 6.8 15H7ZM15 8.23926V8.03926C11.1622 8.03926 8.03926 11.1622 8.03926 15H8.23926H8.43926C8.43926 11.3831 11.3831 8.43926 15 8.43926V8.23926ZM8.23926 15H8.03926C8.03926 18.8378 11.1622 21.9607 15 21.9607V21.7607V21.5607C11.3831 21.5607 8.43926 18.6169 8.43926 15H8.23926ZM15 21.7607V21.9607C18.8378 21.9607 21.9607 18.8378 21.9607 15H21.7607H21.5607C21.5607 18.6169 18.6169 21.5607 15 21.5607V21.7607ZM21.7607 15H21.9607C21.9607 11.1622 18.8384 8.03926 15 8.03926V8.23926V8.43926C18.6175 8.43926 21.5607 11.3831 21.5607 15H21.7607ZM15 10.7119L14.9999 10.9119C15.232 10.912 15.419 11.0991 15.4191 11.3312L15.6191 11.3311L15.8191 11.3309C15.8189 10.8782 15.453 10.5121 15.0001 10.5119L15 10.7119ZM15.6191 11.3311H15.4191V14.7393H15.6191H15.8191V11.3311H15.6191ZM15.6191 14.7393L15.4991 14.8992L17.7306 16.5731L17.8506 16.4131L17.9706 16.2531L15.7392 14.5793L15.6191 14.7393ZM17.8506 16.4131L17.7306 16.5731C17.9159 16.7121 17.9534 16.9747 17.8147 17.1591L17.9746 17.2793L18.1345 17.3995C18.4064 17.0376 18.3321 16.5243 17.9706 16.2531L17.8506 16.4131ZM17.9746 17.2793L17.814 17.1601C17.7322 17.2702 17.6066 17.3283 17.4775 17.3283V17.5283V17.7283C17.7265 17.7283 17.974 17.6156 18.1352 17.3985L17.9746 17.2793ZM17.4775 17.5283L17.4776 17.3283C17.39 17.3283 17.3022 17.3011 17.2265 17.2443L17.1064 17.4043L16.9864 17.5643C17.1336 17.6747 17.3063 17.7282 17.4774 17.7283L17.4775 17.5283ZM17.1064 17.4043L17.2265 17.2443L14.748 15.3849L14.6279 15.5449L14.5079 15.7049L16.9864 17.5643L17.1064 17.4043ZM14.6279 15.5449L14.7476 15.3847C14.6423 15.3061 14.58 15.1818 14.5799 15.0497L14.3799 15.0498L14.1799 15.0499C14.18 15.3078 14.3016 15.5509 14.5083 15.7052L14.6279 15.5449ZM14.3799 15.0498H14.5799V11.3311H14.3799H14.1799V15.0498H14.3799ZM14.3799 11.3311L14.5799 11.3312C14.58 11.0993 14.7676 10.9119 15 10.9119V10.7119V10.5119C14.5473 10.5119 14.1801 10.8777 14.1799 11.3309L14.3799 11.3311Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" width=\"30\" height=\"30\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 7C19.4115 7 23 10.5885 23 15C23 19.4115 19.4115 23 15 23C10.5885 23 7 19.4115 7 15C7 10.5885 10.5885 7 15 7ZM15 8.23926C11.2727 8.23926 8.23926 11.2727 8.23926 15C8.23926 18.7273 11.2727 21.7607 15 21.7607C18.7273 21.7607 21.7607 18.7273 21.7607 15C21.7607 11.2727 18.728 8.23926 15 8.23926ZM15 10.7119C15.3425 10.712 15.619 10.9886 15.6191 11.3311V14.7393L17.8506 16.4131C18.124 16.6182 18.1799 17.0061 17.9746 17.2793C17.8531 17.4429 17.6665 17.5283 17.4775 17.5283C17.3481 17.5283 17.2179 17.4879 17.1064 17.4043L14.6279 15.5449C14.472 15.4285 14.38 15.2448 14.3799 15.0498V11.3311C14.3801 10.9885 14.6574 10.7119 15 10.7119Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 10.7119L15.0001 10.5119H15V10.7119ZM15.6191 11.3311H15.8191V11.3309L15.6191 11.3311ZM15.6191 14.7393H15.4191V14.8392L15.4991 14.8992L15.6191 14.7393ZM17.8506 16.4131L17.7306 16.5731L17.7306 16.5731L17.8506 16.4131ZM17.9746 17.2793L17.8147 17.1591L17.814 17.1601L17.9746 17.2793ZM17.4775 17.5283L17.4774 17.7283H17.4775V17.5283ZM17.1064 17.4043L16.9864 17.5643L16.9864 17.5643L17.1064 17.4043ZM14.6279 15.5449L14.748 15.3849L14.7476 15.3847L14.6279 15.5449ZM14.3799 15.0498H14.1799V15.0499L14.3799 15.0498ZM14.3799 11.3311L14.1799 11.3309V11.3311H14.3799ZM15 7V7.2C19.301 7.2 22.8 10.699 22.8 15H23H23.2C23.2 10.4781 19.5219 6.8 15 6.8V7ZM23 15H22.8C22.8 19.301 19.301 22.8 15 22.8V23V23.2C19.5219 23.2 23.2 19.5219 23.2 15H23ZM15 23V22.8C10.699 22.8 7.2 19.301 7.2 15H7H6.8C6.8 19.5219 10.4781 23.2 15 23.2V23ZM7 15H7.2C7.2 10.699 10.699 7.2 15 7.2V7V6.8C10.4781 6.8 6.8 10.4781 6.8 15H7ZM15 8.23926V8.03926C11.1622 8.03926 8.03926 11.1622 8.03926 15H8.23926H8.43926C8.43926 11.3831 11.3831 8.43926 15 8.43926V8.23926ZM8.23926 15H8.03926C8.03926 18.8378 11.1622 21.9607 15 21.9607V21.7607V21.5607C11.3831 21.5607 8.43926 18.6169 8.43926 15H8.23926ZM15 21.7607V21.9607C18.8378 21.9607 21.9607 18.8378 21.9607 15H21.7607H21.5607C21.5607 18.6169 18.6169 21.5607 15 21.5607V21.7607ZM21.7607 15H21.9607C21.9607 11.1622 18.8384 8.03926 15 8.03926V8.23926V8.43926C18.6175 8.43926 21.5607 11.3831 21.5607 15H21.7607ZM15 10.7119L14.9999 10.9119C15.232 10.912 15.419 11.0991 15.4191 11.3312L15.6191 11.3311L15.8191 11.3309C15.8189 10.8782 15.453 10.5121 15.0001 10.5119L15 10.7119ZM15.6191 11.3311H15.4191V14.7393H15.6191H15.8191V11.3311H15.6191ZM15.6191 14.7393L15.4991 14.8992L17.7306 16.5731L17.8506 16.4131L17.9706 16.2531L15.7392 14.5793L15.6191 14.7393ZM17.8506 16.4131L17.7306 16.5731C17.9159 16.7121 17.9534 16.9747 17.8147 17.1591L17.9746 17.2793L18.1345 17.3995C18.4064 17.0376 18.3321 16.5243 17.9706 16.2531L17.8506 16.4131ZM17.9746 17.2793L17.814 17.1601C17.7322 17.2702 17.6066 17.3283 17.4775 17.3283V17.5283V17.7283C17.7265 17.7283 17.974 17.6156 18.1352 17.3985L17.9746 17.2793ZM17.4775 17.5283L17.4776 17.3283C17.39 17.3283 17.3022 17.3011 17.2265 17.2443L17.1064 17.4043L16.9864 17.5643C17.1336 17.6747 17.3063 17.7282 17.4774 17.7283L17.4775 17.5283ZM17.1064 17.4043L17.2265 17.2443L14.748 15.3849L14.6279 15.5449L14.5079 15.7049L16.9864 17.5643L17.1064 17.4043ZM14.6279 15.5449L14.7476 15.3847C14.6423 15.3061 14.58 15.1818 14.5799 15.0497L14.3799 15.0498L14.1799 15.0499C14.18 15.3078 14.3016 15.5509 14.5083 15.7052L14.6279 15.5449ZM14.3799 15.0498H14.5799V11.3311H14.3799H14.1799V15.0498H14.3799ZM14.3799 11.3311L14.5799 11.3312C14.58 11.0993 14.7676 10.9119 15 10.9119V10.7119V10.5119C14.5473 10.5119 14.1801 10.8777 14.1799 11.3309L14.3799 11.3311Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON INFORMACI\u00D3N -->\r\n<div *ngIf=\"icon == 'border-circle-info'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M15.0068 7C19.4174 7.00144 23.0022 10.5929 23.001 15.0098C22.9997 19.4174 19.4033 23.0025 14.9863 23C10.5676 22.9968 6.99562 19.3966 7 14.9502C7.00441 10.5814 10.6124 6.99875 15.0068 7ZM15 8.59766C11.482 8.59778 8.60339 11.4746 8.59766 14.9951C8.59203 18.5146 11.4915 21.4126 15.0078 21.4014C18.5335 21.3907 21.407 18.5102 21.4014 14.9951C21.3953 11.4735 18.5192 8.59766 15 8.59766ZM14.9922 13.4033C15.4528 13.4009 15.7971 13.7429 15.8027 14.2285C15.8102 14.8893 15.8047 15.5501 15.8047 16.2109L15.8037 18.1465C15.8006 18.629 15.4734 18.9864 15.0322 18.999C14.5667 19.0122 14.201 18.6658 14.1982 18.1797C14.1914 16.8634 14.1926 15.5458 14.1982 14.2295C14.2003 13.7514 14.5435 13.4058 14.9922 13.4033ZM15.0088 10.999C15.4425 11.0022 15.8002 11.3619 15.8027 11.7969C15.8052 12.2362 15.4424 12.5967 14.9981 12.5967C14.555 12.5967 14.1924 12.2326 14.1973 11.7939C14.2023 11.3522 14.5652 10.9962 15.0088 10.999Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.0068 7L15.0069 6.9H15.0069L15.0068 7ZM23.001 15.0098L23.101 15.0098V15.0098L23.001 15.0098ZM14.9863 23L14.9863 23.1H14.9863L14.9863 23ZM7 14.9502L6.9 14.9501V14.9501L7 14.9502ZM15 8.59766V8.49766H15L15 8.59766ZM8.59766 14.9951L8.49766 14.995V14.995L8.59766 14.9951ZM15.0078 21.4014L15.0075 21.3014H15.0075L15.0078 21.4014ZM21.4014 14.9951L21.5014 14.995V14.9949L21.4014 14.9951ZM14.9922 13.4033L14.9917 13.3033L14.9916 13.3033L14.9922 13.4033ZM15.8027 14.2285L15.9027 14.2274V14.2274L15.8027 14.2285ZM15.8047 16.2109L15.9047 16.211V16.2109L15.8047 16.2109ZM15.8037 18.1465L15.9037 18.1471L15.9037 18.1465L15.8037 18.1465ZM15.0322 18.999L15.0351 19.099L15.0351 19.099L15.0322 18.999ZM14.1982 18.1797L14.0982 18.1802L14.0982 18.1803L14.1982 18.1797ZM14.1982 14.2295L14.2982 14.2299V14.2299L14.1982 14.2295ZM15.0088 10.999L15.0095 10.899L15.0094 10.899L15.0088 10.999ZM15.8027 11.7969L15.9027 11.7963V11.7963L15.8027 11.7969ZM14.9981 12.5967V12.6967H14.9981L14.9981 12.5967ZM14.1973 11.7939L14.0973 11.7928L14.0973 11.7928L14.1973 11.7939ZM15.0068 7L15.0068 7.1C19.362 7.10142 22.9022 10.6479 22.901 15.0097L23.001 15.0098L23.101 15.0098C23.1022 10.5378 19.4728 6.90146 15.0069 6.9L15.0068 7ZM23.001 15.0098L22.901 15.0097C22.8997 19.3619 19.3483 22.9025 14.9864 22.9L14.9863 23L14.9863 23.1C19.4582 23.1025 23.0997 19.4728 23.101 15.0098L23.001 15.0098ZM14.9863 23L14.9864 22.9C10.6235 22.8968 7.09568 19.342 7.1 14.9503L7 14.9502L6.9 14.9501C6.89557 19.4511 10.5117 23.0968 14.9863 23.1L14.9863 23ZM7 14.9502L7.1 14.9503C7.10435 10.6372 10.6671 7.09876 15.0068 7.1L15.0068 7L15.0069 6.9C10.5578 6.89873 6.90447 10.5256 6.9 14.9501L7 14.9502ZM15 8.59766L15 8.49766C11.4268 8.49779 8.50348 11.4193 8.49766 14.995L8.59766 14.9951L8.69766 14.9953C8.70331 11.5298 11.5373 8.69778 15 8.69766L15 8.59766ZM8.59766 14.9951L8.49766 14.995C8.49194 18.5697 11.4363 21.5128 15.0081 21.5014L15.0078 21.4014L15.0075 21.3014C11.5467 21.3125 8.69212 18.4594 8.69766 14.9953L8.59766 14.9951ZM15.0078 21.4014L15.0081 21.5014C18.5887 21.4905 21.5071 18.5654 21.5014 14.995L21.4014 14.9951L21.3014 14.9953C21.3069 18.4549 18.4782 21.2909 15.0075 21.3014L15.0078 21.4014ZM21.4014 14.9951L21.5014 14.9949C21.4952 11.4183 18.5744 8.49766 15 8.49766V8.59766V8.69766C18.4639 8.69766 21.2954 11.5287 21.3014 14.9953L21.4014 14.9951ZM14.9922 13.4033L14.9927 13.5033C15.3958 13.5012 15.6977 13.7964 15.7027 14.2297L15.8027 14.2285L15.9027 14.2274C15.8965 13.6893 15.5098 13.3006 14.9917 13.3033L14.9922 13.4033ZM15.8027 14.2285L15.7027 14.2297C15.7102 14.8897 15.7047 15.549 15.7047 16.2109H15.8047L15.9047 16.2109C15.9047 15.5513 15.9102 14.8889 15.9027 14.2274L15.8027 14.2285ZM15.8047 16.2109L15.7047 16.2109L15.7037 18.1464L15.8037 18.1465L15.9037 18.1465L15.9047 16.211L15.8047 16.2109ZM15.8037 18.1465L15.7037 18.1458C15.7009 18.5815 15.41 18.8882 15.0294 18.8991L15.0322 18.999L15.0351 19.099C15.5369 19.0847 15.9003 18.6765 15.9037 18.1471L15.8037 18.1465ZM15.0322 18.999L15.0294 18.8991C14.6205 18.9106 14.3007 18.6096 14.2982 18.1791L14.1982 18.1797L14.0982 18.1803C14.1013 18.722 14.513 19.1137 15.0351 19.099L15.0322 18.999ZM14.1982 18.1797L14.2982 18.1792C14.2914 16.8633 14.2926 15.546 14.2982 14.2299L14.1982 14.2295L14.0982 14.2291C14.0926 15.5456 14.0914 16.8635 14.0982 18.1802L14.1982 18.1797ZM14.1982 14.2295L14.2982 14.2299C14.3 13.804 14.6016 13.5055 14.9927 13.5033L14.9922 13.4033L14.9916 13.3033C14.4854 13.3061 14.1005 13.6989 14.0982 14.2291L14.1982 14.2295ZM15.0088 10.999L15.0081 11.099C15.3868 11.1018 15.7005 11.4168 15.7027 11.7975L15.8027 11.7969L15.9027 11.7963C15.8999 11.3069 15.4983 10.9026 15.0095 10.899L15.0088 10.999ZM15.8027 11.7969L15.7027 11.7974C15.7049 12.1802 15.3881 12.4967 14.998 12.4967L14.9981 12.5967L14.9981 12.6967C15.4967 12.6966 15.9055 12.2922 15.9027 11.7963L15.8027 11.7969ZM14.9981 12.5967V12.4967C14.6099 12.4967 14.293 12.1773 14.2973 11.7951L14.1973 11.7939L14.0973 11.7928C14.0918 12.2879 14.5001 12.6967 14.9981 12.6967V12.5967ZM14.1973 11.7939L14.2973 11.7951C14.3016 11.4086 14.6194 11.0965 15.0081 11.099L15.0088 10.999L15.0094 10.899C14.5111 10.8958 14.1029 11.2958 14.0973 11.7928L14.1973 11.7939Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.0068 7C19.4174 7.00144 23.0022 10.5929 23.001 15.0098C22.9997 19.4174 19.4033 23.0025 14.9863 23C10.5676 22.9968 6.99562 19.3966 7 14.9502C7.00441 10.5814 10.6124 6.99875 15.0068 7ZM15 8.59766C11.482 8.59778 8.60339 11.4746 8.59766 14.9951C8.59203 18.5146 11.4915 21.4126 15.0078 21.4014C18.5335 21.3907 21.407 18.5102 21.4014 14.9951C21.3953 11.4735 18.5192 8.59766 15 8.59766ZM14.9922 13.4033C15.4528 13.4009 15.7971 13.7429 15.8027 14.2285C15.8102 14.8893 15.8047 15.5501 15.8047 16.2109L15.8037 18.1465C15.8006 18.629 15.4734 18.9864 15.0322 18.999C14.5667 19.0122 14.201 18.6658 14.1982 18.1797C14.1914 16.8634 14.1926 15.5458 14.1982 14.2295C14.2003 13.7514 14.5435 13.4058 14.9922 13.4033ZM15.0088 10.999C15.4425 11.0022 15.8002 11.3619 15.8027 11.7969C15.8052 12.2362 15.4424 12.5967 14.9981 12.5967C14.555 12.5967 14.1924 12.2326 14.1973 11.7939C14.2023 11.3522 14.5652 10.9962 15.0088 10.999Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.0068 7L15.0069 6.9H15.0069L15.0068 7ZM23.001 15.0098L23.101 15.0098V15.0098L23.001 15.0098ZM14.9863 23L14.9863 23.1H14.9863L14.9863 23ZM7 14.9502L6.9 14.9501V14.9501L7 14.9502ZM15 8.59766V8.49766H15L15 8.59766ZM8.59766 14.9951L8.49766 14.995V14.995L8.59766 14.9951ZM15.0078 21.4014L15.0075 21.3014H15.0075L15.0078 21.4014ZM21.4014 14.9951L21.5014 14.995V14.9949L21.4014 14.9951ZM14.9922 13.4033L14.9917 13.3033L14.9916 13.3033L14.9922 13.4033ZM15.8027 14.2285L15.9027 14.2274V14.2274L15.8027 14.2285ZM15.8047 16.2109L15.9047 16.211V16.2109L15.8047 16.2109ZM15.8037 18.1465L15.9037 18.1471L15.9037 18.1465L15.8037 18.1465ZM15.0322 18.999L15.0351 19.099L15.0351 19.099L15.0322 18.999ZM14.1982 18.1797L14.0982 18.1802L14.0982 18.1803L14.1982 18.1797ZM14.1982 14.2295L14.2982 14.2299V14.2299L14.1982 14.2295ZM15.0088 10.999L15.0095 10.899L15.0094 10.899L15.0088 10.999ZM15.8027 11.7969L15.9027 11.7963V11.7963L15.8027 11.7969ZM14.9981 12.5967V12.6967H14.9981L14.9981 12.5967ZM14.1973 11.7939L14.0973 11.7928L14.0973 11.7928L14.1973 11.7939ZM15.0068 7L15.0068 7.1C19.362 7.10142 22.9022 10.6479 22.901 15.0097L23.001 15.0098L23.101 15.0098C23.1022 10.5378 19.4728 6.90146 15.0069 6.9L15.0068 7ZM23.001 15.0098L22.901 15.0097C22.8997 19.3619 19.3483 22.9025 14.9864 22.9L14.9863 23L14.9863 23.1C19.4582 23.1025 23.0997 19.4728 23.101 15.0098L23.001 15.0098ZM14.9863 23L14.9864 22.9C10.6235 22.8968 7.09568 19.342 7.1 14.9503L7 14.9502L6.9 14.9501C6.89557 19.4511 10.5117 23.0968 14.9863 23.1L14.9863 23ZM7 14.9502L7.1 14.9503C7.10435 10.6372 10.6671 7.09876 15.0068 7.1L15.0068 7L15.0069 6.9C10.5578 6.89873 6.90447 10.5256 6.9 14.9501L7 14.9502ZM15 8.59766L15 8.49766C11.4268 8.49779 8.50348 11.4193 8.49766 14.995L8.59766 14.9951L8.69766 14.9953C8.70331 11.5298 11.5373 8.69778 15 8.69766L15 8.59766ZM8.59766 14.9951L8.49766 14.995C8.49194 18.5697 11.4363 21.5128 15.0081 21.5014L15.0078 21.4014L15.0075 21.3014C11.5467 21.3125 8.69212 18.4594 8.69766 14.9953L8.59766 14.9951ZM15.0078 21.4014L15.0081 21.5014C18.5887 21.4905 21.5071 18.5654 21.5014 14.995L21.4014 14.9951L21.3014 14.9953C21.3069 18.4549 18.4782 21.2909 15.0075 21.3014L15.0078 21.4014ZM21.4014 14.9951L21.5014 14.9949C21.4952 11.4183 18.5744 8.49766 15 8.49766V8.59766V8.69766C18.4639 8.69766 21.2954 11.5287 21.3014 14.9953L21.4014 14.9951ZM14.9922 13.4033L14.9927 13.5033C15.3958 13.5012 15.6977 13.7964 15.7027 14.2297L15.8027 14.2285L15.9027 14.2274C15.8965 13.6893 15.5098 13.3006 14.9917 13.3033L14.9922 13.4033ZM15.8027 14.2285L15.7027 14.2297C15.7102 14.8897 15.7047 15.549 15.7047 16.2109H15.8047L15.9047 16.2109C15.9047 15.5513 15.9102 14.8889 15.9027 14.2274L15.8027 14.2285ZM15.8047 16.2109L15.7047 16.2109L15.7037 18.1464L15.8037 18.1465L15.9037 18.1465L15.9047 16.211L15.8047 16.2109ZM15.8037 18.1465L15.7037 18.1458C15.7009 18.5815 15.41 18.8882 15.0294 18.8991L15.0322 18.999L15.0351 19.099C15.5369 19.0847 15.9003 18.6765 15.9037 18.1471L15.8037 18.1465ZM15.0322 18.999L15.0294 18.8991C14.6205 18.9106 14.3007 18.6096 14.2982 18.1791L14.1982 18.1797L14.0982 18.1803C14.1013 18.722 14.513 19.1137 15.0351 19.099L15.0322 18.999ZM14.1982 18.1797L14.2982 18.1792C14.2914 16.8633 14.2926 15.546 14.2982 14.2299L14.1982 14.2295L14.0982 14.2291C14.0926 15.5456 14.0914 16.8635 14.0982 18.1802L14.1982 18.1797ZM14.1982 14.2295L14.2982 14.2299C14.3 13.804 14.6016 13.5055 14.9927 13.5033L14.9922 13.4033L14.9916 13.3033C14.4854 13.3061 14.1005 13.6989 14.0982 14.2291L14.1982 14.2295ZM15.0088 10.999L15.0081 11.099C15.3868 11.1018 15.7005 11.4168 15.7027 11.7975L15.8027 11.7969L15.9027 11.7963C15.8999 11.3069 15.4983 10.9026 15.0095 10.899L15.0088 10.999ZM15.8027 11.7969L15.7027 11.7974C15.7049 12.1802 15.3881 12.4967 14.998 12.4967L14.9981 12.5967L14.9981 12.6967C15.4967 12.6966 15.9055 12.2922 15.9027 11.7963L15.8027 11.7969ZM14.9981 12.5967V12.4967C14.6099 12.4967 14.293 12.1773 14.2973 11.7951L14.1973 11.7939L14.0973 11.7928C14.0918 12.2879 14.5001 12.6967 14.9981 12.6967V12.5967ZM14.1973 11.7939L14.2973 11.7951C14.3016 11.4086 14.6194 11.0965 15.0081 11.099L15.0088 10.999L15.0094 10.899C14.5111 10.8958 14.1029 11.2958 14.0973 11.7928L14.1973 11.7939Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON EXCLAMACI\u00D3N -->\r\n<div *ngIf=\"icon == 'border-circle-exclamation'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M14.9941 23C10.5836 22.9986 6.99875 19.4071 7 14.9902C7.00128 10.5826 10.5977 6.99749 15.0146 7C19.4334 7.0032 23.0054 10.6034 23.001 15.0498C22.9966 19.4186 19.3885 23.0013 14.9941 23ZM15.001 21.4023C18.519 21.4022 21.3976 18.5254 21.4033 15.0049C21.409 11.4854 18.5095 8.58737 14.9932 8.59863C11.4675 8.60931 8.59397 11.4898 8.59961 15.0049C8.60568 18.5265 11.4818 21.4023 15.001 21.4023ZM15.0088 16.5967C14.5482 16.5991 14.2039 16.2571 14.1982 15.7715C14.1907 15.1107 14.1963 14.4499 14.1963 13.7891L14.1973 11.8535C14.2004 11.371 14.5276 11.0136 14.9687 11.001C15.4343 10.9878 15.8 11.3342 15.8027 11.8203C15.8096 13.1366 15.8084 14.4542 15.8027 15.7705C15.8007 16.2486 15.4575 16.5942 15.0088 16.5967ZM14.9922 19.001C14.5584 18.9978 14.2007 18.6381 14.1982 18.2031C14.1958 17.7638 14.5586 17.4033 15.0029 17.4033C15.446 17.4033 15.8086 17.7674 15.8037 18.2061C15.7987 18.6478 15.4357 19.0038 14.9922 19.001Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M14.9941 23L14.9941 23.1L14.9941 23.1L14.9941 23ZM7 14.9902L6.9 14.9902L6.9 14.9902L7 14.9902ZM15.0146 7L15.0147 6.9L15.0147 6.9L15.0146 7ZM23.001 15.0498L23.101 15.0499L23.101 15.0499L23.001 15.0498ZM15.001 21.4023L15.001 21.5023L15.001 21.5023L15.001 21.4023ZM21.4033 15.0049L21.5033 15.005L21.5033 15.005L21.4033 15.0049ZM14.9932 8.59863L14.9935 8.69863L14.9935 8.69863L14.9932 8.59863ZM8.59961 15.0049L8.49961 15.005L8.49961 15.0051L8.59961 15.0049ZM15.0088 16.5967L15.0093 16.6967L15.0093 16.6967L15.0088 16.5967ZM14.1982 15.7715L14.0982 15.7726L14.0982 15.7726L14.1982 15.7715ZM14.1963 13.7891L14.0963 13.789L14.0963 13.7891L14.1963 13.7891ZM14.1973 11.8535L14.0973 11.8529L14.0973 11.8535L14.1973 11.8535ZM14.9687 11.001L14.9659 10.901L14.9659 10.901L14.9687 11.001ZM15.8027 11.8203L15.9027 11.8198L15.9027 11.8197L15.8027 11.8203ZM15.8027 15.7705L15.7027 15.7701L15.7027 15.7701L15.8027 15.7705ZM14.9922 19.001L14.9915 19.101L14.9915 19.101L14.9922 19.001ZM14.1982 18.2031L14.0982 18.2037L14.0982 18.2037L14.1982 18.2031ZM15.0029 17.4033L15.0029 17.3033L15.0029 17.3033L15.0029 17.4033ZM15.8037 18.2061L15.9037 18.2072L15.9037 18.2072L15.8037 18.2061ZM14.9941 23L14.9942 22.9C10.639 22.8986 7.09876 19.352 7.1 14.9903L7 14.9902L6.9 14.9902C6.89873 19.4622 10.5282 23.0985 14.9941 23.1L14.9941 23ZM7 14.9902L7.1 14.9903C7.10127 10.6381 10.6527 7.09753 15.0146 7.1L15.0146 7L15.0147 6.9C10.5427 6.89746 6.9013 10.5272 6.9 14.9902L7 14.9902ZM15.0146 7L15.0146 7.1C19.3775 7.10316 22.9053 10.658 22.901 15.0497L23.001 15.0498L23.101 15.0499C23.1054 10.5489 19.4893 6.90324 15.0147 6.9L15.0146 7ZM23.001 15.0498L22.901 15.0497C22.8966 19.3628 19.3339 22.9012 14.9942 22.9L14.9941 23L14.9941 23.1C19.4432 23.1013 23.0965 19.4744 23.101 15.0499L23.001 15.0498ZM15.001 21.4023L15.001 21.5023C18.5742 21.5022 21.4975 18.5807 21.5033 15.005L21.4033 15.0049L21.3033 15.0047C21.2977 18.4702 18.4637 21.3022 15.001 21.3023L15.001 21.4023ZM21.4033 15.0049L21.5033 15.005C21.509 11.4303 18.5646 8.48719 14.9928 8.49863L14.9932 8.59863L14.9935 8.69863C18.4543 8.68754 21.3089 11.5406 21.3033 15.0047L21.4033 15.0049ZM14.9932 8.59863L14.9929 8.49863C11.4123 8.50948 8.49389 11.4346 8.49961 15.005L8.59961 15.0049L8.69961 15.0047C8.69406 11.5451 11.5227 8.70914 14.9935 8.69863L14.9932 8.59863ZM8.59961 15.0049L8.49961 15.0051C8.50578 18.5817 11.4265 21.5023 15.001 21.5023L15.001 21.4023L15.001 21.3023C11.5371 21.3023 8.70559 18.4713 8.69961 15.0047L8.59961 15.0049ZM15.0088 16.5967L15.0083 16.4967C14.6052 16.4988 14.3033 16.2036 14.2982 15.7703L14.1982 15.7715L14.0982 15.7726C14.1045 16.3107 14.4912 16.6994 15.0093 16.6967L15.0088 16.5967ZM14.1982 15.7715L14.2982 15.7703C14.2907 15.1103 14.2963 14.451 14.2963 13.7891L14.1963 13.7891L14.0963 13.7891C14.0963 14.4487 14.0907 15.1111 14.0982 15.7726L14.1982 15.7715ZM14.1963 13.7891L14.2963 13.7891L14.2973 11.8536L14.1973 11.8535L14.0973 11.8535L14.0963 13.789L14.1963 13.7891ZM14.1973 11.8535L14.2973 11.8542C14.3001 11.4185 14.591 11.1118 14.9716 11.1009L14.9687 11.001L14.9659 10.901C14.4641 10.9153 14.1007 11.3235 14.0973 11.8529L14.1973 11.8535ZM14.9687 11.001L14.9716 11.1009C15.3805 11.0894 15.7003 11.3904 15.7027 11.8209L15.8027 11.8203L15.9027 11.8197C15.8997 11.278 15.488 10.8863 14.9659 10.901L14.9687 11.001ZM15.8027 11.8203L15.7027 11.8208C15.7096 13.1367 15.7084 14.454 15.7027 15.7701L15.8027 15.7705L15.9027 15.7709C15.9084 14.4544 15.9096 13.1365 15.9027 11.8198L15.8027 11.8203ZM15.8027 15.7705L15.7027 15.7701C15.7009 16.196 15.3994 16.4945 15.0082 16.4967L15.0088 16.5967L15.0093 16.6967C15.5155 16.6939 15.9005 16.3011 15.9027 15.7709L15.8027 15.7705ZM14.9922 19.001L14.9929 18.901C14.6142 18.8982 14.3004 18.5832 14.2982 18.2025L14.1982 18.2031L14.0982 18.2037C14.1011 18.6931 14.5026 19.0974 14.9915 19.101L14.9922 19.001ZM14.1982 18.2031L14.2982 18.2026C14.2961 17.8198 14.6129 17.5033 15.0029 17.5033L15.0029 17.4033L15.0029 17.3033C14.5043 17.3033 14.0954 17.7078 14.0982 18.2037L14.1982 18.2031ZM15.0029 17.4033L15.0029 17.5033C15.3911 17.5033 15.708 17.8227 15.7037 18.2049L15.8037 18.2061L15.9037 18.2072C15.9092 17.7121 15.5009 17.3033 15.0029 17.3033L15.0029 17.4033ZM15.8037 18.2061L15.7037 18.2049C15.6993 18.5914 15.3816 18.9035 14.9928 18.901L14.9922 19.001L14.9915 19.101C15.4899 19.1042 15.8981 18.7042 15.9037 18.2072L15.8037 18.2061Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M14.9941 23C10.5836 22.9986 6.99875 19.4071 7 14.9902C7.00128 10.5826 10.5977 6.99749 15.0146 7C19.4334 7.0032 23.0054 10.6034 23.001 15.0498C22.9966 19.4186 19.3885 23.0013 14.9941 23ZM15.001 21.4023C18.519 21.4022 21.3976 18.5254 21.4033 15.0049C21.409 11.4854 18.5095 8.58737 14.9932 8.59863C11.4675 8.60931 8.59397 11.4898 8.59961 15.0049C8.60568 18.5265 11.4818 21.4023 15.001 21.4023ZM15.0088 16.5967C14.5482 16.5991 14.2039 16.2571 14.1982 15.7715C14.1907 15.1107 14.1963 14.4499 14.1963 13.7891L14.1973 11.8535C14.2004 11.371 14.5276 11.0136 14.9687 11.001C15.4343 10.9878 15.8 11.3342 15.8027 11.8203C15.8096 13.1366 15.8084 14.4542 15.8027 15.7705C15.8007 16.2486 15.4575 16.5942 15.0088 16.5967ZM14.9922 19.001C14.5584 18.9978 14.2007 18.6381 14.1982 18.2031C14.1958 17.7638 14.5586 17.4033 15.0029 17.4033C15.446 17.4033 15.8086 17.7674 15.8037 18.2061C15.7987 18.6478 15.4357 19.0038 14.9922 19.001Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M14.9941 23L14.9941 23.1L14.9941 23.1L14.9941 23ZM7 14.9902L6.9 14.9902L6.9 14.9902L7 14.9902ZM15.0146 7L15.0147 6.9L15.0147 6.9L15.0146 7ZM23.001 15.0498L23.101 15.0499L23.101 15.0499L23.001 15.0498ZM15.001 21.4023L15.001 21.5023L15.001 21.5023L15.001 21.4023ZM21.4033 15.0049L21.5033 15.005L21.5033 15.005L21.4033 15.0049ZM14.9932 8.59863L14.9935 8.69863L14.9935 8.69863L14.9932 8.59863ZM8.59961 15.0049L8.49961 15.005L8.49961 15.0051L8.59961 15.0049ZM15.0088 16.5967L15.0093 16.6967L15.0093 16.6967L15.0088 16.5967ZM14.1982 15.7715L14.0982 15.7726L14.0982 15.7726L14.1982 15.7715ZM14.1963 13.7891L14.0963 13.789L14.0963 13.7891L14.1963 13.7891ZM14.1973 11.8535L14.0973 11.8529L14.0973 11.8535L14.1973 11.8535ZM14.9687 11.001L14.9659 10.901L14.9659 10.901L14.9687 11.001ZM15.8027 11.8203L15.9027 11.8198L15.9027 11.8197L15.8027 11.8203ZM15.8027 15.7705L15.7027 15.7701L15.7027 15.7701L15.8027 15.7705ZM14.9922 19.001L14.9915 19.101L14.9915 19.101L14.9922 19.001ZM14.1982 18.2031L14.0982 18.2037L14.0982 18.2037L14.1982 18.2031ZM15.0029 17.4033L15.0029 17.3033L15.0029 17.3033L15.0029 17.4033ZM15.8037 18.2061L15.9037 18.2072L15.9037 18.2072L15.8037 18.2061ZM14.9941 23L14.9942 22.9C10.639 22.8986 7.09876 19.352 7.1 14.9903L7 14.9902L6.9 14.9902C6.89873 19.4622 10.5282 23.0985 14.9941 23.1L14.9941 23ZM7 14.9902L7.1 14.9903C7.10127 10.6381 10.6527 7.09753 15.0146 7.1L15.0146 7L15.0147 6.9C10.5427 6.89746 6.9013 10.5272 6.9 14.9902L7 14.9902ZM15.0146 7L15.0146 7.1C19.3775 7.10316 22.9053 10.658 22.901 15.0497L23.001 15.0498L23.101 15.0499C23.1054 10.5489 19.4893 6.90324 15.0147 6.9L15.0146 7ZM23.001 15.0498L22.901 15.0497C22.8966 19.3628 19.3339 22.9012 14.9942 22.9L14.9941 23L14.9941 23.1C19.4432 23.1013 23.0965 19.4744 23.101 15.0499L23.001 15.0498ZM15.001 21.4023L15.001 21.5023C18.5742 21.5022 21.4975 18.5807 21.5033 15.005L21.4033 15.0049L21.3033 15.0047C21.2977 18.4702 18.4637 21.3022 15.001 21.3023L15.001 21.4023ZM21.4033 15.0049L21.5033 15.005C21.509 11.4303 18.5646 8.48719 14.9928 8.49863L14.9932 8.59863L14.9935 8.69863C18.4543 8.68754 21.3089 11.5406 21.3033 15.0047L21.4033 15.0049ZM14.9932 8.59863L14.9929 8.49863C11.4123 8.50948 8.49389 11.4346 8.49961 15.005L8.59961 15.0049L8.69961 15.0047C8.69406 11.5451 11.5227 8.70914 14.9935 8.69863L14.9932 8.59863ZM8.59961 15.0049L8.49961 15.0051C8.50578 18.5817 11.4265 21.5023 15.001 21.5023L15.001 21.4023L15.001 21.3023C11.5371 21.3023 8.70559 18.4713 8.69961 15.0047L8.59961 15.0049ZM15.0088 16.5967L15.0083 16.4967C14.6052 16.4988 14.3033 16.2036 14.2982 15.7703L14.1982 15.7715L14.0982 15.7726C14.1045 16.3107 14.4912 16.6994 15.0093 16.6967L15.0088 16.5967ZM14.1982 15.7715L14.2982 15.7703C14.2907 15.1103 14.2963 14.451 14.2963 13.7891L14.1963 13.7891L14.0963 13.7891C14.0963 14.4487 14.0907 15.1111 14.0982 15.7726L14.1982 15.7715ZM14.1963 13.7891L14.2963 13.7891L14.2973 11.8536L14.1973 11.8535L14.0973 11.8535L14.0963 13.789L14.1963 13.7891ZM14.1973 11.8535L14.2973 11.8542C14.3001 11.4185 14.591 11.1118 14.9716 11.1009L14.9687 11.001L14.9659 10.901C14.4641 10.9153 14.1007 11.3235 14.0973 11.8529L14.1973 11.8535ZM14.9687 11.001L14.9716 11.1009C15.3805 11.0894 15.7003 11.3904 15.7027 11.8209L15.8027 11.8203L15.9027 11.8197C15.8997 11.278 15.488 10.8863 14.9659 10.901L14.9687 11.001ZM15.8027 11.8203L15.7027 11.8208C15.7096 13.1367 15.7084 14.454 15.7027 15.7701L15.8027 15.7705L15.9027 15.7709C15.9084 14.4544 15.9096 13.1365 15.9027 11.8198L15.8027 11.8203ZM15.8027 15.7705L15.7027 15.7701C15.7009 16.196 15.3994 16.4945 15.0082 16.4967L15.0088 16.5967L15.0093 16.6967C15.5155 16.6939 15.9005 16.3011 15.9027 15.7709L15.8027 15.7705ZM14.9922 19.001L14.9929 18.901C14.6142 18.8982 14.3004 18.5832 14.2982 18.2025L14.1982 18.2031L14.0982 18.2037C14.1011 18.6931 14.5026 19.0974 14.9915 19.101L14.9922 19.001ZM14.1982 18.2031L14.2982 18.2026C14.2961 17.8198 14.6129 17.5033 15.0029 17.5033L15.0029 17.4033L15.0029 17.3033C14.5043 17.3033 14.0954 17.7078 14.0982 18.2037L14.1982 18.2031ZM15.0029 17.4033L15.0029 17.5033C15.3911 17.5033 15.708 17.8227 15.7037 18.2049L15.8037 18.2061L15.9037 18.2072C15.9092 17.7121 15.5009 17.3033 15.0029 17.3033L15.0029 17.4033ZM15.8037 18.2061L15.7037 18.2049C15.6993 18.5914 15.3816 18.9035 14.9928 18.901L14.9922 19.001L14.9915 19.101C15.4899 19.1042 15.8981 18.7042 15.9037 18.2072L15.8037 18.2061Z\"/>\r\n </svg>\r\n</div>\r\n\r\n\r\n<!-- ICON ADVERTENCIA -->\r\n<div *ngIf=\"icon == 'warning'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M17.24 9.09034L22.6008 18.0192C23.3712 19.3016 22.9928 20.9888 21.7552 21.7872C21.3399 22.0561 20.8557 22.1995 20.3608 22.2H9.63841C8.1816 22.2 7 20.976 7 19.4648C7 18.9536 7.1384 18.4536 7.3984 18.0192L12.76 9.09034C13.5296 7.80794 15.1568 7.41513 16.3944 8.21354C16.7368 8.43434 17.0264 8.73434 17.24 9.09034ZM15.464 9.76154C15.3661 9.69855 15.2564 9.65606 15.1416 9.63664C15.0268 9.61723 14.9092 9.62129 14.796 9.64858C14.6828 9.67587 14.5763 9.72583 14.4829 9.79543C14.3896 9.86503 14.3113 9.95284 14.2528 10.0535L8.89201 18.984C8.80492 19.1295 8.75902 19.296 8.7592 19.4656C8.7592 19.9696 9.15281 20.3776 9.63921 20.3776H20.36C20.5248 20.3776 20.6856 20.3296 20.8248 20.24C21.0246 20.1073 21.1654 19.9026 21.218 19.6686C21.2706 19.4347 21.231 19.1894 21.1072 18.984L15.7464 10.0535C15.6761 9.93596 15.5798 9.83607 15.4648 9.76154H15.464ZM15 19C14.7878 19 14.5844 18.9157 14.4343 18.7657C14.2843 18.6156 14.2 18.4121 14.2 18.2C14.2 17.9878 14.2843 17.7843 14.4343 17.6343C14.5844 17.4843 14.7878 17.4 15 17.4C15.2122 17.4 15.4157 17.4843 15.5657 17.6343C15.7157 17.7843 15.8 17.9878 15.8 18.2C15.8 18.4121 15.7157 18.6156 15.5657 18.7657C15.4157 18.9157 15.2122 19 15 19ZM15 11.7999C15.2122 11.7999 15.4157 11.8842 15.5657 12.0343C15.7157 12.1843 15.8 12.3878 15.8 12.6V15.8C15.8 16.0121 15.7157 16.2156 15.5657 16.3656C15.4157 16.5157 15.2122 16.6 15 16.6C14.7878 16.6 14.5844 16.5157 14.4343 16.3656C14.2843 16.2156 14.2 16.0121 14.2 15.8V12.6C14.2 12.3878 14.2843 12.1843 14.4343 12.0343C14.5844 11.8842 14.7878 11.7999 15 11.7999Z\"/>\r\n </svg>\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M17.24 9.09034L22.6008 18.0192C23.3712 19.3016 22.9928 20.9888 21.7552 21.7872C21.3399 22.0561 20.8557 22.1995 20.3608 22.2H9.63841C8.1816 22.2 7 20.976 7 19.4648C7 18.9536 7.1384 18.4536 7.3984 18.0192L12.76 9.09034C13.5296 7.80794 15.1568 7.41513 16.3944 8.21354C16.7368 8.43434 17.0264 8.73434 17.24 9.09034ZM15.464 9.76154C15.3661 9.69855 15.2564 9.65606 15.1416 9.63664C15.0268 9.61723 14.9092 9.62129 14.796 9.64858C14.6828 9.67587 14.5763 9.72583 14.4829 9.79543C14.3896 9.86503 14.3113 9.95284 14.2528 10.0535L8.89201 18.984C8.80492 19.1295 8.75902 19.296 8.7592 19.4656C8.7592 19.9696 9.15281 20.3776 9.63921 20.3776H20.36C20.5248 20.3776 20.6856 20.3296 20.8248 20.24C21.0246 20.1073 21.1654 19.9026 21.218 19.6686C21.2706 19.4347 21.231 19.1894 21.1072 18.984L15.7464 10.0535C15.6761 9.93596 15.5798 9.83607 15.4648 9.76154H15.464ZM15 19C14.7878 19 14.5844 18.9157 14.4343 18.7657C14.2843 18.6156 14.2 18.4121 14.2 18.2C14.2 17.9878 14.2843 17.7843 14.4343 17.6343C14.5844 17.4843 14.7878 17.4 15 17.4C15.2122 17.4 15.4157 17.4843 15.5657 17.6343C15.7157 17.7843 15.8 17.9878 15.8 18.2C15.8 18.4121 15.7157 18.6156 15.5657 18.7657C15.4157 18.9157 15.2122 19 15 19ZM15 11.7999C15.2122 11.7999 15.4157 11.8842 15.5657 12.0343C15.7157 12.1843 15.8 12.3878 15.8 12.6V15.8C15.8 16.0121 15.7157 16.2156 15.5657 16.3656C15.4157 16.5157 15.2122 16.6 15 16.6C14.7878 16.6 14.5844 16.5157 14.4343 16.3656C14.2843 16.2156 14.2 16.0121 14.2 15.8V12.6C14.2 12.3878 14.2843 12.1843 14.4343 12.0343C14.5844 11.8842 14.7878 11.7999 15 11.7999Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON CONFIGURAR ARCHIVO -->\r\n<div *ngIf=\"icon == 'setup-file'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M9.10504 16.5811C9.42763 16.4751 9.78431 16.6289 9.92518 16.9458C10.0752 17.2837 9.923 17.6789 9.58512 17.829L8.94193 18.1152C8.60397 18.2654 8.20814 18.1131 8.05793 17.7752C7.90792 17.4374 8.05963 17.0423 8.39722 16.8919L9.04118 16.6057L9.10504 16.5811ZM8.05793 15.0855C8.20825 14.7478 8.60408 14.5953 8.94193 14.7454L9.58512 15.0316C9.92304 15.1818 10.0753 15.5777 9.92518 15.9156C9.77497 16.2536 9.37914 16.4059 9.04118 16.2557L8.39722 15.9695C8.05953 15.8191 7.90778 15.4233 8.05793 15.0855ZM16.3686 10.7086V7.84732C16.3686 7.47761 16.6683 7.17818 17.0379 7.17798C17.4078 7.17798 17.708 7.47748 17.708 7.84732V10.7086C17.7081 10.9103 17.7885 11.1037 17.9312 11.2464C18.0738 11.389 18.2672 11.4695 18.4689 11.4695H21.3302L21.3987 11.4726C21.7362 11.507 21.9995 11.7922 21.9996 12.1388C21.9996 12.4855 21.7362 12.7707 21.3987 12.8051L21.3302 12.8089H18.4689C17.912 12.8089 17.3779 12.5872 16.9841 12.1935C16.5903 11.7996 16.3686 11.2655 16.3686 10.7086Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M10.8551 19.3493C10.7048 19.6871 10.3089 19.8395 9.97105 19.6893C9.63327 19.5391 9.48101 19.1432 9.631 18.8054L10.8551 19.3493ZM13.0008 18.8054C13.151 19.1433 12.9987 19.5392 12.6607 19.6893C12.323 19.8392 11.9278 19.6869 11.7775 19.3493L11.4913 18.7053L12.103 18.4337L12.7146 18.1614L13.0008 18.8054ZM9.9172 18.1614C10.0674 17.8235 10.4633 17.6713 10.8012 17.8213C11.1392 17.9715 11.2915 18.3674 11.1413 18.7053L10.8551 19.3493L10.2434 19.0769L9.631 18.8054L9.9172 18.1614ZM11.8314 17.8213C12.1692 17.6714 12.5644 17.8237 12.7146 18.1614L11.4913 18.7053C11.3411 18.3674 11.4934 17.9715 11.8314 17.8213ZM12.7069 16.9458C12.8571 16.6078 13.2529 16.4555 13.5909 16.6057L14.2349 16.8919C14.5725 17.0422 14.7248 17.4374 14.5749 17.7752C14.4247 18.1131 14.0289 18.2654 13.6909 18.1152L13.047 17.829C12.7092 17.6788 12.557 17.2836 12.7069 16.9458ZM13.9625 15.3578L14.2349 15.9695L13.5909 16.2557C13.2529 16.4059 12.8571 16.2536 12.7069 15.9156C12.5568 15.5777 12.7091 15.1818 13.047 15.0316L13.6909 14.7454L13.9625 15.3578ZM13.6909 14.7454C14.0288 14.5954 14.4247 14.7477 14.5749 15.0855C14.7251 15.4234 14.5727 15.8192 14.2349 15.9695L13.6909 14.7454ZM11.1413 14.1561C11.2914 14.494 11.1391 14.8899 10.8012 15.0401C10.4633 15.1901 10.0674 15.0379 9.9172 14.7L9.631 14.0561L10.2434 13.7845L10.8551 13.5121L11.1413 14.1561ZM12.7146 14.7C12.5644 15.0377 12.1692 15.19 11.8314 15.0401C11.4934 14.8899 11.3412 14.494 11.4913 14.1561L12.7146 14.7ZM11.7775 13.5121C11.9277 13.1744 12.3229 13.0221 12.6607 13.1721C12.9987 13.3223 13.151 13.7181 13.0008 14.0561L12.7146 14.7L12.103 14.4277L11.4913 14.1561L11.7775 13.5121ZM9.97105 13.1721C10.309 13.0219 10.7048 13.1742 10.8551 13.5121L9.631 14.0561C9.48092 13.7182 9.63327 13.3223 9.97105 13.1721ZM9.21631 11.0663V9.27757C9.21639 8.72067 9.43724 8.18649 9.83103 7.7927C10.2248 7.39891 10.759 7.17806 11.3159 7.17798H17.7539L17.8201 7.18106C17.9733 7.19632 18.1172 7.26433 18.2271 7.37417L21.8038 10.9502C21.9293 11.0756 21.9999 11.2459 22 11.4233V20.7226C22 21.2795 21.7783 21.8137 21.3845 22.2075C20.9907 22.6012 20.4566 22.8221 19.8997 22.8222H11.3059C10.8615 22.82 10.4308 22.6774 10.0749 22.4167L9.9272 22.2975L9.87796 22.2498C9.64724 22.0007 9.63857 21.612 9.86796 21.3519C10.1126 21.0749 10.5355 21.0483 10.8127 21.2927C10.9507 21.4144 11.1281 21.4825 11.3121 21.4835H19.8997C20.1014 21.4835 20.2948 21.403 20.4375 21.2604C20.5801 21.1178 20.6605 20.9243 20.6606 20.7226V11.7011L17.4762 8.51667H11.3159C11.1142 8.51675 10.9207 8.59716 10.7781 8.73978C10.6355 8.88241 10.5551 9.07588 10.555 9.27757V11.0663C10.5549 11.436 10.2554 11.7357 9.88565 11.7357C9.51591 11.7357 9.21646 11.436 9.21631 11.0663Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.7925 16.4303C12.7924 15.6151 12.1313 14.9539 11.3161 14.9539C10.5009 14.954 9.83971 15.6151 9.83967 16.4303C9.83967 17.2456 10.5008 17.9067 11.3161 17.9067C12.1313 17.9067 12.7925 17.2456 12.7925 16.4303ZM14.1319 16.4303C14.1319 17.9853 12.871 19.2462 11.3161 19.2462C9.76116 19.2462 8.50098 17.9853 8.50098 16.4303C8.50102 14.8754 9.76119 13.6153 11.3161 13.6152C12.871 13.6152 14.1319 14.8754 14.1319 16.4303Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M9.10504 16.5811C9.42763 16.4751 9.78431 16.6289 9.92518 16.9458C10.0752 17.2837 9.923 17.6789 9.58512 17.829L8.94193 18.1152C8.60397 18.2654 8.20814 18.1131 8.05793 17.7752C7.90792 17.4374 8.05963 17.0423 8.39722 16.8919L9.04118 16.6057L9.10504 16.5811ZM8.05793 15.0855C8.20825 14.7478 8.60408 14.5953 8.94193 14.7454L9.58512 15.0316C9.92304 15.1818 10.0753 15.5777 9.92518 15.9156C9.77497 16.2536 9.37914 16.4059 9.04118 16.2557L8.39722 15.9695C8.05953 15.8191 7.90778 15.4233 8.05793 15.0855ZM16.3686 10.7086V7.84732C16.3686 7.47761 16.6683 7.17818 17.0379 7.17798C17.4078 7.17798 17.708 7.47748 17.708 7.84732V10.7086C17.7081 10.9103 17.7885 11.1037 17.9312 11.2464C18.0738 11.389 18.2672 11.4695 18.4689 11.4695H21.3302L21.3987 11.4726C21.7362 11.507 21.9995 11.7922 21.9996 12.1388C21.9996 12.4855 21.7362 12.7707 21.3987 12.8051L21.3302 12.8089H18.4689C17.912 12.8089 17.3779 12.5872 16.9841 12.1935C16.5903 11.7996 16.3686 11.2655 16.3686 10.7086Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M10.8551 19.3493C10.7048 19.6871 10.3089 19.8395 9.97105 19.6893C9.63327 19.5391 9.48101 19.1432 9.631 18.8054L10.8551 19.3493ZM13.0008 18.8054C13.151 19.1433 12.9987 19.5391 12.6607 19.6893C12.323 19.8392 11.9278 19.6869 11.7775 19.3493L11.4913 18.7053L12.103 18.4337L12.7146 18.1614L13.0008 18.8054ZM9.9172 18.1614C10.0674 17.8235 10.4633 17.6713 10.8012 17.8213C11.1392 17.9715 11.2915 18.3674 11.1413 18.7053L10.8551 19.3493L10.2434 19.0769L9.631 18.8054L9.9172 18.1614ZM11.8314 17.8213C12.1692 17.6714 12.5644 17.8237 12.7146 18.1614L11.4913 18.7053C11.3411 18.3674 11.4934 17.9715 11.8314 17.8213ZM12.7069 16.9458C12.8571 16.6078 13.2529 16.4555 13.5909 16.6057L14.2349 16.8919C14.5725 17.0422 14.7248 17.4374 14.5749 17.7752C14.4247 18.1131 14.0289 18.2654 13.6909 18.1152L13.047 17.829C12.7092 17.6788 12.557 17.2836 12.7069 16.9458ZM13.9625 15.3578L14.2349 15.9695L13.5909 16.2557C13.2529 16.4059 12.8571 16.2536 12.7069 15.9156C12.5568 15.5777 12.7091 15.1818 13.047 15.0316L13.6909 14.7454L13.9625 15.3578ZM13.6909 14.7454C14.0288 14.5954 14.4247 14.7477 14.5749 15.0855C14.7251 15.4234 14.5727 15.8192 14.2349 15.9695L13.6909 14.7454ZM11.1413 14.1561C11.2914 14.494 11.1391 14.8899 10.8012 15.0401C10.4633 15.1901 10.0674 15.0379 9.9172 14.7L9.631 14.0561L10.2434 13.7845L10.8551 13.5121L11.1413 14.1561ZM12.7146 14.7C12.5644 15.0377 12.1692 15.19 11.8314 15.0401C11.4934 14.8899 11.3412 14.494 11.4913 14.1561L12.7146 14.7ZM11.7775 13.5121C11.9277 13.1744 12.3229 13.0221 12.6607 13.1721C12.9987 13.3223 13.151 13.7181 13.0008 14.0561L12.7146 14.7L12.103 14.4277L11.4913 14.1561L11.7775 13.5121ZM9.97105 13.1721C10.309 13.0219 10.7048 13.1742 10.8551 13.5121L9.631 14.0561C9.48092 13.7182 9.63327 13.3223 9.97105 13.1721ZM9.21631 11.0663V9.27757C9.21639 8.72067 9.43724 8.18649 9.83103 7.7927C10.2248 7.39891 10.759 7.17806 11.3159 7.17798H17.7539L17.8201 7.18106C17.9733 7.19632 18.1172 7.26433 18.2271 7.37417L21.8038 10.9502C21.9293 11.0756 21.9999 11.2459 22 11.4233V20.7226C22 21.2795 21.7783 21.8137 21.3845 22.2075C20.9907 22.6012 20.4566 22.8221 19.8997 22.8222H11.3059C10.8615 22.82 10.4308 22.6774 10.0749 22.4167L9.9272 22.2975L9.87796 22.2498C9.64724 22.0007 9.63857 21.612 9.86796 21.3519C10.1126 21.0749 10.5355 21.0483 10.8127 21.2927C10.9507 21.4144 11.1281 21.4825 11.3121 21.4835H19.8997C20.1014 21.4835 20.2948 21.403 20.4375 21.2604C20.5801 21.1178 20.6605 20.9243 20.6606 20.7226V11.7011L17.4762 8.51667H11.3159C11.1142 8.51675 10.9207 8.59716 10.7781 8.73978C10.6355 8.88241 10.5551 9.07588 10.555 9.27757V11.0663C10.5549 11.4361 10.2554 11.7357 9.88565 11.7357C9.51591 11.7357 9.21646 11.4361 9.21631 11.0663Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.7925 16.4303C12.7924 15.6151 12.1313 14.9539 11.3161 14.9539C10.5009 14.954 9.83971 15.6151 9.83967 16.4303C9.83967 17.2456 10.5008 17.9067 11.3161 17.9067C12.1313 17.9067 12.7925 17.2456 12.7925 16.4303ZM14.1319 16.4303C14.1319 17.9853 12.871 19.2462 11.3161 19.2462C9.76116 19.2462 8.50098 17.9853 8.50098 16.4303C8.50102 14.8754 9.76119 13.6153 11.3161 13.6152C12.871 13.6152 14.1319 14.8754 14.1319 16.4303Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON CHECK ARCHIVO -->\r\n<div *ngIf=\"icon == 'check-file'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M21.7974 10.4002L18.2973 6.99741C18.1643 6.87491 17.9893 6.80005 17.8003 6.80005H10.1001C8.94503 6.80005 8 7.7188 8 8.84172V21.0917C8 22.2146 8.94503 23.1334 10.1001 23.1334H12.2001C12.5851 23.1334 12.9001 22.8271 12.9001 22.4528C12.9001 22.0785 12.5851 21.7723 12.2001 21.7723H10.1001C9.71505 21.7723 9.40004 21.466 9.40004 21.0917V8.84172C9.40004 8.46741 9.71505 8.16116 10.1001 8.16116H16.4002V11.5639C16.4002 11.9382 16.7152 12.2445 17.1002 12.2445H20.6003V15.6473C20.6003 16.0216 20.9154 16.3278 21.3004 16.3278C21.6854 16.3278 22.0004 16.0216 22.0004 15.6473V10.8834C22.0004 10.6996 21.9234 10.5295 21.7974 10.4002ZM17.8003 10.8834V8.44019L20.3133 10.8834H17.8003Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.8164 15C18.9205 15 20.6336 16.7119 20.6338 18.8164C20.6338 20.921 18.9206 22.6338 16.8164 22.6338C14.7124 22.6336 13 20.9209 13 18.8164C13.0002 16.712 14.7125 15.0002 16.8164 15ZM16.8164 16.0908C15.3134 16.0911 14.091 17.3135 14.0908 18.8164C14.0908 20.3195 15.3133 21.5427 16.8164 21.543C18.3197 21.543 19.543 20.3196 19.543 18.8164C19.5428 17.3133 18.3196 16.0908 16.8164 16.0908ZM17.5234 17.8135C17.7366 17.6003 18.0807 17.6004 18.2939 17.8135C18.5071 18.0267 18.5071 18.3713 18.2939 18.584L16.8398 20.0381C16.7336 20.1443 16.5945 20.1971 16.4551 20.1973C16.3156 20.1973 16.1756 20.1443 16.0693 20.0381L15.3418 19.3115C15.1287 19.0984 15.1288 18.7532 15.3418 18.54C15.555 18.3269 15.9001 18.3269 16.1133 18.54L16.4551 18.8818L17.5234 17.8135Z\"/>\r\n </svg>\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.7974 10.4002L18.2973 6.99741C18.1643 6.87491 17.9893 6.80005 17.8003 6.80005H10.1001C8.94503 6.80005 8 7.7188 8 8.84172V21.0917C8 22.2146 8.94503 23.1334 10.1001 23.1334H12.2001C12.5851 23.1334 12.9001 22.8271 12.9001 22.4528C12.9001 22.0785 12.5851 21.7723 12.2001 21.7723H10.1001C9.71505 21.7723 9.40004 21.466 9.40004 21.0917V8.84172C9.40004 8.46741 9.71505 8.16116 10.1001 8.16116H16.4002V11.5639C16.4002 11.9382 16.7152 12.2445 17.1002 12.2445H20.6003V15.6473C20.6003 16.0216 20.9154 16.3278 21.3004 16.3278C21.6854 16.3278 22.0004 16.0216 22.0004 15.6473V10.8834C22.0004 10.6996 21.9234 10.5295 21.7974 10.4002ZM17.8003 10.8834V8.44019L20.3133 10.8834H17.8003Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.8164 15C18.9205 15 20.6336 16.7119 20.6338 18.8164C20.6338 20.921 18.9206 22.6338 16.8164 22.6338C14.7124 22.6336 13 20.9209 13 18.8164C13.0002 16.712 14.7125 15.0002 16.8164 15ZM16.8164 16.0908C15.3134 16.0911 14.091 17.3135 14.0908 18.8164C14.0908 20.3195 15.3133 21.5427 16.8164 21.543C18.3197 21.543 19.543 20.3196 19.543 18.8164C19.5428 17.3133 18.3196 16.0908 16.8164 16.0908ZM17.5234 17.8135C17.7366 17.6003 18.0807 17.6004 18.2939 17.8135C18.5071 18.0267 18.5071 18.3713 18.2939 18.584L16.8398 20.0381C16.7336 20.1443 16.5945 20.1971 16.4551 20.1973C16.3156 20.1973 16.1756 20.1443 16.0693 20.0381L15.3418 19.3115C15.1287 19.0984 15.1288 18.7532 15.3418 18.54C15.555 18.3269 15.9001 18.3269 16.1133 18.54L16.4551 18.8818L17.5234 17.8135Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON EDITAR ARCHIVO -->\r\n<div *ngIf=\"icon == 'edit-file'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M21.6585 10.5266L18.2299 7.19333C18.0996 7.07333 17.9282 7 17.7431 7H10.2002C9.06878 7 8.14307 7.89999 8.14307 8.99998V20.9999C8.14307 22.0998 9.06878 22.9998 10.2002 22.9998H12.2574C12.6345 22.9998 12.9431 22.6998 12.9431 22.3332C12.9431 21.9665 12.6345 21.6665 12.2574 21.6665H10.2002C9.82307 21.6665 9.51449 21.3665 9.51449 20.9999V8.99998C9.51449 8.63332 9.82307 8.33332 10.2002 8.33332H16.3716V11.6666C16.3716 12.0333 16.6802 12.3333 17.0574 12.3333H20.4859V15.6666C20.4859 16.0332 20.7945 16.3332 21.1716 16.3332C21.5488 16.3332 21.8574 16.0332 21.8574 15.6666V11C21.8574 10.82 21.7819 10.6533 21.6585 10.5266ZM17.7431 11V8.60665L20.2048 11H17.7431Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.0255 22.8331C14.1335 22.9411 14.2791 22.9999 14.4288 22.9999C14.4756 22.9999 14.5224 22.9942 14.5698 22.9828L16.826 22.4115C16.9248 22.3863 17.0162 22.3344 17.0887 22.2618L20.1959 19.1649C20.5306 18.8301 20.7146 18.3857 20.7146 17.9126C20.7146 17.4396 20.5306 16.9946 20.1959 16.6604C19.506 15.9703 18.383 15.9703 17.6919 16.6604L14.5898 19.7687C14.5173 19.8419 14.4653 19.9333 14.4402 20.0332L13.8747 22.2898C13.8256 22.4852 13.8827 22.6908 14.0255 22.8331ZM15.2153 21.6408L15.51 20.464L18.4995 17.4693C18.7446 17.2237 19.1433 17.2237 19.3883 17.4693C19.5071 17.5876 19.5722 17.7453 19.5722 17.9132C19.5722 18.0812 19.5071 18.2388 19.3889 18.3571L16.393 21.3426L15.2153 21.6408Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.6585 10.5266L18.2299 7.19333C18.0996 7.07333 17.9282 7 17.7431 7H10.2002C9.06878 7 8.14307 7.89999 8.14307 8.99998V20.9999C8.14307 22.0998 9.06878 22.9998 10.2002 22.9998H12.2574C12.6345 22.9998 12.9431 22.6998 12.9431 22.3332C12.9431 21.9665 12.6345 21.6665 12.2574 21.6665H10.2002C9.82307 21.6665 9.51449 21.3665 9.51449 20.9999V8.99998C9.51449 8.63332 9.82307 8.33332 10.2002 8.33332H16.3716V11.6666C16.3716 12.0333 16.6802 12.3333 17.0574 12.3333H20.4859V15.6666C20.4859 16.0332 20.7945 16.3332 21.1716 16.3332C21.5488 16.3332 21.8574 16.0332 21.8574 15.6666V11C21.8574 10.82 21.7819 10.6533 21.6585 10.5266ZM17.7431 11V8.60665L20.2048 11H17.7431Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.0255 22.8331C14.1335 22.9411 14.2791 22.9999 14.4288 22.9999C14.4756 22.9999 14.5224 22.9942 14.5698 22.9828L16.826 22.4115C16.9248 22.3863 17.0162 22.3344 17.0887 22.2618L20.1959 19.1649C20.5306 18.8301 20.7146 18.3857 20.7146 17.9126C20.7146 17.4396 20.5306 16.9946 20.1959 16.6604C19.506 15.9703 18.383 15.9703 17.6919 16.6604L14.5898 19.7687C14.5173 19.8419 14.4653 19.9333 14.4402 20.0332L13.8747 22.2898C13.8256 22.4852 13.8827 22.6908 14.0255 22.8331ZM15.2153 21.6408L15.51 20.464L18.4995 17.4693C18.7446 17.2237 19.1433 17.2237 19.3883 17.4693C19.5071 17.5876 19.5722 17.7453 19.5722 17.9132C19.5722 18.0812 19.5071 18.2388 19.3889 18.3571L16.393 21.3426L15.2153 21.6408Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON BUSCAR ARCHIVO -->\r\n<div *ngIf=\"icon == 'search-file'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M21.797 10.5267L18.297 7.19333C18.164 7.07333 17.989 7 17.8 7H10.1C8.945 7 8 7.9 8 9V21C8 22.1 8.945 23 10.1 23H12.2C12.585 23 12.9 22.7 12.9 22.3333C12.9 21.9667 12.585 21.6667 12.2 21.6667H10.1C9.715 21.6667 9.4 21.3667 9.4 21V9C9.4 8.63333 9.715 8.33333 10.1 8.33333H16.4V11.6667C16.4 12.0333 16.715 12.3333 17.1 12.3333H20.6V15.6667C20.6 16.0333 20.915 16.3333 21.3 16.3333C21.685 16.3333 22 16.0333 22 15.6667V11C22 10.82 21.923 10.6533 21.797 10.5267ZM17.8 11V8.60667L20.313 11H17.8Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M20.4784 21.6129L18.7599 19.9193C18.7546 19.9115 18.7428 19.9024 18.7362 19.9011C19.0287 19.5144 19.2327 19.0562 19.3301 18.5502C19.6791 16.7366 18.4904 14.9813 16.6767 14.6323C14.8631 14.2833 13.1078 15.472 12.7588 17.2856C12.4098 19.0993 13.5985 20.8545 15.4121 21.2036C16.2533 21.3654 17.0762 21.1967 17.761 20.7901C17.7822 20.8215 17.8047 20.8462 17.8272 20.871L19.5456 22.5647C19.6422 22.665 19.7607 22.7219 19.8856 22.7459C20.0958 22.7864 20.3264 22.7217 20.4879 22.5552C20.7485 22.2987 20.7427 21.8682 20.4784 21.6129ZM15.6651 19.8893C14.5808 19.6807 13.8644 18.6228 14.0731 17.5386C14.2817 16.4543 15.3396 15.7379 16.4238 15.9466C17.5081 16.1552 18.2245 17.2131 18.0158 18.2973C17.8072 19.3816 16.7493 20.098 15.6651 19.8893Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.797 10.5267L18.297 7.19333C18.164 7.07333 17.989 7 17.8 7H10.1C8.945 7 8 7.9 8 9V21C8 22.1 8.945 23 10.1 23H12.2C12.585 23 12.9 22.7 12.9 22.3333C12.9 21.9667 12.585 21.6667 12.2 21.6667H10.1C9.715 21.6667 9.4 21.3667 9.4 21V9C9.4 8.63333 9.715 8.33333 10.1 8.33333H16.4V11.6667C16.4 12.0333 16.715 12.3333 17.1 12.3333H20.6V15.6667C20.6 16.0333 20.915 16.3333 21.3 16.3333C21.685 16.3333 22 16.0333 22 15.6667V11C22 10.82 21.923 10.6533 21.797 10.5267ZM17.8 11V8.60667L20.313 11H17.8Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M20.4784 21.6129L18.7599 19.9193C18.7546 19.9115 18.7428 19.9024 18.7362 19.9011C19.0287 19.5144 19.2327 19.0562 19.3301 18.5502C19.6791 16.7366 18.4904 14.9813 16.6767 14.6323C14.8631 14.2833 13.1078 15.472 12.7588 17.2856C12.4098 19.0993 13.5985 20.8545 15.4121 21.2036C16.2533 21.3654 17.0762 21.1967 17.761 20.7901C17.7822 20.8215 17.8047 20.8462 17.8272 20.871L19.5456 22.5647C19.6422 22.665 19.7607 22.7219 19.8856 22.7459C20.0958 22.7864 20.3264 22.7217 20.4879 22.5552C20.7485 22.2987 20.7427 21.8682 20.4784 21.6129ZM15.6651 19.8893C14.5808 19.6807 13.8644 18.6228 14.0731 17.5386C14.2817 16.4543 15.3396 15.7379 16.4238 15.9466C17.5081 16.1552 18.2245 17.2131 18.0158 18.2973C17.8072 19.3816 16.7493 20.098 15.6651 19.8893Z\"/>\r\n </svg>\r\n</div>\r\n\r\n\r\n<!-- ICON GENERAR ARCHIVO -->\r\n<div *ngIf=\"icon == 'generate-file'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M19.9499 20.2498H14.85C14.34 20.2498 14 19.9098 14 19.3998C14 18.8898 14.34 18.5498 14.85 18.5498H19.9499C20.4599 18.5498 20.7999 18.8898 20.7999 19.3998C20.7999 19.9098 20.4599 20.2498 19.9499 20.2498Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M17.4008 22.7999C16.8908 22.7999 16.5508 22.4599 16.5508 21.9499V16.85C16.5508 16.34 16.8908 16 17.4008 16C17.9108 16 18.2508 16.34 18.2508 16.85V21.9499C18.2508 22.4599 17.9108 22.7999 17.4008 22.7999Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.797 10.5267L18.297 7.19333C18.164 7.07333 17.989 7 17.8 7H10.1C8.945 7 8 7.9 8 9V21C8 22.1 8.945 23 10.1 23H12.2C12.585 23 12.9 22.7 12.9 22.3333C12.9 21.9667 12.585 21.6667 12.2 21.6667H10.1C9.715 21.6667 9.4 21.3667 9.4 21V9C9.4 8.63333 9.715 8.33333 10.1 8.33333H16.4V11.6667C16.4 12.0333 16.715 12.3333 17.1 12.3333H20.6V15.6667C20.6 16.0333 20.915 16.3333 21.3 16.3333C21.685 16.3333 22 16.0333 22 15.6667V11C22 10.82 21.923 10.6533 21.797 10.5267ZM17.8 11V8.60667L20.313 11H17.8Z\"/>\r\n </svg>\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.9499 20.2498H14.85C14.34 20.2498 14 19.9098 14 19.3998C14 18.8898 14.34 18.5498 14.85 18.5498H19.9499C20.4599 18.5498 20.7999 18.8898 20.7999 19.3998C20.7999 19.9098 20.4599 20.2498 19.9499 20.2498Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M17.4008 22.7999C16.8908 22.7999 16.5508 22.4599 16.5508 21.9499V16.85C16.5508 16.34 16.8908 16 17.4008 16C17.9108 16 18.2508 16.34 18.2508 16.85V21.9499C18.2508 22.4599 17.9108 22.7999 17.4008 22.7999Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.797 10.5267L18.297 7.19333C18.164 7.07333 17.989 7 17.8 7H10.1C8.945 7 8 7.9 8 9V21C8 22.1 8.945 23 10.1 23H12.2C12.585 23 12.9 22.7 12.9 22.3333C12.9 21.9667 12.585 21.6667 12.2 21.6667H10.1C9.715 21.6667 9.4 21.3667 9.4 21V9C9.4 8.63333 9.715 8.33333 10.1 8.33333H16.4V11.6667C16.4 12.0333 16.715 12.3333 17.1 12.3333H20.6V15.6667C20.6 16.0333 20.915 16.3333 21.3 16.3333C21.685 16.3333 22 16.0333 22 15.6667V11C22 10.82 21.923 10.6533 21.797 10.5267ZM17.8 11V8.60667L20.313 11H17.8Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON DESCARGAR ARCHIVO -->\r\n<div *ngIf=\"icon == 'download-file'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M20.5505 14.8677V13.0137C20.5505 11.8781 20.5495 11.089 20.4774 10.4845C20.4073 9.89693 20.2778 9.57136 20.0818 9.32817C19.9454 9.15942 19.783 9.00869 19.6005 8.88194V8.88116C19.3268 8.69076 18.957 8.56606 18.3083 8.49934C17.6481 8.43145 16.7895 8.43105 15.5706 8.43105H15.3692C14.9689 8.43105 14.6441 8.11052 14.6441 7.71552C14.6441 7.32052 14.9689 7 15.3692 7H15.5706C16.7583 7 17.7057 6.99941 18.4585 7.07683C19.2224 7.1554 19.8724 7.32194 20.4341 7.71242L20.4349 7.71164C20.7304 7.91684 20.9936 8.16201 21.2159 8.43726L21.2167 8.43803C21.6465 8.97133 21.8302 9.59337 21.9166 10.3176C22.001 11.0251 22 11.9129 22 13.0137V14.8677C22 15.9372 22.0004 16.774 21.9552 17.4504C21.9095 18.133 21.8152 18.7019 21.6028 19.2306C21.0047 20.7203 19.7881 21.8998 18.254 22.5211L17.9426 22.6383C16.8687 23.01 15.5522 22.9999 13.2882 22.9999C12.1015 22.9999 11.3069 23.0085 10.6551 22.8168L10.5262 22.7757C9.48641 22.415 8.649 21.6476 8.24931 20.6531C8.11103 20.309 8.05383 19.9479 8.02674 19.5426C8.00008 19.1437 8 18.6535 8 18.0464V15.0004C8 14.6054 8.32482 14.2848 8.72513 14.2848C9.12543 14.2848 9.45026 14.6054 9.45026 15.0004V18.0464C9.45026 18.6724 9.45027 19.1077 9.47306 19.4487C9.49542 19.7831 9.53703 19.9772 9.59654 20.1254C9.83324 20.7145 10.3413 21.1953 11.0067 21.4261L11.1577 21.4703C11.5314 21.5614 12.073 21.5697 13.2882 21.5697C15.6749 21.5697 16.6809 21.5594 17.4628 21.2887L17.7043 21.1979C18.8925 20.7167 19.8094 19.8131 20.2548 18.7037L20.3028 18.5756C20.4081 18.2672 20.473 17.8922 20.5088 17.3565C20.5502 16.7381 20.5505 15.9562 20.5505 14.8677Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.6286 19.8569C15.6286 19.7539 15.6236 19.6418 15.6176 19.5123C15.6118 19.3879 15.6048 19.2445 15.6019 19.1018C15.596 18.8206 15.6047 18.4783 15.6954 18.1434C15.7845 17.8165 15.9594 17.5174 16.2019 17.2781C16.4444 17.039 16.7463 16.867 17.0773 16.7791L17.0788 16.7783C17.4183 16.6888 17.7652 16.681 18.0501 16.6867C18.1946 16.6897 18.3394 16.6965 18.4654 16.7022C18.5966 16.7082 18.7102 16.7131 18.8146 16.7131C19.2749 16.7131 19.7168 16.5322 20.0423 16.211C20.3676 15.8899 20.5503 15.4544 20.5503 15.0004C20.5503 14.6054 20.8752 14.2848 21.2755 14.2848C21.6756 14.285 21.9998 14.6054 21.9998 15.0004C21.9997 15.8339 21.6644 16.6336 21.067 17.223C20.4697 17.8123 19.6593 18.1434 18.8146 18.1434C18.6732 18.1434 18.5299 18.1369 18.3993 18.131C18.2637 18.1248 18.1416 18.1195 18.0203 18.117C17.7734 18.112 17.5913 18.1233 17.4532 18.1597L17.454 18.1605C17.3681 18.1833 17.2896 18.228 17.2267 18.2901C17.1638 18.3522 17.1185 18.4296 17.0954 18.5143C17.0587 18.6505 17.0463 18.83 17.0513 19.0731C17.0538 19.1927 17.06 19.3127 17.0663 19.4464C17.0723 19.5753 17.0781 19.7173 17.0781 19.8569C17.078 20.2696 16.9959 20.6785 16.8358 21.0598C16.6757 21.4411 16.441 21.7877 16.1453 22.0795C15.8495 22.3714 15.4983 22.603 15.1119 22.7609C14.7254 22.9189 14.3111 22.9999 13.8928 22.9999C13.4925 22.9999 13.1677 22.6794 13.1677 22.2844C13.1679 21.8895 13.4926 21.5697 13.8928 21.5697C14.1208 21.5697 14.3468 21.5254 14.5574 21.4393C14.7679 21.3532 14.9594 21.2266 15.1205 21.0676C15.2816 20.9086 15.4093 20.7196 15.4965 20.5119C15.5836 20.3042 15.6286 20.0817 15.6286 19.8569ZM10.5842 7.71552C10.5842 7.32052 10.909 7 11.3093 7C11.7095 7.00014 12.0336 7.32061 12.0336 7.71552V11.9481C12.0954 11.8712 12.1567 11.7945 12.2161 11.72C12.3556 11.5448 12.5115 11.3489 12.6353 11.2233L13.1543 11.7223L13.6742 12.2205C13.6165 12.2791 13.5155 12.4032 13.3557 12.6039C13.2088 12.7884 13.0284 13.0164 12.8421 13.2333C12.6585 13.447 12.4481 13.6751 12.2342 13.8549C12.1269 13.9451 12.0018 14.0381 11.8637 14.111C11.7315 14.1808 11.5387 14.2584 11.3093 14.2585C11.0796 14.2585 10.8864 14.1809 10.754 14.111C10.616 14.0381 10.4909 13.9451 10.3836 13.8549C10.1697 13.6751 9.95923 13.447 9.77566 13.2333C9.58938 13.0164 9.40896 12.7884 9.26209 12.6039C9.10238 12.4033 9.0013 12.2791 8.94357 12.2205L9.98329 11.2233C10.1071 11.349 10.2629 11.5447 10.4025 11.72C10.4616 11.7942 10.5227 11.87 10.5842 11.9466V7.71552ZM8.95852 11.2093C9.24553 10.9341 9.70428 10.9401 9.98329 11.2233L8.94357 12.2205C8.66467 11.9373 8.67157 11.4846 8.95852 11.2093ZM12.6353 11.2233C12.9144 10.9403 13.3731 10.934 13.66 11.2093C13.9469 11.4847 13.9532 11.9374 13.6742 12.2205L12.6353 11.2233Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M20.5505 14.8677V13.0137C20.5505 11.8781 20.5495 11.089 20.4774 10.4845C20.4073 9.89693 20.2778 9.57136 20.0818 9.32817C19.9454 9.15942 19.783 9.00869 19.6005 8.88194V8.88116C19.3268 8.69076 18.957 8.56606 18.3083 8.49934C17.6481 8.43145 16.7895 8.43105 15.5706 8.43105H15.3692C14.9689 8.43105 14.6441 8.11052 14.6441 7.71552C14.6441 7.32052 14.9689 7 15.3692 7H15.5706C16.7583 7 17.7057 6.99941 18.4585 7.07683C19.2224 7.1554 19.8724 7.32194 20.4341 7.71242L20.4349 7.71164C20.7304 7.91684 20.9936 8.16201 21.2159 8.43726L21.2167 8.43803C21.6465 8.97133 21.8302 9.59337 21.9166 10.3176C22.001 11.0251 22 11.9129 22 13.0137V14.8677C22 15.9372 22.0004 16.774 21.9552 17.4504C21.9095 18.133 21.8152 18.7019 21.6028 19.2306C21.0047 20.7203 19.7881 21.8998 18.254 22.5211L17.9426 22.6383C16.8687 23.01 15.5522 22.9999 13.2882 22.9999C12.1015 22.9999 11.3069 23.0085 10.6551 22.8168L10.5262 22.7757C9.48641 22.415 8.649 21.6476 8.24931 20.6531C8.11103 20.309 8.05383 19.9479 8.02674 19.5426C8.00008 19.1437 8 18.6535 8 18.0464V15.0004C8 14.6054 8.32482 14.2848 8.72513 14.2848C9.12543 14.2848 9.45026 14.6054 9.45026 15.0004V18.0464C9.45026 18.6724 9.45027 19.1077 9.47306 19.4487C9.49542 19.7831 9.53703 19.9772 9.59654 20.1254C9.83324 20.7145 10.3413 21.1953 11.0067 21.4261L11.1577 21.4703C11.5314 21.5614 12.073 21.5697 13.2882 21.5697C15.6749 21.5697 16.6809 21.5594 17.4628 21.2887L17.7043 21.1979C18.8925 20.7167 19.8094 19.8131 20.2548 18.7037L20.3028 18.5756C20.4081 18.2672 20.473 17.8922 20.5088 17.3565C20.5502 16.7381 20.5505 15.9562 20.5505 14.8677Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.6286 19.8569C15.6286 19.7539 15.6236 19.6418 15.6176 19.5123C15.6118 19.3879 15.6048 19.2445 15.6019 19.1018C15.596 18.8206 15.6047 18.4783 15.6954 18.1434C15.7845 17.8165 15.9594 17.5174 16.2019 17.2781C16.4444 17.039 16.7463 16.867 17.0773 16.7791L17.0788 16.7783C17.4183 16.6888 17.7652 16.681 18.0501 16.6867C18.1946 16.6897 18.3394 16.6965 18.4654 16.7022C18.5966 16.7082 18.7102 16.7131 18.8146 16.7131C19.2749 16.7131 19.7168 16.5322 20.0423 16.211C20.3676 15.8899 20.5503 15.4544 20.5503 15.0004C20.5503 14.6054 20.8752 14.2848 21.2755 14.2848C21.6756 14.285 21.9998 14.6054 21.9998 15.0004C21.9997 15.8339 21.6644 16.6336 21.067 17.223C20.4697 17.8123 19.6593 18.1434 18.8146 18.1434C18.6732 18.1434 18.5299 18.1369 18.3993 18.131C18.2637 18.1248 18.1416 18.1195 18.0203 18.117C17.7734 18.112 17.5913 18.1233 17.4532 18.1597L17.454 18.1605C17.3681 18.1833 17.2896 18.228 17.2267 18.2901C17.1638 18.3522 17.1185 18.4296 17.0954 18.5143C17.0587 18.6505 17.0463 18.83 17.0513 19.0731C17.0538 19.1927 17.06 19.3127 17.0663 19.4464C17.0723 19.5753 17.0781 19.7173 17.0781 19.8569C17.078 20.2696 16.9959 20.6785 16.8358 21.0598C16.6757 21.4411 16.441 21.7877 16.1453 22.0795C15.8495 22.3714 15.4983 22.603 15.1119 22.7609C14.7254 22.9189 14.3111 22.9999 13.8928 22.9999C13.4925 22.9999 13.1677 22.6794 13.1677 22.2844C13.1679 21.8895 13.4926 21.5697 13.8928 21.5697C14.1208 21.5697 14.3468 21.5254 14.5574 21.4393C14.7679 21.3532 14.9594 21.2266 15.1205 21.0676C15.2816 20.9086 15.4093 20.7196 15.4965 20.5119C15.5836 20.3042 15.6286 20.0817 15.6286 19.8569ZM10.5842 7.71552C10.5842 7.32052 10.909 7 11.3093 7C11.7095 7.00014 12.0336 7.32061 12.0336 7.71552V11.9481C12.0954 11.8712 12.1567 11.7945 12.2161 11.72C12.3556 11.5448 12.5115 11.3489 12.6353 11.2233L13.1543 11.7223L13.6742 12.2205C13.6165 12.2791 13.5155 12.4032 13.3557 12.6039C13.2088 12.7884 13.0284 13.0164 12.8421 13.2333C12.6585 13.447 12.4481 13.6751 12.2342 13.8549C12.1269 13.9451 12.0018 14.0381 11.8637 14.111C11.7315 14.1808 11.5387 14.2584 11.3093 14.2585C11.0796 14.2585 10.8864 14.1809 10.754 14.111C10.616 14.0381 10.4909 13.9451 10.3836 13.8549C10.1697 13.6751 9.95923 13.447 9.77566 13.2333C9.58938 13.0164 9.40896 12.7884 9.26209 12.6039C9.10238 12.4033 9.0013 12.2791 8.94357 12.2205L9.98329 11.2233C10.1071 11.349 10.2629 11.5447 10.4025 11.72C10.4616 11.7942 10.5227 11.87 10.5842 11.9466V7.71552ZM8.95852 11.2093C9.24553 10.9341 9.70428 10.9401 9.98329 11.2233L8.94357 12.2205C8.66467 11.9373 8.67157 11.4846 8.95852 11.2093ZM12.6353 11.2233C12.9144 10.9403 13.3731 10.934 13.66 11.2093C13.9469 11.4847 13.9532 11.9374 13.6742 12.2205L12.6353 11.2233Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON HISTORIAL -->\r\n<div *ngIf=\"icon == 'record'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.4 14.7164V9.4159C20.4 8.20575 19.4136 7.22217 18.2 7.22217H10.2C8.9864 7.22217 8 8.20575 8 9.4159V19.7863C8 20.9964 8.9864 21.98 10.2 21.98H14.8103C15.5484 22.4832 16.4403 22.7777 17.4 22.7777C19.9369 22.7777 22 20.7196 22 18.1908C22 16.8038 21.3792 15.5582 20.4 14.7164ZM19.2 13.9697V9.4159C19.2 8.86627 18.7513 8.41875 18.2 8.41875H10.2C9.6488 8.41875 9.2 8.86627 9.2 9.4159V19.7863C9.2 20.3359 9.6488 20.7834 10.2 20.7834H13.6071C13.0981 20.0453 12.8 19.1521 12.8 18.1908C12.8 15.6621 14.8632 13.6039 17.4 13.6039C18.0384 13.6039 18.6469 13.7343 19.2 13.9697ZM11 9.61533H17.4C17.7312 9.61533 18 9.88337 18 10.2136C18 10.5439 17.7312 10.8119 17.4 10.8119H11C10.6688 10.8119 10.4 10.5439 10.4 10.2136C10.4 9.88337 10.6688 9.61533 11 9.61533ZM14.2 12.0085C14.5312 12.0085 14.8 12.2765 14.8 12.6068C14.8 12.937 14.5312 13.2051 14.2 13.2051H11C10.6688 13.2051 10.4 12.937 10.4 12.6068C10.4 12.2765 10.6688 12.0085 11 12.0085H14.2ZM10.4 14.9999C10.4 14.6697 10.6688 14.4017 11 14.4017H11.8C12.1312 14.4017 12.4 14.6697 12.4 14.9999C12.4 15.3302 12.1312 15.5982 11.8 15.5982H11C10.6688 15.5982 10.4 15.3302 10.4 14.9999ZM14 18.1908C14 20.0599 15.5248 21.5811 17.4 21.5811C19.2752 21.5811 20.8 20.0599 20.8 18.1908C20.8 16.3218 19.2752 14.8005 17.4 14.8005C15.5248 14.8005 14 16.3218 14 18.1908ZM18.964 18.7891C19.2952 18.7891 19.564 18.5211 19.564 18.1908C19.564 17.8606 19.2952 17.5925 18.964 17.5925H18V16.5675C18 16.2372 17.7312 15.9692 17.4 15.9692C17.0688 15.9692 16.8 16.2372 16.8 16.5675V18.1908C16.8 18.5211 17.0688 18.7891 17.4 18.7891H18.964Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.4 14.7164V9.4159C20.4 8.20575 19.4136 7.22217 18.2 7.22217H10.2C8.9864 7.22217 8 8.20575 8 9.4159V19.7863C8 20.9964 8.9864 21.98 10.2 21.98H14.8103C15.5484 22.4832 16.4403 22.7777 17.4 22.7777C19.9369 22.7777 22 20.7196 22 18.1908C22 16.8038 21.3792 15.5582 20.4 14.7164ZM19.2 13.9697V9.4159C19.2 8.86627 18.7513 8.41875 18.2 8.41875H10.2C9.6488 8.41875 9.2 8.86627 9.2 9.4159V19.7863C9.2 20.3359 9.6488 20.7834 10.2 20.7834H13.6071C13.0981 20.0453 12.8 19.1521 12.8 18.1908C12.8 15.6621 14.8632 13.6039 17.4 13.6039C18.0384 13.6039 18.6469 13.7343 19.2 13.9697ZM11 9.61533H17.4C17.7312 9.61533 18 9.88337 18 10.2136C18 10.5439 17.7312 10.8119 17.4 10.8119H11C10.6688 10.8119 10.4 10.5439 10.4 10.2136C10.4 9.88337 10.6688 9.61533 11 9.61533ZM14.2 12.0085C14.5312 12.0085 14.8 12.2765 14.8 12.6068C14.8 12.937 14.5312 13.2051 14.2 13.2051H11C10.6688 13.2051 10.4 12.937 10.4 12.6068C10.4 12.2765 10.6688 12.0085 11 12.0085H14.2ZM10.4 14.9999C10.4 14.6697 10.6688 14.4017 11 14.4017H11.8C12.1312 14.4017 12.4 14.6697 12.4 14.9999C12.4 15.3302 12.1312 15.5982 11.8 15.5982H11C10.6688 15.5982 10.4 15.3302 10.4 14.9999ZM14 18.1908C14 20.0599 15.5248 21.5811 17.4 21.5811C19.2752 21.5811 20.8 20.0599 20.8 18.1908C20.8 16.3218 19.2752 14.8005 17.4 14.8005C15.5248 14.8005 14 16.3218 14 18.1908ZM18.964 18.7891C19.2952 18.7891 19.564 18.5211 19.564 18.1908C19.564 17.8606 19.2952 17.5925 18.964 17.5925H18V16.5675C18 16.2372 17.7312 15.9692 17.4 15.9692C17.0688 15.9692 16.8 16.2372 16.8 16.5675V18.1908C16.8 18.5211 17.0688 18.7891 17.4 18.7891H18.964Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON CONSUMO DE FARMACIA -->\r\n<div *ngIf=\"icon == 'pharmacy-consumption'\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\r\n <svg *ngIf=\"!hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <path [attr.fill]=\"color\" d=\"M19.6592 6.95508C20.9495 6.95508 22 8.00548 22 9.2959V20.7041C21.9998 21.995 20.9494 23.0449 19.6592 23.0449H10.3379C9.04773 23.0448 7.99824 21.995 7.99805 20.7041V9.2959C7.99805 8.00554 9.04762 6.95518 10.3379 6.95508H19.6592ZM10.3379 8.2959C9.78674 8.296 9.33887 8.7447 9.33887 9.2959V20.7041C9.33906 21.2558 9.78686 21.704 10.3379 21.7041H19.6592C20.2103 21.7041 20.659 21.2559 20.6592 20.7041V9.2959C20.6592 8.74464 20.2104 8.2959 19.6592 8.2959H10.3379ZM14.9668 18.8379C15.3372 18.838 15.6367 19.1383 15.6367 19.5088C15.6365 19.879 15.3371 20.1786 14.9668 20.1787H12.0059C11.6356 20.1786 11.3362 19.879 11.3359 19.5088C11.3359 19.1383 11.6354 18.838 12.0059 18.8379H14.9668ZM17.9922 15.6348C18.3627 15.6348 18.6631 15.9351 18.6631 16.3057C18.663 16.6761 18.3627 16.9756 17.9922 16.9756H12.0059C11.6355 16.9755 11.336 16.6761 11.3359 16.3057C11.3359 15.9352 11.6354 15.6349 12.0059 15.6348H17.9922ZM17.8838 10.043C18.1319 9.7681 18.5561 9.74474 18.8311 9.99219C19.1063 10.2396 19.1289 10.6629 18.8818 10.9385L16.7314 13.3359C16.5122 13.5801 16.1464 13.6294 15.8721 13.4541L13.7852 12.123L12.0986 13.8828C11.8412 14.1505 11.4168 14.158 11.1504 13.9023C10.8837 13.6464 10.8746 13.2228 11.1309 12.9551L13.1982 10.7979C13.4202 10.5677 13.7737 10.5268 14.042 10.6963L16.1133 12.0176L17.8838 10.043Z\"/>\r\n </svg>\r\n\r\n <svg *ngIf=\"hover\" [attr.width]=\"width\" [attr.height]=\"height\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.6592 6.95508C20.9495 6.95508 22 8.00548 22 9.2959V20.7041C21.9998 21.995 20.9494 23.0449 19.6592 23.0449H10.3379C9.04773 23.0448 7.99824 21.995 7.99805 20.7041V9.2959C7.99805 8.00554 9.04762 6.95518 10.3379 6.95508H19.6592ZM10.3379 8.2959C9.78674 8.296 9.33887 8.7447 9.33887 9.2959V20.7041C9.33906 21.2558 9.78686 21.704 10.3379 21.7041H19.6592C20.2103 21.7041 20.659 21.2559 20.6592 20.7041V9.2959C20.6592 8.74464 20.2104 8.2959 19.6592 8.2959H10.3379ZM14.9668 18.8379C15.3372 18.838 15.6367 19.1383 15.6367 19.5088C15.6365 19.879 15.3371 20.1786 14.9668 20.1787H12.0059C11.6356 20.1786 11.3362 19.879 11.3359 19.5088C11.3359 19.1383 11.6354 18.838 12.0059 18.8379H14.9668ZM17.9922 15.6348C18.3627 15.6348 18.6631 15.9351 18.6631 16.3057C18.663 16.6761 18.3627 16.9756 17.9922 16.9756H12.0059C11.6355 16.9755 11.336 16.6761 11.3359 16.3057C11.3359 15.9352 11.6354 15.6349 12.0059 15.6348H17.9922ZM17.8838 10.043C18.1319 9.7681 18.5561 9.74474 18.8311 9.99219C19.1063 10.2396 19.1289 10.6629 18.8818 10.9385L16.7314 13.3359C16.5122 13.5801 16.1464 13.6294 15.8721 13.4541L13.7852 12.123L12.0986 13.8828C11.8412 14.1505 11.4168 14.158 11.1504 13.9023C10.8837 13.6464 10.8746 13.2228 11.1309 12.9551L13.1982 10.7979C13.4202 10.5677 13.7737 10.5268 14.042 10.6963L16.1133 12.0176L17.8838 10.043Z\"/>\r\n </svg>\r\n</div>\r\n<div *ngIf=\"icon == ''\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\"></div>\r\n<div *ngIf=\"icon == ''\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\"></div>\r\n<div *ngIf=\"icon == ''\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\"></div>\r\n<div *ngIf=\"icon == ''\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\"></div>\r\n<div *ngIf=\"icon == ''\" class=\"d-inline-flex\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\"></div>", styles: [".d-inline-flex{display:inline-flex}\n"], directives: [{ type: i1__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
2094
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: LibeyNgIconsComponent, decorators: [{
2095
+ type: i0.Component,
2096
+ args: [{
2097
+ selector: 'lib-libey-ng-icons',
2098
+ templateUrl: './libey-ng-icons.component.html',
2099
+ styleUrls: ['../icons.component.css']
2100
+ }]
2101
+ }], ctorParameters: function () { return []; }, propDecorators: { color: [{
2102
+ type: i0.Input
2103
+ }], bgColorHover: [{
2104
+ type: i0.Input
2105
+ }], icon: [{
2106
+ type: i0.Input
2107
+ }], width: [{
2108
+ type: i0.Input
2109
+ }], height: [{
2110
+ type: i0.Input
2111
+ }], activeHover: [{
2112
+ type: i0.Input
2113
+ }] } });
2114
+
2115
+ var IconsModule = /** @class */ (function () {
2116
+ function IconsModule() {
2117
+ }
2118
+ return IconsModule;
2119
+ }());
2120
+ IconsModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: IconsModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
2121
+ IconsModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: IconsModule, declarations: [LibeyNgIconsComponent], imports: [i1$1.CommonModule], exports: [LibeyNgIconsComponent] });
2122
+ IconsModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: IconsModule, imports: [[
2123
+ i1$1.CommonModule
2124
+ ]] });
2125
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: IconsModule, decorators: [{
2126
+ type: i0.NgModule,
2127
+ args: [{
2128
+ declarations: [
2129
+ LibeyNgIconsComponent
2130
+ ],
2131
+ imports: [
2132
+ i1$1.CommonModule
2133
+ ],
2134
+ exports: [
2135
+ LibeyNgIconsComponent
2136
+ ]
2137
+ }]
2138
+ }] });
2139
+
2071
2140
  var LibeyNgComponentLibraryModule = /** @class */ (function () {
2072
2141
  function LibeyNgComponentLibraryModule() {
2073
2142
  }
@@ -2078,18 +2147,22 @@
2078
2147
  i4.FormsModule,
2079
2148
  LibeyNgTableModule,
2080
2149
  LibeyNgSignatureModule,
2081
- i1.SignaturePadModule], exports: [LibeyNgTableModule,
2150
+ i1.SignaturePadModule,
2151
+ IconsModule], exports: [LibeyNgTableModule,
2082
2152
  LibeyNgSignatureModule,
2083
- i1.SignaturePadModule] });
2153
+ i1.SignaturePadModule,
2154
+ IconsModule] });
2084
2155
  LibeyNgComponentLibraryModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: LibeyNgComponentLibraryModule, providers: [i1$1.DatePipe], imports: [[
2085
2156
  i1$1.CommonModule,
2086
2157
  i4.FormsModule,
2087
2158
  LibeyNgTableModule,
2088
2159
  LibeyNgSignatureModule,
2089
- i1.SignaturePadModule
2160
+ i1.SignaturePadModule,
2161
+ IconsModule
2090
2162
  ], LibeyNgTableModule,
2091
2163
  LibeyNgSignatureModule,
2092
- i1.SignaturePadModule] });
2164
+ i1.SignaturePadModule,
2165
+ IconsModule] });
2093
2166
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: LibeyNgComponentLibraryModule, decorators: [{
2094
2167
  type: i0.NgModule,
2095
2168
  args: [{
@@ -2099,12 +2172,14 @@
2099
2172
  i4.FormsModule,
2100
2173
  LibeyNgTableModule,
2101
2174
  LibeyNgSignatureModule,
2102
- i1.SignaturePadModule
2175
+ i1.SignaturePadModule,
2176
+ IconsModule
2103
2177
  ],
2104
2178
  exports: [
2105
2179
  LibeyNgTableModule,
2106
2180
  LibeyNgSignatureModule,
2107
- i1.SignaturePadModule
2181
+ i1.SignaturePadModule,
2182
+ IconsModule
2108
2183
  ],
2109
2184
  providers: [i1$1.DatePipe]
2110
2185
  }]
@@ -2134,10 +2209,12 @@
2134
2209
  enumerable: true,
2135
2210
  get: function () { return ngBootstrap.NgbModule; }
2136
2211
  });
2212
+ exports.IconsModule = IconsModule;
2137
2213
  exports.LibeyColumnDirective = LibeyColumnDirective;
2138
2214
  exports.LibeyNgComponentLibraryComponent = LibeyNgComponentLibraryComponent;
2139
2215
  exports.LibeyNgComponentLibraryModule = LibeyNgComponentLibraryModule;
2140
2216
  exports.LibeyNgComponentLibraryService = LibeyNgComponentLibraryService;
2217
+ exports.LibeyNgIconsComponent = LibeyNgIconsComponent;
2141
2218
  exports.LibeyNgSignatureComponent = LibeyNgSignatureComponent;
2142
2219
  exports.LibeyNgSignatureModule = LibeyNgSignatureModule;
2143
2220
  exports.LibeyNgTableComponent = LibeyNgTableComponent;