libey-ng-component-library 0.0.21 → 0.0.23

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,81 @@
2068
2068
  }]
2069
2069
  }] });
2070
2070
 
2071
+ var LibeyNgIconsComponent = /** @class */ (function () {
2072
+ function LibeyNgIconsComponent() {
2073
+ this.color = "#224051";
2074
+ this.bgColorHover = "transparent";
2075
+ this.borderColor = "transparent";
2076
+ this.borderColorHover = "transparent";
2077
+ this.icon = "";
2078
+ this.width = 30;
2079
+ this.height = 30;
2080
+ this.activeHover = false;
2081
+ this.hover = false;
2082
+ }
2083
+ LibeyNgIconsComponent.prototype.ngOnInit = function () {
2084
+ };
2085
+ LibeyNgIconsComponent.prototype.onMouseEnter = function () {
2086
+ if (this.activeHover)
2087
+ this.hover = true;
2088
+ };
2089
+ LibeyNgIconsComponent.prototype.onMouseLeave = function () {
2090
+ this.hover = false;
2091
+ };
2092
+ return LibeyNgIconsComponent;
2093
+ }());
2094
+ LibeyNgIconsComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: LibeyNgIconsComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
2095
+ 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", borderColor: "borderColor", borderColorHover: "borderColorHover", 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 -->\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M12.3584 11.7441C12.3584 11.4337 12.5643 11.1737 12.8467 11.0879V11.0557H16.9531V11.2559H13.0469C12.7772 11.2559 12.5586 11.4744 12.5586 11.7441L12.5684 11.8428C12.614 12.0652 12.8109 12.2324 13.0469 12.2324H16.9531C17.2228 12.2324 17.4414 12.0139 17.4414 11.7441C17.4414 11.4744 17.2228 11.2559 16.9531 11.2559V11.0557H17.1533V11.0879C17.4356 11.1737 17.6416 11.4337 17.6416 11.7441C17.6416 12.0544 17.4355 12.3135 17.1533 12.3994V12.4326H12.8467V12.3994C12.5645 12.3135 12.3584 12.0544 12.3584 11.7441ZM16.8154 8.97656C17.3766 8.97663 17.9147 9.19986 18.3115 9.59668L20.4033 11.6885L21.0938 10.998L19.002 8.90625C18.422 8.32626 17.6357 8.00007 16.8154 8V8.97656ZM12.4326 20.8232H17.5674V17.6045C17.5673 17.2655 17.2922 16.9902 16.9531 16.9902H13.0469C12.7503 16.9902 12.5027 17.2009 12.4453 17.4805L12.4326 17.6045V20.8232ZM21.0234 18.9072C21.0233 20.0758 20.0758 21.0233 18.9072 21.0234H18.7441V17.6045C18.7441 16.6156 17.9421 15.8135 16.9531 15.8135V16.791C17.4026 16.791 17.7675 17.155 17.7676 17.6045V21.0234H12.2324V17.6045C12.2325 17.155 12.5974 16.791 13.0469 16.791V15.8135C12.058 15.8135 11.2559 16.6156 11.2559 17.6045V21.0234H11.0928C9.99703 21.0233 9.09551 20.1903 8.9873 19.123L8.97656 18.9072V11.0928C8.9767 9.92418 9.92419 8.9767 11.0928 8.97656V8C9.38474 8.00014 8.00014 9.38474 8 11.0928V18.9072C8.00014 20.6153 9.38474 21.9999 11.0928 22H18.9072C20.5619 21.9999 21.9131 20.7005 21.9961 19.0664L22 18.9072V13.1846C21.9999 12.3643 21.6737 11.578 21.0938 10.998L20.4033 11.6885C20.8001 12.0853 21.0234 12.6234 21.0234 13.1846V18.9072ZM22.2002 19.1074H22.1934C22.0937 20.7664 20.7664 22.0927 19.1074 22.1924V22.2002H10.8926V22.1924C9.2336 22.0927 7.90627 20.7664 7.80664 19.1074H7.7998V10.8926H7.80664C7.90627 9.23359 9.2336 7.90728 10.8926 7.80762V7.7998H16.8154V8H11.0928V8.97656H16.8154V7.7998H17.0156V7.80664C17.7491 7.85135 18.4468 8.13998 18.9971 8.62695L19.002 8.62305L21.377 10.998L21.3721 11.002C21.8596 11.5525 22.1486 12.2504 22.1934 12.9844H22.2002V19.1074ZM9.17676 18.9072L9.18652 19.1025C9.28325 20.0568 10.0803 20.8026 11.0557 20.8213V17.4043H11.0664C11.1603 16.4647 11.907 15.7167 12.8467 15.623V15.6143H16.9531V15.8135H13.0469V16.791H16.9531V15.6143H17.1533V15.623C18.093 15.7167 18.8397 16.4647 18.9336 17.4043H18.9443V20.8213C19.9197 20.8026 20.7167 20.0568 20.8135 19.1025L20.8232 18.9072V13.1846C20.8232 12.7401 20.6688 12.3116 20.3896 11.9707L20.2617 11.8301L18.1699 9.73828L18.0293 9.61035C17.7372 9.37113 17.3806 9.2239 17.0049 9.18652L16.8154 9.17676H11.0928C10.1006 9.17688 9.28448 9.93107 9.18652 10.8975L9.17676 11.0928V18.9072Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M12.3584 11.7441C12.3584 11.4337 12.5643 11.1737 12.8467 11.0879V11.0557H16.9531V11.2559H13.0469C12.7772 11.2559 12.5586 11.4744 12.5586 11.7441L12.5684 11.8428C12.614 12.0652 12.8109 12.2324 13.0469 12.2324H16.9531C17.2228 12.2324 17.4414 12.0139 17.4414 11.7441C17.4414 11.4744 17.2228 11.2559 16.9531 11.2559V11.0557H17.1533V11.0879C17.4356 11.1737 17.6416 11.4337 17.6416 11.7441C17.6416 12.0544 17.4355 12.3135 17.1533 12.3994V12.4326H12.8467V12.3994C12.5645 12.3135 12.3584 12.0544 12.3584 11.7441ZM16.8154 8.97656C17.3766 8.97663 17.9147 9.19986 18.3115 9.59668L20.4033 11.6885L21.0938 10.998L19.002 8.90625C18.422 8.32626 17.6357 8.00007 16.8154 8V8.97656ZM12.4326 20.8232H17.5674V17.6045C17.5673 17.2655 17.2922 16.9902 16.9531 16.9902H13.0469C12.7503 16.9902 12.5027 17.2009 12.4453 17.4805L12.4326 17.6045V20.8232ZM21.0234 18.9072C21.0233 20.0758 20.0758 21.0233 18.9072 21.0234H18.7441V17.6045C18.7441 16.6156 17.9421 15.8135 16.9531 15.8135V16.791C17.4026 16.791 17.7675 17.155 17.7676 17.6045V21.0234H12.2324V17.6045C12.2325 17.155 12.5974 16.791 13.0469 16.791V15.8135C12.058 15.8135 11.2559 16.6156 11.2559 17.6045V21.0234H11.0928C9.99703 21.0233 9.09551 20.1903 8.9873 19.123L8.97656 18.9072V11.0928C8.9767 9.92418 9.92419 8.9767 11.0928 8.97656V8C9.38474 8.00014 8.00014 9.38474 8 11.0928V18.9072C8.00014 20.6153 9.38474 21.9999 11.0928 22H18.9072C20.5619 21.9999 21.9131 20.7005 21.9961 19.0664L22 18.9072V13.1846C21.9999 12.3643 21.6737 11.578 21.0938 10.998L20.4033 11.6885C20.8001 12.0853 21.0234 12.6234 21.0234 13.1846V18.9072ZM22.2002 19.1074H22.1934C22.0937 20.7664 20.7664 22.0927 19.1074 22.1924V22.2002H10.8926V22.1924C9.2336 22.0927 7.90627 20.7664 7.80664 19.1074H7.7998V10.8926H7.80664C7.90627 9.23359 9.2336 7.90728 10.8926 7.80762V7.7998H16.8154V8H11.0928V8.97656H16.8154V7.7998H17.0156V7.80664C17.7491 7.85135 18.4468 8.13998 18.9971 8.62695L19.002 8.62305L21.377 10.998L21.3721 11.002C21.8596 11.5525 22.1486 12.2504 22.1934 12.9844H22.2002V19.1074ZM9.17676 18.9072L9.18652 19.1025C9.28325 20.0568 10.0803 20.8026 11.0557 20.8213V17.4043H11.0664C11.1603 16.4647 11.907 15.7167 12.8467 15.623V15.6143H16.9531V15.8135H13.0469V16.791H16.9531V15.6143H17.1533V15.623C18.093 15.7167 18.8397 16.4647 18.9336 17.4043H18.9443V20.8213C19.9197 20.8026 20.7167 20.0568 20.8135 19.1025L20.8232 18.9072V13.1846C20.8232 12.7401 20.6688 12.3116 20.3896 11.9707L20.2617 11.8301L18.1699 9.73828L18.0293 9.61035C17.7372 9.37113 17.3806 9.2239 17.0049 9.18652L16.8154 9.17676H11.0928C10.1006 9.17688 9.28448 9.93107 9.18652 10.8975L9.17676 11.0928V18.9072Z\"/>\r\n </svg>\r\n</div>\r\n\r\n\r\n<!-- ICON CHECK CON BORDE REDONDO -->\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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\" d=\"M22.8906 14.6113C22.847 13.7067 22.6481 12.8152 22.3008 11.9766C21.9037 11.018 21.3205 10.1469 20.5859 9.41407C19.8532 8.67952 18.982 8.0963 18.0234 7.69922C17.1848 7.35193 16.2934 7.15299 15.3887 7.10938L15 7.09961C13.9626 7.09841 12.935 7.3023 11.9766 7.69922C11.018 8.0963 10.1469 8.67953 9.41407 9.41407C8.67953 10.1469 8.0963 11.018 7.69922 11.9766C7.3023 12.935 7.09841 13.9626 7.09961 15L7.10938 15.3887C7.15299 16.2934 7.35193 17.1848 7.69922 18.0234C8.0963 18.982 8.67951 19.8531 9.41407 20.5859C10.1469 21.3205 11.018 21.9037 11.9766 22.3008C12.935 22.6977 13.9626 22.9016 15 22.9004L15.3887 22.8906C16.2934 22.847 17.1848 22.6481 18.0234 22.3008C18.982 21.9037 19.8531 21.3205 20.5859 20.5859C21.3205 19.8531 21.9037 18.982 22.3008 18.0234C22.6977 17.065 22.9016 16.0374 22.9004 15L22.8906 14.6113ZM21.4385 14.6816C21.4029 13.9438 21.2393 13.2171 20.9561 12.5332C20.6322 11.7515 20.1577 11.0409 19.5586 10.4434L19.5566 10.4414C18.9591 9.84233 18.2485 9.36777 17.4668 9.04395C16.7829 8.76069 16.0562 8.59706 15.3184 8.56153L15.001 8.55469H14.999C14.1529 8.55361 13.315 8.72016 12.5332 9.04395C11.7515 9.36777 11.0409 9.84235 10.4434 10.4414L10.4414 10.4434C9.84235 11.0409 9.36777 11.7515 9.04395 12.5332C8.72016 13.315 8.55361 14.1529 8.55469 14.999V15.001L8.56153 15.3184C8.59706 16.0562 8.76069 16.7829 9.04395 17.4668C9.36777 18.2485 9.84233 18.9591 10.4414 19.5566L10.4434 19.5586L10.6729 19.7773C11.2198 20.274 11.8492 20.6727 12.5332 20.9561C13.315 21.2799 14.1529 21.4464 14.999 21.4453H15.001L15.3184 21.4385C16.0562 21.403 16.7829 21.2393 17.4668 20.9561C18.2485 20.6322 18.9591 20.1577 19.5566 19.5586L19.5586 19.5566C20.1577 18.9591 20.6322 18.2485 20.9561 17.4668C21.2393 16.7829 21.403 16.0562 21.4385 15.3184L21.4453 15.001V14.999L21.4385 14.6816ZM23.0908 15.3984C23.0461 16.3263 22.8416 17.2406 22.4854 18.1006C22.1291 18.9606 21.6274 19.7518 21.0029 20.4395L20.7275 20.7275C19.9762 21.4807 19.0835 22.0782 18.1006 22.4854C17.2406 22.8416 16.3263 23.0461 15.3984 23.0908L15 23.0996C13.9361 23.1008 12.8823 22.8925 11.8994 22.4854C11.0394 22.1291 10.2482 21.6274 9.56055 21.0029L9.27247 20.7275C8.51931 19.9762 7.9218 19.0835 7.51465 18.1006C7.15841 17.2406 6.95392 16.3263 6.90918 15.3984L6.9004 15C6.89918 13.9361 7.10751 12.8823 7.51465 11.8994C7.9218 10.9165 8.51933 10.0239 9.27247 9.27247L9.56055 8.99708C10.2482 8.37266 11.0394 7.87089 11.8994 7.51465C12.8823 7.10751 13.9361 6.89918 15 6.9004L15.3984 6.90918C16.3263 6.95392 17.2406 7.15841 18.1006 7.51465C19.0835 7.9218 19.9762 8.51931 20.7275 9.27247L21.0029 9.56055C21.6274 10.2482 22.1291 11.0394 22.4854 11.8994C22.8925 12.8823 23.1008 13.9361 23.0996 15L23.0908 15.3984ZM21.6455 15.001C21.6466 15.8735 21.4755 16.7378 21.1416 17.544C20.8077 18.3501 20.3171 19.082 19.6992 19.6982L19.6982 19.6992C19.082 20.3171 18.3501 20.8077 17.544 21.1416C16.7378 21.4755 15.8735 21.6466 15.001 21.6455H14.999C14.1265 21.6466 13.2622 21.4755 12.4561 21.1416C11.6499 20.8077 10.918 20.317 10.3018 19.6992L10.3008 19.6982C9.68296 19.082 9.19234 18.3501 8.8584 17.544C8.52449 16.7378 8.35339 15.8735 8.3545 15.001V14.999C8.35341 14.1265 8.52449 13.2622 8.8584 12.4561C9.19234 11.6499 9.68297 10.918 10.3008 10.3018L10.3018 10.3008C10.918 9.68297 11.6499 9.19234 12.4561 8.8584C13.2622 8.52449 14.1265 8.35341 14.999 8.3545H15.001C15.8735 8.35339 16.7378 8.52449 17.544 8.8584C18.3501 9.19234 19.082 9.68296 19.6982 10.3008L19.6992 10.3018C20.317 10.918 20.8077 11.6499 21.1416 12.4561C21.4755 13.2622 21.6466 14.1265 21.6455 14.999V15.001Z\"/>\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 <path [attr.fill]=\"color\" d=\"M18.0514 12.2335C18.3745 11.9104 18.8982 11.9104 19.2213 12.2335C19.5444 12.5566 19.5444 13.0804 19.2213 13.4034L14.858 17.7667C14.535 18.0898 14.0112 18.0898 13.6881 17.7667L11.5065 15.5851C11.1834 15.262 11.1834 14.7382 11.5065 14.4152C11.8295 14.0922 12.3533 14.0921 12.6764 14.4152L14.2721 16.0109L18.0514 12.2335ZM19.0797 12.3751C18.8347 12.1301 18.438 12.1301 18.193 12.3751L14.3434 16.2237C14.3043 16.2628 14.2408 16.2628 14.2018 16.2237L12.5348 14.5568C12.2898 14.3118 11.893 14.3119 11.6481 14.5568C11.4031 14.8017 11.4031 15.1985 11.6481 15.4435L13.8297 17.6251C14.0747 17.8701 14.4715 17.8701 14.7164 17.6251L19.0797 13.2618C19.3247 13.0169 19.3247 12.6201 19.0797 12.3751Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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\" d=\"M22.8906 14.6113C22.847 13.7067 22.6481 12.8152 22.3008 11.9766C21.9037 11.018 21.3205 10.1469 20.5859 9.41407C19.8532 8.67952 18.982 8.0963 18.0234 7.69922C17.1848 7.35193 16.2934 7.15299 15.3887 7.10938L15 7.09961C13.9626 7.09841 12.935 7.3023 11.9766 7.69922C11.018 8.0963 10.1469 8.67953 9.41407 9.41407C8.67953 10.1469 8.0963 11.018 7.69922 11.9766C7.3023 12.935 7.09841 13.9626 7.09961 15L7.10938 15.3887C7.15299 16.2934 7.35193 17.1848 7.69922 18.0234C8.0963 18.982 8.67951 19.8531 9.41407 20.5859C10.1469 21.3205 11.018 21.9037 11.9766 22.3008C12.935 22.6977 13.9626 22.9016 15 22.9004L15.3887 22.8906C16.2934 22.847 17.1848 22.6481 18.0234 22.3008C18.982 21.9037 19.8531 21.3205 20.5859 20.5859C21.3205 19.8531 21.9037 18.982 22.3008 18.0234C22.6977 17.065 22.9016 16.0374 22.9004 15L22.8906 14.6113ZM21.4385 14.6816C21.4029 13.9438 21.2393 13.2171 20.9561 12.5332C20.6322 11.7515 20.1577 11.0409 19.5586 10.4434L19.5566 10.4414C18.9591 9.84233 18.2485 9.36777 17.4668 9.04395C16.7829 8.76069 16.0562 8.59706 15.3184 8.56153L15.001 8.55469H14.999C14.1529 8.55361 13.315 8.72016 12.5332 9.04395C11.7515 9.36777 11.0409 9.84235 10.4434 10.4414L10.4414 10.4434C9.84235 11.0409 9.36777 11.7515 9.04395 12.5332C8.72016 13.315 8.55361 14.1529 8.55469 14.999V15.001L8.56153 15.3184C8.59706 16.0562 8.76069 16.7829 9.04395 17.4668C9.36777 18.2485 9.84233 18.9591 10.4414 19.5566L10.4434 19.5586L10.6729 19.7773C11.2198 20.274 11.8492 20.6727 12.5332 20.9561C13.315 21.2799 14.1529 21.4464 14.999 21.4453H15.001L15.3184 21.4385C16.0562 21.403 16.7829 21.2393 17.4668 20.9561C18.2485 20.6322 18.9591 20.1577 19.5566 19.5586L19.5586 19.5566C20.1577 18.9591 20.6322 18.2485 20.9561 17.4668C21.2393 16.7829 21.403 16.0562 21.4385 15.3184L21.4453 15.001V14.999L21.4385 14.6816ZM23.0908 15.3984C23.0461 16.3263 22.8416 17.2406 22.4854 18.1006C22.1291 18.9606 21.6274 19.7518 21.0029 20.4395L20.7275 20.7275C19.9762 21.4807 19.0835 22.0782 18.1006 22.4854C17.2406 22.8416 16.3263 23.0461 15.3984 23.0908L15 23.0996C13.9361 23.1008 12.8823 22.8925 11.8994 22.4854C11.0394 22.1291 10.2482 21.6274 9.56055 21.0029L9.27247 20.7275C8.51931 19.9762 7.9218 19.0835 7.51465 18.1006C7.15841 17.2406 6.95392 16.3263 6.90918 15.3984L6.9004 15C6.89918 13.9361 7.10751 12.8823 7.51465 11.8994C7.9218 10.9165 8.51933 10.0239 9.27247 9.27247L9.56055 8.99708C10.2482 8.37266 11.0394 7.87089 11.8994 7.51465C12.8823 7.10751 13.9361 6.89918 15 6.9004L15.3984 6.90918C16.3263 6.95392 17.2406 7.15841 18.1006 7.51465C19.0835 7.9218 19.9762 8.51931 20.7275 9.27247L21.0029 9.56055C21.6274 10.2482 22.1291 11.0394 22.4854 11.8994C22.8925 12.8823 23.1008 13.9361 23.0996 15L23.0908 15.3984ZM21.6455 15.001C21.6466 15.8735 21.4755 16.7378 21.1416 17.544C20.8077 18.3501 20.3171 19.082 19.6992 19.6982L19.6982 19.6992C19.082 20.3171 18.3501 20.8077 17.544 21.1416C16.7378 21.4755 15.8735 21.6466 15.001 21.6455H14.999C14.1265 21.6466 13.2622 21.4755 12.4561 21.1416C11.6499 20.8077 10.918 20.317 10.3018 19.6992L10.3008 19.6982C9.68296 19.082 9.19234 18.3501 8.8584 17.544C8.52449 16.7378 8.35339 15.8735 8.3545 15.001V14.999C8.35341 14.1265 8.52449 13.2622 8.8584 12.4561C9.19234 11.6499 9.68297 10.918 10.3008 10.3018L10.3018 10.3008C10.918 9.68297 11.6499 9.19234 12.4561 8.8584C13.2622 8.52449 14.1265 8.35341 14.999 8.3545H15.001C15.8735 8.35339 16.7378 8.52449 17.544 8.8584C18.3501 9.19234 19.082 9.68296 19.6982 10.3008L19.6992 10.3018C20.317 10.918 20.8077 11.6499 21.1416 12.4561C21.4755 13.2622 21.6466 14.1265 21.6455 14.999V15.001Z\"/>\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 <path [attr.fill]=\"color\" d=\"M18.0514 12.2335C18.3745 11.9104 18.8982 11.9104 19.2213 12.2335C19.5444 12.5566 19.5444 13.0804 19.2213 13.4034L14.858 17.7667C14.535 18.0898 14.0112 18.0898 13.6881 17.7667L11.5065 15.5851C11.1834 15.262 11.1834 14.7382 11.5065 14.4152C11.8295 14.0922 12.3533 14.0921 12.6764 14.4152L14.2721 16.0109L18.0514 12.2335ZM19.0797 12.3751C18.8347 12.1301 18.438 12.1301 18.193 12.3751L14.3434 16.2237C14.3043 16.2628 14.2408 16.2628 14.2018 16.2237L12.5348 14.5568C12.2898 14.3118 11.893 14.3119 11.6481 14.5568C11.4031 14.8017 11.4031 15.1985 11.6481 15.4435L13.8297 17.6251C14.0747 17.8701 14.4715 17.8701 14.7164 17.6251L19.0797 13.2618C19.3247 13.0169 19.3247 12.6201 19.0797 12.3751Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON CLOSE CON BORDE REDONDO -->\r\n<div *ngIf=\"icon == 'border-circle-close'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M11.9289 18.0709C11.9871 18.1292 12.0546 18.1676 12.1314 18.1861C12.2109 18.2047 12.2876 18.2047 12.3618 18.1861C12.4385 18.1676 12.5047 18.1305 12.5603 18.0748L15.0028 15.6301L17.4413 18.0748C17.4969 18.1305 17.563 18.1676 17.6398 18.1861C17.7166 18.2047 17.7934 18.2047 17.8702 18.1861C17.947 18.1676 18.0145 18.1292 18.0727 18.0709C18.1283 18.0152 18.1654 17.949 18.1839 17.8721C18.2025 17.7952 18.2025 17.7197 18.1839 17.6455C18.1654 17.5687 18.1283 17.5011 18.0727 17.4428L15.6342 14.9981L18.0727 12.5573C18.1283 12.499 18.1654 12.4328 18.1839 12.3586C18.2051 12.2817 18.2051 12.2049 18.1839 12.128C18.1654 12.0511 18.1283 11.9849 18.0727 11.9292C18.0118 11.8709 17.943 11.8325 17.8662 11.814C17.7921 11.7954 17.7166 11.7954 17.6398 11.814C17.563 11.8299 17.4969 11.867 17.4413 11.9253L15.0028 14.37L12.5603 11.9253C12.5047 11.8696 12.4385 11.8325 12.3618 11.814C12.285 11.7954 12.2082 11.7954 12.1314 11.814C12.0546 11.8325 11.9871 11.8709 11.9289 11.9292C11.8733 11.9849 11.8362 12.0511 11.8177 12.128C11.7991 12.2049 11.7991 12.2817 11.8177 12.3586C11.8362 12.4354 11.8733 12.5003 11.9289 12.5533L14.3674 14.9981L11.9289 17.4468C11.8733 17.4998 11.8349 17.5647 11.8137 17.6415C11.7952 17.7184 11.7952 17.7952 11.8137 17.8721C11.8322 17.949 11.8706 18.0152 11.9289 18.0709Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M17.6192 11.7171C17.7103 11.6955 17.8012 11.6947 17.8907 11.7171C17.9853 11.7401 18.0692 11.7874 18.1417 11.8567L18.1436 11.8587C18.2116 11.9267 18.2573 12.0084 18.2803 12.1018L18.295 12.1721C18.3046 12.2422 18.2992 12.3123 18.2803 12.3821C18.2574 12.4739 18.2123 12.5561 18.1456 12.6262L15.7754 14.9973L18.1436 17.3723L18.1456 17.3733C18.2129 17.4439 18.2585 17.5273 18.2813 17.6214L18.294 17.6897C18.3024 17.7579 18.2979 17.8269 18.2813 17.8958C18.2585 17.9903 18.2122 18.0732 18.1436 18.1419C18.073 18.2125 17.989 18.2604 17.8936 18.2835C17.8014 18.3057 17.7084 18.3057 17.6163 18.2835C17.5217 18.2606 17.4388 18.2145 17.3702 18.1458L15.002 15.7708L12.6309 18.1458C12.5623 18.2144 12.4793 18.2597 12.3848 18.2825L12.3858 18.2835C12.3179 18.3004 12.2487 18.3045 12.1788 18.2962L12.1085 18.2835C12.0131 18.2604 11.9291 18.2124 11.8585 18.1419C11.7877 18.0736 11.7398 17.9907 11.7169 17.8958C11.6946 17.8036 11.6947 17.7106 11.7169 17.6184V17.6145C11.7427 17.5211 11.7913 17.4401 11.8604 17.3743L14.2266 14.9983L11.8585 12.6243C11.7897 12.558 11.7435 12.4761 11.7208 12.3821C11.6985 12.2899 11.6985 12.197 11.7208 12.1048C11.7436 12.0101 11.7898 11.9274 11.8585 11.8587C11.9291 11.788 12.013 11.7401 12.1085 11.7171C12.2004 11.6949 12.2929 11.6949 12.3848 11.7171C12.4794 11.7399 12.5623 11.786 12.6309 11.8548L15.002 14.2278L17.3702 11.8548C17.439 11.7831 17.5227 11.7371 17.6192 11.7171ZM17.6631 11.9114L17.6602 11.9124C17.6039 11.924 17.5557 11.9504 17.5137 11.9944L17.5118 11.9964L15.0733 14.4407L15.003 14.512L12.4893 11.9964C12.4468 11.9538 12.3969 11.9256 12.3379 11.9114C12.2768 11.8967 12.2165 11.8967 12.1553 11.9114C12.0973 11.9254 12.0459 11.9544 12.0001 12.0003C11.9575 12.0428 11.9293 12.0926 11.9151 12.1516C11.9003 12.213 11.9003 12.2738 11.9151 12.3352C11.9222 12.3645 11.9325 12.3911 11.9463 12.4153L11.9981 12.4807L12.0001 12.4827L14.4385 14.927L14.5088 14.9983L14.4385 15.0686L12.0001 17.5169L11.9981 17.5188C11.9568 17.5582 11.9279 17.6065 11.9112 17.6653L11.8995 17.7571C11.8995 17.7876 11.9038 17.8183 11.9112 17.8489C11.9182 17.8777 11.929 17.9042 11.9434 17.929L11.9981 17.9983L12.0001 18.0003C12.0458 18.046 12.0973 18.0751 12.1553 18.0891C12.2203 18.1043 12.2803 18.1035 12.3379 18.0891L12.42 18.0569C12.4451 18.0428 12.4681 18.0254 12.4893 18.0042L15.003 15.4885L15.0733 15.5598L17.5118 18.0042C17.5543 18.0467 17.6043 18.0749 17.6631 18.0891C17.7245 18.1039 17.7854 18.1039 17.8467 18.0891C17.9048 18.0751 17.9562 18.0461 18.002 18.0003C18.0445 17.9577 18.0727 17.9079 18.087 17.8489C18.1018 17.7873 18.1014 17.7281 18.087 17.6702C18.0726 17.6108 18.0438 17.5578 18.0001 17.512L15.5635 15.0686L15.4932 14.9983L15.5635 14.927L17.9991 12.4885C18.0434 12.4421 18.0729 12.3907 18.087 12.3342L18.0879 12.3323C18.1043 12.2729 18.1043 12.214 18.0879 12.1546L18.087 12.1516C18.0727 12.0926 18.0445 12.0428 18.002 12.0003C17.9535 11.9544 17.9005 11.9253 17.8428 11.9114C17.7849 11.8969 17.7248 11.8965 17.6631 11.9114Z\" />\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.0847 11.6196C12.1924 11.5936 12.3014 11.5936 12.409 11.6196C12.5214 11.6468 12.6204 11.7021 12.7021 11.784L15.003 14.0869L17.2985 11.7855C17.3803 11.7005 17.4807 11.6435 17.5963 11.6189C17.7021 11.5938 17.809 11.5936 17.9143 11.6198C18.0274 11.6473 18.1269 11.704 18.2113 11.7848L18.2145 11.7879C18.2955 11.8689 18.3505 11.9669 18.3779 12.078C18.4076 12.1879 18.4075 12.2996 18.3777 12.4094C18.3501 12.5181 18.2954 12.614 18.2177 12.6954L18.2145 12.6988L15.9171 14.9982L18.2178 17.3048C18.297 17.3879 18.3514 17.4865 18.3785 17.5979C18.4049 17.7042 18.4044 17.8122 18.3786 17.919C18.3515 18.0315 18.2962 18.1305 18.2145 18.2123C18.1314 18.2954 18.0316 18.353 17.9174 18.3806C17.8098 18.4066 17.7008 18.4066 17.5932 18.3806C17.4807 18.3534 17.3818 18.298 17.3001 18.2162L15.003 15.9132L12.7021 18.2162C12.6206 18.2978 12.5219 18.3532 12.4099 18.3804C12.3031 18.407 12.1942 18.4062 12.0862 18.3809L12.0847 18.3806C11.9713 18.3532 11.8721 18.2962 11.7893 18.2139C11.7048 18.1326 11.6471 18.0332 11.6196 17.919C11.5936 17.8114 11.5936 17.7024 11.6196 17.5947L11.6211 17.5884C11.6513 17.4789 11.7074 17.3826 11.7891 17.304L14.0853 14.9982L11.7892 12.6962C11.706 12.6162 11.6506 12.5177 11.6235 12.4055C11.5976 12.2978 11.5976 12.1888 11.6235 12.0812C11.6507 11.9687 11.7059 11.8697 11.7877 11.7879C11.8708 11.7048 11.9706 11.6472 12.0847 11.6196ZM12.3151 12.0084C12.2692 11.9973 12.2246 11.9973 12.1787 12.0084C12.1393 12.0179 12.1041 12.0372 12.0707 12.0706C12.0412 12.1001 12.0224 12.1337 12.0124 12.1749C12.0013 12.221 12.0013 12.2657 12.0124 12.3117C12.0222 12.3524 12.0402 12.383 12.0672 12.4086L12.0708 12.4121L14.65 14.998L12.0672 17.5916C12.0395 17.618 12.0197 17.6499 12.0077 17.6917C11.9973 17.7366 11.9976 17.7803 12.0084 17.8253C12.0178 17.8641 12.0363 17.8966 12.0673 17.9263L12.0707 17.9295C12.1039 17.9627 12.1389 17.982 12.178 17.9916C12.2283 18.0032 12.2725 18.0024 12.3135 17.9922L12.3151 17.9918C12.3562 17.9818 12.3897 17.963 12.4191 17.9335L15.0032 15.3471L17.583 17.9335C17.6125 17.963 17.6459 17.9818 17.6871 17.9918C17.733 18.0029 17.7776 18.0029 17.8235 17.9918C17.8629 17.9823 17.8981 17.963 17.9315 17.9296C17.961 17.9001 17.9798 17.8665 17.9898 17.8253C18.001 17.7787 18.0006 17.7359 17.9902 17.694L17.9898 17.6925C17.9798 17.6511 17.9606 17.6152 17.9296 17.5823L15.3519 14.998L17.9297 12.4178C17.9618 12.3837 17.9806 12.3484 17.9902 12.3101L17.9913 12.3055C18.0029 12.2634 18.003 12.2233 17.9914 12.1812L17.9897 12.175C17.9799 12.1344 17.9616 12.1013 17.933 12.0722C17.8964 12.0376 17.8591 12.018 17.8195 12.0084L17.8179 12.008C17.7762 11.9976 17.7336 11.9972 17.6871 12.0084L17.6807 12.01C17.6449 12.0174 17.6147 12.0336 17.5863 12.0633L17.5832 12.0666L15.0032 14.6531L12.4191 12.0667C12.3897 12.0372 12.3562 12.0184 12.3151 12.0084Z\" />\r\n <path [attr.fill]=\"color\" d=\"M17.5755 11.5218C17.6955 11.4937 17.8174 11.4928 17.9378 11.5227L18.0335 11.553C18.1256 11.5893 18.2085 11.6432 18.2806 11.7122L18.2854 11.7171C18.3793 11.811 18.4432 11.9254 18.4749 12.054C18.5087 12.1803 18.5082 12.3095 18.4739 12.4358L18.4729 12.4348C18.4408 12.5604 18.3787 12.6712 18.2903 12.7639L16.0579 14.9973L18.2884 17.2337L18.2903 17.2356C18.3813 17.3311 18.4447 17.4458 18.4759 17.5745C18.5061 17.6967 18.5052 17.821 18.4759 17.9427C18.4445 18.0726 18.38 18.1877 18.2854 18.2825C18.1899 18.3781 18.0736 18.4457 17.9407 18.4778C17.8177 18.5075 17.6926 18.5075 17.5696 18.4778C17.4394 18.4464 17.3236 18.3813 17.2288 18.2864L15.0022 16.054L12.7727 18.2864C12.6782 18.3811 12.5627 18.4463 12.4329 18.4778L12.4319 18.4768C12.3094 18.5071 12.1854 18.5062 12.0638 18.4778H12.0608C11.929 18.4459 11.8141 18.3789 11.719 18.2845C11.622 18.1905 11.5537 18.0749 11.5218 17.9427C11.4921 17.8196 11.4921 17.6937 11.5218 17.5706L11.5247 17.5618C11.5595 17.4356 11.6249 17.3233 11.72 17.2317L13.9427 14.9973L11.7181 12.7669C11.6218 12.6736 11.5569 12.5582 11.5257 12.429C11.496 12.3061 11.4961 12.1808 11.5257 12.0579C11.5571 11.9277 11.6223 11.812 11.7171 11.7171C11.8125 11.6216 11.9281 11.5539 12.0608 11.5218C12.1838 11.4921 12.309 11.4921 12.4319 11.5218C12.5622 11.5532 12.6779 11.6183 12.7727 11.7132L15.0022 13.9446L17.2259 11.7161L17.302 11.6477C17.3818 11.5857 17.4738 11.5434 17.5755 11.5218ZM17.8899 11.7171C17.8008 11.6949 17.7101 11.6946 17.6194 11.7161H17.6165C17.5212 11.7364 17.4386 11.7838 17.3704 11.8548L17.3694 11.8557L15.0735 14.1575L15.0032 14.2278L14.9319 14.1575L12.6311 11.8548C12.5625 11.786 12.4797 11.7399 12.3851 11.7171C12.2929 11.6948 12.1999 11.6948 12.1077 11.7171C12.0125 11.7402 11.9292 11.7881 11.8587 11.8587C11.79 11.9274 11.7438 12.0101 11.721 12.1048C11.6988 12.1969 11.6988 12.2899 11.721 12.3821C11.7381 12.4527 11.7678 12.5163 11.8108 12.5716L11.8587 12.6243L11.8597 12.6253L14.1556 14.927L14.2259 14.9983L14.1556 15.0686L11.8597 17.3743L11.8587 17.3763C11.7904 17.4419 11.7427 17.5218 11.7171 17.6145L11.7161 17.6175C11.6939 17.7097 11.6939 17.8035 11.7161 17.8958C11.7334 17.9673 11.7652 18.0316 11.8099 18.0882L11.8587 18.1419L11.8597 18.1429C11.93 18.2127 12.013 18.2605 12.1077 18.2835C12.2012 18.3053 12.2948 18.3059 12.3851 18.2835C12.4792 18.2606 12.5627 18.2142 12.6311 18.1458L14.9319 15.8421L15.0032 15.7718L15.0735 15.8421L17.3704 18.1458C17.439 18.2144 17.522 18.2606 17.6165 18.2835C17.7087 18.3057 17.8017 18.3057 17.8938 18.2835C17.9893 18.2604 18.0732 18.2116 18.1438 18.1409C18.2122 18.0723 18.2587 17.9901 18.2815 17.8958C18.2981 17.827 18.3026 17.7578 18.2942 17.6897L18.2815 17.6214C18.2587 17.5273 18.2122 17.4439 18.1448 17.3733L15.846 15.0686L15.7757 14.9983L15.846 14.927L18.1448 12.6263C18.2111 12.5567 18.2574 12.476 18.2806 12.385V12.3831C18.3058 12.2904 18.3066 12.1965 18.2815 12.1038L18.2806 12.1018C18.2577 12.0089 18.2121 11.9275 18.1448 11.8597L18.1419 11.8567C18.0694 11.7874 17.9845 11.7401 17.8899 11.7171ZM17.8421 11.9104L17.8431 11.9114L17.9251 11.9436L18.0013 11.9993L18.0042 12.0022L18.056 12.0706C18.069 12.0943 18.0773 12.1203 18.0843 12.1477H18.0862L18.0999 12.2434C18.0999 12.2718 18.0948 12.2998 18.0872 12.3284L18.0882 12.3294L18.0872 12.3343C18.0733 12.3899 18.0455 12.4406 18.0022 12.4866L15.4925 14.9973L18.0003 17.511L18.0022 17.5139C18.0449 17.5593 18.0731 17.6108 18.0872 17.6692L18.0979 17.7581C18.0979 17.7877 18.0946 17.8182 18.0872 17.8489C18.0729 17.9078 18.0447 17.9578 18.0022 18.0003C17.9564 18.0461 17.905 18.0751 17.847 18.0891C17.7856 18.104 17.7247 18.104 17.6634 18.0891C17.6044 18.0749 17.5545 18.0467 17.512 18.0042L15.0022 15.4876L12.4895 18.0042C12.447 18.0467 12.3971 18.0749 12.3382 18.0891L12.3372 18.0882C12.28 18.1024 12.22 18.104 12.1556 18.0891L12.1536 18.0882C12.096 18.074 12.0447 18.0457 11.9993 18.0003L11.9983 17.9983C11.9538 17.9558 11.9254 17.9065 11.9114 17.8489C11.897 17.789 11.8966 17.7293 11.9104 17.6692L11.9114 17.6634C11.9283 17.6051 11.9576 17.5577 11.9983 17.5188L14.5081 14.9973L12.0013 12.4837L11.9983 12.4807C11.9572 12.4415 11.9295 12.3938 11.9153 12.3352C11.9005 12.2739 11.9006 12.213 11.9153 12.1516C11.9296 12.0926 11.9568 12.0419 11.9993 11.9993C12.045 11.9536 12.0967 11.9255 12.1546 11.9114C12.2159 11.8966 12.2769 11.8966 12.3382 11.9114C12.397 11.9256 12.4471 11.953 12.4895 11.9954L15.0022 14.511L17.512 11.9954L17.514 11.9944C17.5552 11.9512 17.602 11.9244 17.6565 11.9124L17.6634 11.9114C17.725 11.8965 17.7842 11.8959 17.8421 11.9104ZM17.7102 12.1057L17.7044 12.1067L17.7005 12.1077C17.685 12.1109 17.673 12.1169 17.6585 12.1321L17.6536 12.137L15.0735 14.7239L15.0032 14.7942L14.9319 14.7239L12.3479 12.137C12.3316 12.1207 12.3145 12.1114 12.2913 12.1057C12.261 12.0984 12.2328 12.0985 12.2024 12.1057C12.1817 12.1108 12.1619 12.1199 12.1409 12.1409C12.1245 12.1573 12.1153 12.175 12.1097 12.1985C12.1023 12.229 12.1023 12.2578 12.1097 12.2884C12.1151 12.3107 12.1235 12.3243 12.136 12.3362L12.1399 12.3391L12.1419 12.3411L14.721 14.927L14.7913 14.9973L14.721 15.0686L12.138 17.6624L12.136 17.6634C12.1218 17.677 12.112 17.6936 12.1048 17.718C12.0988 17.7463 12.0989 17.7734 12.1058 17.802C12.1105 17.8216 12.1188 17.8373 12.136 17.8538L12.1399 17.8567L12.1409 17.8587C12.1618 17.8796 12.1811 17.8888 12.2015 17.8938C12.2373 17.9021 12.2647 17.901 12.2894 17.8948H12.2913C12.3146 17.8892 12.3316 17.8789 12.3479 17.8626L15.0032 15.2054L15.0735 15.2766L17.6536 17.8626L17.679 17.8821C17.6884 17.8874 17.6984 17.8919 17.7102 17.8948C17.7407 17.9022 17.7696 17.9022 17.8001 17.8948C17.8208 17.8898 17.8397 17.8796 17.8606 17.8587C17.8769 17.8424 17.8862 17.8253 17.8919 17.802C17.8995 17.7706 17.8993 17.7437 17.8929 17.718V17.7161C17.887 17.6919 17.8759 17.6711 17.8567 17.6507L15.2806 15.0686L15.2102 14.9973L17.8587 12.347C17.8783 12.3255 17.8878 12.3056 17.8929 12.2854L17.8938 12.2805L17.8948 12.2786C17.9016 12.2539 17.9016 12.2319 17.8948 12.2073L17.8919 12.1985C17.8864 12.1757 17.8777 12.1585 17.8626 12.1429C17.8387 12.1207 17.8171 12.1109 17.7962 12.1057L17.7942 12.1048C17.7688 12.0984 17.7415 12.0982 17.7102 12.1057Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 21.4C18.5346 21.4 21.4 18.5346 21.4 15C21.4 11.4654 18.5346 8.6 15 8.6C11.4654 8.6 8.6 11.4654 8.6 15C8.6 18.5346 11.4654 21.4 15 21.4ZM15 23C19.4183 23 23 19.4183 23 15C23 10.5817 19.4183 7 15 7C10.5817 7 7 10.5817 7 15C7 19.4183 10.5817 23 15 23Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 7C19.4183 7 23 10.5817 23 15C23 19.4183 19.4183 23 15 23C10.5817 23 7 19.4183 7 15C7 10.5817 10.5817 7 15 7ZM15 7.2002C10.6922 7.2002 7.2002 10.6922 7.2002 15C7.2002 19.3078 10.6922 22.7998 15 22.7998C19.3078 22.7998 22.7998 19.3078 22.7998 15C22.7998 10.6922 19.3078 7.2002 15 7.2002ZM15 8.40039C18.6451 8.40039 21.5996 11.3549 21.5996 15C21.5996 18.6451 18.6451 21.5996 15 21.5996C11.3549 21.5996 8.40039 18.6451 8.40039 15C8.40039 11.3549 11.3549 8.40039 15 8.40039ZM15 8.59961C11.4654 8.59961 8.59961 11.4654 8.59961 15C8.59961 18.5346 11.4654 21.4004 15 21.4004C18.5346 21.4004 21.4004 18.5346 21.4004 15C21.4004 11.4654 18.5346 8.59961 15 8.59961Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M11.9289 18.0709C11.9871 18.1292 12.0546 18.1676 12.1314 18.1861C12.2109 18.2047 12.2876 18.2047 12.3618 18.1861C12.4385 18.1676 12.5047 18.1305 12.5603 18.0748L15.0028 15.6301L17.4413 18.0748C17.4969 18.1305 17.563 18.1676 17.6398 18.1861C17.7166 18.2047 17.7934 18.2047 17.8702 18.1861C17.947 18.1676 18.0145 18.1292 18.0727 18.0709C18.1283 18.0152 18.1654 17.949 18.1839 17.8721C18.2025 17.7952 18.2025 17.7197 18.1839 17.6455C18.1654 17.5687 18.1283 17.5011 18.0727 17.4428L15.6342 14.9981L18.0727 12.5573C18.1283 12.499 18.1654 12.4328 18.1839 12.3586C18.2051 12.2817 18.2051 12.2049 18.1839 12.128C18.1654 12.0511 18.1283 11.9849 18.0727 11.9292C18.0118 11.8709 17.943 11.8325 17.8662 11.814C17.7921 11.7954 17.7166 11.7954 17.6398 11.814C17.563 11.8299 17.4969 11.867 17.4413 11.9253L15.0028 14.37L12.5603 11.9253C12.5047 11.8696 12.4385 11.8325 12.3618 11.814C12.285 11.7954 12.2082 11.7954 12.1314 11.814C12.0546 11.8325 11.9871 11.8709 11.9289 11.9292C11.8733 11.9849 11.8362 12.0511 11.8177 12.128C11.7991 12.2049 11.7991 12.2817 11.8177 12.3586C11.8362 12.4354 11.8733 12.5003 11.9289 12.5533L14.3674 14.9981L11.9289 17.4468C11.8733 17.4998 11.8349 17.5647 11.8137 17.6415C11.7952 17.7184 11.7952 17.7952 11.8137 17.8721C11.8322 17.949 11.8706 18.0152 11.9289 18.0709Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M17.6192 11.7171C17.7103 11.6955 17.8012 11.6947 17.8907 11.7171C17.9853 11.7401 18.0692 11.7874 18.1417 11.8567L18.1436 11.8587C18.2116 11.9267 18.2573 12.0084 18.2803 12.1018L18.295 12.1721C18.3046 12.2422 18.2992 12.3123 18.2803 12.3821C18.2574 12.4739 18.2123 12.5561 18.1456 12.6262L15.7754 14.9973L18.1436 17.3723L18.1456 17.3733C18.2129 17.4439 18.2585 17.5273 18.2813 17.6214L18.294 17.6897C18.3024 17.7579 18.2979 17.8269 18.2813 17.8958C18.2585 17.9903 18.2122 18.0732 18.1436 18.1419C18.073 18.2125 17.989 18.2604 17.8936 18.2835C17.8014 18.3057 17.7084 18.3057 17.6163 18.2835C17.5217 18.2606 17.4388 18.2145 17.3702 18.1458L15.002 15.7708L12.6309 18.1458C12.5623 18.2144 12.4793 18.2597 12.3848 18.2825L12.3858 18.2835C12.3179 18.3004 12.2487 18.3045 12.1788 18.2962L12.1085 18.2835C12.0131 18.2604 11.9291 18.2124 11.8585 18.1419C11.7877 18.0736 11.7398 17.9907 11.7169 17.8958C11.6946 17.8036 11.6947 17.7106 11.7169 17.6184V17.6145C11.7427 17.5211 11.7913 17.4401 11.8604 17.3743L14.2266 14.9983L11.8585 12.6243C11.7897 12.558 11.7435 12.4761 11.7208 12.3821C11.6985 12.2899 11.6985 12.197 11.7208 12.1048C11.7436 12.0101 11.7898 11.9274 11.8585 11.8587C11.9291 11.788 12.013 11.7401 12.1085 11.7171C12.2004 11.6949 12.2929 11.6949 12.3848 11.7171C12.4794 11.7399 12.5623 11.786 12.6309 11.8548L15.002 14.2278L17.3702 11.8548C17.439 11.7831 17.5227 11.7371 17.6192 11.7171ZM17.6631 11.9114L17.6602 11.9124C17.6039 11.924 17.5557 11.9504 17.5137 11.9944L17.5118 11.9964L15.0733 14.4407L15.003 14.512L12.4893 11.9964C12.4468 11.9538 12.3969 11.9256 12.3379 11.9114C12.2768 11.8967 12.2165 11.8967 12.1553 11.9114C12.0973 11.9254 12.0459 11.9544 12.0001 12.0003C11.9575 12.0428 11.9293 12.0926 11.9151 12.1516C11.9003 12.213 11.9003 12.2738 11.9151 12.3352C11.9222 12.3645 11.9325 12.3911 11.9463 12.4153L11.9981 12.4807L12.0001 12.4827L14.4385 14.927L14.5088 14.9983L14.4385 15.0686L12.0001 17.5169L11.9981 17.5188C11.9568 17.5582 11.9279 17.6065 11.9112 17.6653L11.8995 17.7571C11.8995 17.7876 11.9038 17.8183 11.9112 17.8489C11.9182 17.8777 11.929 17.9042 11.9434 17.929L11.9981 17.9983L12.0001 18.0003C12.0458 18.046 12.0973 18.0751 12.1553 18.0891C12.2203 18.1043 12.2803 18.1035 12.3379 18.0891L12.42 18.0569C12.4451 18.0428 12.4681 18.0254 12.4893 18.0042L15.003 15.4885L15.0733 15.5598L17.5118 18.0042C17.5543 18.0467 17.6043 18.0749 17.6631 18.0891C17.7245 18.1039 17.7854 18.1039 17.8467 18.0891C17.9048 18.0751 17.9562 18.0461 18.002 18.0003C18.0445 17.9577 18.0727 17.9079 18.087 17.8489C18.1018 17.7873 18.1014 17.7281 18.087 17.6702C18.0726 17.6108 18.0438 17.5578 18.0001 17.512L15.5635 15.0686L15.4932 14.9983L15.5635 14.927L17.9991 12.4885C18.0434 12.4421 18.0729 12.3907 18.087 12.3342L18.0879 12.3323C18.1043 12.2729 18.1043 12.214 18.0879 12.1546L18.087 12.1516C18.0727 12.0926 18.0445 12.0428 18.002 12.0003C17.9535 11.9544 17.9005 11.9253 17.8428 11.9114C17.7849 11.8969 17.7248 11.8965 17.6631 11.9114Z\" />\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.0847 11.6196C12.1924 11.5936 12.3014 11.5936 12.409 11.6196C12.5214 11.6468 12.6204 11.7021 12.7021 11.784L15.003 14.0869L17.2985 11.7855C17.3803 11.7005 17.4807 11.6435 17.5963 11.6189C17.7021 11.5938 17.809 11.5936 17.9143 11.6198C18.0274 11.6473 18.1269 11.704 18.2113 11.7848L18.2145 11.7879C18.2955 11.8689 18.3505 11.9669 18.3779 12.078C18.4076 12.1879 18.4075 12.2996 18.3777 12.4094C18.3501 12.5181 18.2954 12.614 18.2177 12.6954L18.2145 12.6988L15.9171 14.9982L18.2178 17.3048C18.297 17.3879 18.3514 17.4865 18.3785 17.5979C18.4049 17.7042 18.4044 17.8122 18.3786 17.919C18.3515 18.0315 18.2962 18.1305 18.2145 18.2123C18.1314 18.2954 18.0316 18.353 17.9174 18.3806C17.8098 18.4066 17.7008 18.4066 17.5932 18.3806C17.4807 18.3534 17.3818 18.298 17.3001 18.2162L15.003 15.9132L12.7021 18.2162C12.6206 18.2978 12.5219 18.3532 12.4099 18.3804C12.3031 18.407 12.1942 18.4062 12.0862 18.3809L12.0847 18.3806C11.9713 18.3532 11.8721 18.2962 11.7893 18.2139C11.7048 18.1326 11.6471 18.0332 11.6196 17.919C11.5936 17.8114 11.5936 17.7024 11.6196 17.5947L11.6211 17.5884C11.6513 17.4789 11.7074 17.3826 11.7891 17.304L14.0853 14.9982L11.7892 12.6962C11.706 12.6162 11.6506 12.5177 11.6235 12.4055C11.5976 12.2978 11.5976 12.1888 11.6235 12.0812C11.6507 11.9687 11.7059 11.8697 11.7877 11.7879C11.8708 11.7048 11.9706 11.6472 12.0847 11.6196ZM12.3151 12.0084C12.2692 11.9973 12.2246 11.9973 12.1787 12.0084C12.1393 12.0179 12.1041 12.0372 12.0707 12.0706C12.0412 12.1001 12.0224 12.1337 12.0124 12.1749C12.0013 12.221 12.0013 12.2657 12.0124 12.3117C12.0222 12.3524 12.0402 12.383 12.0672 12.4086L12.0708 12.4121L14.65 14.998L12.0672 17.5916C12.0395 17.618 12.0197 17.6499 12.0077 17.6917C11.9973 17.7366 11.9976 17.7803 12.0084 17.8253C12.0178 17.8641 12.0363 17.8966 12.0673 17.9263L12.0707 17.9295C12.1039 17.9627 12.1389 17.982 12.178 17.9916C12.2283 18.0032 12.2725 18.0024 12.3135 17.9922L12.3151 17.9918C12.3562 17.9818 12.3897 17.963 12.4191 17.9335L15.0032 15.3471L17.583 17.9335C17.6125 17.963 17.6459 17.9818 17.6871 17.9918C17.733 18.0029 17.7776 18.0029 17.8235 17.9918C17.8629 17.9823 17.8981 17.963 17.9315 17.9296C17.961 17.9001 17.9798 17.8665 17.9898 17.8253C18.001 17.7787 18.0006 17.7359 17.9902 17.694L17.9898 17.6925C17.9798 17.6511 17.9606 17.6152 17.9296 17.5823L15.3519 14.998L17.9297 12.4178C17.9618 12.3837 17.9806 12.3484 17.9902 12.3101L17.9913 12.3055C18.0029 12.2634 18.003 12.2233 17.9914 12.1812L17.9897 12.175C17.9799 12.1344 17.9616 12.1013 17.933 12.0722C17.8964 12.0376 17.8591 12.018 17.8195 12.0084L17.8179 12.008C17.7762 11.9976 17.7336 11.9972 17.6871 12.0084L17.6807 12.01C17.6449 12.0174 17.6147 12.0336 17.5863 12.0633L17.5832 12.0666L15.0032 14.6531L12.4191 12.0667C12.3897 12.0372 12.3562 12.0184 12.3151 12.0084Z\" />\r\n <path [attr.fill]=\"color\" d=\"M17.5755 11.5218C17.6955 11.4937 17.8174 11.4928 17.9378 11.5227L18.0335 11.553C18.1256 11.5893 18.2085 11.6432 18.2806 11.7122L18.2854 11.7171C18.3793 11.811 18.4432 11.9254 18.4749 12.054C18.5087 12.1803 18.5082 12.3095 18.4739 12.4358L18.4729 12.4348C18.4408 12.5604 18.3787 12.6712 18.2903 12.7639L16.0579 14.9973L18.2884 17.2337L18.2903 17.2356C18.3813 17.3311 18.4447 17.4458 18.4759 17.5745C18.5061 17.6967 18.5052 17.821 18.4759 17.9427C18.4445 18.0726 18.38 18.1877 18.2854 18.2825C18.1899 18.3781 18.0736 18.4457 17.9407 18.4778C17.8177 18.5075 17.6926 18.5075 17.5696 18.4778C17.4394 18.4464 17.3236 18.3813 17.2288 18.2864L15.0022 16.054L12.7727 18.2864C12.6782 18.3811 12.5627 18.4463 12.4329 18.4778L12.4319 18.4768C12.3094 18.5071 12.1854 18.5062 12.0638 18.4778H12.0608C11.929 18.4459 11.8141 18.3789 11.719 18.2845C11.622 18.1905 11.5537 18.0749 11.5218 17.9427C11.4921 17.8196 11.4921 17.6937 11.5218 17.5706L11.5247 17.5618C11.5595 17.4356 11.6249 17.3233 11.72 17.2317L13.9427 14.9973L11.7181 12.7669C11.6218 12.6736 11.5569 12.5582 11.5257 12.429C11.496 12.3061 11.4961 12.1808 11.5257 12.0579C11.5571 11.9277 11.6223 11.812 11.7171 11.7171C11.8125 11.6216 11.9281 11.5539 12.0608 11.5218C12.1838 11.4921 12.309 11.4921 12.4319 11.5218C12.5622 11.5532 12.6779 11.6183 12.7727 11.7132L15.0022 13.9446L17.2259 11.7161L17.302 11.6477C17.3818 11.5857 17.4738 11.5434 17.5755 11.5218ZM17.8899 11.7171C17.8008 11.6949 17.7101 11.6946 17.6194 11.7161H17.6165C17.5212 11.7364 17.4386 11.7838 17.3704 11.8548L17.3694 11.8557L15.0735 14.1575L15.0032 14.2278L14.9319 14.1575L12.6311 11.8548C12.5625 11.786 12.4797 11.7399 12.3851 11.7171C12.2929 11.6948 12.1999 11.6948 12.1077 11.7171C12.0125 11.7402 11.9292 11.7881 11.8587 11.8587C11.79 11.9274 11.7438 12.0101 11.721 12.1048C11.6988 12.1969 11.6988 12.2899 11.721 12.3821C11.7381 12.4527 11.7678 12.5163 11.8108 12.5716L11.8587 12.6243L11.8597 12.6253L14.1556 14.927L14.2259 14.9983L14.1556 15.0686L11.8597 17.3743L11.8587 17.3763C11.7904 17.4419 11.7427 17.5218 11.7171 17.6145L11.7161 17.6175C11.6939 17.7097 11.6939 17.8035 11.7161 17.8958C11.7334 17.9673 11.7652 18.0316 11.8099 18.0882L11.8587 18.1419L11.8597 18.1429C11.93 18.2127 12.013 18.2605 12.1077 18.2835C12.2012 18.3053 12.2948 18.3059 12.3851 18.2835C12.4792 18.2606 12.5627 18.2142 12.6311 18.1458L14.9319 15.8421L15.0032 15.7718L15.0735 15.8421L17.3704 18.1458C17.439 18.2144 17.522 18.2606 17.6165 18.2835C17.7087 18.3057 17.8017 18.3057 17.8938 18.2835C17.9893 18.2604 18.0732 18.2116 18.1438 18.1409C18.2122 18.0723 18.2587 17.9901 18.2815 17.8958C18.2981 17.827 18.3026 17.7578 18.2942 17.6897L18.2815 17.6214C18.2587 17.5273 18.2122 17.4439 18.1448 17.3733L15.846 15.0686L15.7757 14.9983L15.846 14.927L18.1448 12.6263C18.2111 12.5567 18.2574 12.476 18.2806 12.385V12.3831C18.3058 12.2904 18.3066 12.1965 18.2815 12.1038L18.2806 12.1018C18.2577 12.0089 18.2121 11.9275 18.1448 11.8597L18.1419 11.8567C18.0694 11.7874 17.9845 11.7401 17.8899 11.7171ZM17.8421 11.9104L17.8431 11.9114L17.9251 11.9436L18.0013 11.9993L18.0042 12.0022L18.056 12.0706C18.069 12.0943 18.0773 12.1203 18.0843 12.1477H18.0862L18.0999 12.2434C18.0999 12.2718 18.0948 12.2998 18.0872 12.3284L18.0882 12.3294L18.0872 12.3343C18.0733 12.3899 18.0455 12.4406 18.0022 12.4866L15.4925 14.9973L18.0003 17.511L18.0022 17.5139C18.0449 17.5593 18.0731 17.6108 18.0872 17.6692L18.0979 17.7581C18.0979 17.7877 18.0946 17.8182 18.0872 17.8489C18.0729 17.9078 18.0447 17.9578 18.0022 18.0003C17.9564 18.0461 17.905 18.0751 17.847 18.0891C17.7856 18.104 17.7247 18.104 17.6634 18.0891C17.6044 18.0749 17.5545 18.0467 17.512 18.0042L15.0022 15.4876L12.4895 18.0042C12.447 18.0467 12.3971 18.0749 12.3382 18.0891L12.3372 18.0882C12.28 18.1024 12.22 18.104 12.1556 18.0891L12.1536 18.0882C12.096 18.074 12.0447 18.0457 11.9993 18.0003L11.9983 17.9983C11.9538 17.9558 11.9254 17.9065 11.9114 17.8489C11.897 17.789 11.8966 17.7293 11.9104 17.6692L11.9114 17.6634C11.9283 17.6051 11.9576 17.5577 11.9983 17.5188L14.5081 14.9973L12.0013 12.4837L11.9983 12.4807C11.9572 12.4415 11.9295 12.3938 11.9153 12.3352C11.9005 12.2739 11.9006 12.213 11.9153 12.1516C11.9296 12.0926 11.9568 12.0419 11.9993 11.9993C12.045 11.9536 12.0967 11.9255 12.1546 11.9114C12.2159 11.8966 12.2769 11.8966 12.3382 11.9114C12.397 11.9256 12.4471 11.953 12.4895 11.9954L15.0022 14.511L17.512 11.9954L17.514 11.9944C17.5552 11.9512 17.602 11.9244 17.6565 11.9124L17.6634 11.9114C17.725 11.8965 17.7842 11.8959 17.8421 11.9104ZM17.7102 12.1057L17.7044 12.1067L17.7005 12.1077C17.685 12.1109 17.673 12.1169 17.6585 12.1321L17.6536 12.137L15.0735 14.7239L15.0032 14.7942L14.9319 14.7239L12.3479 12.137C12.3316 12.1207 12.3145 12.1114 12.2913 12.1057C12.261 12.0984 12.2328 12.0985 12.2024 12.1057C12.1817 12.1108 12.1619 12.1199 12.1409 12.1409C12.1245 12.1573 12.1153 12.175 12.1097 12.1985C12.1023 12.229 12.1023 12.2578 12.1097 12.2884C12.1151 12.3107 12.1235 12.3243 12.136 12.3362L12.1399 12.3391L12.1419 12.3411L14.721 14.927L14.7913 14.9973L14.721 15.0686L12.138 17.6624L12.136 17.6634C12.1218 17.677 12.112 17.6936 12.1048 17.718C12.0988 17.7463 12.0989 17.7734 12.1058 17.802C12.1105 17.8216 12.1188 17.8373 12.136 17.8538L12.1399 17.8567L12.1409 17.8587C12.1618 17.8796 12.1811 17.8888 12.2015 17.8938C12.2373 17.9021 12.2647 17.901 12.2894 17.8948H12.2913C12.3146 17.8892 12.3316 17.8789 12.3479 17.8626L15.0032 15.2054L15.0735 15.2766L17.6536 17.8626L17.679 17.8821C17.6884 17.8874 17.6984 17.8919 17.7102 17.8948C17.7407 17.9022 17.7696 17.9022 17.8001 17.8948C17.8208 17.8898 17.8397 17.8796 17.8606 17.8587C17.8769 17.8424 17.8862 17.8253 17.8919 17.802C17.8995 17.7706 17.8993 17.7437 17.8929 17.718V17.7161C17.887 17.6919 17.8759 17.6711 17.8567 17.6507L15.2806 15.0686L15.2102 14.9973L17.8587 12.347C17.8783 12.3255 17.8878 12.3056 17.8929 12.2854L17.8938 12.2805L17.8948 12.2786C17.9016 12.2539 17.9016 12.2319 17.8948 12.2073L17.8919 12.1985C17.8864 12.1757 17.8777 12.1585 17.8626 12.1429C17.8387 12.1207 17.8171 12.1109 17.7962 12.1057L17.7942 12.1048C17.7688 12.0984 17.7415 12.0982 17.7102 12.1057Z\" />\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 21.4C18.5346 21.4 21.4 18.5346 21.4 15C21.4 11.4654 18.5346 8.6 15 8.6C11.4654 8.6 8.6 11.4654 8.6 15C8.6 18.5346 11.4654 21.4 15 21.4ZM15 23C19.4183 23 23 19.4183 23 15C23 10.5817 19.4183 7 15 7C10.5817 7 7 10.5817 7 15C7 19.4183 10.5817 23 15 23Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 7C19.4183 7 23 10.5817 23 15C23 19.4183 19.4183 23 15 23C10.5817 23 7 19.4183 7 15C7 10.5817 10.5817 7 15 7ZM15 7.2002C10.6922 7.2002 7.2002 10.6922 7.2002 15C7.2002 19.3078 10.6922 22.7998 15 22.7998C19.3078 22.7998 22.7998 19.3078 22.7998 15C22.7998 10.6922 19.3078 7.2002 15 7.2002ZM15 8.40039C18.6451 8.40039 21.5996 11.3549 21.5996 15C21.5996 18.6451 18.6451 21.5996 15 21.5996C11.3549 21.5996 8.40039 18.6451 8.40039 15C8.40039 11.3549 11.3549 8.40039 15 8.40039ZM15 8.59961C11.4654 8.59961 8.59961 11.4654 8.59961 15C8.59961 18.5346 11.4654 21.4004 15 21.4004C18.5346 21.4004 21.4004 18.5346 21.4004 15C21.4004 11.4654 18.5346 8.59961 15 8.59961Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON PLUS CON BORDE REDONDO -->\r\n<div *ngIf=\"icon == 'border-circle-plus'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 11C15.3898 11 15.7059 11.316 15.7059 11.7059V14.2941H18.2941C18.684 14.2941 19 14.6102 19 15C19 15.3898 18.684 15.7059 18.2941 15.7059H15.7059V18.2941C15.7059 18.684 15.3898 19 15 19C14.6102 19 14.2941 18.684 14.2941 18.2941V15.7059H11.7059C11.316 15.7059 11 15.3898 11 15C11 14.6102 11.316 14.2941 11.7059 14.2941H14.2941V11.7059C14.2941 11.316 14.6102 11 15 11Z\" />\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 21.4C18.5346 21.4 21.4 18.5346 21.4 15C21.4 11.4654 18.5346 8.6 15 8.6C11.4654 8.6 8.6 11.4654 8.6 15C8.6 18.5346 11.4654 21.4 15 21.4ZM15 23C19.4183 23 23 19.4183 23 15C23 10.5817 19.4183 7 15 7C10.5817 7 7 10.5817 7 15C7 19.4183 10.5817 23 15 23Z\" />\r\n <path [attr.fill]=\"color\" d=\"M22.9004 15C22.9004 10.637 19.363 7.09961 15 7.09961C10.637 7.09961 7.09961 10.637 7.09961 15C7.09961 19.363 10.637 22.9004 15 22.9004C19.363 22.9004 22.9004 19.363 22.9004 15ZM21.2998 15C21.2998 11.5206 18.4794 8.7002 15 8.7002C11.5206 8.7002 8.7002 11.5206 8.7002 15C8.7002 18.4794 11.5206 21.2998 15 21.2998C18.4794 21.2998 21.2998 18.4794 21.2998 15ZM21.5 15C21.5 18.5899 18.5899 21.5 15 21.5C11.4101 21.5 8.5 18.5899 8.5 15C8.5 11.4101 11.4101 8.5 15 8.5C18.5899 8.5 21.5 11.4101 21.5 15ZM23.0996 15C23.0996 19.4735 19.4735 23.0996 15 23.0996C10.5265 23.0996 6.90039 19.4735 6.90039 15C6.90039 10.5265 10.5265 6.90039 15 6.90039C19.4735 6.90039 23.0996 10.5265 23.0996 15Z\" />\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 11C15.3898 11 15.7059 11.316 15.7059 11.7059V14.2941H18.2941C18.684 14.2941 19 14.6102 19 15C19 15.3898 18.684 15.7059 18.2941 15.7059H15.7059V18.2941C15.7059 18.684 15.3898 19 15 19C14.6102 19 14.2941 18.684 14.2941 18.2941V15.7059H11.7059C11.316 15.7059 11 15.3898 11 15C11 14.6102 11.316 14.2941 11.7059 14.2941H14.2941V11.7059C14.2941 11.316 14.6102 11 15 11Z\" />\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 21.4C18.5346 21.4 21.4 18.5346 21.4 15C21.4 11.4654 18.5346 8.6 15 8.6C11.4654 8.6 8.6 11.4654 8.6 15C8.6 18.5346 11.4654 21.4 15 21.4ZM15 23C19.4183 23 23 19.4183 23 15C23 10.5817 19.4183 7 15 7C10.5817 7 7 10.5817 7 15C7 19.4183 10.5817 23 15 23Z\" />\r\n <path [attr.fill]=\"color\" d=\"M22.9004 15C22.9004 10.637 19.363 7.09961 15 7.09961C10.637 7.09961 7.09961 10.637 7.09961 15C7.09961 19.363 10.637 22.9004 15 22.9004C19.363 22.9004 22.9004 19.363 22.9004 15ZM21.2998 15C21.2998 11.5206 18.4794 8.7002 15 8.7002C11.5206 8.7002 8.7002 11.5206 8.7002 15C8.7002 18.4794 11.5206 21.2998 15 21.2998C18.4794 21.2998 21.2998 18.4794 21.2998 15ZM21.5 15C21.5 18.5899 18.5899 21.5 15 21.5C11.4101 21.5 8.5 18.5899 8.5 15C8.5 11.4101 11.4101 8.5 15 8.5C18.5899 8.5 21.5 11.4101 21.5 15ZM23.0996 15C23.0996 19.4735 19.4735 23.0996 15 23.0996C10.5265 23.0996 6.90039 19.4735 6.90039 15C6.90039 10.5265 10.5265 6.90039 15 6.90039C19.4735 6.90039 23.0996 10.5265 23.0996 15Z\" />\r\n </svg>\r\n</div>\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\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect [attr.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 VER ARCHIVO -->\r\n<div *ngIf=\"icon == 'view-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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M16.4 17.8C16.7183 17.8 17.0235 17.9264 17.2485 18.1515C17.4736 18.3765 17.6 18.6817 17.6 19C17.6 19.3183 17.4736 19.6235 17.2485 19.8485C17.0235 20.0736 16.7183 20.2 16.4 20.2C16.0817 20.2 15.7765 20.0736 15.5515 19.8485C15.3264 19.6235 15.2 19.3183 15.2 19C15.2 18.6817 15.3264 18.3765 15.5515 18.1515C15.7765 17.9264 16.0817 17.8 16.4 17.8ZM16.4 16C18.4 16 20.108 17.244 20.8 19C20.108 20.756 18.4 22 16.4 22C14.4 22 12.692 20.756 12 19C12.692 17.244 14.4 16 16.4 16ZM12.872 19C13.1953 19.6601 13.6973 20.2163 14.321 20.6053C14.9447 20.9943 15.665 21.2005 16.4 21.2005C17.135 21.2005 17.8553 20.9943 18.479 20.6053C19.1027 20.2163 19.6047 19.6601 19.928 19C19.6047 18.3399 19.1027 17.7837 18.479 17.3947C17.8553 17.0057 17.135 16.7995 16.4 16.7995C15.665 16.7995 14.9447 17.0057 14.321 17.3947C13.6973 17.7837 13.1953 18.3399 12.872 19Z\" />\r\n <path [attr.fill]=\"color\" d=\"M16.4006 15.7998C18.4856 15.8 20.2656 17.0973 20.9865 18.9268C21.005 18.9738 21.005 19.0262 20.9865 19.0732C20.2656 20.9027 18.4856 22.2 16.4006 22.2002C14.3153 22.2002 12.5346 20.9028 11.8136 19.0732C11.7952 19.0263 11.7952 18.9737 11.8136 18.9268C12.5346 17.0972 14.3153 15.7998 16.4006 15.7998ZM16.4006 16.2002C14.514 16.2002 12.8993 17.3568 12.2179 19C12.8993 20.6432 14.514 21.7998 16.4006 21.7998C18.2869 21.7996 19.9009 20.6431 20.5822 19C19.9009 17.3569 18.2869 16.2004 16.4006 16.2002ZM16.4006 16.5996C17.1728 16.5997 17.9298 16.8159 18.5851 17.2246C19.2405 17.6334 19.7678 18.2184 20.1076 18.9121C20.1348 18.9676 20.1348 19.0324 20.1076 19.0879C19.7678 19.7816 19.2405 20.3666 18.5851 20.7754C17.9298 21.1841 17.1728 21.4003 16.4006 21.4004C15.6281 21.4004 14.8704 21.1842 14.215 20.7754C13.5596 20.3666 13.0323 19.7816 12.6925 19.0879C12.6654 19.0324 12.6654 18.9676 12.6925 18.9121C13.0323 18.2184 13.5596 17.6334 14.215 17.2246C14.8704 16.8158 15.6281 16.5996 16.4006 16.5996ZM16.4006 16.999C15.7029 16.999 15.0188 17.1953 14.4269 17.5645C13.8633 17.916 13.4063 18.4125 13.0988 19C13.4063 19.5875 13.8633 20.084 14.4269 20.4355C15.0188 20.8047 15.7029 21.001 16.4006 21.001C17.098 21.0009 17.7814 20.8047 18.3732 20.4355C18.9367 20.0841 19.3929 19.5873 19.7004 19C19.3929 18.4127 18.9367 17.9159 18.3732 17.5645C17.7814 17.1953 17.098 16.9991 16.4006 16.999ZM17.4006 19C17.4006 18.7349 17.295 18.4805 17.1076 18.293C16.9201 18.1055 16.6656 18.0001 16.4006 18C16.1354 18 15.881 18.1056 15.6935 18.293C15.506 18.4805 15.4006 18.7348 15.4006 19C15.4006 19.2652 15.506 19.5195 15.6935 19.707C15.881 19.8944 16.1354 20 16.4006 20C16.6656 19.9999 16.9201 19.8945 17.1076 19.707C17.295 19.5195 17.4006 19.2651 17.4006 19ZM17.8 19C17.8 19.3713 17.6524 19.7277 17.3898 19.9902C17.1274 20.2525 16.7716 20.4003 16.4006 20.4004C16.0293 20.4004 15.6729 20.2527 15.4103 19.9902C15.1478 19.7277 15.0002 19.3713 15.0002 19C15.0002 18.6287 15.1478 18.2723 15.4103 18.0098C15.6729 17.7473 16.0293 17.5996 16.4006 17.5996C16.7716 17.5997 17.1274 17.7475 17.3898 18.0098C17.6524 18.2723 17.8 18.6287 17.8 19Z\" />\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M16.4 17.8C16.7183 17.8 17.0235 17.9264 17.2485 18.1515C17.4736 18.3765 17.6 18.6817 17.6 19C17.6 19.3183 17.4736 19.6235 17.2485 19.8485C17.0235 20.0736 16.7183 20.2 16.4 20.2C16.0817 20.2 15.7765 20.0736 15.5515 19.8485C15.3264 19.6235 15.2 19.3183 15.2 19C15.2 18.6817 15.3264 18.3765 15.5515 18.1515C15.7765 17.9264 16.0817 17.8 16.4 17.8ZM16.4 16C18.4 16 20.108 17.244 20.8 19C20.108 20.756 18.4 22 16.4 22C14.4 22 12.692 20.756 12 19C12.692 17.244 14.4 16 16.4 16ZM12.872 19C13.1953 19.6601 13.6973 20.2163 14.321 20.6053C14.9447 20.9943 15.665 21.2005 16.4 21.2005C17.135 21.2005 17.8553 20.9943 18.479 20.6053C19.1027 20.2163 19.6047 19.6601 19.928 19C19.6047 18.3399 19.1027 17.7837 18.479 17.3947C17.8553 17.0057 17.135 16.7995 16.4 16.7995C15.665 16.7995 14.9447 17.0057 14.321 17.3947C13.6973 17.7837 13.1953 18.3399 12.872 19Z\" />\r\n <path [attr.fill]=\"color\" d=\"M16.4006 15.7998C18.4856 15.8 20.2656 17.0973 20.9865 18.9268C21.005 18.9738 21.005 19.0262 20.9865 19.0732C20.2656 20.9027 18.4856 22.2 16.4006 22.2002C14.3153 22.2002 12.5346 20.9028 11.8136 19.0732C11.7952 19.0263 11.7952 18.9737 11.8136 18.9268C12.5346 17.0972 14.3153 15.7998 16.4006 15.7998ZM16.4006 16.2002C14.514 16.2002 12.8993 17.3568 12.2179 19C12.8993 20.6432 14.514 21.7998 16.4006 21.7998C18.2869 21.7996 19.9009 20.6431 20.5822 19C19.9009 17.3569 18.2869 16.2004 16.4006 16.2002ZM16.4006 16.5996C17.1728 16.5997 17.9298 16.8159 18.5851 17.2246C19.2405 17.6334 19.7678 18.2184 20.1076 18.9121C20.1348 18.9676 20.1348 19.0324 20.1076 19.0879C19.7678 19.7816 19.2405 20.3666 18.5851 20.7754C17.9298 21.1841 17.1728 21.4003 16.4006 21.4004C15.6281 21.4004 14.8704 21.1842 14.215 20.7754C13.5596 20.3666 13.0323 19.7816 12.6925 19.0879C12.6654 19.0324 12.6654 18.9676 12.6925 18.9121C13.0323 18.2184 13.5596 17.6334 14.215 17.2246C14.8704 16.8158 15.6281 16.5996 16.4006 16.5996ZM16.4006 16.999C15.7029 16.999 15.0188 17.1953 14.4269 17.5645C13.8633 17.916 13.4063 18.4125 13.0988 19C13.4063 19.5875 13.8633 20.084 14.4269 20.4355C15.0188 20.8047 15.7029 21.001 16.4006 21.001C17.098 21.0009 17.7814 20.8047 18.3732 20.4355C18.9367 20.0841 19.3929 19.5873 19.7004 19C19.3929 18.4127 18.9367 17.9159 18.3732 17.5645C17.7814 17.1953 17.098 16.9991 16.4006 16.999ZM17.4006 19C17.4006 18.7349 17.295 18.4805 17.1076 18.293C16.9201 18.1055 16.6656 18.0001 16.4006 18C16.1354 18 15.881 18.1056 15.6935 18.293C15.506 18.4805 15.4006 18.7348 15.4006 19C15.4006 19.2652 15.506 19.5195 15.6935 19.707C15.881 19.8944 16.1354 20 16.4006 20C16.6656 19.9999 16.9201 19.8945 17.1076 19.707C17.295 19.5195 17.4006 19.2651 17.4006 19ZM17.8 19C17.8 19.3713 17.6524 19.7277 17.3898 19.9902C17.1274 20.2525 16.7716 20.4003 16.4006 20.4004C16.0293 20.4004 15.6729 20.2527 15.4103 19.9902C15.1478 19.7277 15.0002 19.3713 15.0002 19C15.0002 18.6287 15.1478 18.2723 15.4103 18.0098C15.6729 17.7473 16.0293 17.5996 16.4006 17.5996C16.7716 17.5997 17.1274 17.7475 17.3898 18.0098C17.6524 18.2723 17.8 18.6287 17.8 19Z\" />\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON RECETA ELECTRONICA -->\r\n<div *ngIf=\"icon == 'electronic-prescription-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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.0464 7C16.3916 7.00009 16.7223 7.1371 16.9663 7.38184C17.7238 8.1393 20.2375 10.6521 20.9956 11.4102C21.2404 11.6542 21.3774 11.9858 21.3774 12.3311V14.6279C21.3774 14.9359 21.1277 15.1854 20.8198 15.1855C20.5118 15.1855 20.2613 14.936 20.2612 14.6279V12.5811H17.8423C16.7119 12.5811 15.7956 11.6654 15.7954 10.5352V8.11621H10.3999C10.153 8.11632 9.91747 8.21464 9.74268 8.38867C9.56863 8.56346 9.47033 8.79898 9.47021 9.0459V20.9531C9.47021 21.2002 9.56853 21.4364 9.74268 21.6113C9.91746 21.7853 10.153 21.8837 10.3999 21.8838H14.1216C14.4295 21.8839 14.679 22.1336 14.6792 22.4414C14.6792 22.7495 14.4296 22.9999 14.1216 23H10.3999C9.85757 22.9999 9.33655 22.7844 8.95264 22.4014C8.56936 22.0174 8.354 21.4956 8.354 20.9531V9.0459C8.35412 8.50353 8.56946 7.98254 8.95264 7.59863C9.33656 7.21549 9.85753 7.00011 10.3999 7H16.0464ZM17.1245 16.7061C18.159 15.6724 19.8361 15.6724 20.8706 16.7061C21.904 17.7405 21.9041 19.4168 20.8706 20.4512L19.0972 22.2246C18.0627 23.2583 16.3856 23.2583 15.3511 22.2246C14.3175 21.1903 14.3176 19.5139 15.3511 18.4795L17.1245 16.7061ZM16.1411 19.2686C15.5428 19.8669 15.5428 20.8362 16.1411 21.4346C16.7395 22.0329 17.7088 22.0329 18.3071 21.4346L18.7993 20.9424L16.6333 18.7764L16.1411 19.2686ZM20.0806 17.4951C19.4822 16.897 18.5129 16.897 17.9146 17.4951L17.4224 17.9873L19.5884 20.1533L20.0806 19.6611C20.6788 19.0628 20.6789 18.0934 20.0806 17.4951ZM14.1216 15.9297C14.4296 15.9298 14.6792 16.1802 14.6792 16.4883C14.6792 16.7963 14.4296 17.0468 14.1216 17.0469H11.144C10.8361 17.0466 10.5864 16.7962 10.5864 16.4883C10.5864 16.1803 10.8361 15.9299 11.144 15.9297H14.1216ZM14.1216 12.9531C14.4296 12.9532 14.6792 13.2037 14.6792 13.5117C14.6792 13.8198 14.4296 14.0702 14.1216 14.0703H11.144C10.8361 14.0701 10.5864 13.8197 10.5864 13.5117C10.5864 13.2038 10.8361 12.9534 11.144 12.9531H14.1216ZM16.9116 10.5352C16.9118 11.0485 17.3289 11.4648 17.8423 11.4648H19.4722L16.9116 8.90332V10.5352Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M9.37549 8.92918C9.39899 8.6926 9.50382 8.47033 9.67236 8.30066C9.86567 8.10789 10.1264 7.99925 10.3999 7.99913H15.895V10.524L15.9058 10.7237C16.0057 11.7075 16.8344 12.4751 17.8423 12.4751H20.3608V14.627L20.3706 14.719C20.4133 14.9282 20.5983 15.0861 20.8198 15.0861L20.9116 15.0763C21.0907 15.0397 21.2316 14.8984 21.2681 14.719L21.2778 14.627V12.3244C21.2778 12.0049 21.151 11.6984 20.9253 11.4726V11.4716C20.5463 11.0917 19.7275 10.2726 18.9097 9.45294C18.0918 8.63327 17.2747 7.81294 16.896 7.43326H16.895C16.6981 7.23543 16.4402 7.11319 16.1655 7.08572L16.0464 7.07984H10.3999C9.88403 7.07995 9.3881 7.28532 9.02295 7.6506C8.65855 8.01664 8.45373 8.51383 8.45361 9.03099V20.968C8.45361 21.4853 8.65847 21.9832 9.02295 22.3493C9.3881 22.7145 9.88408 22.92 10.3999 22.9201H14.1216L14.2134 22.9103C14.422 22.8675 14.5796 22.682 14.5796 22.4599C14.5794 22.2382 14.422 22.0533 14.2134 22.0106L14.1216 22.0008H10.3999C10.1265 22.0007 9.86565 21.892 9.67236 21.6993L9.67139 21.6983C9.47892 21.5043 9.37061 21.2422 9.37061 20.968V9.03099L9.37549 8.92918ZM17.0542 16.6398C18.1277 15.5644 19.8674 15.5644 20.9409 16.6398C22.0133 17.7159 22.0135 19.4592 20.9409 20.5352L19.1675 22.3131C18.094 23.3885 16.3543 23.3885 15.2808 22.3131C14.2081 21.237 14.2083 19.4938 15.2808 18.4177L17.0542 16.6398ZM20.8003 16.7808C19.8049 15.7836 18.1902 15.7836 17.1948 16.7808L15.4214 18.5586C14.427 19.5565 14.4269 21.1744 15.4214 22.1721C16.4168 23.1692 18.0314 23.1692 19.0269 22.1721L20.8003 20.3943C21.7948 19.3965 21.7946 17.7786 20.8003 16.7808ZM16.7036 18.7153L18.8696 20.8867L18.9409 20.9572L18.8696 21.0277L18.3774 21.5211C17.74 22.1601 16.7082 22.1601 16.0708 21.5211C15.4335 20.8821 15.4334 19.8476 16.0708 19.2087L16.563 18.7153L16.6333 18.6438L16.7036 18.7153ZM16.2114 19.3497C15.6521 19.9103 15.6522 20.8194 16.2114 21.3801C16.7707 21.9408 17.6775 21.9408 18.2368 21.3801L18.6587 20.9572L16.6333 18.9267L16.2114 19.3497ZM17.8442 17.4308C18.4816 16.7921 19.5135 16.792 20.1509 17.4308C20.7883 18.0698 20.7882 19.1042 20.1509 19.7432L19.6587 20.2366L19.5884 20.3081L19.5181 20.2366L17.3521 18.0652L17.2808 17.9947L17.3521 17.9242L17.8442 17.4308ZM20.0103 17.5718C19.451 17.0113 18.5441 17.0113 17.9849 17.5718L17.563 17.9947L19.5884 20.0252L20.0103 19.6022C20.5695 19.0415 20.5695 18.1324 20.0103 17.5718ZM14.5698 16.399C14.5331 16.2196 14.3921 16.0783 14.2134 16.0416L14.1216 16.0318H11.144C10.8915 16.0321 10.686 16.2385 10.686 16.492L10.6958 16.585C10.7387 16.794 10.9232 16.9519 11.144 16.9521H14.1216L14.2134 16.9423C14.422 16.8995 14.5796 16.714 14.5796 16.492L14.5698 16.399ZM14.5698 13.415C14.5331 13.2356 14.3921 13.0943 14.2134 13.0576L14.1216 13.0478H11.144C10.8915 13.0481 10.686 13.2545 10.686 13.508L10.6958 13.601C10.7387 13.81 10.9232 13.9679 11.144 13.9681H14.1216L14.2134 13.9583C14.422 13.9155 14.5796 13.73 14.5796 13.508L14.5698 13.415ZM16.9819 8.81757L19.5425 11.3855L19.7134 11.5558H17.8423C17.2738 11.5558 16.8122 11.094 16.812 10.524V8.64624L16.9819 8.81757ZM14.7788 16.492C14.7788 16.8559 14.485 17.1517 14.1216 17.1518H11.144C10.7808 17.1515 10.4868 16.8559 10.4868 16.492C10.4868 16.128 10.7808 15.8324 11.144 15.8321H14.1216C14.485 15.8322 14.7788 16.128 14.7788 16.492ZM14.7788 13.508C14.7788 13.8719 14.485 14.1677 14.1216 14.1678H11.144C10.7808 14.1675 10.4868 13.8719 10.4868 13.508C10.4868 13.144 10.7808 12.8484 11.144 12.8481H14.1216C14.485 12.8482 14.7788 13.144 14.7788 13.508ZM17.0161 10.6091C17.0589 11.0283 17.4127 11.3561 17.8423 11.3561H19.2319L17.0112 9.12889V10.524L17.0161 10.6091ZM9.56982 20.968C9.56982 21.1886 9.65776 21.3997 9.81299 21.5563C9.96923 21.7122 10.1797 21.801 10.3999 21.8011H14.1216C14.4848 21.8012 14.7785 22.0961 14.7788 22.4599L14.7661 22.5931C14.7048 22.8935 14.4395 23.1197 14.1216 23.1198H10.3999C9.83111 23.1197 9.28499 22.8931 8.88232 22.4903C8.48029 22.0865 8.25439 21.5383 8.25439 20.968V9.03099C8.25451 8.46075 8.48042 7.9133 8.88232 7.50962C9.285 7.10676 9.83107 6.88024 10.3999 6.88013H16.0464C16.4181 6.88023 16.7748 7.02804 17.0376 7.29229H17.0366C17.4154 7.67196 18.2334 8.49131 19.0513 9.31099C19.8684 10.13 20.6855 10.9493 21.0649 11.3297H21.0659C21.3296 11.5932 21.477 11.9517 21.4771 12.3244V14.627C21.477 14.991 21.1829 15.2856 20.8198 15.2858C20.4567 15.2858 20.1617 14.9913 20.1616 14.627V12.6748H17.8423C16.6567 12.6748 15.696 11.7125 15.6958 10.524V8.19884H10.3999C10.1797 8.19895 9.96923 8.28764 9.81299 8.44359C9.65782 8.60014 9.56994 8.81053 9.56982 9.03099V20.968Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.0464 7C16.3916 7.00009 16.7223 7.1371 16.9663 7.38184C17.7238 8.1393 20.2375 10.6521 20.9956 11.4102C21.2404 11.6542 21.3774 11.9858 21.3774 12.3311V14.6279C21.3774 14.9359 21.1277 15.1854 20.8198 15.1855C20.5118 15.1855 20.2613 14.936 20.2612 14.6279V12.5811H17.8423C16.7119 12.5811 15.7956 11.6654 15.7954 10.5352V8.11621H10.3999C10.153 8.11632 9.91747 8.21464 9.74268 8.38867C9.56863 8.56346 9.47033 8.79898 9.47021 9.0459V20.9531C9.47021 21.2002 9.56853 21.4364 9.74268 21.6113C9.91746 21.7853 10.153 21.8837 10.3999 21.8838H14.1216C14.4295 21.8839 14.679 22.1336 14.6792 22.4414C14.6792 22.7495 14.4296 22.9999 14.1216 23H10.3999C9.85757 22.9999 9.33655 22.7844 8.95264 22.4014C8.56936 22.0174 8.354 21.4956 8.354 20.9531V9.0459C8.35412 8.50353 8.56946 7.98254 8.95264 7.59863C9.33656 7.21549 9.85753 7.00011 10.3999 7H16.0464ZM17.1245 16.7061C18.159 15.6724 19.8361 15.6724 20.8706 16.7061C21.904 17.7405 21.9041 19.4168 20.8706 20.4512L19.0972 22.2246C18.0627 23.2583 16.3856 23.2583 15.3511 22.2246C14.3175 21.1903 14.3176 19.5139 15.3511 18.4795L17.1245 16.7061ZM16.1411 19.2686C15.5428 19.8669 15.5428 20.8362 16.1411 21.4346C16.7395 22.0329 17.7088 22.0329 18.3071 21.4346L18.7993 20.9424L16.6333 18.7764L16.1411 19.2686ZM20.0806 17.4951C19.4822 16.897 18.5129 16.897 17.9146 17.4951L17.4224 17.9873L19.5884 20.1533L20.0806 19.6611C20.6788 19.0628 20.6789 18.0934 20.0806 17.4951ZM14.1216 15.9297C14.4296 15.9298 14.6792 16.1802 14.6792 16.4883C14.6792 16.7963 14.4296 17.0468 14.1216 17.0469H11.144C10.8361 17.0466 10.5864 16.7962 10.5864 16.4883C10.5864 16.1803 10.8361 15.9299 11.144 15.9297H14.1216ZM14.1216 12.9531C14.4296 12.9532 14.6792 13.2037 14.6792 13.5117C14.6792 13.8198 14.4296 14.0702 14.1216 14.0703H11.144C10.8361 14.0701 10.5864 13.8197 10.5864 13.5117C10.5864 13.2038 10.8361 12.9534 11.144 12.9531H14.1216ZM16.9116 10.5352C16.9118 11.0485 17.3289 11.4648 17.8423 11.4648H19.4722L16.9116 8.90332V10.5352Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M9.37549 8.92918C9.39899 8.6926 9.50382 8.47033 9.67236 8.30066C9.86567 8.10789 10.1264 7.99925 10.3999 7.99913H15.895V10.524L15.9058 10.7237C16.0057 11.7075 16.8344 12.4751 17.8423 12.4751H20.3608V14.627L20.3706 14.719C20.4133 14.9282 20.5983 15.0861 20.8198 15.0861L20.9116 15.0763C21.0907 15.0397 21.2316 14.8984 21.2681 14.719L21.2778 14.627V12.3244C21.2778 12.0049 21.151 11.6984 20.9253 11.4726V11.4716C20.5463 11.0917 19.7275 10.2726 18.9097 9.45294C18.0918 8.63327 17.2747 7.81294 16.896 7.43326H16.895C16.6981 7.23543 16.4402 7.11319 16.1655 7.08572L16.0464 7.07984H10.3999C9.88403 7.07995 9.3881 7.28532 9.02295 7.6506C8.65855 8.01664 8.45373 8.51383 8.45361 9.03099V20.968C8.45361 21.4853 8.65847 21.9832 9.02295 22.3493C9.3881 22.7145 9.88408 22.92 10.3999 22.9201H14.1216L14.2134 22.9103C14.422 22.8675 14.5796 22.682 14.5796 22.4599C14.5794 22.2382 14.422 22.0533 14.2134 22.0106L14.1216 22.0008H10.3999C10.1265 22.0007 9.86565 21.892 9.67236 21.6993L9.67139 21.6983C9.47892 21.5043 9.37061 21.2422 9.37061 20.968V9.03099L9.37549 8.92918ZM17.0542 16.6398C18.1277 15.5644 19.8674 15.5644 20.9409 16.6398C22.0133 17.7159 22.0135 19.4592 20.9409 20.5352L19.1675 22.3131C18.094 23.3885 16.3543 23.3885 15.2808 22.3131C14.2081 21.237 14.2083 19.4938 15.2808 18.4177L17.0542 16.6398ZM20.8003 16.7808C19.8049 15.7836 18.1902 15.7836 17.1948 16.7808L15.4214 18.5586C14.427 19.5565 14.4269 21.1744 15.4214 22.1721C16.4168 23.1692 18.0314 23.1692 19.0269 22.1721L20.8003 20.3943C21.7948 19.3965 21.7946 17.7786 20.8003 16.7808ZM16.7036 18.7153L18.8696 20.8867L18.9409 20.9572L18.8696 21.0277L18.3774 21.5211C17.74 22.1601 16.7082 22.1601 16.0708 21.5211C15.4335 20.8821 15.4334 19.8476 16.0708 19.2087L16.563 18.7153L16.6333 18.6438L16.7036 18.7153ZM16.2114 19.3497C15.6521 19.9103 15.6522 20.8194 16.2114 21.3801C16.7707 21.9408 17.6775 21.9408 18.2368 21.3801L18.6587 20.9572L16.6333 18.9267L16.2114 19.3497ZM17.8442 17.4308C18.4816 16.7921 19.5135 16.792 20.1509 17.4308C20.7883 18.0698 20.7882 19.1042 20.1509 19.7432L19.6587 20.2366L19.5884 20.3081L19.5181 20.2366L17.3521 18.0652L17.2808 17.9947L17.3521 17.9242L17.8442 17.4308ZM20.0103 17.5718C19.451 17.0113 18.5441 17.0113 17.9849 17.5718L17.563 17.9947L19.5884 20.0252L20.0103 19.6022C20.5695 19.0415 20.5695 18.1324 20.0103 17.5718ZM14.5698 16.399C14.5331 16.2196 14.3921 16.0783 14.2134 16.0416L14.1216 16.0318H11.144C10.8915 16.0321 10.686 16.2385 10.686 16.492L10.6958 16.585C10.7387 16.794 10.9232 16.9519 11.144 16.9521H14.1216L14.2134 16.9423C14.422 16.8995 14.5796 16.714 14.5796 16.492L14.5698 16.399ZM14.5698 13.415C14.5331 13.2356 14.3921 13.0943 14.2134 13.0576L14.1216 13.0478H11.144C10.8915 13.0481 10.686 13.2545 10.686 13.508L10.6958 13.601C10.7387 13.81 10.9232 13.9679 11.144 13.9681H14.1216L14.2134 13.9583C14.422 13.9155 14.5796 13.73 14.5796 13.508L14.5698 13.415ZM16.9819 8.81757L19.5425 11.3855L19.7134 11.5558H17.8423C17.2738 11.5558 16.8122 11.094 16.812 10.524V8.64624L16.9819 8.81757ZM14.7788 16.492C14.7788 16.8559 14.485 17.1517 14.1216 17.1518H11.144C10.7808 17.1515 10.4868 16.8559 10.4868 16.492C10.4868 16.128 10.7808 15.8324 11.144 15.8321H14.1216C14.485 15.8322 14.7788 16.128 14.7788 16.492ZM14.7788 13.508C14.7788 13.8719 14.485 14.1677 14.1216 14.1678H11.144C10.7808 14.1675 10.4868 13.8719 10.4868 13.508C10.4868 13.144 10.7808 12.8484 11.144 12.8481H14.1216C14.485 12.8482 14.7788 13.144 14.7788 13.508ZM17.0161 10.6091C17.0589 11.0283 17.4127 11.3561 17.8423 11.3561H19.2319L17.0112 9.12889V10.524L17.0161 10.6091ZM9.56982 20.968C9.56982 21.1886 9.65776 21.3997 9.81299 21.5563C9.96923 21.7122 10.1797 21.801 10.3999 21.8011H14.1216C14.4848 21.8012 14.7785 22.0961 14.7788 22.4599L14.7661 22.5931C14.7048 22.8935 14.4395 23.1197 14.1216 23.1198H10.3999C9.83111 23.1197 9.28499 22.8931 8.88232 22.4903C8.48029 22.0865 8.25439 21.5383 8.25439 20.968V9.03099C8.25451 8.46075 8.48042 7.9133 8.88232 7.50962C9.285 7.10676 9.83107 6.88024 10.3999 6.88013H16.0464C16.4181 6.88023 16.7748 7.02804 17.0376 7.29229H17.0366C17.4154 7.67196 18.2334 8.49131 19.0513 9.31099C19.8684 10.13 20.6855 10.9493 21.0649 11.3297H21.0659C21.3296 11.5932 21.477 11.9517 21.4771 12.3244V14.627C21.477 14.991 21.1829 15.2856 20.8198 15.2858C20.4567 15.2858 20.1617 14.9913 20.1616 14.627V12.6748H17.8423C16.6567 12.6748 15.696 11.7125 15.6958 10.524V8.19884H10.3999C10.1797 8.19895 9.96923 8.28764 9.81299 8.44359C9.65782 8.60014 9.56994 8.81053 9.56982 9.03099V20.968Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON ARCHIVO -->\r\n<div *ngIf=\"icon == '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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M8.00039 14.9949C8.00039 13.4613 8.00039 11.9278 8.00039 10.3934C8.00126 8.47434 9.54093 7.00419 11.5521 7.00336C12.8783 7.00336 14.2054 7.00753 15.5316 7.00002C15.8431 6.99835 16.0863 7.08847 16.3093 7.30206C18.0975 9.01501 19.8908 10.723 21.6894 12.4259C21.9081 12.6328 22.0009 12.8598 22 13.1485C21.9947 15.3211 22 17.493 21.9965 19.6657C21.9947 21.5105 20.4341 22.9956 18.4937 22.9981C16.1685 23.0006 13.8441 23.0006 11.5189 22.9981C9.55318 22.9956 8.00214 21.5138 8.00039 19.6381C7.99951 18.0904 8.00039 16.5426 8.00039 14.9949ZM14.9989 8.33667H14.7601C13.7103 8.33667 12.6614 8.33667 11.6116 8.33667C10.302 8.33751 9.40096 9.19357 9.40009 10.4401C9.39921 13.4797 9.40009 16.5201 9.40009 19.5597C9.40009 20.8071 10.3003 21.6648 11.609 21.6648C13.8686 21.6656 16.1274 21.6656 18.387 21.6648C19.6975 21.6648 20.5959 20.8088 20.5968 19.5597C20.5977 17.6724 20.5968 15.7842 20.5968 13.8969V13.6683C19.8943 13.6683 19.2251 13.6683 18.555 13.6683C16.5412 13.6666 14.9989 12.1989 14.998 10.2824C14.998 9.64412 14.9989 9.00667 14.9989 8.33667ZM16.3995 9.34375C16.3995 9.6775 16.3942 10.0213 16.4012 10.3642C16.4091 10.7755 16.5385 11.1527 16.7896 11.4897C17.3355 12.2215 18.5497 12.5777 19.5155 12.3124C18.4885 11.3337 17.4475 10.3425 16.3995 9.34375Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M8.00039 14.9949C8.00039 13.4613 8.00039 11.9278 8.00039 10.3934C8.00126 8.47434 9.54093 7.00419 11.5521 7.00336C12.8783 7.00336 14.2054 7.00753 15.5316 7.00002C15.8431 6.99835 16.0863 7.08847 16.3093 7.30206C18.0975 9.01501 19.8908 10.723 21.6894 12.4259C21.9081 12.6328 22.0009 12.8598 22 13.1485C21.9947 15.3211 22 17.493 21.9965 19.6657C21.9947 21.5105 20.4341 22.9956 18.4937 22.9981C16.1685 23.0006 13.8441 23.0006 11.5189 22.9981C9.55318 22.9956 8.00214 21.5138 8.00039 19.6381C7.99951 18.0904 8.00039 16.5426 8.00039 14.9949ZM14.9989 8.33667H14.7601C13.7103 8.33667 12.6614 8.33667 11.6116 8.33667C10.302 8.33751 9.40096 9.19357 9.40009 10.4401C9.39921 13.4797 9.40009 16.5201 9.40009 19.5597C9.40009 20.8071 10.3003 21.6648 11.609 21.6648C13.8686 21.6656 16.1274 21.6656 18.387 21.6648C19.6975 21.6648 20.5959 20.8088 20.5968 19.5597C20.5977 17.6724 20.5968 15.7842 20.5968 13.8969V13.6683C19.8943 13.6683 19.2251 13.6683 18.555 13.6683C16.5412 13.6666 14.9989 12.1989 14.998 10.2824C14.998 9.64412 14.9989 9.00667 14.9989 8.33667ZM16.3995 9.34375C16.3995 9.6775 16.3942 10.0213 16.4012 10.3642C16.4091 10.7755 16.5385 11.1527 16.7896 11.4897C17.3355 12.2215 18.5497 12.5777 19.5155 12.3124C18.4885 11.3337 17.4475 10.3425 16.3995 9.34375Z\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 EDITAR HOJA -->\r\n<div *ngIf=\"icon == 'edit-sheet'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.2402 7C20.7617 7.00005 22 8.12153 22 9.5V13.3438C22 13.6889 21.6906 13.9688 21.3096 13.9688C20.9286 13.9687 20.6201 13.6889 20.6201 13.3438V9.5C20.6201 8.81078 20.0009 8.25005 19.2402 8.25H10.7588C9.99807 8.25005 9.37891 8.81078 9.37891 9.5V20.5C9.37891 21.1892 9.99807 21.75 10.7588 21.75H13.0664C13.4472 21.7502 13.7559 22.0299 13.7559 22.375C13.7559 22.7201 13.4472 22.9998 13.0664 23H10.7588C9.23731 23 8 21.8785 8 20.5V9.5C8 8.12153 9.23731 7.00005 10.7588 7H19.2402ZM18.4609 16.4385C19.0405 15.8541 19.9843 15.8539 20.5645 16.4385C21.1445 17.0234 21.1454 17.9756 20.5654 18.5605L17.8477 21.2949C17.7872 21.3557 17.7121 21.3999 17.6299 21.4229L15.6279 21.9814C15.5843 21.9936 15.5401 22 15.4961 22C15.3643 22 15.2352 21.9473 15.1406 21.8496C15.0143 21.7191 14.9689 21.529 15.0215 21.3545L15.6143 19.3867C15.638 19.308 15.6806 19.2359 15.7383 19.1777L18.4609 16.4385ZM16.5273 19.7969L16.2324 20.7754L17.2393 20.4941L19.0654 18.6562L18.3643 17.9482L16.5273 19.7969ZM19.8633 17.1455C19.6699 16.951 19.3554 16.9508 19.1621 17.1455L19.0664 17.2422L19.7676 17.9492L19.8643 17.8525C20.057 17.6578 20.0565 17.3404 19.8633 17.1455ZM15.5352 15C15.8802 15.0002 16.1602 15.2799 16.1602 15.625C16.1602 15.9701 15.8802 16.2498 15.5352 16.25H11.625C11.2798 16.25 11 15.9702 11 15.625C11 15.2798 11.2798 15 11.625 15H15.5352ZM18.0625 12.5C18.4077 12.5 18.6875 12.7798 18.6875 13.125C18.6875 13.4702 18.4077 13.75 18.0625 13.75H11.625C11.2798 13.75 11 13.4702 11 13.125C11 12.7798 11.2798 12.5 11.625 12.5H18.0625ZM18.0625 10C18.4077 10 18.6875 10.2798 18.6875 10.625C18.6875 10.9702 18.4077 11.25 18.0625 11.25H11.625C11.2798 11.25 11 10.9702 11 10.625C11 10.2798 11.2798 10 11.625 10H18.0625Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.3896 16.3682C19.0084 15.7443 20.0165 15.7442 20.6357 16.3682C21.2541 16.9919 21.2552 18.0069 20.6367 18.6309L17.9189 21.3652C17.8465 21.4381 17.7562 21.4918 17.6572 21.5195L15.6553 22.0781C15.6035 22.0926 15.5497 22.0996 15.4961 22.0996C15.3378 22.0996 15.1822 22.0366 15.0684 21.9189C14.9168 21.7621 14.8629 21.5339 14.9258 21.3252L15.5186 19.3574C15.5469 19.2636 15.5977 19.1773 15.667 19.1074L18.3896 16.3682ZM20.4932 16.5088C19.9522 15.9639 19.0726 15.9641 18.5322 16.5088L15.8096 19.248C15.7636 19.2943 15.729 19.3527 15.71 19.416L15.1172 21.3838C15.0752 21.5239 15.1122 21.6762 15.2129 21.7803C15.2882 21.8579 15.3909 21.9004 15.4961 21.9004L15.6006 21.8848L17.6025 21.3262C17.6679 21.3079 17.728 21.2731 17.7764 21.2246L20.4941 18.4902C21.0354 17.9444 21.0346 17.0548 20.4932 16.5088ZM18.4355 17.8779L19.1367 18.5859L19.2061 18.6562L19.1367 18.7266L17.3105 20.5645L17.292 20.583L17.2666 20.5908L16.2598 20.8721L16.084 20.9209L16.4316 19.7676L16.4385 19.7441L16.4561 19.7266L18.293 17.8779L18.3643 17.8066L18.4355 17.8779ZM16.6152 19.8496L16.3809 20.6289L17.1865 20.4043L18.9238 18.6553L18.3633 18.0898L16.6152 19.8496ZM19.0908 17.0752C19.3232 16.841 19.7022 16.8414 19.9346 17.0752C20.1661 17.3089 20.1668 17.6891 19.9355 17.9229L19.8379 18.0195L19.7676 18.0908L19.6963 18.0195L18.9951 17.3125L18.9258 17.2422L18.9951 17.1719L19.0908 17.0752ZM19.792 17.2158C19.6378 17.0609 19.3874 17.0609 19.2334 17.2158L19.207 17.2412L19.7676 17.8076L19.793 17.7822L19.8438 17.7197C19.9448 17.5646 19.9274 17.3524 19.792 17.2158ZM16.0605 15.625C16.0605 15.3713 15.88 15.1593 15.6406 15.1104L15.5352 15.0996H11.625C11.335 15.0996 11.0996 15.335 11.0996 15.625C11.0996 15.915 11.335 16.1504 11.625 16.1504H15.5352L15.6406 16.1396C15.88 16.0907 16.0605 15.8787 16.0605 15.625ZM21.9004 9.5C21.9004 8.26808 20.8596 7.23659 19.5137 7.1123L19.2402 7.09961H10.7588C9.28305 7.09966 8.09961 8.18579 8.09961 9.5V20.5C8.09961 21.8142 9.28305 22.9003 10.7588 22.9004H13.0664L13.1875 22.8887C13.4609 22.8381 13.6562 22.6208 13.6562 22.375C13.6562 22.1292 13.4609 21.9119 13.1875 21.8613L13.0664 21.8496H10.7588C9.95239 21.8496 9.2793 21.2535 9.2793 20.5V9.5C9.2793 8.74647 9.95239 8.15044 10.7588 8.15039H19.2402C20.0466 8.15044 20.7197 8.74647 20.7197 9.5V13.3438C20.7197 13.6247 20.9744 13.8691 21.3096 13.8691C21.645 13.8691 21.9004 13.6245 21.9004 13.3438V9.5ZM18.5879 13.125C18.5879 12.835 18.3525 12.5996 18.0625 12.5996H11.625C11.335 12.5996 11.0996 12.835 11.0996 13.125C11.0996 13.415 11.335 13.6504 11.625 13.6504H18.0625C18.3525 13.6504 18.5879 13.415 18.5879 13.125ZM18.5879 10.625C18.5879 10.335 18.3525 10.0996 18.0625 10.0996H11.625C11.335 10.0996 11.0996 10.335 11.0996 10.625C11.0996 10.915 11.335 11.1504 11.625 11.1504H18.0625C18.3525 11.1504 18.5879 10.915 18.5879 10.625ZM16.2598 15.625C16.2598 16.0253 15.9353 16.3494 15.5352 16.3496H11.625C11.2246 16.3496 10.9004 16.0254 10.9004 15.625C10.9004 15.2246 11.2246 14.9004 11.625 14.9004H15.5352C15.9353 14.9006 16.2598 15.2247 16.2598 15.625ZM18.7871 13.125C18.7871 13.5254 18.4629 13.8496 18.0625 13.8496H11.625C11.2246 13.8496 10.9004 13.5254 10.9004 13.125C10.9004 12.7246 11.2246 12.4004 11.625 12.4004H18.0625C18.4629 12.4004 18.7871 12.7246 18.7871 13.125ZM18.7871 10.625C18.7871 11.0254 18.4629 11.3496 18.0625 11.3496H11.625C11.2246 11.3496 10.9004 11.0254 10.9004 10.625C10.9004 10.2246 11.2246 9.9004 11.625 9.90039H18.0625C18.4629 9.90039 18.7871 10.2246 18.7871 10.625ZM22.0996 13.3438C22.0996 13.7022 21.8214 13.9888 21.4658 14.0547L21.3096 14.0684C20.8828 14.0683 20.5205 13.7531 20.5205 13.3438V9.5C20.5205 8.91405 20.0235 8.41632 19.3721 8.35645L19.2402 8.34961H10.7588C10.0438 8.34966 9.47852 8.87509 9.47852 9.5V20.5C9.47852 21.1249 10.0438 21.6503 10.7588 21.6504H13.0664C13.4929 21.6506 13.8555 21.9657 13.8555 22.375C13.8555 22.7843 13.4929 23.0994 13.0664 23.0996H10.7588C9.19158 23.0996 7.90039 21.9427 7.90039 20.5V9.5C7.90039 8.05727 9.19158 6.90044 10.7588 6.90039H19.2402C20.8074 6.90044 22.0996 8.05722 22.0996 9.5V13.3438Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.2402 7C20.7617 7.00005 22 8.12153 22 9.5V13.3438C22 13.6889 21.6906 13.9688 21.3096 13.9688C20.9286 13.9687 20.6201 13.6889 20.6201 13.3438V9.5C20.6201 8.81078 20.0009 8.25005 19.2402 8.25H10.7588C9.99807 8.25005 9.37891 8.81078 9.37891 9.5V20.5C9.37891 21.1892 9.99807 21.75 10.7588 21.75H13.0664C13.4472 21.7502 13.7559 22.0299 13.7559 22.375C13.7559 22.7201 13.4472 22.9998 13.0664 23H10.7588C9.23731 23 8 21.8785 8 20.5V9.5C8 8.12153 9.23731 7.00005 10.7588 7H19.2402ZM18.4609 16.4385C19.0405 15.8541 19.9843 15.8539 20.5645 16.4385C21.1445 17.0234 21.1454 17.9756 20.5654 18.5605L17.8477 21.2949C17.7872 21.3557 17.7121 21.3999 17.6299 21.4229L15.6279 21.9814C15.5843 21.9936 15.5401 22 15.4961 22C15.3643 22 15.2352 21.9473 15.1406 21.8496C15.0143 21.7191 14.9689 21.529 15.0215 21.3545L15.6143 19.3867C15.638 19.308 15.6806 19.2359 15.7383 19.1777L18.4609 16.4385ZM16.5273 19.7969L16.2324 20.7754L17.2393 20.4941L19.0654 18.6562L18.3643 17.9482L16.5273 19.7969ZM19.8633 17.1455C19.6699 16.951 19.3554 16.9508 19.1621 17.1455L19.0664 17.2422L19.7676 17.9492L19.8643 17.8525C20.057 17.6578 20.0565 17.3404 19.8633 17.1455ZM15.5352 15C15.8802 15.0002 16.1602 15.2799 16.1602 15.625C16.1602 15.9701 15.8802 16.2498 15.5352 16.25H11.625C11.2798 16.25 11 15.9702 11 15.625C11 15.2798 11.2798 15 11.625 15H15.5352ZM18.0625 12.5C18.4077 12.5 18.6875 12.7798 18.6875 13.125C18.6875 13.4702 18.4077 13.75 18.0625 13.75H11.625C11.2798 13.75 11 13.4702 11 13.125C11 12.7798 11.2798 12.5 11.625 12.5H18.0625ZM18.0625 10C18.4077 10 18.6875 10.2798 18.6875 10.625C18.6875 10.9702 18.4077 11.25 18.0625 11.25H11.625C11.2798 11.25 11 10.9702 11 10.625C11 10.2798 11.2798 10 11.625 10H18.0625Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.3896 16.3682C19.0084 15.7443 20.0165 15.7442 20.6357 16.3682C21.2541 16.9919 21.2552 18.0069 20.6367 18.6309L17.9189 21.3652C17.8465 21.4381 17.7562 21.4918 17.6572 21.5195L15.6553 22.0781C15.6035 22.0926 15.5497 22.0996 15.4961 22.0996C15.3378 22.0996 15.1822 22.0366 15.0684 21.9189C14.9168 21.7621 14.8629 21.5339 14.9258 21.3252L15.5186 19.3574C15.5469 19.2636 15.5977 19.1773 15.667 19.1074L18.3896 16.3682ZM20.4932 16.5088C19.9522 15.9639 19.0726 15.9641 18.5322 16.5088L15.8096 19.248C15.7636 19.2943 15.729 19.3527 15.71 19.416L15.1172 21.3838C15.0752 21.5239 15.1122 21.6762 15.2129 21.7803C15.2882 21.8579 15.3909 21.9004 15.4961 21.9004L15.6006 21.8848L17.6025 21.3262C17.6679 21.3079 17.728 21.2731 17.7764 21.2246L20.4941 18.4902C21.0354 17.9444 21.0346 17.0548 20.4932 16.5088ZM18.4355 17.8779L19.1367 18.5859L19.2061 18.6562L19.1367 18.7266L17.3105 20.5645L17.292 20.583L17.2666 20.5908L16.2598 20.8721L16.084 20.9209L16.4316 19.7676L16.4385 19.7441L16.4561 19.7266L18.293 17.8779L18.3643 17.8066L18.4355 17.8779ZM16.6152 19.8496L16.3809 20.6289L17.1865 20.4043L18.9238 18.6553L18.3633 18.0898L16.6152 19.8496ZM19.0908 17.0752C19.3232 16.841 19.7022 16.8414 19.9346 17.0752C20.1661 17.3089 20.1668 17.6891 19.9355 17.9229L19.8379 18.0195L19.7676 18.0908L19.6963 18.0195L18.9951 17.3125L18.9258 17.2422L18.9951 17.1719L19.0908 17.0752ZM19.792 17.2158C19.6378 17.0609 19.3874 17.0609 19.2334 17.2158L19.207 17.2412L19.7676 17.8076L19.793 17.7822L19.8438 17.7197C19.9448 17.5646 19.9274 17.3524 19.792 17.2158ZM16.0605 15.625C16.0605 15.3713 15.88 15.1593 15.6406 15.1104L15.5352 15.0996H11.625C11.335 15.0996 11.0996 15.335 11.0996 15.625C11.0996 15.915 11.335 16.1504 11.625 16.1504H15.5352L15.6406 16.1396C15.88 16.0907 16.0605 15.8787 16.0605 15.625ZM21.9004 9.5C21.9004 8.26808 20.8596 7.23659 19.5137 7.1123L19.2402 7.09961H10.7588C9.28305 7.09966 8.09961 8.18579 8.09961 9.5V20.5C8.09961 21.8142 9.28305 22.9003 10.7588 22.9004H13.0664L13.1875 22.8887C13.4609 22.8381 13.6562 22.6208 13.6562 22.375C13.6562 22.1292 13.4609 21.9119 13.1875 21.8613L13.0664 21.8496H10.7588C9.95239 21.8496 9.2793 21.2535 9.2793 20.5V9.5C9.2793 8.74647 9.95239 8.15044 10.7588 8.15039H19.2402C20.0466 8.15044 20.7197 8.74647 20.7197 9.5V13.3438C20.7197 13.6247 20.9744 13.8691 21.3096 13.8691C21.645 13.8691 21.9004 13.6245 21.9004 13.3438V9.5ZM18.5879 13.125C18.5879 12.835 18.3525 12.5996 18.0625 12.5996H11.625C11.335 12.5996 11.0996 12.835 11.0996 13.125C11.0996 13.415 11.335 13.6504 11.625 13.6504H18.0625C18.3525 13.6504 18.5879 13.415 18.5879 13.125ZM18.5879 10.625C18.5879 10.335 18.3525 10.0996 18.0625 10.0996H11.625C11.335 10.0996 11.0996 10.335 11.0996 10.625C11.0996 10.915 11.335 11.1504 11.625 11.1504H18.0625C18.3525 11.1504 18.5879 10.915 18.5879 10.625ZM16.2598 15.625C16.2598 16.0253 15.9353 16.3494 15.5352 16.3496H11.625C11.2246 16.3496 10.9004 16.0254 10.9004 15.625C10.9004 15.2246 11.2246 14.9004 11.625 14.9004H15.5352C15.9353 14.9006 16.2598 15.2247 16.2598 15.625ZM18.7871 13.125C18.7871 13.5254 18.4629 13.8496 18.0625 13.8496H11.625C11.2246 13.8496 10.9004 13.5254 10.9004 13.125C10.9004 12.7246 11.2246 12.4004 11.625 12.4004H18.0625C18.4629 12.4004 18.7871 12.7246 18.7871 13.125ZM18.7871 10.625C18.7871 11.0254 18.4629 11.3496 18.0625 11.3496H11.625C11.2246 11.3496 10.9004 11.0254 10.9004 10.625C10.9004 10.2246 11.2246 9.9004 11.625 9.90039H18.0625C18.4629 9.90039 18.7871 10.2246 18.7871 10.625ZM22.0996 13.3438C22.0996 13.7022 21.8214 13.9888 21.4658 14.0547L21.3096 14.0684C20.8828 14.0683 20.5205 13.7531 20.5205 13.3438V9.5C20.5205 8.91405 20.0235 8.41632 19.3721 8.35645L19.2402 8.34961H10.7588C10.0438 8.34966 9.47852 8.87509 9.47852 9.5V20.5C9.47852 21.1249 10.0438 21.6503 10.7588 21.6504H13.0664C13.4929 21.6506 13.8555 21.9657 13.8555 22.375C13.8555 22.7843 13.4929 23.0994 13.0664 23.0996H10.7588C9.19158 23.0996 7.90039 21.9427 7.90039 20.5V9.5C7.90039 8.05727 9.19158 6.90044 10.7588 6.90039H19.2402C20.8074 6.90044 22.0996 8.05722 22.0996 9.5V13.3438Z\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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\r\n<!-- ICON MULTIPLES DOCUMENTOS -->\r\n<div *ngIf=\"icon == 'multiple-documents'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.5938 7C11.2726 7 10.1875 8.04431 10.1875 9.31579V18.5789C10.1875 19.8504 11.2726 20.8947 12.5938 20.8947H19.5938C20.9149 20.8947 22 19.8504 22 18.5789V12.2632C22 12.0957 21.9308 11.935 21.8077 11.8166L16.9952 7.18503C16.8722 7.06659 16.7053 7.00003 16.5312 7H12.5938ZM12.5938 8.26316H15.875V11.1949C15.875 12.1262 16.6731 12.8947 17.6412 12.8947H20.6875V18.5789C20.6875 19.1677 20.2055 19.6316 19.5938 19.6316H12.5938C11.982 19.6316 11.5 19.1677 11.5 18.5789V9.31579C11.5 8.72706 11.982 8.26316 12.5938 8.26316ZM9.3125 9.10526L8.7793 9.44737C8.29236 9.75979 8 10.2857 8 10.8487V19C8 21.2093 9.86069 23 12.1562 23H18.001C18.5864 23 19.1328 22.7186 19.457 22.25L19.8125 21.7368H12.1562C10.5856 21.7368 9.3125 20.5116 9.3125 19V9.10526ZM17.1875 9.15625L19.7595 11.6316H17.6412C17.3827 11.6316 17.1875 11.4434 17.1875 11.1949V9.15625ZM13.9062 14.1579C13.8193 14.1567 13.733 14.1722 13.6523 14.2034C13.5716 14.2346 13.4981 14.2809 13.4362 14.3397C13.3742 14.3985 13.3251 14.4685 13.2915 14.5457C13.2579 14.6229 13.2407 14.7058 13.2407 14.7895C13.2407 14.8732 13.2579 14.956 13.2915 15.0333C13.3251 15.1105 13.3742 15.1805 13.4362 15.2393C13.4981 15.298 13.5716 15.3444 13.6523 15.3756C13.733 15.4068 13.8193 15.4222 13.9062 15.4211H18.2812C18.3682 15.4222 18.4545 15.4068 18.5352 15.3756C18.6159 15.3444 18.6894 15.298 18.7513 15.2393C18.8133 15.1805 18.8624 15.1105 18.896 15.0333C18.9296 14.956 18.9468 14.8732 18.9468 14.7895C18.9468 14.7058 18.9296 14.6229 18.896 14.5457C18.8624 14.4685 18.8133 14.3985 18.7513 14.3397C18.6894 14.2809 18.6159 14.2346 18.5352 14.2034C18.4545 14.1722 18.3682 14.1567 18.2812 14.1579H13.9062ZM13.9062 16.6842C13.8193 16.683 13.733 16.6985 13.6523 16.7297C13.5716 16.7609 13.4981 16.8072 13.4362 16.866C13.3742 16.9248 13.3251 16.9948 13.2915 17.072C13.2579 17.1492 13.2407 17.2321 13.2407 17.3158C13.2407 17.3995 13.2579 17.4824 13.2915 17.5596C13.3251 17.6368 13.3742 17.7068 13.4362 17.7656C13.4981 17.8243 13.5716 17.8707 13.6523 17.9019C13.733 17.9331 13.8193 17.9486 13.9062 17.9474H18.2812C18.3682 17.9486 18.4545 17.9331 18.5352 17.9019C18.6159 17.8707 18.6894 17.8243 18.7513 17.7656C18.8133 17.7068 18.8624 17.6368 18.896 17.5596C18.9296 17.4824 18.9468 17.3995 18.9468 17.3158C18.9468 17.2321 18.9296 17.1492 18.896 17.072C18.8624 16.9948 18.8133 16.9248 18.7513 16.866C18.6894 16.8072 18.6159 16.7609 18.5352 16.7297C18.4545 16.6985 18.3682 16.683 18.2812 16.6842H13.9062Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.5938 7C11.2726 7 10.1875 8.04431 10.1875 9.31579V18.5789C10.1875 19.8504 11.2726 20.8947 12.5938 20.8947H19.5938C20.9149 20.8947 22 19.8504 22 18.5789V12.2632C22 12.0957 21.9308 11.935 21.8077 11.8166L16.9952 7.18503C16.8722 7.06659 16.7053 7.00003 16.5312 7H12.5938ZM12.5938 8.26316H15.875V11.1949C15.875 12.1262 16.6731 12.8947 17.6412 12.8947H20.6875V18.5789C20.6875 19.1677 20.2055 19.6316 19.5938 19.6316H12.5938C11.982 19.6316 11.5 19.1677 11.5 18.5789V9.31579C11.5 8.72706 11.982 8.26316 12.5938 8.26316ZM9.3125 9.10526L8.7793 9.44737C8.29236 9.75979 8 10.2857 8 10.8487V19C8 21.2093 9.86069 23 12.1562 23H18.001C18.5864 23 19.1328 22.7186 19.457 22.25L19.8125 21.7368H12.1562C10.5856 21.7368 9.3125 20.5116 9.3125 19V9.10526ZM17.1875 9.15625L19.7595 11.6316H17.6412C17.3827 11.6316 17.1875 11.4434 17.1875 11.1949V9.15625ZM13.9062 14.1579C13.8193 14.1567 13.733 14.1722 13.6523 14.2034C13.5716 14.2346 13.4981 14.2809 13.4362 14.3397C13.3742 14.3985 13.3251 14.4685 13.2915 14.5457C13.2579 14.6229 13.2407 14.7058 13.2407 14.7895C13.2407 14.8732 13.2579 14.956 13.2915 15.0333C13.3251 15.1105 13.3742 15.1805 13.4362 15.2393C13.4981 15.298 13.5716 15.3444 13.6523 15.3756C13.733 15.4068 13.8193 15.4222 13.9062 15.4211H18.2812C18.3682 15.4222 18.4545 15.4068 18.5352 15.3756C18.6159 15.3444 18.6894 15.298 18.7513 15.2393C18.8133 15.1805 18.8624 15.1105 18.896 15.0333C18.9296 14.956 18.9468 14.8732 18.9468 14.7895C18.9468 14.7058 18.9296 14.6229 18.896 14.5457C18.8624 14.4685 18.8133 14.3985 18.7513 14.3397C18.6894 14.2809 18.6159 14.2346 18.5352 14.2034C18.4545 14.1722 18.3682 14.1567 18.2812 14.1579H13.9062ZM13.9062 16.6842C13.8193 16.683 13.733 16.6985 13.6523 16.7297C13.5716 16.7609 13.4981 16.8072 13.4362 16.866C13.3742 16.9248 13.3251 16.9948 13.2915 17.072C13.2579 17.1492 13.2407 17.2321 13.2407 17.3158C13.2407 17.3995 13.2579 17.4824 13.2915 17.5596C13.3251 17.6368 13.3742 17.7068 13.4362 17.7656C13.4981 17.8243 13.5716 17.8707 13.6523 17.9019C13.733 17.9331 13.8193 17.9486 13.9062 17.9474H18.2812C18.3682 17.9486 18.4545 17.9331 18.5352 17.9019C18.6159 17.8707 18.6894 17.8243 18.7513 17.7656C18.8133 17.7068 18.8624 17.6368 18.896 17.5596C18.9296 17.4824 18.9468 17.3995 18.9468 17.3158C18.9468 17.2321 18.9296 17.1492 18.896 17.072C18.8624 16.9948 18.8133 16.9248 18.7513 16.866C18.6894 16.8072 18.6159 16.7609 18.5352 16.7297C18.4545 16.6985 18.3682 16.683 18.2812 16.6842H13.9062Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON DOCUMENTO -->\r\n<div *ngIf=\"icon == 'document'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.5 16.3333C18.5 16.5102 18.4262 16.6797 18.295 16.8047C18.1637 16.9298 17.9856 17 17.8 17H12.2C12.0143 17 11.8363 16.9298 11.705 16.8047C11.5737 16.6797 11.5 16.5102 11.5 16.3333C11.5 16.1565 11.5737 15.987 11.705 15.8619C11.8363 15.7369 12.0143 15.6667 12.2 15.6667H17.8C17.9856 15.6667 18.1637 15.7369 18.295 15.8619C18.4262 15.987 18.5 16.1565 18.5 16.3333ZM15.7 18.3333H12.2C12.0143 18.3333 11.8363 18.4036 11.705 18.5286C11.5737 18.6536 11.5 18.8232 11.5 19C11.5 19.1768 11.5737 19.3464 11.705 19.4714C11.8363 19.5964 12.0143 19.6667 12.2 19.6667H15.7C15.8856 19.6667 16.0637 19.5964 16.195 19.4714C16.3262 19.3464 16.4 19.1768 16.4 19C16.4 18.8232 16.3262 18.6536 16.195 18.5286C16.0637 18.4036 15.8856 18.3333 15.7 18.3333ZM22 13.99V19.6667C21.9989 20.5504 21.6298 21.3976 20.9736 22.0225C20.3175 22.6474 19.4279 22.9989 18.5 23H11.5C10.5721 22.9989 9.68249 22.6474 9.02635 22.0225C8.37022 21.3976 8.00111 20.5504 8 19.6667V10.3333C8.00111 9.44962 8.37022 8.60239 9.02635 7.97749C9.68249 7.3526 10.5721 7.00107 11.5 7.00002H14.6605C15.3042 6.99844 15.9419 7.11841 16.5366 7.35299C17.1314 7.58757 17.6714 7.93211 18.1255 8.36668L20.5643 10.6907C21.0208 11.1228 21.3828 11.637 21.6293 12.2033C21.8757 12.7697 22.0017 13.377 22 13.99ZM17.1357 9.30935C16.9154 9.10612 16.668 8.9313 16.4 8.78935V11.6667C16.4 11.8435 16.4737 12.0131 16.605 12.1381C16.7363 12.2631 16.9143 12.3333 17.1 12.3333H20.1212C19.9721 12.0781 19.7882 11.8428 19.5745 11.6333L17.1357 9.30935ZM20.6 13.99C20.6 13.88 20.5776 13.7747 20.5671 13.6667H17.1C16.543 13.6667 16.0089 13.456 15.6151 13.0809C15.2212 12.7058 15 12.1971 15 11.6667V8.36468C14.8866 8.35468 14.7753 8.33335 14.6605 8.33335H11.5C10.943 8.33335 10.4089 8.54406 10.0151 8.91913C9.62125 9.29421 9.4 9.80291 9.4 10.3333V19.6667C9.4 20.1971 9.62125 20.7058 10.0151 21.0809C10.4089 21.456 10.943 21.6667 11.5 21.6667H18.5C19.0569 21.6667 19.5911 21.456 19.9849 21.0809C20.3787 20.7058 20.6 20.1971 20.6 19.6667V13.99Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.5 16.3333C18.5 16.5102 18.4262 16.6797 18.295 16.8047C18.1637 16.9298 17.9856 17 17.8 17H12.2C12.0143 17 11.8363 16.9298 11.705 16.8047C11.5737 16.6797 11.5 16.5102 11.5 16.3333C11.5 16.1565 11.5737 15.987 11.705 15.8619C11.8363 15.7369 12.0143 15.6667 12.2 15.6667H17.8C17.9856 15.6667 18.1637 15.7369 18.295 15.8619C18.4262 15.987 18.5 16.1565 18.5 16.3333ZM15.7 18.3333H12.2C12.0143 18.3333 11.8363 18.4036 11.705 18.5286C11.5737 18.6536 11.5 18.8232 11.5 19C11.5 19.1768 11.5737 19.3464 11.705 19.4714C11.8363 19.5964 12.0143 19.6667 12.2 19.6667H15.7C15.8856 19.6667 16.0637 19.5964 16.195 19.4714C16.3262 19.3464 16.4 19.1768 16.4 19C16.4 18.8232 16.3262 18.6536 16.195 18.5286C16.0637 18.4036 15.8856 18.3333 15.7 18.3333ZM22 13.99V19.6667C21.9989 20.5504 21.6298 21.3976 20.9736 22.0225C20.3175 22.6474 19.4279 22.9989 18.5 23H11.5C10.5721 22.9989 9.68249 22.6474 9.02635 22.0225C8.37022 21.3976 8.00111 20.5504 8 19.6667V10.3333C8.00111 9.44962 8.37022 8.60239 9.02635 7.97749C9.68249 7.3526 10.5721 7.00107 11.5 7.00002H14.6605C15.3042 6.99844 15.9419 7.11841 16.5366 7.35299C17.1314 7.58757 17.6714 7.93211 18.1255 8.36668L20.5643 10.6907C21.0208 11.1228 21.3828 11.637 21.6293 12.2033C21.8757 12.7697 22.0017 13.377 22 13.99ZM17.1357 9.30935C16.9154 9.10612 16.668 8.9313 16.4 8.78935V11.6667C16.4 11.8435 16.4737 12.0131 16.605 12.1381C16.7363 12.2631 16.9143 12.3333 17.1 12.3333H20.1212C19.9721 12.0781 19.7882 11.8428 19.5745 11.6333L17.1357 9.30935ZM20.6 13.99C20.6 13.88 20.5776 13.7747 20.5671 13.6667H17.1C16.543 13.6667 16.0089 13.456 15.6151 13.0809C15.2212 12.7058 15 12.1971 15 11.6667V8.36468C14.8866 8.35468 14.7753 8.33335 14.6605 8.33335H11.5C10.943 8.33335 10.4089 8.54406 10.0151 8.91913C9.62125 9.29421 9.4 9.80291 9.4 10.3333V19.6667C9.4 20.1971 9.62125 20.7058 10.0151 21.0809C10.4089 21.456 10.943 21.6667 11.5 21.6667H18.5C19.0569 21.6667 19.5911 21.456 19.9849 21.0809C20.3787 20.7058 20.6 20.1971 20.6 19.6667V13.99Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON HOJA -->\r\n<div *ngIf=\"icon == 'sheet'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.8842 7.00203H13.6078H11.1159C9.39501 7.00203 8 8.29132 8 9.88174V20.1203C8 21.7107 9.39501 23 11.1159 23H18.8842C20.605 23 22 21.7107 22 20.1203V20.1183V18.6433V9.88174C22 8.29132 20.605 7.00203 18.8842 7.00203ZM11.1159 8.47701C10.2764 8.47701 9.59593 9.10592 9.59593 9.88174V20.1203C9.59593 20.8961 10.2764 21.525 11.1159 21.525H18.8842C19.7236 21.525 20.4041 20.8961 20.4041 20.1203V9.88174C20.4041 9.10592 19.7236 8.47701 18.8842 8.47701H11.1159Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.4198 10.6675C11.9791 10.6675 11.6218 10.9976 11.6218 11.4049C11.6218 11.8122 11.9791 12.1424 12.4198 12.1424H17.5802C18.0209 12.1424 18.3782 11.8122 18.3782 11.4049C18.3782 10.9976 18.0209 10.6675 17.5802 10.6675H12.4198Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.4198 14.26C11.9791 14.26 11.6218 14.5902 11.6218 14.9975C11.6218 15.4048 11.9791 15.735 12.4198 15.735H17.5802C18.0209 15.735 18.3782 15.4048 18.3782 14.9975C18.3782 14.5902 18.0209 14.26 17.5802 14.26H12.4198Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.6978 17.8525C15.2571 17.8525 14.8998 18.1827 14.8998 18.59C14.8998 18.9973 15.2571 19.3275 15.6978 19.3275H17.5802C18.0209 19.3275 18.3782 18.9973 18.3782 18.59C18.3782 18.1827 18.0209 17.8525 17.5802 17.8525H15.6978Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M18.8842 7.00203H13.6078H11.1159C9.39501 7.00203 8 8.29132 8 9.88174V20.1203C8 21.7107 9.39501 23 11.1159 23H18.8842C20.605 23 22 21.7107 22 20.1203V20.1183V18.6433V9.88174C22 8.29132 20.605 7.00203 18.8842 7.00203ZM11.1159 8.47701C10.2764 8.47701 9.59593 9.10592 9.59593 9.88174V20.1203C9.59593 20.8961 10.2764 21.525 11.1159 21.525H18.8842C19.7236 21.525 20.4041 20.8961 20.4041 20.1203V9.88174C20.4041 9.10592 19.7236 8.47701 18.8842 8.47701H11.1159Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.4198 10.6675C11.9791 10.6675 11.6218 10.9976 11.6218 11.4049C11.6218 11.8122 11.9791 12.1424 12.4198 12.1424H17.5802C18.0209 12.1424 18.3782 11.8122 18.3782 11.4049C18.3782 10.9976 18.0209 10.6675 17.5802 10.6675H12.4198Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.4198 14.26C11.9791 14.26 11.6218 14.5902 11.6218 14.9975C11.6218 15.4048 11.9791 15.735 12.4198 15.735H17.5802C18.0209 15.735 18.3782 15.4048 18.3782 14.9975C18.3782 14.5902 18.0209 14.26 17.5802 14.26H12.4198Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.6978 17.8525C15.2571 17.8525 14.8998 18.1827 14.8998 18.59C14.8998 18.9973 15.2571 19.3275 15.6978 19.3275H17.5802C18.0209 19.3275 18.3782 18.9973 18.3782 18.59C18.3782 18.1827 18.0209 17.8525 17.5802 17.8525H15.6978Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON FLECHA ARRIBA -->\r\n<div *ngIf=\"icon == 'arrow-top'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.30673 18.6537C7.72813 19.1021 8.42598 19.117 8.86542 18.687L15 12.6837L21.1346 18.687C21.574 19.117 22.2719 19.1021 22.6933 18.6537C23.1147 18.2052 23.1 17.4931 22.6606 17.063L15.763 10.313C15.3365 9.89566 14.6635 9.89566 14.237 10.313L7.33939 17.063C6.89995 17.4931 6.88533 18.2052 7.30673 18.6537Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M7.30673 18.6537C7.72813 19.1021 8.42598 19.117 8.86542 18.687L15 12.6837L21.1346 18.687C21.574 19.117 22.2719 19.1021 22.6933 18.6537C23.1147 18.2052 23.1 17.4931 22.6606 17.063L15.763 10.313C15.3365 9.89566 14.6635 9.89566 14.237 10.313L7.33939 17.063C6.89995 17.4931 6.88533 18.2052 7.30673 18.6537Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON FLECHA ABAJO -->\r\n<div *ngIf=\"icon == 'arrow-alow'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.6653 11.3295C22.219 10.8902 21.4953 10.8902 21.049 11.3295L15 17.284L8.95098 11.3295C8.50467 10.8902 7.78105 10.8902 7.33474 11.3295C6.88842 11.7688 6.88842 12.4812 7.33474 12.9205L14.1919 19.6705C14.6382 20.1098 15.3618 20.1098 15.8081 19.6705L22.6653 12.9205C23.1116 12.4812 23.1116 11.7688 22.6653 11.3295Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M22.6653 11.3295C22.219 10.8902 21.4953 10.8902 21.049 11.3295L15 17.284L8.95098 11.3295C8.50467 10.8902 7.78105 10.8902 7.33474 11.3295C6.88842 11.7688 6.88842 12.4812 7.33474 12.9205L14.1919 19.6705C14.6382 20.1098 15.3618 20.1098 15.8081 19.6705L22.6653 12.9205C23.1116 12.4812 23.1116 11.7688 22.6653 11.3295Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON FLECHA ARRIBA -->\r\n<div *ngIf=\"icon == 'arrow-up'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.5449 7.39096C14.6655 7.26568 14.829 7.19531 14.9995 7.19531C15.17 7.19531 15.3335 7.26568 15.4541 7.39096L20.6009 12.743C20.6641 12.8042 20.7148 12.8781 20.75 12.9601C20.7851 13.0422 20.804 13.1308 20.8056 13.2206C20.8071 13.3104 20.7912 13.3997 20.7588 13.483C20.7265 13.5663 20.6783 13.6419 20.6172 13.7055C20.5561 13.769 20.4834 13.8191 20.4033 13.8527C20.3232 13.8864 20.2374 13.9029 20.151 13.9013C20.0646 13.8997 19.9794 13.88 19.9005 13.8435C19.8216 13.8069 19.7505 13.7542 19.6916 13.6885L15.6429 9.47824V22.1357C15.6429 22.3131 15.5751 22.4833 15.4544 22.6088C15.3338 22.7342 15.1701 22.8047 14.9995 22.8047C14.8289 22.8047 14.6652 22.7342 14.5446 22.6088C14.4239 22.4833 14.3562 22.3131 14.3562 22.1357V9.47824L10.3074 13.6885C10.2485 13.7542 10.1775 13.8069 10.0985 13.8435C10.0196 13.88 9.93444 13.8997 9.84805 13.9013C9.76167 13.9029 9.67587 13.8864 9.59576 13.8527C9.51565 13.8191 9.44288 13.769 9.38179 13.7055C9.3207 13.6419 9.27254 13.5663 9.24018 13.483C9.20783 13.3997 9.19194 13.3104 9.19346 13.2206C9.19498 13.1308 9.21389 13.0422 9.24905 12.9601C9.28422 12.8781 9.33491 12.8042 9.39812 12.743L14.5449 7.39096Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 7C15.2237 7 15.437 7.09287 15.5935 7.25533L20.7353 12.602C20.8172 12.6814 20.8828 12.7775 20.9281 12.8831C20.9732 12.9886 20.9979 13.1024 20.9999 13.2175C21.0018 13.3325 20.9809 13.4468 20.9394 13.5538C20.8978 13.6609 20.8362 13.7592 20.757 13.8415C20.6778 13.9238 20.5829 13.989 20.4782 14.033C20.3736 14.0769 20.2607 14.0989 20.1475 14.0968C20.0345 14.0947 19.9234 14.0682 19.8205 14.0206C19.7175 13.9729 19.6246 13.9047 19.5483 13.8196V13.8186L15.8373 9.9601V22.1359C15.8372 22.3631 15.7497 22.5822 15.5935 22.7447C15.437 22.9072 15.2238 23 15 23C14.7762 23 14.563 22.9072 14.4065 22.7447C14.2503 22.5822 14.1628 22.3631 14.1627 22.1359V9.9601L10.4507 13.8186C10.3744 13.9037 10.2825 13.9729 10.1795 14.0206C10.0766 14.0682 9.96552 14.0947 9.85252 14.0968C9.73929 14.0989 9.62644 14.0769 9.52177 14.033C9.41711 13.989 9.32217 13.9238 9.24299 13.8415C9.16385 13.7592 9.10221 13.6609 9.0606 13.5538C9.01908 13.4468 8.9982 13.3325 9.00012 13.2175C9.00207 13.1024 9.02677 12.9886 9.07194 12.8831C9.11719 12.7775 9.18275 12.6814 9.26473 12.602L14.4065 7.25533C14.563 7.09287 14.7763 7 15 7ZM15 7.19531C14.8296 7.19531 14.6661 7.26547 14.5454 7.39062L9.39892 12.743C9.33571 12.8042 9.28477 12.8782 9.24961 12.9602C9.2145 13.0422 9.19541 13.1306 9.19385 13.2203C9.19233 13.3101 9.20874 13.4 9.2411 13.4833C9.27341 13.5663 9.32105 13.6419 9.38191 13.7053C9.443 13.7688 9.51632 13.8193 9.59642 13.8529C9.67647 13.8865 9.76244 13.9031 9.84874 13.9015C9.93506 13.8999 10.0203 13.8799 10.0992 13.8434C10.178 13.8068 10.2492 13.7538 10.308 13.6881L14.3564 9.47803V22.1359C14.3565 22.3132 14.4248 22.483 14.5454 22.6084C14.6661 22.7339 14.8294 22.8047 15 22.8047C15.1706 22.8047 15.3339 22.7339 15.4546 22.6084C15.5752 22.483 15.6435 22.3132 15.6436 22.1359V9.47803L19.692 13.6881C19.7508 13.7538 19.822 13.8068 19.9008 13.8434C19.9797 13.8799 20.0649 13.8999 20.1513 13.9015C20.2376 13.9031 20.3235 13.8865 20.4036 13.8529C20.4837 13.8193 20.557 13.7688 20.6181 13.7053C20.6789 13.6419 20.7266 13.5663 20.7589 13.4833C20.7913 13.4 20.8077 13.3101 20.8062 13.2203C20.8046 13.1306 20.7855 13.0422 20.7504 12.9602C20.7152 12.8782 20.6643 12.8042 20.6011 12.743L15.4546 7.39062C15.3339 7.26547 15.1704 7.19531 15 7.19531Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M14.5449 7.39096C14.6655 7.26568 14.829 7.19531 14.9995 7.19531C15.17 7.19531 15.3335 7.26568 15.4541 7.39096L20.6009 12.743C20.6641 12.8042 20.7148 12.8781 20.75 12.9601C20.7851 13.0422 20.804 13.1308 20.8056 13.2206C20.8071 13.3104 20.7912 13.3997 20.7588 13.483C20.7265 13.5663 20.6783 13.6419 20.6172 13.7055C20.5561 13.769 20.4834 13.8191 20.4033 13.8527C20.3232 13.8864 20.2374 13.9029 20.151 13.9013C20.0646 13.8997 19.9794 13.88 19.9005 13.8435C19.8216 13.8069 19.7505 13.7542 19.6916 13.6885L15.6429 9.47824V22.1357C15.6429 22.3131 15.5751 22.4833 15.4544 22.6088C15.3338 22.7342 15.1701 22.8047 14.9995 22.8047C14.8289 22.8047 14.6652 22.7342 14.5446 22.6088C14.4239 22.4833 14.3562 22.3131 14.3562 22.1357V9.47824L10.3074 13.6885C10.2485 13.7542 10.1775 13.8069 10.0985 13.8435C10.0196 13.88 9.93444 13.8997 9.84805 13.9013C9.76167 13.9029 9.67587 13.8864 9.59576 13.8527C9.51565 13.8191 9.44288 13.769 9.38179 13.7055C9.3207 13.6419 9.27254 13.5663 9.24018 13.483C9.20783 13.3997 9.19194 13.3104 9.19346 13.2206C9.19498 13.1308 9.21389 13.0422 9.24905 12.9601C9.28422 12.8781 9.33491 12.8042 9.39812 12.743L14.5449 7.39096Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 7C15.2237 7 15.437 7.09287 15.5935 7.25533L20.7353 12.602C20.8172 12.6814 20.8828 12.7775 20.9281 12.8831C20.9732 12.9886 20.9979 13.1024 20.9999 13.2175C21.0018 13.3325 20.9809 13.4468 20.9394 13.5538C20.8978 13.6609 20.8362 13.7592 20.757 13.8415C20.6778 13.9238 20.5829 13.989 20.4782 14.033C20.3736 14.0769 20.2607 14.0989 20.1475 14.0968C20.0345 14.0947 19.9234 14.0682 19.8205 14.0206C19.7175 13.9729 19.6246 13.9047 19.5483 13.8196V13.8186L15.8373 9.9601V22.1359C15.8372 22.3631 15.7497 22.5822 15.5935 22.7447C15.437 22.9072 15.2238 23 15 23C14.7762 23 14.563 22.9072 14.4065 22.7447C14.2503 22.5822 14.1628 22.3631 14.1627 22.1359V9.9601L10.4507 13.8186C10.3744 13.9037 10.2825 13.9729 10.1795 14.0206C10.0766 14.0682 9.96552 14.0947 9.85252 14.0968C9.73929 14.0989 9.62644 14.0769 9.52177 14.033C9.41711 13.989 9.32217 13.9238 9.24299 13.8415C9.16385 13.7592 9.10221 13.6609 9.0606 13.5538C9.01908 13.4468 8.9982 13.3325 9.00012 13.2175C9.00207 13.1024 9.02677 12.9886 9.07194 12.8831C9.11719 12.7775 9.18275 12.6814 9.26473 12.602L14.4065 7.25533C14.563 7.09287 14.7763 7 15 7ZM15 7.19531C14.8296 7.19531 14.6661 7.26547 14.5454 7.39062L9.39892 12.743C9.33571 12.8042 9.28477 12.8782 9.24961 12.9602C9.2145 13.0422 9.19541 13.1306 9.19385 13.2203C9.19233 13.3101 9.20874 13.4 9.2411 13.4833C9.27341 13.5663 9.32105 13.6419 9.38191 13.7053C9.443 13.7688 9.51632 13.8193 9.59642 13.8529C9.67647 13.8865 9.76244 13.9031 9.84874 13.9015C9.93506 13.8999 10.0203 13.8799 10.0992 13.8434C10.178 13.8068 10.2492 13.7538 10.308 13.6881L14.3564 9.47803V22.1359C14.3565 22.3132 14.4248 22.483 14.5454 22.6084C14.6661 22.7339 14.8294 22.8047 15 22.8047C15.1706 22.8047 15.3339 22.7339 15.4546 22.6084C15.5752 22.483 15.6435 22.3132 15.6436 22.1359V9.47803L19.692 13.6881C19.7508 13.7538 19.822 13.8068 19.9008 13.8434C19.9797 13.8799 20.0649 13.8999 20.1513 13.9015C20.2376 13.9031 20.3235 13.8865 20.4036 13.8529C20.4837 13.8193 20.557 13.7688 20.6181 13.7053C20.6789 13.6419 20.7266 13.5663 20.7589 13.4833C20.7913 13.4 20.8077 13.3101 20.8062 13.2203C20.8046 13.1306 20.7855 13.0422 20.7504 12.9602C20.7152 12.8782 20.6643 12.8042 20.6011 12.743L15.4546 7.39062C15.3339 7.26547 15.1704 7.19531 15 7.19531Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON FLECHA ABAJO -->\r\n<div *ngIf=\"icon == 'arrow-down'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.4551 22.609C15.3345 22.7343 15.171 22.8047 15.0005 22.8047C14.83 22.8047 14.6665 22.7343 14.5459 22.609L9.3991 17.257C9.33589 17.1958 9.28519 17.1219 9.25003 17.0399C9.21487 16.9578 9.19596 16.8692 9.19444 16.7794C9.19291 16.6896 9.2088 16.6003 9.24116 16.517C9.27352 16.4337 9.32168 16.3581 9.38277 16.2945C9.44386 16.231 9.51663 16.1809 9.59674 16.1473C9.67685 16.1136 9.76265 16.0971 9.84903 16.0987C9.93541 16.1003 10.0206 16.1199 10.0995 16.1565C10.1784 16.1931 10.2495 16.2458 10.3084 16.3115L14.3571 20.5218L14.3571 7.8643C14.3571 7.68687 14.4249 7.51671 14.5456 7.39125C14.6662 7.26578 14.8299 7.1953 15.0005 7.1953C15.1711 7.1953 15.3348 7.26578 15.4554 7.39125C15.5761 7.51671 15.6438 7.68687 15.6438 7.8643L15.6438 20.5218L19.6926 16.3115C19.7515 16.2458 19.8225 16.1931 19.9015 16.1565C19.9804 16.1199 20.0656 16.1003 20.1519 16.0987C20.2383 16.0971 20.3241 16.1136 20.4042 16.1473C20.4843 16.1809 20.5571 16.231 20.6182 16.2945C20.6793 16.3581 20.7275 16.4337 20.7598 16.517C20.7922 16.6003 20.8081 16.6896 20.8065 16.7794C20.805 16.8692 20.7861 16.9578 20.7509 17.0399C20.7158 17.1219 20.6651 17.1958 20.6019 17.257L15.4551 22.609Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 23C14.7763 23 14.563 22.9071 14.4065 22.7447L9.26473 17.398C9.18275 17.3186 9.11719 17.2225 9.07194 17.1169C9.02677 17.0114 9.00208 16.8976 9.00012 16.7825C8.9982 16.6675 9.01908 16.5532 9.0606 16.4462C9.10221 16.3391 9.16385 16.2408 9.24299 16.1585C9.32217 16.0762 9.41711 16.011 9.52177 15.967C9.62644 15.9231 9.73929 15.9011 9.85252 15.9032C9.96552 15.9053 10.0766 15.9318 10.1795 15.9794C10.2825 16.0271 10.3754 16.0953 10.4517 16.1804L10.4517 16.1814L14.1627 20.0399L14.1627 7.86412C14.1628 7.63692 14.2503 7.41777 14.4065 7.25533C14.563 7.0928 14.7762 7 15 7C15.2238 7 15.437 7.0928 15.5935 7.25533C15.7497 7.41777 15.8372 7.63692 15.8373 7.86412L15.8373 20.0399L19.5493 16.1814C19.6256 16.0963 19.7175 16.0271 19.8205 15.9794C19.9234 15.9318 20.0345 15.9053 20.1475 15.9032C20.2607 15.9011 20.3736 15.9231 20.4782 15.967C20.5829 16.011 20.6778 16.0762 20.757 16.1585C20.8362 16.2408 20.8978 16.3391 20.9394 16.4462C20.9809 16.5532 21.0018 16.6675 20.9999 16.7825C20.9979 16.8976 20.9732 17.0114 20.9281 17.1169C20.8828 17.2225 20.8172 17.3186 20.7353 17.398L15.5935 22.7447C15.437 22.9071 15.2237 23 15 23ZM15 22.8047C15.1704 22.8047 15.3339 22.7345 15.4546 22.6094L20.6011 17.257C20.6643 17.1957 20.7152 17.1218 20.7504 17.0398C20.7855 16.9578 20.8046 16.8694 20.8062 16.7797C20.8077 16.6899 20.7913 16.6 20.7589 16.5167C20.7266 16.4337 20.6789 16.3581 20.6181 16.2947C20.557 16.2312 20.4837 16.1807 20.4036 16.1471C20.3235 16.1135 20.2376 16.0969 20.1513 16.0985C20.0649 16.1001 19.9797 16.1201 19.9008 16.1566C19.822 16.1932 19.7508 16.2462 19.692 16.3119L15.6436 20.522L15.6436 7.86412C15.6435 7.68675 15.5752 7.51698 15.4546 7.39157C15.3339 7.26612 15.1706 7.19531 15 7.19531C14.8294 7.19531 14.6661 7.26612 14.5455 7.39157C14.4248 7.51698 14.3565 7.68675 14.3564 7.86412L14.3564 20.522L10.308 16.3119C10.2492 16.2462 10.178 16.1932 10.0992 16.1566C10.0203 16.1201 9.93506 16.1001 9.84874 16.0985C9.76244 16.0969 9.67647 16.1135 9.59642 16.1471C9.51632 16.1807 9.443 16.2312 9.38191 16.2947C9.32105 16.3581 9.27341 16.4337 9.2411 16.5167C9.20874 16.6 9.19233 16.6899 9.19385 16.7797C9.19541 16.8694 9.2145 16.9578 9.24961 17.0398C9.28477 17.1218 9.33571 17.1957 9.39892 17.257L14.5454 22.6094C14.6661 22.7345 14.8296 22.8047 15 22.8047Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.4551 22.609C15.3345 22.7343 15.171 22.8047 15.0005 22.8047C14.83 22.8047 14.6665 22.7343 14.5459 22.609L9.3991 17.257C9.33589 17.1958 9.28519 17.1219 9.25003 17.0399C9.21487 16.9578 9.19596 16.8692 9.19444 16.7794C9.19291 16.6896 9.2088 16.6003 9.24116 16.517C9.27352 16.4337 9.32168 16.3581 9.38277 16.2945C9.44386 16.231 9.51663 16.1809 9.59674 16.1473C9.67685 16.1136 9.76265 16.0971 9.84903 16.0987C9.93541 16.1003 10.0206 16.1199 10.0995 16.1565C10.1784 16.1931 10.2495 16.2458 10.3084 16.3115L14.3571 20.5218L14.3571 7.8643C14.3571 7.68687 14.4249 7.51671 14.5456 7.39125C14.6662 7.26578 14.8299 7.1953 15.0005 7.1953C15.1711 7.1953 15.3348 7.26578 15.4554 7.39125C15.5761 7.51671 15.6438 7.68687 15.6438 7.8643L15.6438 20.5218L19.6926 16.3115C19.7515 16.2458 19.8225 16.1931 19.9015 16.1565C19.9804 16.1199 20.0656 16.1003 20.1519 16.0987C20.2383 16.0971 20.3241 16.1136 20.4042 16.1473C20.4843 16.1809 20.5571 16.231 20.6182 16.2945C20.6793 16.3581 20.7275 16.4337 20.7598 16.517C20.7922 16.6003 20.8081 16.6896 20.8065 16.7794C20.805 16.8692 20.7861 16.9578 20.7509 17.0399C20.7158 17.1219 20.6651 17.1958 20.6019 17.257L15.4551 22.609Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 23C14.7763 23 14.563 22.9071 14.4065 22.7447L9.26473 17.398C9.18275 17.3186 9.11719 17.2225 9.07194 17.1169C9.02677 17.0114 9.00208 16.8976 9.00012 16.7825C8.9982 16.6675 9.01908 16.5532 9.0606 16.4462C9.10221 16.3391 9.16385 16.2408 9.24299 16.1585C9.32217 16.0762 9.41711 16.011 9.52177 15.967C9.62644 15.9231 9.73929 15.9011 9.85252 15.9032C9.96552 15.9053 10.0766 15.9318 10.1795 15.9794C10.2825 16.0271 10.3754 16.0953 10.4517 16.1804L10.4517 16.1814L14.1627 20.0399L14.1627 7.86412C14.1628 7.63692 14.2503 7.41777 14.4065 7.25533C14.563 7.0928 14.7762 7 15 7C15.2238 7 15.437 7.0928 15.5935 7.25533C15.7497 7.41777 15.8372 7.63692 15.8373 7.86412L15.8373 20.0399L19.5493 16.1814C19.6256 16.0963 19.7175 16.0271 19.8205 15.9794C19.9234 15.9318 20.0345 15.9053 20.1475 15.9032C20.2607 15.9011 20.3736 15.9231 20.4782 15.967C20.5829 16.011 20.6778 16.0762 20.757 16.1585C20.8362 16.2408 20.8978 16.3391 20.9394 16.4462C20.9809 16.5532 21.0018 16.6675 20.9999 16.7825C20.9979 16.8976 20.9732 17.0114 20.9281 17.1169C20.8828 17.2225 20.8172 17.3186 20.7353 17.398L15.5935 22.7447C15.437 22.9071 15.2237 23 15 23ZM15 22.8047C15.1704 22.8047 15.3339 22.7345 15.4546 22.6094L20.6011 17.257C20.6643 17.1957 20.7152 17.1218 20.7504 17.0398C20.7855 16.9578 20.8046 16.8694 20.8062 16.7797C20.8077 16.6899 20.7913 16.6 20.7589 16.5167C20.7266 16.4337 20.6789 16.3581 20.6181 16.2947C20.557 16.2312 20.4837 16.1807 20.4036 16.1471C20.3235 16.1135 20.2376 16.0969 20.1513 16.0985C20.0649 16.1001 19.9797 16.1201 19.9008 16.1566C19.822 16.1932 19.7508 16.2462 19.692 16.3119L15.6436 20.522L15.6436 7.86412C15.6435 7.68675 15.5752 7.51698 15.4546 7.39157C15.3339 7.26612 15.1706 7.19531 15 7.19531C14.8294 7.19531 14.6661 7.26612 14.5455 7.39157C14.4248 7.51698 14.3565 7.68675 14.3564 7.86412L14.3564 20.522L10.308 16.3119C10.2492 16.2462 10.178 16.1932 10.0992 16.1566C10.0203 16.1201 9.93506 16.1001 9.84874 16.0985C9.76244 16.0969 9.67647 16.1135 9.59642 16.1471C9.51632 16.1807 9.443 16.2312 9.38191 16.2947C9.32105 16.3581 9.27341 16.4337 9.2411 16.5167C9.20874 16.6 9.19233 16.6899 9.19385 16.7797C9.19541 16.8694 9.2145 16.9578 9.24961 17.0398C9.28477 17.1218 9.33571 17.1957 9.39892 17.257L14.5454 22.6094C14.6661 22.7345 14.8296 22.8047 15 22.8047Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON INTERCAMBIAR -->\r\n<div *ngIf=\"icon == 'exchange'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M7.76758 15.0144C8.23845 14.9362 8.70352 15.2614 8.7793 15.7488C8.93944 16.7802 9.28534 17.7387 9.91016 18.5769C11.2769 20.4094 13.1186 21.3151 15.3994 21.2019C17.3145 21.107 18.8732 20.251 20.0605 18.738C20.0943 18.6947 20.1232 18.647 20.1777 18.5681V18.5671C19.6119 18.5671 19.0899 18.573 18.5693 18.5652C18.1117 18.558 17.7455 18.2138 17.6924 17.7595C17.643 17.3331 17.9423 16.9173 18.3809 16.8093C18.4566 16.791 18.5388 16.7877 18.6172 16.7869C19.7748 16.7851 20.9332 16.7851 22.0908 16.7869C22.6575 16.7869 23.0294 17.1557 23.0303 17.7224C23.032 18.8802 23.032 20.0392 23.0303 21.197C23.0293 21.7227 22.6443 22.1252 22.1465 22.1287C21.6435 22.132 21.2525 21.7224 21.249 21.1863C21.2473 20.8486 21.249 20.5109 21.249 20.1062C20.9157 20.4439 20.6425 20.7602 20.3301 21.03C19.0287 22.1546 17.5165 22.7946 15.8018 22.9626C11.9384 23.3413 8.28858 20.8697 7.24121 17.0613C7.14806 16.7209 7.08501 16.3713 7.0293 16.0222C6.95098 15.5365 7.28358 15.0954 7.76758 15.0144ZM13.7295 7.10913C17.9751 6.39095 22.1548 9.31219 22.9453 13.5447C22.9801 13.7292 23.0212 13.915 23.0273 14.1013C23.042 14.5591 22.7005 14.9469 22.2549 15.0017C21.8136 15.0565 21.401 14.7814 21.2861 14.3435C21.1617 13.8701 21.0983 13.3733 20.9199 12.9216C20.0024 10.6034 18.299 9.19439 15.8311 8.86011C13.4616 8.53988 11.5054 9.40374 9.99512 11.2605C9.9586 11.3049 9.92883 11.3544 9.86621 11.4431L9.86719 11.4441C10.4269 11.4441 10.947 11.4374 11.4658 11.447C11.8382 11.4532 12.1193 11.6295 12.2734 11.9705C12.4179 12.2926 12.3796 12.6101 12.1611 12.8904C11.9819 13.1209 11.7364 13.2272 11.4424 13.2273C10.2768 13.2256 9.11092 13.228 7.94531 13.2253C7.41864 13.2245 7.02737 12.8881 7.01953 12.364C7.00038 11.1628 7.00202 9.96073 7.01855 8.75952C7.02552 8.24765 7.43168 7.87919 7.91309 7.88354C8.40914 7.88881 8.78041 8.26919 8.79102 8.79565C8.79798 9.14034 8.79297 9.48623 8.79297 9.83179C8.81821 9.85094 8.8439 9.87025 8.86914 9.8894C8.90306 9.82936 8.92742 9.7592 8.97266 9.70874C10.2557 8.29096 11.846 7.42691 13.7295 7.10913Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M7.76758 15.0144C8.23845 14.9362 8.70352 15.2614 8.7793 15.7488C8.93944 16.7802 9.28534 17.7387 9.91016 18.5769C11.2769 20.4094 13.1186 21.3151 15.3994 21.2019C17.3145 21.107 18.8732 20.251 20.0605 18.738C20.0943 18.6947 20.1232 18.647 20.1777 18.5681V18.5671C19.6119 18.5671 19.0899 18.573 18.5693 18.5652C18.1117 18.558 17.7455 18.2138 17.6924 17.7595C17.643 17.3331 17.9423 16.9173 18.3809 16.8093C18.4566 16.791 18.5388 16.7877 18.6172 16.7869C19.7748 16.7851 20.9332 16.7851 22.0908 16.7869C22.6575 16.7869 23.0294 17.1557 23.0303 17.7224C23.032 18.8802 23.032 20.0392 23.0303 21.197C23.0293 21.7227 22.6443 22.1252 22.1465 22.1287C21.6435 22.132 21.2525 21.7224 21.249 21.1863C21.2473 20.8486 21.249 20.5109 21.249 20.1062C20.9157 20.4439 20.6425 20.7602 20.3301 21.03C19.0287 22.1546 17.5165 22.7946 15.8018 22.9626C11.9384 23.3413 8.28858 20.8697 7.24121 17.0613C7.14806 16.7209 7.08501 16.3713 7.0293 16.0222C6.95098 15.5365 7.28358 15.0954 7.76758 15.0144ZM13.7295 7.10913C17.9751 6.39095 22.1548 9.31219 22.9453 13.5447C22.9801 13.7292 23.0212 13.915 23.0273 14.1013C23.042 14.5591 22.7005 14.9469 22.2549 15.0017C21.8136 15.0565 21.401 14.7814 21.2861 14.3435C21.1617 13.8701 21.0983 13.3733 20.9199 12.9216C20.0024 10.6034 18.299 9.19439 15.8311 8.86011C13.4616 8.53988 11.5054 9.40374 9.99512 11.2605C9.9586 11.3049 9.92883 11.3544 9.86621 11.4431L9.86719 11.4441C10.4269 11.4441 10.947 11.4374 11.4658 11.447C11.8382 11.4532 12.1193 11.6295 12.2734 11.9705C12.4179 12.2926 12.3796 12.6101 12.1611 12.8904C11.9819 13.1209 11.7364 13.2272 11.4424 13.2273C10.2768 13.2256 9.11092 13.228 7.94531 13.2253C7.41864 13.2245 7.02737 12.8881 7.01953 12.364C7.00038 11.1628 7.00202 9.96073 7.01855 8.75952C7.02552 8.24765 7.43168 7.87919 7.91309 7.88354C8.40914 7.88881 8.78041 8.26919 8.79102 8.79565C8.79798 9.14034 8.79297 9.48623 8.79297 9.83179C8.81821 9.85094 8.8439 9.87025 8.86914 9.8894C8.90306 9.82936 8.92742 9.7592 8.97266 9.70874C10.2557 8.29096 11.846 7.42691 13.7295 7.10913Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON VOLVER -->\r\n<div *ngIf=\"icon == 'return'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M8.72568 12.8952H12.909C13.4109 12.8952 13.7456 12.5583 13.7456 12.053C13.7456 11.5477 13.4109 11.2108 12.909 11.2108H9.56233V7.84217C9.56233 7.33687 9.22767 7 8.72568 7C8.22369 7 7.88903 7.33687 7.88903 7.84217V12.053C7.88903 12.5583 8.22369 12.8952 8.72568 12.8952Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M14.5814 23C15.2508 23 16.0038 22.9158 16.6731 22.7473C18.1791 22.242 19.6014 21.3156 20.5217 20.0524C21.5257 18.7891 22.1113 17.189 22.1113 15.5889C22.1113 13.9888 21.693 12.3887 20.7727 11.0412C19.8524 9.69371 18.5137 8.68311 17.0077 8.1778C15.5018 7.6725 13.8285 7.6725 12.3225 8.1778C10.8165 8.68311 9.47785 9.69371 8.55753 10.957C8.30653 11.2938 8.3902 11.8833 8.72486 12.136C9.05952 12.3887 9.64518 12.3044 9.89618 11.9676C10.6492 10.957 11.6532 10.199 12.8245 9.77793C13.9958 9.35684 15.3344 9.35684 16.5057 9.77793C17.5934 10.199 18.681 10.957 19.3504 12.0518C20.1034 13.0624 20.438 14.2414 20.438 15.5047C20.438 16.7679 20.0197 18.0312 19.183 18.9576C18.43 19.9682 17.3424 20.6419 16.1711 21.063C14.9998 21.3999 13.6611 21.3999 12.4898 20.8946C11.3185 20.4735 10.3145 19.6313 9.64518 18.6207C9.39419 18.1996 8.89219 18.1154 8.47387 18.3681C8.05554 18.6207 7.97187 19.126 8.22287 19.5471C9.05952 20.8946 10.3982 21.9894 11.9041 22.4947C12.8245 22.8315 13.6611 23 14.5814 23Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M8.72568 12.8952H12.909C13.4109 12.8952 13.7456 12.5583 13.7456 12.053C13.7456 11.5477 13.4109 11.2108 12.909 11.2108H9.56233V7.84217C9.56233 7.33687 9.22767 7 8.72568 7C8.22369 7 7.88903 7.33687 7.88903 7.84217V12.053C7.88903 12.5583 8.22369 12.8952 8.72568 12.8952Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M14.5814 23C15.2508 23 16.0038 22.9158 16.6731 22.7473C18.1791 22.242 19.6014 21.3156 20.5217 20.0524C21.5257 18.7891 22.1113 17.189 22.1113 15.5889C22.1113 13.9888 21.693 12.3887 20.7727 11.0412C19.8524 9.69371 18.5137 8.68311 17.0077 8.1778C15.5018 7.6725 13.8285 7.6725 12.3225 8.1778C10.8165 8.68311 9.47785 9.69371 8.55753 10.957C8.30653 11.2938 8.3902 11.8833 8.72486 12.136C9.05952 12.3887 9.64518 12.3044 9.89618 11.9676C10.6492 10.957 11.6532 10.199 12.8245 9.77793C13.9958 9.35684 15.3344 9.35684 16.5057 9.77793C17.5934 10.199 18.681 10.957 19.3504 12.0518C20.1034 13.0624 20.438 14.2414 20.438 15.5047C20.438 16.7679 20.0197 18.0312 19.183 18.9576C18.43 19.9682 17.3424 20.6419 16.1711 21.063C14.9998 21.3999 13.6611 21.3999 12.4898 20.8946C11.3185 20.4735 10.3145 19.6313 9.64518 18.6207C9.39419 18.1996 8.89219 18.1154 8.47387 18.3681C8.05554 18.6207 7.97187 19.126 8.22287 19.5471C9.05952 20.8946 10.3982 21.9894 11.9041 22.4947C12.8245 22.8315 13.6611 23 14.5814 23Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON ATR\u00C1S -->\r\n<div *ngIf=\"icon == 'back'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.0638 12.5759C15.2878 12.5759 14.5515 12.7485 13.887 13.0592C12.0472 13.9196 10.7423 15.8492 10.7423 18.1169C10.7423 18.4994 10.4246 18.8095 10.0328 18.8095C9.64091 18.8095 9.32324 18.4994 9.32324 18.1169C9.32324 15.3292 10.9296 12.9062 13.2739 11.8099L13.5797 12.4331L13.2739 11.8099C14.124 11.4124 15.0692 11.1907 16.0638 11.1907C19.8241 11.1907 22.8043 14.3295 22.8043 18.1169C22.8043 18.4994 22.4867 18.8095 22.0948 18.8095C21.7029 18.8095 21.3853 18.4994 21.3853 18.1169C21.3853 15.0189 18.9651 12.5759 16.0638 12.5759Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.0637 11C19.9424 11 22.9993 14.2348 22.9995 18.1165C22.9995 18.6042 22.5941 19 22.0945 19C21.595 18.9998 21.1903 18.6041 21.1903 18.1165C21.1901 15.1138 18.8472 12.7661 16.0637 12.7661C15.3179 12.7661 14.6105 12.9323 13.9716 13.2311C12.2012 14.059 10.9373 15.9205 10.9371 18.1165C10.9371 18.6041 10.5325 18.9999 10.033 19C9.53339 19 9.12793 18.6042 9.12793 18.1165C9.12808 15.2575 10.7758 12.7667 13.1894 11.638C14.065 11.2286 15.0391 11 16.0637 11ZM16.0637 11.1907C15.0692 11.1907 14.1242 11.4126 13.2742 11.81C10.93 12.9062 9.32339 15.3289 9.32324 18.1165C9.32324 18.499 9.64115 18.8093 10.033 18.8093C10.4248 18.8092 10.7418 18.4989 10.7418 18.1165C10.742 15.849 12.0471 13.9194 13.8868 13.0591C14.5513 12.7483 15.2878 12.5755 16.0637 12.5754C18.9649 12.5754 21.3854 15.0186 21.3856 18.1165C21.3856 18.4989 21.7028 18.8092 22.0945 18.8093C22.4863 18.8093 22.8042 18.499 22.8042 18.1165C22.804 14.3293 19.824 11.1907 16.0637 11.1907Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.47917 14.7924C7.79266 14.5629 8.23739 14.6249 8.47251 14.9309L10.2101 17.1924L12.4956 15.7981C12.8279 15.5953 13.2656 15.6939 13.4733 16.0183C13.681 16.3427 13.58 16.77 13.2477 16.9727L10.4095 18.7043C10.097 18.895 9.68698 18.8203 9.46585 18.5325L7.33726 15.762C7.10214 15.456 7.16568 15.0219 7.47917 14.7924Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M7.36197 14.6399C7.76159 14.3474 8.32832 14.4267 8.62813 14.8166L10.2582 16.938L12.3923 15.6369C12.816 15.3785 13.3737 15.5042 13.6385 15.9178C13.9032 16.3313 13.7744 16.8758 13.3508 17.1342L10.5126 18.8659C10.1142 19.1089 9.59121 19.0133 9.30933 18.6464L7.18095 15.8768C6.88118 15.4867 6.96227 14.9326 7.36197 14.6399ZM8.47284 14.931C8.23773 14.625 7.79264 14.563 7.47915 14.7924C7.16566 15.022 7.10208 15.4564 7.3372 15.7625L9.46558 18.533C9.68673 18.8207 10.0973 18.8947 10.4097 18.7041L13.2479 16.9724C13.5798 16.7696 13.6812 16.3424 13.4737 16.0182C13.266 15.6938 12.8275 15.5951 12.4952 15.7978L10.2097 17.1928L8.47284 14.931Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M16.0638 12.5759C15.2878 12.5759 14.5515 12.7485 13.887 13.0592C12.0472 13.9196 10.7423 15.8492 10.7423 18.1169C10.7423 18.4994 10.4246 18.8095 10.0328 18.8095C9.64091 18.8095 9.32324 18.4994 9.32324 18.1169C9.32324 15.3292 10.9296 12.9062 13.2739 11.8099L13.5797 12.4331L13.2739 11.8099C14.124 11.4124 15.0692 11.1907 16.0638 11.1907C19.8241 11.1907 22.8043 14.3295 22.8043 18.1169C22.8043 18.4994 22.4867 18.8095 22.0948 18.8095C21.7029 18.8095 21.3853 18.4994 21.3853 18.1169C21.3853 15.0189 18.9651 12.5759 16.0638 12.5759Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.0637 11C19.9424 11 22.9993 14.2348 22.9995 18.1165C22.9995 18.6042 22.5941 19 22.0945 19C21.595 18.9998 21.1903 18.6041 21.1903 18.1165C21.1901 15.1138 18.8472 12.7661 16.0637 12.7661C15.3179 12.7661 14.6105 12.9323 13.9716 13.2311C12.2012 14.059 10.9373 15.9205 10.9371 18.1165C10.9371 18.6041 10.5325 18.9999 10.033 19C9.53339 19 9.12793 18.6042 9.12793 18.1165C9.12808 15.2575 10.7758 12.7667 13.1894 11.638C14.065 11.2286 15.0391 11 16.0637 11ZM16.0637 11.1907C15.0692 11.1907 14.1242 11.4126 13.2742 11.81C10.93 12.9062 9.32339 15.3289 9.32324 18.1165C9.32324 18.499 9.64115 18.8093 10.033 18.8093C10.4248 18.8092 10.7418 18.4989 10.7418 18.1165C10.742 15.849 12.0471 13.9194 13.8868 13.0591C14.5513 12.7483 15.2878 12.5755 16.0637 12.5754C18.9649 12.5754 21.3854 15.0186 21.3856 18.1165C21.3856 18.4989 21.7028 18.8092 22.0945 18.8093C22.4863 18.8093 22.8042 18.499 22.8042 18.1165C22.804 14.3293 19.824 11.1907 16.0637 11.1907Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.47917 14.7924C7.79266 14.5629 8.23739 14.6249 8.47251 14.9309L10.2101 17.1924L12.4956 15.7981C12.8279 15.5953 13.2656 15.6939 13.4733 16.0183C13.681 16.3427 13.58 16.77 13.2477 16.9727L10.4095 18.7043C10.097 18.895 9.68698 18.8203 9.46585 18.5325L7.33726 15.762C7.10214 15.456 7.16568 15.0219 7.47917 14.7924Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M7.36197 14.6399C7.76159 14.3474 8.32832 14.4267 8.62813 14.8166L10.2582 16.938L12.3923 15.6369C12.816 15.3785 13.3737 15.5042 13.6385 15.9178C13.9032 16.3313 13.7744 16.8758 13.3508 17.1342L10.5126 18.8659C10.1142 19.1089 9.59121 19.0133 9.30933 18.6464L7.18095 15.8768C6.88118 15.4867 6.96227 14.9326 7.36197 14.6399ZM8.47284 14.931C8.23773 14.625 7.79264 14.563 7.47915 14.7924C7.16566 15.022 7.10208 15.4564 7.3372 15.7625L9.46558 18.533C9.68673 18.8207 10.0973 18.8947 10.4097 18.7041L13.2479 16.9724C13.5798 16.7696 13.6812 16.3424 13.4737 16.0182C13.266 15.6938 12.8275 15.5951 12.4952 15.7978L10.2097 17.1928L8.47284 14.931Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON CAMBIAR -->\r\n<div *ngIf=\"icon == 'change'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.25628 19.5657C7.91457 19.2533 7.91457 18.7467 8.25628 18.4343L11.7563 15.2343C12.098 14.9219 12.652 14.9219 12.9937 15.2343C13.3354 15.5467 13.3354 16.0533 12.9937 16.3657L10.9874 18.2L21.125 18.2C21.6083 18.2 22 18.5582 22 19C22 19.4418 21.6083 19.8 21.125 19.8L10.9874 19.8L12.9937 21.6343C13.3354 21.9467 13.3354 22.4533 12.9937 22.7657C12.652 23.0781 12.098 23.0781 11.7563 22.7657L8.25628 19.5657ZM8 11C8 10.5582 8.39175 10.2 8.875 10.2L19.0126 10.2L17.0063 8.36569C16.6646 8.05327 16.6646 7.54674 17.0063 7.23431C17.348 6.9219 17.902 6.9219 18.2437 7.23431L21.7437 10.4343C22.0854 10.7467 22.0854 11.2533 21.7437 11.5657L18.2437 14.7657C17.902 15.0781 17.348 15.0781 17.0063 14.7657C16.6646 14.4533 16.6646 13.9467 17.0063 13.6343L19.0126 11.8L8.875 11.8C8.39175 11.8 8 11.4418 8 11Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M8.25628 19.5657C7.91457 19.2533 7.91457 18.7467 8.25628 18.4343L11.7563 15.2343C12.098 14.9219 12.652 14.9219 12.9937 15.2343C13.3354 15.5467 13.3354 16.0533 12.9937 16.3657L10.9874 18.2L21.125 18.2C21.6083 18.2 22 18.5582 22 19C22 19.4418 21.6083 19.8 21.125 19.8L10.9874 19.8L12.9937 21.6343C13.3354 21.9467 13.3354 22.4533 12.9937 22.7657C12.652 23.0781 12.098 23.0781 11.7563 22.7657L8.25628 19.5657ZM8 11C8 10.5582 8.39175 10.2 8.875 10.2L19.0126 10.2L17.0063 8.36569C16.6646 8.05327 16.6646 7.54674 17.0063 7.23431C17.348 6.9219 17.902 6.9219 18.2437 7.23431L21.7437 10.4343C22.0854 10.7467 22.0854 11.2533 21.7437 11.5657L18.2437 14.7657C17.902 15.0781 17.348 15.0781 17.0063 14.7657C16.6646 14.4533 16.6646 13.9467 17.0063 13.6343L19.0126 11.8L8.875 11.8C8.39175 11.8 8 11.4418 8 11Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON TRANFERENCIA -->\r\n<div *ngIf=\"icon == 'transference'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M10.8813 16.1494C11.2231 15.8023 11.7769 15.8023 12.1187 16.1494C12.4604 16.4965 12.4604 17.0592 12.1187 17.4064L10.9873 18.5557H20.25V16.7779C20.25 16.287 20.6418 15.889 21.125 15.889C21.6082 15.889 22 16.287 22 16.7779V19.4446C22 19.9355 21.6082 20.3335 21.125 20.3335H10.9873L12.1187 21.4828L12.1785 21.5505C12.4588 21.8997 12.439 22.4143 12.1187 22.7398C11.7983 23.0652 11.2917 23.0853 10.948 22.8006L10.8813 22.7398L8.25635 20.0731C7.91464 19.7259 7.91464 19.1632 8.25635 18.8161L10.8813 16.1494ZM8 13.2223V10.5555C8 10.0646 8.39175 9.66665 8.875 9.66665H19.0127L17.8813 8.51732L17.8215 8.44961C17.5412 8.10047 17.561 7.5858 17.8813 7.26035C18.2231 6.91322 18.7769 6.91322 19.1187 7.26035L21.7437 9.92707C22.0854 10.2742 22.0854 10.8369 21.7437 11.184L19.1187 13.8507C18.7769 14.1979 18.2231 14.1979 17.8813 13.8507C17.5396 13.5036 17.5396 12.9409 17.8813 12.5938L19.0127 11.4445H9.75V13.2223C9.75 13.7132 9.35825 14.1112 8.875 14.1112C8.39175 14.1112 8 13.7132 8 13.2223Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M10.8813 16.1494C11.2231 15.8023 11.7769 15.8023 12.1187 16.1494C12.4604 16.4965 12.4604 17.0592 12.1187 17.4064L10.9873 18.5557H20.25V16.7779C20.25 16.287 20.6418 15.889 21.125 15.889C21.6082 15.889 22 16.287 22 16.7779V19.4446C22 19.9355 21.6082 20.3335 21.125 20.3335H10.9873L12.1187 21.4828L12.1785 21.5505C12.4588 21.8997 12.439 22.4143 12.1187 22.7398C11.7983 23.0652 11.2917 23.0853 10.948 22.8006L10.8813 22.7398L8.25635 20.0731C7.91464 19.7259 7.91464 19.1632 8.25635 18.8161L10.8813 16.1494ZM8 13.2223V10.5555C8 10.0646 8.39175 9.66665 8.875 9.66665H19.0127L17.8813 8.51732L17.8215 8.44961C17.5412 8.10047 17.561 7.5858 17.8813 7.26035C18.2231 6.91322 18.7769 6.91322 19.1187 7.26035L21.7437 9.92707C22.0854 10.2742 22.0854 10.8369 21.7437 11.184L19.1187 13.8507C18.7769 14.1979 18.2231 14.1979 17.8813 13.8507C17.5396 13.5036 17.5396 12.9409 17.8813 12.5938L19.0127 11.4445H9.75V13.2223C9.75 13.7132 9.35825 14.1112 8.875 14.1112C8.39175 14.1112 8 13.7132 8 13.2223Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON REPROGRAMAR -->\r\n<div *ngIf=\"icon == 'reschedule'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M10.7714 22.7419C10.5826 22.7419 10.4199 22.6735 10.2784 22.5594L4.81532 17.5459C4.69738 17.409 4.60303 17.2515 4.60303 17.0462C4.60303 16.8636 4.67379 16.6833 4.81532 16.5464L10.2807 11.3047C10.4907 11.0994 10.7737 11.056 11.0544 11.1678C11.3115 11.2819 11.4766 11.5307 11.4766 11.8022L11.4766 14.2987L20.0392 14.2987C20.4378 14.2987 20.7421 14.5931 20.7421 14.9787L20.7421 15.8413L24.0256 12.6876L20.7421 9.53622L20.7421 10.6704C20.7421 11.056 20.4378 11.3504 20.0392 11.3504L14.5714 11.3504C14.1728 11.3504 13.8685 11.056 13.8685 10.6704C13.8685 10.2847 14.1728 9.99033 14.5714 9.99033H19.3339L19.3339 7.94798C19.3339 7.67643 19.499 7.42541 19.7561 7.31359C20.0132 7.1995 20.3199 7.26795 20.5298 7.45051L25.5258 12.2358C25.6673 12.3727 25.7357 12.5302 25.7357 12.7127C25.7357 12.8953 25.665 13.0755 25.5258 13.1896L20.5298 17.9772C20.3175 18.1826 20.0368 18.2259 19.7561 18.1141C19.499 18 19.3339 17.7513 19.3339 17.4797L19.3339 15.6633H10.7714C10.3727 15.6633 10.0684 15.3689 10.0684 14.9833L10.0684 13.4178L6.31553 17.0005L10.0684 20.428L10.0684 19.0429C10.0684 18.6572 10.3727 18.3629 10.7714 18.3629H16.2367C16.6354 18.3629 16.9397 18.6572 16.9397 19.0429C16.9397 19.4285 16.6354 19.7229 16.2367 19.7229H11.4766L11.4766 21.9912C11.4766 22.2627 11.3115 22.5137 11.0544 22.6256C10.9601 22.7191 10.8657 22.7419 10.7714 22.7419Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M11.4763 21.9907L11.4763 19.7225H16.2371L16.3816 19.7086C16.7066 19.6468 16.9388 19.3793 16.9388 19.042C16.9385 18.705 16.7066 18.4371 16.3816 18.3754L16.2371 18.3628L16.2371 18.1045C16.7787 18.1048 17.2029 18.512 17.2032 19.042C17.2032 19.5724 16.7789 19.9805 16.2371 19.9808H11.7408L11.7408 21.9907C11.7408 22.3507 11.5283 22.6805 11.1964 22.8412C11.0552 22.9614 10.908 23 10.7708 23C10.5107 22.9999 10.2906 22.9033 10.1104 22.7581L10.0975 22.748L10.2781 22.559C10.4195 22.673 10.5822 22.7416 10.7708 22.7417C10.8651 22.7417 10.9602 22.7193 11.0546 22.6257C11.3116 22.5139 11.4763 22.2622 11.4763 21.9907ZM16.2371 18.1045L16.2371 18.3628H10.7708V18.1045H16.2371ZM11.4763 11.8015C11.4762 11.5302 11.3113 11.2818 11.0546 11.1677C10.7739 11.0558 10.4906 11.0996 10.2807 11.305L4.81562 16.5458C4.67409 16.6827 4.6028 16.8635 4.6028 17.046L4.61956 17.1909C4.65158 17.3285 4.72708 17.4435 4.81562 17.5463L10.2781 22.559L10.0975 22.7467L4.63375 17.734L4.62343 17.724L4.61311 17.7114C4.47598 17.5521 4.33842 17.3375 4.33838 17.046C4.33838 16.7981 4.43487 16.5507 4.62859 16.363L4.62988 16.3618L10.0949 11.1198C10.3876 10.8349 10.7861 10.7818 11.1539 10.9282L11.1629 10.932C11.5127 11.0872 11.7406 11.4273 11.7408 11.8015L11.7408 14.0407L20.0396 14.0407L20.0396 14.299L11.4763 14.299L11.4763 11.8015ZM13.6046 10.6699C13.6047 10.1396 14.0289 9.73266 14.5707 9.7324L14.5707 9.98946C14.1723 9.98971 13.8678 10.2845 13.8677 10.6699C13.8677 11.0072 14.1011 11.2748 14.4262 11.3365L14.5707 11.3504L20.0396 11.3504L20.184 11.3365C20.5091 11.2747 20.7412 11.0072 20.7412 10.6699L20.7412 9.53582L24.0252 12.6873L20.7412 15.8414L20.7412 14.9782C20.7411 14.641 20.5091 14.3733 20.184 14.3116L20.0396 14.299L20.0396 14.0407C20.5813 14.041 21.0055 14.448 21.0057 14.9782L21.0057 15.2252L23.6485 12.6873L21.0057 10.1495L21.0057 10.6699C21.0057 11.2003 20.5814 11.6084 20.0396 11.6087L14.5707 11.6087C14.0288 11.6084 13.6046 11.2003 13.6046 10.6699ZM19.0696 7.94809C19.0696 7.57501 19.296 7.23079 19.6488 7.07736V7.07862C20.016 6.9165 20.4311 7.01924 20.7051 7.25756L20.7142 7.26638L25.711 12.051V12.0522C25.8999 12.235 25.9999 12.4575 25.9999 12.7125C25.9999 12.9491 25.9095 13.2003 25.7097 13.3728L20.7142 18.1612C20.42 18.445 20.0253 18.4996 19.6565 18.3527L19.6462 18.349C19.2964 18.1936 19.0696 17.8538 19.0696 17.4795L19.0696 15.9208H10.7708C10.2289 15.9206 9.80354 15.5136 9.80342 14.9832L9.80342 14.0306L6.69749 16.9956L9.80342 19.8321L9.80342 19.042C9.80374 18.5119 10.2291 18.1047 10.7708 18.1045V18.3628L10.6263 18.3754C10.3012 18.437 10.0681 18.7049 10.0678 19.042L10.0678 20.4281L6.3157 17.0007L10.0678 13.4182L10.0678 14.9832L10.082 15.1231C10.1458 15.4376 10.4222 15.6623 10.7708 15.6624H19.334L19.334 17.4795L19.3418 17.5803C19.377 17.8112 19.5311 18.0135 19.7558 18.1133C20.0365 18.2251 20.3174 18.1825 20.5297 17.9772L25.5253 13.1889C25.6297 13.1031 25.6963 12.9806 25.7226 12.8474L25.7355 12.7125C25.7355 12.53 25.6668 12.3719 25.5253 12.235L20.5297 7.45035C20.3198 7.26781 20.0129 7.19895 19.7558 7.313C19.4987 7.42482 19.334 7.67654 19.334 7.94809L19.334 9.98946H14.5707L14.5707 9.7324H19.0696L19.0696 7.94809Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M10.7714 22.7419C10.5826 22.7419 10.4199 22.6735 10.2784 22.5594L4.81532 17.5459C4.69738 17.409 4.60303 17.2515 4.60303 17.0462C4.60303 16.8636 4.67379 16.6833 4.81532 16.5464L10.2807 11.3047C10.4907 11.0994 10.7737 11.056 11.0544 11.1678C11.3115 11.2819 11.4766 11.5307 11.4766 11.8022L11.4766 14.2987L20.0392 14.2987C20.4378 14.2987 20.7421 14.5931 20.7421 14.9787L20.7421 15.8413L24.0256 12.6876L20.7421 9.53622L20.7421 10.6704C20.7421 11.056 20.4378 11.3504 20.0392 11.3504L14.5714 11.3504C14.1728 11.3504 13.8685 11.056 13.8685 10.6704C13.8685 10.2847 14.1728 9.99033 14.5714 9.99033H19.3339L19.3339 7.94798C19.3339 7.67643 19.499 7.42541 19.7561 7.31359C20.0132 7.1995 20.3199 7.26795 20.5298 7.45051L25.5258 12.2358C25.6673 12.3727 25.7357 12.5302 25.7357 12.7127C25.7357 12.8953 25.665 13.0755 25.5258 13.1896L20.5298 17.9772C20.3175 18.1826 20.0368 18.2259 19.7561 18.1141C19.499 18 19.3339 17.7513 19.3339 17.4797L19.3339 15.6633H10.7714C10.3727 15.6633 10.0684 15.3689 10.0684 14.9833L10.0684 13.4178L6.31553 17.0005L10.0684 20.428L10.0684 19.0429C10.0684 18.6572 10.3727 18.3629 10.7714 18.3629H16.2367C16.6354 18.3629 16.9397 18.6572 16.9397 19.0429C16.9397 19.4285 16.6354 19.7229 16.2367 19.7229H11.4766L11.4766 21.9912C11.4766 22.2627 11.3115 22.5137 11.0544 22.6256C10.9601 22.7191 10.8657 22.7419 10.7714 22.7419Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M11.4763 21.9907L11.4763 19.7225H16.2371L16.3816 19.7086C16.7066 19.6468 16.9388 19.3793 16.9388 19.042C16.9385 18.705 16.7066 18.4371 16.3816 18.3754L16.2371 18.3628L16.2371 18.1045C16.7787 18.1048 17.2029 18.512 17.2032 19.042C17.2032 19.5724 16.7789 19.9805 16.2371 19.9808H11.7408L11.7408 21.9907C11.7408 22.3507 11.5283 22.6805 11.1964 22.8412C11.0552 22.9614 10.908 23 10.7708 23C10.5107 22.9999 10.2906 22.9033 10.1104 22.7581L10.0975 22.748L10.2781 22.559C10.4195 22.673 10.5822 22.7416 10.7708 22.7417C10.8651 22.7417 10.9602 22.7193 11.0546 22.6257C11.3116 22.5139 11.4763 22.2622 11.4763 21.9907ZM16.2371 18.1045L16.2371 18.3628H10.7708V18.1045H16.2371ZM11.4763 11.8015C11.4762 11.5302 11.3113 11.2818 11.0546 11.1677C10.7739 11.0558 10.4906 11.0996 10.2807 11.305L4.81562 16.5458C4.67409 16.6827 4.6028 16.8635 4.6028 17.046L4.61956 17.1909C4.65158 17.3285 4.72708 17.4435 4.81562 17.5463L10.2781 22.559L10.0975 22.7467L4.63375 17.734L4.62343 17.724L4.61311 17.7114C4.47598 17.5521 4.33842 17.3375 4.33838 17.046C4.33838 16.7981 4.43487 16.5507 4.62859 16.363L4.62988 16.3618L10.0949 11.1198C10.3876 10.8349 10.7861 10.7818 11.1539 10.9282L11.1629 10.932C11.5127 11.0872 11.7406 11.4273 11.7408 11.8015L11.7408 14.0407L20.0396 14.0407L20.0396 14.299L11.4763 14.299L11.4763 11.8015ZM13.6046 10.6699C13.6047 10.1396 14.0289 9.73266 14.5707 9.7324L14.5707 9.98946C14.1723 9.98971 13.8678 10.2845 13.8677 10.6699C13.8677 11.0072 14.1011 11.2748 14.4262 11.3365L14.5707 11.3504L20.0396 11.3504L20.184 11.3365C20.5091 11.2747 20.7412 11.0072 20.7412 10.6699L20.7412 9.53582L24.0252 12.6873L20.7412 15.8414L20.7412 14.9782C20.7411 14.641 20.5091 14.3733 20.184 14.3116L20.0396 14.299L20.0396 14.0407C20.5813 14.041 21.0055 14.448 21.0057 14.9782L21.0057 15.2252L23.6485 12.6873L21.0057 10.1495L21.0057 10.6699C21.0057 11.2003 20.5814 11.6084 20.0396 11.6087L14.5707 11.6087C14.0288 11.6084 13.6046 11.2003 13.6046 10.6699ZM19.0696 7.94809C19.0696 7.57501 19.296 7.23079 19.6488 7.07736V7.07862C20.016 6.9165 20.4311 7.01924 20.7051 7.25756L20.7142 7.26638L25.711 12.051V12.0522C25.8999 12.235 25.9999 12.4575 25.9999 12.7125C25.9999 12.9491 25.9095 13.2003 25.7097 13.3728L20.7142 18.1612C20.42 18.445 20.0253 18.4996 19.6565 18.3527L19.6462 18.349C19.2964 18.1936 19.0696 17.8538 19.0696 17.4795L19.0696 15.9208H10.7708C10.2289 15.9206 9.80354 15.5136 9.80342 14.9832L9.80342 14.0306L6.69749 16.9956L9.80342 19.8321L9.80342 19.042C9.80374 18.5119 10.2291 18.1047 10.7708 18.1045V18.3628L10.6263 18.3754C10.3012 18.437 10.0681 18.7049 10.0678 19.042L10.0678 20.4281L6.3157 17.0007L10.0678 13.4182L10.0678 14.9832L10.082 15.1231C10.1458 15.4376 10.4222 15.6623 10.7708 15.6624H19.334L19.334 17.4795L19.3418 17.5803C19.377 17.8112 19.5311 18.0135 19.7558 18.1133C20.0365 18.2251 20.3174 18.1825 20.5297 17.9772L25.5253 13.1889C25.6297 13.1031 25.6963 12.9806 25.7226 12.8474L25.7355 12.7125C25.7355 12.53 25.6668 12.3719 25.5253 12.235L20.5297 7.45035C20.3198 7.26781 20.0129 7.19895 19.7558 7.313C19.4987 7.42482 19.334 7.67654 19.334 7.94809L19.334 9.98946H14.5707L14.5707 9.7324H19.0696L19.0696 7.94809Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON CARGANDO -->\r\n<div *ngIf=\"icon == 'loading'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 7.19531C15.3919 7.19531 15.7095 7.51297 15.7095 7.90483V9.32386C15.7095 9.71572 15.3919 10.0334 15 10.0334C14.6081 10.0334 14.2905 9.71572 14.2905 9.32386V7.90483C14.2905 7.51297 14.6081 7.19531 15 7.19531ZM11.0977 8.24113C11.437 8.0452 11.8709 8.16146 12.0669 8.50082L12.7764 9.7297C12.9723 10.0691 12.8561 10.503 12.5167 10.6989C12.1773 10.8949 11.7434 10.7786 11.5475 10.4392L10.838 9.21035C10.642 8.871 10.7583 8.43706 11.0977 8.24113ZM18.9024 8.24113C19.2417 8.43706 19.358 8.871 19.162 9.21035L18.4525 10.4392C18.2566 10.7786 17.8227 10.8949 17.4833 10.6989C17.144 10.503 17.0277 10.0691 17.2236 9.7297L17.9331 8.50082C18.1291 8.16146 18.563 8.0452 18.9024 8.24113ZM8.24113 11.0977C8.43706 10.7583 8.871 10.642 9.21035 10.838L10.4392 11.5475C10.7786 11.7434 10.8949 12.1773 10.6989 12.5167C10.503 12.8561 10.0691 12.9723 9.7297 12.7764L8.50082 12.0669C8.16146 11.8709 8.0452 11.437 8.24113 11.0977ZM21.7589 11.0977C21.9548 11.437 21.8385 11.8709 21.4992 12.0669L20.2703 12.7764C19.931 12.9723 19.497 12.8561 19.3011 12.5167C19.1052 12.1773 19.2214 11.7434 19.5608 11.5475L20.7897 10.838C21.129 10.642 21.563 10.7583 21.7589 11.0977ZM7.19531 15C7.19531 14.6081 7.51297 14.2905 7.90483 14.2905H9.32386C9.71572 14.2905 10.0334 14.6081 10.0334 15C10.0334 15.3919 9.71572 15.7095 9.32386 15.7095H7.90483C7.51297 15.7095 7.19531 15.3919 7.19531 15ZM19.9666 15C19.9666 14.6081 20.2843 14.2905 20.6761 14.2905H22.0952C22.487 14.2905 22.8047 14.6081 22.8047 15C22.8047 15.3919 22.487 15.7095 22.0952 15.7095H20.6761C20.2843 15.7095 19.9666 15.3919 19.9666 15ZM10.6989 17.4833C10.8949 17.8227 10.7786 18.2566 10.4392 18.4525L9.21035 19.162C8.871 19.358 8.43706 19.2417 8.24113 18.9024C8.0452 18.563 8.16146 18.1291 8.50082 17.9331L9.7297 17.2236C10.0691 17.0277 10.503 17.144 10.6989 17.4833ZM19.3011 17.4833C19.497 17.144 19.931 17.0277 20.2703 17.2236L21.4992 17.9331C21.8385 18.1291 21.9548 18.563 21.7589 18.9024C21.563 19.2417 21.129 19.358 20.7897 19.162L19.5608 18.4525C19.2214 18.2566 19.1052 17.8227 19.3011 17.4833ZM12.5167 19.3011C12.8561 19.497 12.9723 19.931 12.7764 20.2703L12.0669 21.4992C11.8709 21.8385 11.437 21.9548 11.0977 21.7589C10.7583 21.563 10.642 21.129 10.838 20.7897L11.5475 19.5608C11.7434 19.2214 12.1773 19.1052 12.5167 19.3011ZM17.4833 19.3011C17.8227 19.1052 18.2566 19.2214 18.4525 19.5608L19.162 20.7897C19.358 21.129 19.2417 21.563 18.9024 21.7589C18.563 21.9548 18.1291 21.8385 17.9331 21.4992L17.2236 20.2703C17.0277 19.931 17.144 19.497 17.4833 19.3011ZM15 19.9666C15.3919 19.9666 15.7095 20.2843 15.7095 20.6761V22.0952C15.7095 22.487 15.3919 22.8047 15 22.8047C14.6081 22.8047 14.2905 22.487 14.2905 22.0952V20.6761C14.2905 20.2843 14.6081 19.9666 15 19.9666Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 19.7712C15.4996 19.7712 15.9051 20.1767 15.9051 20.6763V22.0949C15.9051 22.5945 15.4996 23 15 23C14.5004 23 14.0949 22.5945 14.0949 22.0949V20.6763C14.0949 20.1767 14.5004 19.7712 15 19.7712ZM15 19.9665C14.6081 19.9665 14.2902 20.2845 14.2902 20.6763V22.0949C14.2902 22.4868 14.6081 22.8047 15 22.8047C15.3919 22.8047 15.7098 22.4868 15.7098 22.0949V20.6763C15.7098 20.2845 15.3919 19.9665 15 19.9665ZM11.3787 19.4635C11.6285 19.0308 12.1817 18.8821 12.6144 19.132C13.047 19.3818 13.1948 19.935 12.945 20.3676L12.2362 21.5966C11.9864 22.0292 11.4331 22.1776 11.0005 21.9282C10.5679 21.6784 10.4194 21.1251 10.6689 20.6925L11.3787 19.4635ZM17.3856 19.132C17.8183 18.8821 18.3715 19.0308 18.6213 19.4635L19.3311 20.6925C19.5806 21.1251 19.4321 21.6784 18.9995 21.9282C18.5669 22.1776 18.0136 22.0292 17.7638 21.5966L17.055 20.3676C16.8052 19.935 16.953 19.3818 17.3856 19.132ZM12.5163 19.3015C12.1769 19.1057 11.7432 19.2214 11.5473 19.5607L10.8376 20.7897C10.6418 21.129 10.7585 21.5627 11.0977 21.7586C11.4369 21.9545 11.8705 21.8386 12.0666 21.4995L12.7763 20.2705C12.9723 19.9311 12.8556 19.4975 12.5163 19.3015ZM18.4527 19.5607C18.2568 19.2214 17.8231 19.1057 17.4837 19.3015C17.1444 19.4975 17.0277 19.9311 17.2237 20.2705L17.9334 21.4995C18.1295 21.8386 18.5631 21.9545 18.9023 21.7586C19.2416 21.5627 19.3582 21.129 19.1624 20.7897L18.4527 19.5607ZM9.63237 17.055C10.065 16.8052 10.6182 16.953 10.868 17.3856C11.1179 17.8183 10.9692 18.3715 10.5365 18.6213L9.30749 19.3311C8.87486 19.5806 8.32156 19.4321 8.07181 18.9995C7.82235 18.5669 7.97083 18.0136 8.40336 17.7638L9.63237 17.055ZM19.132 17.3856C19.3818 16.953 19.935 16.8052 20.3676 17.055L21.5966 17.7638C22.0292 18.0136 22.1776 18.5669 21.9282 18.9995C21.6784 19.4321 21.1251 19.5806 20.6925 19.3311L19.4635 18.6213C19.0308 18.3715 18.8821 17.8183 19.132 17.3856ZM10.6985 17.4837C10.5025 17.1444 10.0689 17.0277 9.72955 17.2237L8.50054 17.9334C8.16144 18.1295 8.04553 18.5631 8.2414 18.9023C8.43732 19.2415 8.87102 19.3582 9.21031 19.1624L10.4393 18.4527C10.7786 18.2568 10.8943 17.8231 10.6985 17.4837ZM20.2705 17.2237C19.9311 17.0277 19.4975 17.1444 19.3015 17.4837C19.1057 17.8231 19.2214 18.2568 19.5607 18.4527L20.7897 19.1624C21.129 19.3582 21.5627 19.2416 21.7586 18.9023C21.9545 18.5631 21.8386 18.1295 21.4995 17.9334L20.2705 17.2237ZM9.32369 14.0949C9.8233 14.0949 10.2288 14.5004 10.2288 15C10.2288 15.4996 9.8233 15.9051 9.32369 15.9051H7.90509C7.40547 15.9051 7 15.4996 7 15C7 14.5004 7.40547 14.0949 7.90509 14.0949H9.32369ZM22.0949 14.0949C22.5945 14.0949 23 14.5004 23 15C23 15.4996 22.5945 15.9051 22.0949 15.9051H20.6763C20.1767 15.9051 19.7712 15.4996 19.7712 15C19.7712 14.5004 20.1767 14.0949 20.6763 14.0949H22.0949ZM7.90509 14.2902C7.51323 14.2902 7.19531 14.6081 7.19531 15C7.19531 15.3919 7.51323 15.7098 7.90509 15.7098H9.32369C9.71554 15.7098 10.0335 15.3919 10.0335 15C10.0335 14.6081 9.71554 14.2902 9.32369 14.2902H7.90509ZM20.6763 14.2902C20.2845 14.2902 19.9665 14.6081 19.9665 15C19.9665 15.3919 20.2845 15.7098 20.6763 15.7098H22.0949C22.4868 15.7098 22.8047 15.3919 22.8047 15C22.8047 14.6081 22.4868 14.2902 22.0949 14.2902H20.6763ZM8.07181 11.0005C8.32156 10.5679 8.87486 10.4194 9.30749 10.6689L10.5365 11.3787C10.9692 11.6285 11.1179 12.1817 10.868 12.6144C10.6182 13.047 10.065 13.1948 9.63237 12.945L8.40336 12.2362C7.97083 11.9864 7.82235 11.4331 8.07181 11.0005ZM20.6925 10.6689C21.1251 10.4194 21.6784 10.5679 21.9282 11.0005C22.1776 11.4331 22.0292 11.9864 21.5966 12.2362L20.3676 12.945C19.935 13.1948 19.3818 13.047 19.132 12.6144C18.8821 12.1817 19.0308 11.6285 19.4635 11.3787L20.6925 10.6689ZM9.21031 10.8376C8.87103 10.6418 8.43732 10.7585 8.2414 11.0977C8.04553 11.4369 8.16144 11.8705 8.50054 12.0666L9.72955 12.7763C10.0689 12.9723 10.5025 12.8556 10.6985 12.5163C10.8943 12.1769 10.7786 11.7432 10.4393 11.5473L9.21031 10.8376ZM21.7586 11.0977C21.5627 10.7585 21.129 10.6418 20.7897 10.8376L19.5607 11.5473C19.2214 11.7432 19.1057 12.1769 19.3015 12.5163C19.4975 12.8556 19.9311 12.9723 20.2705 12.7763L21.4995 12.0666C21.8386 11.8705 21.9545 11.4369 21.7586 11.0977ZM11.0005 8.07181C11.4331 7.82235 11.9864 7.97083 12.2362 8.40336L12.945 9.63237C13.1948 10.065 13.047 10.6182 12.6144 10.868C12.1817 11.1179 11.6285 10.9692 11.3787 10.5365L10.6689 9.30749C10.4194 8.87486 10.5679 8.32156 11.0005 8.07181ZM17.7638 8.40336C18.0136 7.97083 18.5669 7.82235 18.9995 8.07181C19.4321 8.32156 19.5806 8.87486 19.3311 9.30749L18.6213 10.5365C18.3715 10.9692 17.8183 11.1179 17.3856 10.868C16.953 10.6182 16.8052 10.065 17.055 9.63237L17.7638 8.40336ZM12.0666 8.50054C11.8705 8.16144 11.4369 8.04553 11.0977 8.2414C10.7585 8.43732 10.6418 8.87103 10.8376 9.21031L11.5473 10.4393C11.7432 10.7786 12.1769 10.8943 12.5163 10.6985C12.8556 10.5025 12.9723 10.0689 12.7763 9.72955L12.0666 8.50054ZM18.9023 8.2414C18.5631 8.04553 18.1295 8.16144 17.9334 8.50054L17.2237 9.72955C17.0277 10.0689 17.1444 10.5025 17.4837 10.6985C17.8231 10.8943 18.2568 10.7786 18.4527 10.4393L19.1624 9.21031C19.3582 8.87102 19.2415 8.43732 18.9023 8.2414ZM15 7C15.4996 7 15.9051 7.40547 15.9051 7.90509V9.32369C15.9051 9.8233 15.4996 10.2288 15 10.2288C14.5004 10.2288 14.0949 9.8233 14.0949 9.32369V7.90509C14.0949 7.40547 14.5004 7 15 7ZM15 7.19531C14.6081 7.19531 14.2902 7.51323 14.2902 7.90509V9.32369C14.2902 9.71554 14.6081 10.0335 15 10.0335C15.3919 10.0335 15.7098 9.71554 15.7098 9.32369V7.90509C15.7098 7.51323 15.3919 7.19531 15 7.19531Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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.19531C15.3919 7.19531 15.7095 7.51297 15.7095 7.90483V9.32386C15.7095 9.71572 15.3919 10.0334 15 10.0334C14.6081 10.0334 14.2905 9.71572 14.2905 9.32386V7.90483C14.2905 7.51297 14.6081 7.19531 15 7.19531ZM11.0977 8.24113C11.437 8.0452 11.8709 8.16146 12.0669 8.50082L12.7764 9.7297C12.9723 10.0691 12.8561 10.503 12.5167 10.6989C12.1773 10.8949 11.7434 10.7786 11.5475 10.4392L10.838 9.21035C10.642 8.871 10.7583 8.43706 11.0977 8.24113ZM18.9024 8.24113C19.2417 8.43706 19.358 8.871 19.162 9.21035L18.4525 10.4392C18.2566 10.7786 17.8227 10.8949 17.4833 10.6989C17.144 10.503 17.0277 10.0691 17.2236 9.7297L17.9331 8.50082C18.1291 8.16146 18.563 8.0452 18.9024 8.24113ZM8.24113 11.0977C8.43706 10.7583 8.871 10.642 9.21035 10.838L10.4392 11.5475C10.7786 11.7434 10.8949 12.1773 10.6989 12.5167C10.503 12.8561 10.0691 12.9723 9.7297 12.7764L8.50082 12.0669C8.16146 11.8709 8.0452 11.437 8.24113 11.0977ZM21.7589 11.0977C21.9548 11.437 21.8385 11.8709 21.4992 12.0669L20.2703 12.7764C19.931 12.9723 19.497 12.8561 19.3011 12.5167C19.1052 12.1773 19.2214 11.7434 19.5608 11.5475L20.7897 10.838C21.129 10.642 21.563 10.7583 21.7589 11.0977ZM7.19531 15C7.19531 14.6081 7.51297 14.2905 7.90483 14.2905H9.32386C9.71572 14.2905 10.0334 14.6081 10.0334 15C10.0334 15.3919 9.71572 15.7095 9.32386 15.7095H7.90483C7.51297 15.7095 7.19531 15.3919 7.19531 15ZM19.9666 15C19.9666 14.6081 20.2843 14.2905 20.6761 14.2905H22.0952C22.487 14.2905 22.8047 14.6081 22.8047 15C22.8047 15.3919 22.487 15.7095 22.0952 15.7095H20.6761C20.2843 15.7095 19.9666 15.3919 19.9666 15ZM10.6989 17.4833C10.8949 17.8227 10.7786 18.2566 10.4392 18.4525L9.21035 19.162C8.871 19.358 8.43706 19.2417 8.24113 18.9024C8.0452 18.563 8.16146 18.1291 8.50082 17.9331L9.7297 17.2236C10.0691 17.0277 10.503 17.144 10.6989 17.4833ZM19.3011 17.4833C19.497 17.144 19.931 17.0277 20.2703 17.2236L21.4992 17.9331C21.8385 18.1291 21.9548 18.563 21.7589 18.9024C21.563 19.2417 21.129 19.358 20.7897 19.162L19.5608 18.4525C19.2214 18.2566 19.1052 17.8227 19.3011 17.4833ZM12.5167 19.3011C12.8561 19.497 12.9723 19.931 12.7764 20.2703L12.0669 21.4992C11.8709 21.8385 11.437 21.9548 11.0977 21.7589C10.7583 21.563 10.642 21.129 10.838 20.7897L11.5475 19.5608C11.7434 19.2214 12.1773 19.1052 12.5167 19.3011ZM17.4833 19.3011C17.8227 19.1052 18.2566 19.2214 18.4525 19.5608L19.162 20.7897C19.358 21.129 19.2417 21.563 18.9024 21.7589C18.563 21.9548 18.1291 21.8385 17.9331 21.4992L17.2236 20.2703C17.0277 19.931 17.144 19.497 17.4833 19.3011ZM15 19.9666C15.3919 19.9666 15.7095 20.2843 15.7095 20.6761V22.0952C15.7095 22.487 15.3919 22.8047 15 22.8047C14.6081 22.8047 14.2905 22.487 14.2905 22.0952V20.6761C14.2905 20.2843 14.6081 19.9666 15 19.9666Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 19.7712C15.4996 19.7712 15.9051 20.1767 15.9051 20.6763V22.0949C15.9051 22.5945 15.4996 23 15 23C14.5004 23 14.0949 22.5945 14.0949 22.0949V20.6763C14.0949 20.1767 14.5004 19.7712 15 19.7712ZM15 19.9665C14.6081 19.9665 14.2902 20.2845 14.2902 20.6763V22.0949C14.2902 22.4868 14.6081 22.8047 15 22.8047C15.3919 22.8047 15.7098 22.4868 15.7098 22.0949V20.6763C15.7098 20.2845 15.3919 19.9665 15 19.9665ZM11.3787 19.4635C11.6285 19.0308 12.1817 18.8821 12.6144 19.132C13.047 19.3818 13.1948 19.935 12.945 20.3676L12.2362 21.5966C11.9864 22.0292 11.4331 22.1776 11.0005 21.9282C10.5679 21.6784 10.4194 21.1251 10.6689 20.6925L11.3787 19.4635ZM17.3856 19.132C17.8183 18.8821 18.3715 19.0308 18.6213 19.4635L19.3311 20.6925C19.5806 21.1251 19.4321 21.6784 18.9995 21.9282C18.5669 22.1776 18.0136 22.0292 17.7638 21.5966L17.055 20.3676C16.8052 19.935 16.953 19.3818 17.3856 19.132ZM12.5163 19.3015C12.1769 19.1057 11.7432 19.2214 11.5473 19.5607L10.8376 20.7897C10.6418 21.129 10.7585 21.5627 11.0977 21.7586C11.4369 21.9545 11.8705 21.8386 12.0666 21.4995L12.7763 20.2705C12.9723 19.9311 12.8556 19.4975 12.5163 19.3015ZM18.4527 19.5607C18.2568 19.2214 17.8231 19.1057 17.4837 19.3015C17.1444 19.4975 17.0277 19.9311 17.2237 20.2705L17.9334 21.4995C18.1295 21.8386 18.5631 21.9545 18.9023 21.7586C19.2416 21.5627 19.3582 21.129 19.1624 20.7897L18.4527 19.5607ZM9.63237 17.055C10.065 16.8052 10.6182 16.953 10.868 17.3856C11.1179 17.8183 10.9692 18.3715 10.5365 18.6213L9.30749 19.3311C8.87486 19.5806 8.32156 19.4321 8.07181 18.9995C7.82235 18.5669 7.97083 18.0136 8.40336 17.7638L9.63237 17.055ZM19.132 17.3856C19.3818 16.953 19.935 16.8052 20.3676 17.055L21.5966 17.7638C22.0292 18.0136 22.1776 18.5669 21.9282 18.9995C21.6784 19.4321 21.1251 19.5806 20.6925 19.3311L19.4635 18.6213C19.0308 18.3715 18.8821 17.8183 19.132 17.3856ZM10.6985 17.4837C10.5025 17.1444 10.0689 17.0277 9.72955 17.2237L8.50054 17.9334C8.16144 18.1295 8.04553 18.5631 8.2414 18.9023C8.43732 19.2415 8.87102 19.3582 9.21031 19.1624L10.4393 18.4527C10.7786 18.2568 10.8943 17.8231 10.6985 17.4837ZM20.2705 17.2237C19.9311 17.0277 19.4975 17.1444 19.3015 17.4837C19.1057 17.8231 19.2214 18.2568 19.5607 18.4527L20.7897 19.1624C21.129 19.3582 21.5627 19.2416 21.7586 18.9023C21.9545 18.5631 21.8386 18.1295 21.4995 17.9334L20.2705 17.2237ZM9.32369 14.0949C9.8233 14.0949 10.2288 14.5004 10.2288 15C10.2288 15.4996 9.8233 15.9051 9.32369 15.9051H7.90509C7.40547 15.9051 7 15.4996 7 15C7 14.5004 7.40547 14.0949 7.90509 14.0949H9.32369ZM22.0949 14.0949C22.5945 14.0949 23 14.5004 23 15C23 15.4996 22.5945 15.9051 22.0949 15.9051H20.6763C20.1767 15.9051 19.7712 15.4996 19.7712 15C19.7712 14.5004 20.1767 14.0949 20.6763 14.0949H22.0949ZM7.90509 14.2902C7.51323 14.2902 7.19531 14.6081 7.19531 15C7.19531 15.3919 7.51323 15.7098 7.90509 15.7098H9.32369C9.71554 15.7098 10.0335 15.3919 10.0335 15C10.0335 14.6081 9.71554 14.2902 9.32369 14.2902H7.90509ZM20.6763 14.2902C20.2845 14.2902 19.9665 14.6081 19.9665 15C19.9665 15.3919 20.2845 15.7098 20.6763 15.7098H22.0949C22.4868 15.7098 22.8047 15.3919 22.8047 15C22.8047 14.6081 22.4868 14.2902 22.0949 14.2902H20.6763ZM8.07181 11.0005C8.32156 10.5679 8.87486 10.4194 9.30749 10.6689L10.5365 11.3787C10.9692 11.6285 11.1179 12.1817 10.868 12.6144C10.6182 13.047 10.065 13.1948 9.63237 12.945L8.40336 12.2362C7.97083 11.9864 7.82235 11.4331 8.07181 11.0005ZM20.6925 10.6689C21.1251 10.4194 21.6784 10.5679 21.9282 11.0005C22.1776 11.4331 22.0292 11.9864 21.5966 12.2362L20.3676 12.945C19.935 13.1948 19.3818 13.047 19.132 12.6144C18.8821 12.1817 19.0308 11.6285 19.4635 11.3787L20.6925 10.6689ZM9.21031 10.8376C8.87103 10.6418 8.43732 10.7585 8.2414 11.0977C8.04553 11.4369 8.16144 11.8705 8.50054 12.0666L9.72955 12.7763C10.0689 12.9723 10.5025 12.8556 10.6985 12.5163C10.8943 12.1769 10.7786 11.7432 10.4393 11.5473L9.21031 10.8376ZM21.7586 11.0977C21.5627 10.7585 21.129 10.6418 20.7897 10.8376L19.5607 11.5473C19.2214 11.7432 19.1057 12.1769 19.3015 12.5163C19.4975 12.8556 19.9311 12.9723 20.2705 12.7763L21.4995 12.0666C21.8386 11.8705 21.9545 11.4369 21.7586 11.0977ZM11.0005 8.07181C11.4331 7.82235 11.9864 7.97083 12.2362 8.40336L12.945 9.63237C13.1948 10.065 13.047 10.6182 12.6144 10.868C12.1817 11.1179 11.6285 10.9692 11.3787 10.5365L10.6689 9.30749C10.4194 8.87486 10.5679 8.32156 11.0005 8.07181ZM17.7638 8.40336C18.0136 7.97083 18.5669 7.82235 18.9995 8.07181C19.4321 8.32156 19.5806 8.87486 19.3311 9.30749L18.6213 10.5365C18.3715 10.9692 17.8183 11.1179 17.3856 10.868C16.953 10.6182 16.8052 10.065 17.055 9.63237L17.7638 8.40336ZM12.0666 8.50054C11.8705 8.16144 11.4369 8.04553 11.0977 8.2414C10.7585 8.43732 10.6418 8.87103 10.8376 9.21031L11.5473 10.4393C11.7432 10.7786 12.1769 10.8943 12.5163 10.6985C12.8556 10.5025 12.9723 10.0689 12.7763 9.72955L12.0666 8.50054ZM18.9023 8.2414C18.5631 8.04553 18.1295 8.16144 17.9334 8.50054L17.2237 9.72955C17.0277 10.0689 17.1444 10.5025 17.4837 10.6985C17.8231 10.8943 18.2568 10.7786 18.4527 10.4393L19.1624 9.21031C19.3582 8.87102 19.2415 8.43732 18.9023 8.2414ZM15 7C15.4996 7 15.9051 7.40547 15.9051 7.90509V9.32369C15.9051 9.8233 15.4996 10.2288 15 10.2288C14.5004 10.2288 14.0949 9.8233 14.0949 9.32369V7.90509C14.0949 7.40547 14.5004 7 15 7ZM15 7.19531C14.6081 7.19531 14.2902 7.51323 14.2902 7.90509V9.32369C14.2902 9.71554 14.6081 10.0335 15 10.0335C15.3919 10.0335 15.7098 9.71554 15.7098 9.32369V7.90509C15.7098 7.51323 15.3919 7.19531 15 7.19531Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON UNIR -->\r\n<div *ngIf=\"icon == 'bind'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" opacity=\"0.2\" d=\"M22.2461 17.2292C22.2461 16.0677 21.8434 14.9446 21.1104 14.0499L20.9599 13.8746C20.1315 12.9536 18.9913 12.3714 17.7596 12.2406C17.6596 11.299 17.2946 10.4047 16.7078 9.66156C16.1943 9.01136 15.5291 8.49964 14.7728 8.17052L14.4431 8.04095C13.5504 7.72535 12.5865 7.66887 11.663 7.87803L11.3201 7.96854C10.5304 8.20715 9.80989 8.63744 9.22403 9.2233C8.55442 9.89291 8.088 10.7387 7.87876 11.6623L7.81303 12.0101C7.68797 12.8255 7.76551 13.6612 8.04168 14.4424C8.35728 15.3351 8.9192 16.1202 9.66229 16.7071C10.4055 17.2939 11.2997 17.6589 12.2414 17.7589C12.3766 19.0363 12.9971 20.2131 13.9744 21.0468C14.9518 21.8805 16.2119 22.3074 17.4947 22.2396C18.6976 22.1759 19.8349 21.6822 20.7007 20.8524L20.8703 20.6819C21.6989 19.8079 22.1833 18.667 22.2403 17.4692L22.2461 17.2292ZM22.4414 17.2292C22.4417 18.5638 21.9297 19.8477 21.0113 20.8162C20.0929 21.7847 18.8381 22.3644 17.5052 22.4349C16.1724 22.5054 14.8631 22.0616 13.8477 21.1954C12.871 20.3622 12.2379 19.199 12.066 17.9304C11.1449 17.8045 10.2724 17.4378 9.54129 16.8604C8.76925 16.2508 8.18569 15.4347 7.8578 14.5072C7.52995 13.5797 7.47085 12.5779 7.68822 11.6185C7.90563 10.6591 8.39031 9.78072 9.08588 9.08515C9.78145 8.38958 10.6599 7.9049 11.6192 7.68748C12.5786 7.47012 13.5804 7.52922 14.5079 7.85707C15.4354 8.18496 16.2515 8.76852 16.8612 9.54056C17.4385 10.2717 17.8052 11.1442 17.9311 12.0653C19.1527 12.2312 20.2781 12.825 21.1047 13.744C21.9652 14.7009 22.4414 15.9423 22.4414 17.2292Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.2489 11.7512C18.0635 10.7529 17.609 9.8242 16.9343 9.06538C16.2597 8.30656 15.3906 7.74644 14.4209 7.4455C13.4511 7.14456 12.4176 7.11424 11.4319 7.35781C10.4462 7.60137 9.54575 8.10958 8.82778 8.82754C8.10982 9.5455 7.60162 10.4459 7.35805 11.4317C7.11449 12.4174 7.14481 13.4509 7.44575 14.4206C7.74668 15.3903 8.3068 16.2594 9.06562 16.9341C9.82444 17.6087 10.7531 18.0633 11.7514 18.2486C11.9368 19.2469 12.3913 20.1756 13.066 20.9344C13.7406 21.6932 14.6097 22.2534 15.5794 22.5543C16.5492 22.8552 17.5827 22.8856 18.5684 22.642C19.5541 22.3984 20.4545 21.8902 21.1725 21.1723C21.8905 20.4543 22.3987 19.5538 22.6422 18.5681C22.8858 17.5824 22.8555 16.5489 22.5545 15.5792C22.2536 14.6095 21.6935 13.7403 20.9347 13.0657C20.1758 12.3911 19.2471 11.9365 18.2489 11.7512ZM8.31182 12.7705C8.30968 11.6837 8.70454 10.6335 9.42219 9.81734C10.1398 9.00118 11.1309 8.47523 12.209 8.33832C13.2871 8.20141 14.3782 8.46298 15.277 9.07387C16.1759 9.68476 16.8207 10.6029 17.0902 11.6557C15.6612 11.6933 14.301 12.278 13.2905 13.2892C12.2799 14.3004 11.6961 15.6609 11.6595 17.09C10.702 16.8422 9.85379 16.2837 9.24794 15.5019C8.64209 14.7202 8.31284 13.7595 8.31182 12.7705ZM17.2296 12.7705C17.2283 13.9526 16.7581 15.086 15.9222 15.9219C15.0863 16.7579 13.9529 17.228 12.7707 17.2293C12.772 16.0472 13.2422 14.9138 14.0781 14.0779C14.914 13.2419 16.0474 12.7717 17.2296 12.7705ZM17.2296 21.6882C16.241 21.6874 15.2807 21.3586 14.499 20.7535C13.7173 20.1483 13.1585 19.3009 12.91 18.3441C14.3397 18.3074 15.7008 17.7231 16.712 16.7118C17.7233 15.7005 18.3076 14.3395 18.3443 12.9098C19.3971 13.1794 20.3153 13.8242 20.9262 14.723C21.5371 15.6219 21.7986 16.7129 21.6617 17.791C21.5248 18.8692 20.9989 19.8602 20.1827 20.5778C19.3665 21.2955 18.3164 21.6904 17.2296 21.6882Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M11.3853 7.16849C12.4054 6.91649 13.4753 6.94757 14.4789 7.259C15.4824 7.57048 16.3816 8.15054 17.0798 8.93582C17.7489 9.68841 18.2057 10.6031 18.4118 11.5873C19.3963 11.7932 20.3113 12.2508 21.0642 12.9202C21.8495 13.6184 22.4295 14.5176 22.741 15.5211C23.0524 16.5247 23.0835 17.5946 22.8315 18.6147C22.5794 19.6349 22.0531 20.5669 21.31 21.31C20.5669 22.0531 19.6349 22.5794 18.6147 22.8315C17.5946 23.0835 16.5247 23.0524 15.5211 22.741C14.5176 22.4295 13.6184 21.8495 12.9202 21.0642C12.2508 20.3113 11.7932 19.3963 11.5873 18.4118C10.6031 18.2057 9.68841 17.7489 8.93582 17.0798C8.15054 16.3816 7.57048 15.4824 7.259 14.4789C6.94757 13.4753 6.91649 12.4054 7.16849 11.3853C7.42059 10.3651 7.94692 9.43311 8.69002 8.69002C9.43311 7.94692 10.3651 7.42059 11.3853 7.16849ZM14.4207 7.44574C13.4511 7.14482 12.4176 7.11457 11.432 7.35809L11.0661 7.46194C10.2237 7.73221 9.45536 8.19906 8.82721 8.82721C8.10925 9.54517 7.60166 10.4463 7.35809 11.432L7.27901 11.8036C7.12581 12.6749 7.18244 13.5723 7.44574 14.4207C7.74667 15.3904 8.30665 16.2594 9.0654 16.9341C9.82419 17.6087 10.7529 18.0635 11.7512 18.2488C11.9365 19.2471 12.3913 20.1758 13.0659 20.9346C13.7405 21.6934 14.6096 22.2533 15.5793 22.5543C16.5489 22.8552 17.5824 22.8854 18.568 22.6419C19.4304 22.4288 20.2278 22.0134 20.8946 21.4319L21.1728 21.1728C21.8908 20.4548 22.3983 19.5537 22.6419 18.568C22.8854 17.5824 22.8552 16.5489 22.5543 15.5793C22.291 14.7309 21.8295 13.9594 21.2099 13.3279L20.9346 13.0659C20.1758 12.3913 19.2471 11.9365 18.2488 11.7512C18.0635 10.7529 17.6087 9.82419 16.9341 9.0654C16.3439 8.40159 15.6049 7.88973 14.7799 7.57055L14.4207 7.44574ZM18.3441 12.9097C19.3968 13.1792 20.3151 13.824 20.926 14.7228C21.5369 15.6216 21.7984 16.7134 21.6615 17.7915L21.6311 17.9925C21.4574 18.9923 20.9479 19.9056 20.1829 20.5783L20.0266 20.7088C19.2348 21.3434 18.2482 21.6902 17.2294 21.6882V21.4929C18.2685 21.495 19.2729 21.1176 20.0533 20.4316C20.8337 19.7454 21.3372 18.7976 21.4681 17.7668C21.599 16.736 21.3489 15.6927 20.765 14.8333C20.2259 14.04 19.436 13.4533 18.5261 13.165C18.4302 14.5526 17.8377 15.8627 16.8502 16.8502C15.8634 17.837 14.5544 18.4296 13.1679 18.5261C13.4309 19.3459 13.9342 20.0698 14.618 20.5992C15.3654 21.1779 16.2841 21.4921 17.2294 21.4929V21.6882C16.3027 21.6874 15.4007 21.3988 14.6475 20.8641L14.4989 20.7536C13.7172 20.1484 13.1581 19.301 12.9097 18.3441C14.25 18.3097 15.5306 17.7945 16.5187 16.8969L16.7121 16.7121C17.7233 15.7008 18.3074 14.3394 18.3441 12.9097ZM17.2294 12.7706C17.2281 13.9528 16.7582 15.0863 15.9222 15.9222L15.7622 16.0747C14.9446 16.8152 13.8789 17.2282 12.7706 17.2294C12.7719 16.0472 13.2418 14.9137 14.0777 14.0777C14.9137 13.2418 16.0472 12.7719 17.2294 12.7706ZM12.2085 8.33846C13.2866 8.20155 14.3784 8.46308 15.2772 9.07397C16.176 9.68486 16.8208 10.6031 17.0903 11.6559C15.6614 11.6934 14.3013 12.278 13.2908 13.2889L13.106 13.4832C12.2091 14.4711 11.694 15.7506 11.6597 17.0903C10.7621 16.8581 9.96044 16.3523 9.36456 15.646L9.24737 15.5021C8.67943 14.7692 8.35477 13.8788 8.31559 12.9554L8.31178 12.7706C8.30964 11.6838 8.70407 10.6333 9.42172 9.81711C10.0944 9.05207 11.0077 8.54258 12.0075 8.36894L12.2085 8.33846ZM17.0293 12.9697C15.9718 13.0205 14.9679 13.4638 14.2159 14.2159C13.4638 14.9679 13.0205 15.9718 12.9697 17.0293C14.0276 16.9787 15.0318 16.5364 15.7841 15.7841C16.5364 15.0318 16.9787 14.0276 17.0293 12.9697ZM8.50709 12.7706C8.50811 13.7163 8.82238 14.6355 9.40171 15.383C9.9314 16.0664 10.656 16.5685 11.4758 16.8312C11.5725 15.4455 12.1668 14.1382 13.1526 13.1517C14.1392 12.1645 15.4474 11.5698 16.834 11.473C16.5456 10.5635 15.9597 9.7739 15.1667 9.23498C14.3073 8.65107 13.264 8.40097 12.2332 8.53186C11.2024 8.66281 10.2546 9.16628 9.56844 9.94668C8.88236 10.7271 8.50505 11.7315 8.50709 12.7706Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" opacity=\"0.2\" d=\"M22.2461 17.2292C22.2461 16.0677 21.8434 14.9446 21.1104 14.0499L20.9599 13.8746C20.1315 12.9536 18.9913 12.3714 17.7596 12.2406C17.6596 11.299 17.2946 10.4047 16.7078 9.66156C16.1943 9.01136 15.5291 8.49964 14.7728 8.17052L14.4431 8.04095C13.5504 7.72535 12.5865 7.66887 11.663 7.87803L11.3201 7.96854C10.5304 8.20715 9.80989 8.63744 9.22403 9.2233C8.55442 9.89291 8.088 10.7387 7.87876 11.6623L7.81303 12.0101C7.68797 12.8255 7.76551 13.6612 8.04168 14.4424C8.35728 15.3351 8.9192 16.1202 9.66229 16.7071C10.4055 17.2939 11.2997 17.6589 12.2414 17.7589C12.3766 19.0363 12.9971 20.2131 13.9744 21.0468C14.9518 21.8805 16.2119 22.3074 17.4947 22.2396C18.6976 22.1759 19.8349 21.6822 20.7007 20.8524L20.8703 20.6819C21.6989 19.8079 22.1833 18.667 22.2403 17.4692L22.2461 17.2292ZM22.4414 17.2292C22.4417 18.5638 21.9297 19.8477 21.0113 20.8162C20.0929 21.7847 18.8381 22.3644 17.5052 22.4349C16.1724 22.5054 14.8631 22.0616 13.8477 21.1954C12.871 20.3622 12.2379 19.199 12.066 17.9304C11.1449 17.8045 10.2724 17.4378 9.54129 16.8604C8.76925 16.2508 8.18569 15.4347 7.8578 14.5072C7.52995 13.5797 7.47085 12.5779 7.68822 11.6185C7.90563 10.6591 8.39031 9.78072 9.08588 9.08515C9.78145 8.38958 10.6599 7.9049 11.6192 7.68748C12.5786 7.47012 13.5804 7.52922 14.5079 7.85707C15.4354 8.18496 16.2515 8.76852 16.8612 9.54056C17.4385 10.2717 17.8052 11.1442 17.9311 12.0653C19.1527 12.2312 20.2781 12.825 21.1047 13.744C21.9652 14.7009 22.4414 15.9423 22.4414 17.2292Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.2489 11.7512C18.0635 10.7529 17.609 9.8242 16.9343 9.06538C16.2597 8.30656 15.3906 7.74644 14.4209 7.4455C13.4511 7.14456 12.4176 7.11424 11.4319 7.35781C10.4462 7.60137 9.54575 8.10958 8.82778 8.82754C8.10982 9.5455 7.60162 10.4459 7.35805 11.4317C7.11449 12.4174 7.14481 13.4509 7.44575 14.4206C7.74668 15.3903 8.3068 16.2594 9.06562 16.9341C9.82444 17.6087 10.7531 18.0633 11.7514 18.2486C11.9368 19.2469 12.3913 20.1756 13.066 20.9344C13.7406 21.6932 14.6097 22.2534 15.5794 22.5543C16.5492 22.8552 17.5827 22.8856 18.5684 22.642C19.5541 22.3984 20.4545 21.8902 21.1725 21.1723C21.8905 20.4543 22.3987 19.5538 22.6422 18.5681C22.8858 17.5824 22.8555 16.5489 22.5545 15.5792C22.2536 14.6095 21.6935 13.7403 20.9347 13.0657C20.1758 12.3911 19.2471 11.9365 18.2489 11.7512ZM8.31182 12.7705C8.30968 11.6837 8.70454 10.6335 9.42219 9.81734C10.1398 9.00118 11.1309 8.47523 12.209 8.33832C13.2871 8.20141 14.3782 8.46298 15.277 9.07387C16.1759 9.68476 16.8207 10.6029 17.0902 11.6557C15.6612 11.6933 14.301 12.278 13.2905 13.2892C12.2799 14.3004 11.6961 15.6609 11.6595 17.09C10.702 16.8422 9.85379 16.2837 9.24794 15.5019C8.64209 14.7202 8.31284 13.7595 8.31182 12.7705ZM17.2296 12.7705C17.2283 13.9526 16.7581 15.086 15.9222 15.9219C15.0863 16.7579 13.9529 17.228 12.7707 17.2293C12.772 16.0472 13.2422 14.9138 14.0781 14.0779C14.914 13.2419 16.0474 12.7717 17.2296 12.7705ZM17.2296 21.6882C16.241 21.6874 15.2807 21.3586 14.499 20.7535C13.7173 20.1483 13.1585 19.3009 12.91 18.3441C14.3397 18.3074 15.7008 17.7231 16.712 16.7118C17.7233 15.7005 18.3076 14.3395 18.3443 12.9098C19.3971 13.1794 20.3153 13.8242 20.9262 14.723C21.5371 15.6219 21.7986 16.7129 21.6617 17.791C21.5248 18.8692 20.9989 19.8602 20.1827 20.5778C19.3665 21.2955 18.3164 21.6904 17.2296 21.6882Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M11.3853 7.16849C12.4054 6.91649 13.4753 6.94757 14.4789 7.259C15.4824 7.57048 16.3816 8.15054 17.0798 8.93582C17.7489 9.68841 18.2057 10.6031 18.4118 11.5873C19.3963 11.7932 20.3113 12.2508 21.0642 12.9202C21.8495 13.6184 22.4295 14.5176 22.741 15.5211C23.0524 16.5247 23.0835 17.5946 22.8315 18.6147C22.5794 19.6349 22.0531 20.5669 21.31 21.31C20.5669 22.0531 19.6349 22.5794 18.6147 22.8315C17.5946 23.0835 16.5247 23.0524 15.5211 22.741C14.5176 22.4295 13.6184 21.8495 12.9202 21.0642C12.2508 20.3113 11.7932 19.3963 11.5873 18.4118C10.6031 18.2057 9.68841 17.7489 8.93582 17.0798C8.15054 16.3816 7.57048 15.4824 7.259 14.4789C6.94757 13.4753 6.91649 12.4054 7.16849 11.3853C7.42059 10.3651 7.94692 9.43311 8.69002 8.69002C9.43311 7.94692 10.3651 7.42059 11.3853 7.16849ZM14.4207 7.44574C13.4511 7.14482 12.4176 7.11457 11.432 7.35809L11.0661 7.46194C10.2237 7.73221 9.45536 8.19906 8.82721 8.82721C8.10925 9.54517 7.60166 10.4463 7.35809 11.432L7.27901 11.8036C7.12581 12.6749 7.18244 13.5723 7.44574 14.4207C7.74667 15.3904 8.30665 16.2594 9.0654 16.9341C9.82419 17.6087 10.7529 18.0635 11.7512 18.2488C11.9365 19.2471 12.3913 20.1758 13.0659 20.9346C13.7405 21.6934 14.6096 22.2533 15.5793 22.5543C16.5489 22.8552 17.5824 22.8854 18.568 22.6419C19.4304 22.4288 20.2278 22.0134 20.8946 21.4319L21.1728 21.1728C21.8908 20.4548 22.3983 19.5537 22.6419 18.568C22.8854 17.5824 22.8552 16.5489 22.5543 15.5793C22.291 14.7309 21.8295 13.9594 21.2099 13.3279L20.9346 13.0659C20.1758 12.3913 19.2471 11.9365 18.2488 11.7512C18.0635 10.7529 17.6087 9.82419 16.9341 9.0654C16.3439 8.40159 15.6049 7.88973 14.7799 7.57055L14.4207 7.44574ZM18.3441 12.9097C19.3968 13.1792 20.3151 13.824 20.926 14.7228C21.5369 15.6216 21.7984 16.7134 21.6615 17.7915L21.6311 17.9925C21.4574 18.9923 20.9479 19.9056 20.1829 20.5783L20.0266 20.7088C19.2348 21.3434 18.2482 21.6902 17.2294 21.6882V21.4929C18.2685 21.495 19.2729 21.1176 20.0533 20.4316C20.8337 19.7454 21.3372 18.7976 21.4681 17.7668C21.599 16.736 21.3489 15.6927 20.765 14.8333C20.2259 14.04 19.436 13.4533 18.5261 13.165C18.4302 14.5526 17.8377 15.8627 16.8502 16.8502C15.8634 17.837 14.5544 18.4296 13.1679 18.5261C13.4309 19.3459 13.9342 20.0698 14.618 20.5992C15.3654 21.1779 16.2841 21.4921 17.2294 21.4929V21.6882C16.3027 21.6874 15.4007 21.3988 14.6475 20.8641L14.4989 20.7536C13.7172 20.1484 13.1581 19.301 12.9097 18.3441C14.25 18.3097 15.5306 17.7945 16.5187 16.8969L16.7121 16.7121C17.7233 15.7008 18.3074 14.3394 18.3441 12.9097ZM17.2294 12.7706C17.2281 13.9528 16.7582 15.0863 15.9222 15.9222L15.7622 16.0747C14.9446 16.8152 13.8789 17.2282 12.7706 17.2294C12.7719 16.0472 13.2418 14.9137 14.0777 14.0777C14.9137 13.2418 16.0472 12.7719 17.2294 12.7706ZM12.2085 8.33846C13.2866 8.20155 14.3784 8.46308 15.2772 9.07397C16.176 9.68486 16.8208 10.6031 17.0903 11.6559C15.6614 11.6934 14.3013 12.278 13.2908 13.2889L13.106 13.4832C12.2091 14.4711 11.694 15.7506 11.6597 17.0903C10.7621 16.8581 9.96044 16.3523 9.36456 15.646L9.24737 15.5021C8.67943 14.7692 8.35477 13.8788 8.31559 12.9554L8.31178 12.7706C8.30964 11.6838 8.70407 10.6333 9.42172 9.81711C10.0944 9.05207 11.0077 8.54258 12.0075 8.36894L12.2085 8.33846ZM17.0293 12.9697C15.9718 13.0205 14.9679 13.4638 14.2159 14.2159C13.4638 14.9679 13.0205 15.9718 12.9697 17.0293C14.0276 16.9787 15.0318 16.5364 15.7841 15.7841C16.5364 15.0318 16.9787 14.0276 17.0293 12.9697ZM8.50709 12.7706C8.50811 13.7163 8.82238 14.6355 9.40171 15.383C9.9314 16.0664 10.656 16.5685 11.4758 16.8312C11.5725 15.4455 12.1668 14.1382 13.1526 13.1517C14.1392 12.1645 15.4474 11.5698 16.834 11.473C16.5456 10.5635 15.9597 9.7739 15.1667 9.23498C14.3073 8.65107 13.264 8.40097 12.2332 8.53186C11.2024 8.66281 10.2546 9.16628 9.56844 9.94668C8.88236 10.7271 8.50505 11.7315 8.50709 12.7706Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON CHECK -->\r\n<div *ngIf=\"icon == '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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.0847 19.3149L8.92881 15.8985C8.75875 15.7144 8.52811 15.611 8.28762 15.611C8.04714 15.611 7.8165 15.7144 7.64644 15.8985C7.47639 16.0826 7.38086 16.3323 7.38086 16.5926C7.38086 16.7215 7.40431 16.8492 7.44988 16.9683C7.49545 17.0874 7.56224 17.1956 7.64644 17.2867L11.4481 21.4022C11.8027 21.7862 12.3757 21.7862 12.7304 21.4022L22.3527 10.9856C22.5227 10.8015 22.6182 10.5518 22.6182 10.2914C22.6182 10.0311 22.5227 9.78142 22.3527 9.59733C22.1826 9.41324 21.952 9.30981 21.7115 9.30981C21.471 9.30981 21.2404 9.41324 21.0703 9.59733L12.0847 19.3149Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M22.6187 10.2909C22.6186 10.0308 22.5227 9.78113 22.3527 9.59715C22.1827 9.41323 21.9523 9.30977 21.7119 9.30977C21.4716 9.30977 21.2412 9.41323 21.0711 9.59715L12.0853 19.3149L8.92885 15.898C8.78004 15.7371 8.58485 15.6384 8.37735 15.6162L8.28807 15.6106C8.04778 15.6106 7.8173 15.7142 7.64729 15.898L7.58684 15.9705C7.45461 16.1452 7.38131 16.3649 7.38131 16.5927L7.38596 16.6885C7.39467 16.7845 7.41591 16.879 7.45013 16.9685C7.4957 17.0875 7.56312 17.1954 7.64729 17.2865L11.4483 21.4018C11.803 21.7858 12.3761 21.7858 12.7308 21.4018L22.3527 10.9857C22.5015 10.8246 22.5934 10.6132 22.614 10.3886L22.6187 10.2909ZM23 10.2909C23 10.643 22.8704 10.9868 22.6326 11.2442L13.0107 21.6604C12.5052 22.2076 11.6738 22.2076 11.1683 21.6604L7.36736 17.5451C7.24937 17.4173 7.15725 17.2673 7.09486 17.1042C7.0325 16.9412 7.00002 16.7676 7 16.5927C7 16.2407 7.12961 15.8978 7.36736 15.6404C7.60609 15.382 7.93636 15.2303 8.28807 15.2303C8.63978 15.2303 8.97006 15.382 9.20879 15.6404L12.0853 18.7532L20.7912 9.3386C21.0299 9.08031 21.3603 8.92847 21.7119 8.92847C22.0635 8.92847 22.3939 9.08032 22.6326 9.3386C22.8703 9.59592 22.9999 9.93905 23 10.2909Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.0847 19.3149L8.92881 15.8985C8.75875 15.7144 8.52811 15.611 8.28762 15.611C8.04714 15.611 7.8165 15.7144 7.64644 15.8985C7.47639 16.0826 7.38086 16.3323 7.38086 16.5926C7.38086 16.7215 7.40431 16.8492 7.44988 16.9683C7.49545 17.0874 7.56224 17.1956 7.64644 17.2867L11.4481 21.4022C11.8027 21.7862 12.3757 21.7862 12.7304 21.4022L22.3527 10.9856C22.5227 10.8015 22.6182 10.5518 22.6182 10.2914C22.6182 10.0311 22.5227 9.78142 22.3527 9.59733C22.1826 9.41324 21.952 9.30981 21.7115 9.30981C21.471 9.30981 21.2404 9.41324 21.0703 9.59733L12.0847 19.3149Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M22.6187 10.2909C22.6186 10.0308 22.5227 9.78113 22.3527 9.59715C22.1827 9.41323 21.9523 9.30977 21.7119 9.30977C21.4716 9.30977 21.2412 9.41323 21.0711 9.59715L12.0853 19.3149L8.92885 15.898C8.78004 15.7371 8.58485 15.6384 8.37735 15.6162L8.28807 15.6106C8.04778 15.6106 7.8173 15.7142 7.64729 15.898L7.58684 15.9705C7.45461 16.1452 7.38131 16.3649 7.38131 16.5927L7.38596 16.6885C7.39467 16.7845 7.41591 16.879 7.45013 16.9685C7.4957 17.0875 7.56312 17.1954 7.64729 17.2865L11.4483 21.4018C11.803 21.7858 12.3761 21.7858 12.7308 21.4018L22.3527 10.9857C22.5015 10.8246 22.5934 10.6132 22.614 10.3886L22.6187 10.2909ZM23 10.2909C23 10.643 22.8704 10.9868 22.6326 11.2442L13.0107 21.6604C12.5052 22.2076 11.6738 22.2076 11.1683 21.6604L7.36736 17.5451C7.24937 17.4173 7.15725 17.2673 7.09486 17.1042C7.0325 16.9412 7.00002 16.7676 7 16.5927C7 16.2407 7.12961 15.8978 7.36736 15.6404C7.60609 15.382 7.93636 15.2303 8.28807 15.2303C8.63978 15.2303 8.97006 15.382 9.20879 15.6404L12.0853 18.7532L20.7912 9.3386C21.0299 9.08031 21.3603 8.92847 21.7119 8.92847C22.0635 8.92847 22.3939 9.08032 22.6326 9.3386C22.8703 9.59592 22.9999 9.93905 23 10.2909Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON CERRAR -->\r\n<div *ngIf=\"icon == 'close'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.30536 8.30536C8.7125 7.89821 9.37261 7.89821 9.77975 8.30536L15 13.5256L20.2203 8.30536C20.6274 7.89821 21.2875 7.89821 21.6946 8.30536C22.1018 8.7125 22.1018 9.37261 21.6946 9.77975L16.4744 15L21.6946 20.2203C22.1018 20.6274 22.1018 21.2875 21.6946 21.6946C21.2875 22.1018 20.6274 22.1018 20.2203 21.6946L15 16.4744L9.77975 21.6946C9.37261 22.1018 8.7125 22.1018 8.30536 21.6946C7.89821 21.2875 7.89821 20.6274 8.30536 20.2203L13.5256 15L8.30536 9.77975C7.89821 9.37261 7.89821 8.7125 8.30536 8.30536Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M8.30536 8.30536C8.7125 7.89821 9.37261 7.89821 9.77975 8.30536L15 13.5256L20.2203 8.30536C20.6274 7.89821 21.2875 7.89821 21.6946 8.30536C22.1018 8.7125 22.1018 9.37261 21.6946 9.77975L16.4744 15L21.6946 20.2203C22.1018 20.6274 22.1018 21.2875 21.6946 21.6946C21.2875 22.1018 20.6274 22.1018 20.2203 21.6946L15 16.4744L9.77975 21.6946C9.37261 22.1018 8.7125 22.1018 8.30536 21.6946C7.89821 21.2875 7.89821 20.6274 8.30536 20.2203L13.5256 15L8.30536 9.77975C7.89821 9.37261 7.89821 8.7125 8.30536 8.30536Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON VISTA -->\r\n<div *ngIf=\"icon == 'view'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 8C18.8888 8 22.4723 10.0633 24.5801 13.5166C25.1386 14.4292 25.1386 15.5698 24.5801 16.4824C22.4723 19.9356 18.8888 21.999 15 21.999C11.1114 21.9989 7.52861 19.9355 5.4209 16.4824C4.86234 15.5698 4.86234 14.4292 5.4209 13.5166C7.5286 10.0635 11.1113 8.00015 15 8ZM15 9.55469C11.6699 9.55484 8.60342 11.3289 6.78027 14.3154C6.52752 14.7405 6.52746 15.2585 6.78027 15.6836C8.59288 18.6597 11.6699 20.4432 15 20.4434C18.3303 20.4434 21.3975 18.6598 23.2207 15.6836C23.4735 15.2586 23.4734 14.7405 23.2207 14.3154C21.408 11.3392 18.3303 9.55469 15 9.55469ZM14.999 11.1113C17.1806 11.1113 18.9512 12.8534 18.9512 15C18.951 17.1465 17.1805 18.8887 14.999 18.8887C12.8177 18.8885 11.047 17.1464 11.0469 15C11.0469 12.8535 12.8177 11.1115 14.999 11.1113ZM14.999 12.666C13.6924 12.6662 12.6279 13.7142 12.6279 15C12.6281 16.2857 13.6925 17.3328 14.999 17.333C16.3058 17.333 17.371 16.2858 17.3711 15C17.3711 13.7141 16.3058 12.666 14.999 12.666Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 8C18.8888 8 22.4723 10.0633 24.5801 13.5166C25.1386 14.4292 25.1386 15.5698 24.5801 16.4824C22.4723 19.9356 18.8888 21.999 15 21.999C11.1114 21.9989 7.52861 19.9355 5.4209 16.4824C4.86234 15.5698 4.86234 14.4292 5.4209 13.5166C7.5286 10.0635 11.1113 8.00015 15 8ZM15 9.55469C11.6699 9.55484 8.60342 11.3289 6.78027 14.3154C6.52752 14.7405 6.52746 15.2585 6.78027 15.6836C8.59288 18.6597 11.6699 20.4432 15 20.4434C18.3303 20.4434 21.3975 18.6598 23.2207 15.6836C23.4735 15.2586 23.4734 14.7405 23.2207 14.3154C21.408 11.3392 18.3303 9.55469 15 9.55469ZM14.999 11.1113C17.1806 11.1113 18.9512 12.8534 18.9512 15C18.951 17.1465 17.1805 18.8887 14.999 18.8887C12.8177 18.8885 11.047 17.1464 11.0469 15C11.0469 12.8535 12.8177 11.1115 14.999 11.1113ZM14.999 12.666C13.6924 12.6662 12.6279 13.7142 12.6279 15C12.6281 16.2857 13.6925 17.3328 14.999 17.333C16.3058 17.333 17.371 16.2858 17.3711 15C17.3711 13.7141 16.3058 12.666 14.999 12.666Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON OCULTAR VISTA -->\r\n<div *ngIf=\"icon == 'hide-view'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M8.88755 7.31971C8.82958 7.25458 8.75922 7.20156 8.68055 7.16373C8.60187 7.1259 8.51645 7.10402 8.42922 7.09934C8.342 7.09466 8.25471 7.10729 8.17242 7.13648C8.09012 7.16568 8.01446 7.21087 7.94982 7.26943C7.88517 7.32798 7.83283 7.39875 7.79583 7.47762C7.75882 7.55649 7.73789 7.6419 7.73425 7.72889C7.7306 7.81589 7.74431 7.90274 7.77459 7.98441C7.80486 8.06608 7.8511 8.14095 7.91062 8.20468L9.49814 9.94584C6.50132 11.7791 5.21249 14.6051 5.15556 14.7334C5.11803 14.8175 5.09863 14.9086 5.09863 15.0007C5.09863 15.0928 5.11803 15.1838 5.15556 15.268C5.18444 15.333 5.88331 16.8776 7.437 18.4262C9.50721 20.489 12.122 21.5796 15 21.5796C16.4791 21.588 17.9433 21.2844 19.2964 20.6888L21.1116 22.68C21.1696 22.7452 21.24 22.7982 21.3186 22.836C21.3973 22.8738 21.4827 22.8957 21.57 22.9004C21.6572 22.9051 21.7445 22.8924 21.8268 22.8633C21.9091 22.8341 21.9847 22.7889 22.0494 22.7303C22.114 22.6718 22.1664 22.601 22.2034 22.5221C22.2404 22.4432 22.2613 22.3578 22.2649 22.2708C22.2686 22.1838 22.2549 22.097 22.2246 22.0153C22.1943 21.9337 22.1481 21.8588 22.0886 21.7951L8.88755 7.31971ZM12.7928 13.5573L16.2311 17.3283C15.7133 17.5998 15.1197 17.6922 14.5436 17.591C13.9674 17.4898 13.4413 17.2007 13.0478 16.7692C12.6543 16.3376 12.4158 15.788 12.3696 15.2066C12.3235 14.6253 12.4723 14.0451 12.7928 13.5573ZM15 20.2636C12.4603 20.2636 10.2416 19.3433 8.40486 17.5289C7.651 16.7821 7.00981 15.9302 6.50132 14.9999C6.8883 14.2769 8.1235 12.2537 10.4082 10.9385L11.8934 12.5629C11.3185 13.297 11.0223 14.21 11.0574 15.1406C11.0924 16.0713 11.4565 16.9596 12.0851 17.6486C12.7137 18.3376 13.5664 18.7829 14.4926 18.9058C15.4187 19.0287 16.3586 18.8212 17.1461 18.3201L18.3615 19.6525C17.2889 20.0627 16.1489 20.27 15 20.2636ZM15.4951 12.4149C15.3231 12.3821 15.1712 12.2827 15.0727 12.1383C14.9743 11.9939 14.9375 11.8165 14.9703 11.645C15.0031 11.4736 15.1029 11.3222 15.2478 11.2241C15.3926 11.126 15.5706 11.0892 15.7426 11.122C16.5839 11.2845 17.3499 11.7138 17.9264 12.3459C18.5029 12.9779 18.859 13.7787 18.9416 14.6289C18.9579 14.8027 18.9043 14.9758 18.7925 15.1101C18.6808 15.2444 18.5201 15.329 18.3458 15.3453C18.3252 15.3466 18.3046 15.3466 18.284 15.3453C18.119 15.346 17.9597 15.2851 17.8375 15.1746C17.7154 15.0641 17.6391 14.9119 17.6239 14.7482C17.5683 14.1827 17.3311 13.6501 16.9476 13.2297C16.564 12.8093 16.0546 12.5235 15.4951 12.4149ZM24.842 15.268C24.8073 15.3453 23.9715 17.1901 22.0894 18.8704C22.0251 18.9296 21.9496 18.9755 21.8673 19.0054C21.785 19.0353 21.6976 19.0485 21.6101 19.0444C21.5227 19.0403 21.4369 19.0188 21.3578 18.9813C21.2788 18.9438 21.2079 18.891 21.1495 18.826C21.0911 18.761 21.0463 18.685 21.0176 18.6025C20.989 18.52 20.9771 18.4327 20.9826 18.3456C20.9881 18.2585 21.011 18.1733 21.0499 18.0951C21.0887 18.0169 21.1428 17.9472 21.209 17.89C22.1323 17.0631 22.908 16.0858 23.5028 14.9999C22.9932 14.0687 22.3506 13.2162 21.5951 12.4692C19.7584 10.6564 17.5397 9.73611 15 9.73611C14.4649 9.73547 13.9306 9.77865 13.4026 9.86523C13.3167 9.88037 13.2287 9.8784 13.1436 9.85943C13.0585 9.84046 12.978 9.80488 12.9068 9.75473C12.8356 9.70458 12.775 9.64086 12.7286 9.56726C12.6823 9.49365 12.651 9.41161 12.6366 9.32589C12.6222 9.24016 12.625 9.15244 12.6448 9.06779C12.6646 8.98315 12.7011 8.90326 12.752 8.83273C12.803 8.76221 12.8675 8.70245 12.9418 8.6569C13.016 8.61136 13.0986 8.58093 13.1848 8.56739C13.7847 8.46864 14.3919 8.4194 15 8.42017C17.878 8.42017 20.4928 9.51075 22.563 11.5743C24.1167 13.123 24.8156 14.6684 24.8445 14.7334C24.882 14.8175 24.9014 14.9086 24.9014 15.0007C24.9014 15.0928 24.882 15.1838 24.8445 15.268H24.842Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M8.43454 7.0011C8.53483 7.00648 8.63318 7.03187 8.72365 7.07537C8.81389 7.1188 8.89497 7.17911 8.96152 7.25381H8.96055L22.1611 21.7276L22.252 21.8472C22.2781 21.8896 22.3004 21.9345 22.3177 21.9813C22.3525 22.0752 22.3683 22.1755 22.3641 22.2755C22.3599 22.3754 22.3351 22.4733 22.2926 22.5639C22.25 22.6546 22.19 22.7358 22.1156 22.8031C22.0414 22.8703 21.9549 22.9229 21.8604 22.9565C21.7657 22.99 21.6648 23.0043 21.5645 22.9989C21.4643 22.9935 21.3658 22.9681 21.2754 22.9246C21.1852 22.8812 21.104 22.8209 21.0375 22.7462V22.7452L19.27 20.8065C17.9227 21.3887 16.469 21.6867 15 21.6784C12.0953 21.6784 9.45545 20.5773 7.36705 18.4964C5.8038 16.9382 5.09826 15.3839 5.06478 15.3086L5.03674 15.2344C5.01225 15.1591 5.00001 15.0804 5 15.001C5 14.8951 5.02163 14.79 5.06478 14.6933C5.12474 14.5582 6.39611 11.7739 9.34539 9.92461L7.83698 8.27139V8.27043C7.7692 8.19746 7.71588 8.11198 7.6813 8.01869C7.64654 7.92481 7.6307 7.82448 7.63489 7.7245C7.63912 7.62459 7.66395 7.52669 7.70644 7.43611C7.74897 7.34545 7.80912 7.26422 7.88339 7.1969C7.95773 7.12956 8.04499 7.07711 8.13962 7.04354C8.23415 7.01006 8.33437 6.99573 8.43454 7.0011ZM11.8933 12.5626C11.3183 13.2967 11.0228 14.2102 11.0578 15.1408C11.0929 16.0713 11.4562 16.9597 12.0847 17.6486C12.7133 18.3376 13.5663 18.7835 14.4924 18.9064C15.4185 19.0293 16.359 18.821 17.1466 18.3199L18.3611 19.6529C17.2885 20.063 16.1487 20.2698 15 20.2635C12.4603 20.2635 10.2413 19.3434 8.40456 17.529C7.65082 16.7822 7.01008 15.9302 6.50164 15C6.88871 14.2769 8.12345 12.2534 10.408 10.9383L11.8933 12.5626ZM10.3897 11.0647C8.21976 12.339 7.02085 14.2532 6.61477 14.999C7.11443 15.9026 7.73995 16.7311 8.47418 17.4586C10.2927 19.255 12.4869 20.1651 15 20.1651H15.001C16.0886 20.1711 17.1671 19.9804 18.188 19.6086L17.1282 18.4463C16.3358 18.928 15.4015 19.126 14.4798 19.0038C13.5306 18.8778 12.6565 18.4213 12.0122 17.7152C11.3679 17.009 10.9942 16.0986 10.9582 15.1447C10.9233 14.2183 11.2094 13.3092 11.7656 12.5684L10.3897 11.0647ZM24.8869 14.864L24.8443 14.7338C24.8172 14.6729 24.2017 13.3104 22.8447 11.8643L22.5633 11.574C20.6226 9.63947 18.2028 8.56085 15.5366 8.43344L15 8.41993C14.392 8.41916 13.785 8.46879 13.1851 8.56751L13.0584 8.6003C13.0178 8.61527 12.9784 8.6345 12.9414 8.65721L12.8379 8.73534C12.8062 8.76479 12.7774 8.79749 12.7519 8.83275C12.7009 8.90328 12.6644 8.98346 12.6446 9.0681L12.6281 9.19638C12.6267 9.23956 12.6297 9.28281 12.6368 9.32563C12.6512 9.41136 12.6823 9.49412 12.7287 9.56773C12.775 9.64118 12.8355 9.70478 12.9066 9.75485C12.9778 9.805 13.0584 9.84102 13.1435 9.85998C13.2286 9.87895 13.3168 9.8809 13.4026 9.86577C13.9307 9.77919 14.4649 9.73588 15 9.73652L15.4728 9.74713C17.8158 9.85497 19.8736 10.7697 21.5954 12.4691C22.3509 13.2161 22.9936 14.0688 23.5032 15C22.9083 16.0859 22.132 17.0628 21.2087 17.8897C21.1425 17.9469 21.0889 18.017 21.0501 18.0952L21.0037 18.2167C20.9923 18.2588 20.9852 18.3023 20.9824 18.346L20.9872 18.4762C20.9931 18.5191 21.003 18.5615 21.0172 18.6025C21.0459 18.685 21.0913 18.7613 21.1497 18.8263C21.208 18.8912 21.2786 18.9441 21.3576 18.9816C21.4366 19.0191 21.5225 19.0401 21.6099 19.0443C21.6536 19.0464 21.6975 19.0441 21.7405 19.0375L21.8671 19.0057C21.9494 18.9758 22.0252 18.9299 22.0895 18.8707C23.9716 17.1904 24.8077 15.3454 24.8424 15.2681H24.8443L24.8869 15.1379L24.9014 15.001C24.9014 14.9548 24.8964 14.9089 24.8869 14.864ZM16.2309 17.3284C15.7779 17.5659 15.2669 17.6661 14.7602 17.6197L14.5436 17.5907C13.9675 17.4895 13.4412 17.2005 13.0478 16.769C12.7036 16.3915 12.478 15.9238 12.3961 15.4234L12.3699 15.2064C12.3239 14.6252 12.4721 14.0448 12.7925 13.5571L16.2309 17.3284ZM12.8089 13.721C12.5474 14.1667 12.4276 14.6819 12.4686 15.1987C12.513 15.7581 12.7426 16.2871 13.1213 16.7024C13.5 17.1178 14.0064 17.3969 14.561 17.4943C15.0727 17.5841 15.5978 17.513 16.0675 17.2966L12.8089 13.721ZM15.761 11.0251C16.623 11.1917 17.4086 11.6315 17.9994 12.279C18.5903 12.9268 18.9552 13.7485 19.0398 14.62C19.0586 14.8198 18.9972 15.0191 18.8687 15.1736C18.7403 15.3279 18.5555 15.425 18.3553 15.4437H18.2847V15.4446C18.095 15.4455 17.9117 15.3749 17.7712 15.2479C17.6659 15.1526 17.5904 15.0304 17.5517 14.8958L17.5256 14.7579C17.4721 14.2136 17.2431 13.7013 16.8739 13.2966C16.5048 12.8921 16.0151 12.6162 15.4767 12.5115V12.5125C15.2791 12.4749 15.1045 12.36 14.9913 12.1942C14.8782 12.0282 14.8357 11.8241 14.8733 11.627C14.9111 11.4298 15.0259 11.2556 15.1924 11.1428C15.3589 11.0301 15.5633 10.9876 15.761 11.0251ZM15.7426 11.1226C15.5706 11.0898 15.3924 11.1257 15.2475 11.2238C15.1027 11.3219 15.0028 11.4739 14.97 11.6453L14.9584 11.7746C14.9596 11.9034 14.9989 12.0301 15.0725 12.1382C15.1709 12.2826 15.3231 12.3823 15.4951 12.415C16.0546 12.5237 16.5639 12.8097 16.9474 13.2301C17.3309 13.6505 17.5687 14.1828 17.6243 14.7483C17.6395 14.912 17.7158 15.0641 17.8379 15.1746C17.96 15.2849 18.1189 15.3459 18.2837 15.3453C18.3042 15.3466 18.3251 15.3466 18.3456 15.3453C18.5199 15.329 18.6806 15.2443 18.7923 15.11C18.904 14.9756 18.9575 14.8024 18.9412 14.6287C18.8689 13.8848 18.5874 13.1788 18.1319 12.5906L17.9269 12.3456C17.4224 11.7925 16.7722 11.3956 16.054 11.1959L15.7426 11.1226ZM5.11313 15.1379C5.12267 15.1826 5.13698 15.2262 5.15568 15.2681C5.18496 15.334 5.8837 16.8779 7.43667 18.426C9.50688 20.4888 12.122 21.5801 15 21.5801C16.479 21.5885 17.943 21.2844 19.2961 20.6888L21.112 22.6806C21.1699 22.7455 21.2404 22.7981 21.3189 22.8359C21.3581 22.8547 21.3988 22.8705 21.4407 22.8812L21.5703 22.9005C21.6137 22.9028 21.6571 22.9009 21.6999 22.8947L21.8265 22.8639C21.8676 22.8493 21.9073 22.8301 21.9445 22.8079L22.0489 22.7308C22.0812 22.7015 22.1111 22.6691 22.1369 22.6343L22.2036 22.5224C22.2406 22.4435 22.2609 22.3577 22.2646 22.2707C22.2663 22.2274 22.2645 22.184 22.2578 22.1414L22.2249 22.0151C22.1946 21.9335 22.148 21.8588 22.0886 21.7952L8.88803 7.3194C8.85896 7.28674 8.82612 7.2578 8.79134 7.23162L8.68014 7.16411C8.6409 7.14526 8.60028 7.12954 8.55831 7.11877L8.42874 7.09948C8.34175 7.09488 8.25458 7.10705 8.1725 7.13614L8.05453 7.19208C8.01736 7.21428 7.98235 7.24007 7.95011 7.26924L7.86212 7.36569C7.83631 7.40058 7.81391 7.43812 7.7954 7.47758C7.7584 7.55644 7.73813 7.64234 7.73448 7.72932L7.74125 7.85857C7.748 7.90146 7.75896 7.94401 7.77412 7.98493C7.80439 8.0665 7.85102 8.14117 7.91046 8.20484L9.49816 9.94583C6.50135 11.7791 5.21261 14.6055 5.15568 14.7338L5.11313 14.864C5.10356 14.9089 5.09863 14.9548 5.09863 15.001L5.11313 15.1379ZM25 15.001C25 15.1068 24.9784 15.2119 24.9352 15.3086L24.9091 15.3665H24.9033C24.7418 15.707 23.8902 17.3951 22.1553 18.944C22.0816 19.0116 21.9951 19.0641 21.901 19.0983C21.8064 19.1326 21.7056 19.1484 21.6051 19.1436C21.5046 19.1389 21.4059 19.1134 21.315 19.0703C21.2243 19.0273 21.1432 18.9665 21.0762 18.8919C21.0091 18.8172 20.9574 18.73 20.9244 18.6353C20.8914 18.5405 20.8774 18.4394 20.8838 18.3392C20.8902 18.2392 20.9166 18.1416 20.9611 18.0518C21.0058 17.9619 21.0679 17.8812 21.1439 17.8155C22.045 17.0082 22.8033 16.0559 23.3891 14.999C22.9521 14.21 22.4182 13.479 21.8004 12.8221L21.5258 12.5395C19.7073 10.7447 17.5131 9.83491 15 9.83491C14.4704 9.83427 13.9416 9.87753 13.4191 9.96319L13.4181 9.96223C13.3199 9.97932 13.2195 9.97714 13.1222 9.95547C13.0244 9.93367 12.9314 9.89352 12.8495 9.83587C12.7676 9.7782 12.6979 9.70447 12.6446 9.61982C12.5913 9.53521 12.5557 9.44056 12.5392 9.34203C12.5227 9.24361 12.5261 9.14309 12.5488 9.04592C12.5716 8.94856 12.613 8.85599 12.6716 8.77488C12.7302 8.69382 12.8048 8.62565 12.8902 8.57329C12.9754 8.52104 13.0698 8.48572 13.1686 8.47009L13.6241 8.4045C14.0804 8.34855 14.5399 8.32097 15 8.32155L15.5415 8.33409C18.2326 8.46271 20.6751 9.55294 22.633 11.5045C24.1979 13.0644 24.9032 14.6212 24.9352 14.6933C24.9784 14.79 25 14.895 25 15.001Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M8.88755 7.31971C8.82958 7.25458 8.75922 7.20156 8.68055 7.16373C8.60187 7.1259 8.51645 7.10402 8.42922 7.09934C8.342 7.09466 8.25471 7.10729 8.17242 7.13648C8.09012 7.16568 8.01446 7.21087 7.94982 7.26943C7.88517 7.32798 7.83283 7.39875 7.79583 7.47762C7.75882 7.55649 7.73789 7.6419 7.73425 7.72889C7.7306 7.81589 7.74431 7.90274 7.77459 7.98441C7.80486 8.06608 7.8511 8.14095 7.91062 8.20468L9.49814 9.94584C6.50132 11.7791 5.21249 14.6051 5.15556 14.7334C5.11803 14.8175 5.09863 14.9086 5.09863 15.0007C5.09863 15.0928 5.11803 15.1838 5.15556 15.268C5.18444 15.333 5.88331 16.8776 7.437 18.4262C9.50721 20.489 12.122 21.5796 15 21.5796C16.4791 21.588 17.9433 21.2844 19.2964 20.6888L21.1116 22.68C21.1696 22.7452 21.24 22.7982 21.3186 22.836C21.3973 22.8738 21.4827 22.8957 21.57 22.9004C21.6572 22.9051 21.7445 22.8924 21.8268 22.8633C21.9091 22.8341 21.9847 22.7889 22.0494 22.7303C22.114 22.6718 22.1664 22.601 22.2034 22.5221C22.2404 22.4432 22.2613 22.3578 22.2649 22.2708C22.2686 22.1838 22.2549 22.097 22.2246 22.0153C22.1943 21.9337 22.1481 21.8588 22.0886 21.7951L8.88755 7.31971ZM12.7928 13.5573L16.2311 17.3283C15.7133 17.5998 15.1197 17.6922 14.5436 17.591C13.9674 17.4898 13.4413 17.2007 13.0478 16.7692C12.6543 16.3376 12.4158 15.788 12.3696 15.2066C12.3235 14.6253 12.4723 14.0451 12.7928 13.5573ZM15 20.2636C12.4603 20.2636 10.2416 19.3433 8.40486 17.5289C7.651 16.7821 7.00981 15.9302 6.50132 14.9999C6.8883 14.2769 8.1235 12.2537 10.4082 10.9385L11.8934 12.5629C11.3185 13.297 11.0223 14.21 11.0574 15.1406C11.0924 16.0713 11.4565 16.9596 12.0851 17.6486C12.7137 18.3376 13.5664 18.7829 14.4926 18.9058C15.4187 19.0287 16.3586 18.8212 17.1461 18.3201L18.3615 19.6525C17.2889 20.0627 16.1489 20.27 15 20.2636ZM15.4951 12.4149C15.3231 12.3821 15.1712 12.2827 15.0727 12.1383C14.9743 11.9939 14.9375 11.8165 14.9703 11.645C15.0031 11.4736 15.1029 11.3222 15.2478 11.2241C15.3926 11.126 15.5706 11.0892 15.7426 11.122C16.5839 11.2845 17.3499 11.7138 17.9264 12.3459C18.5029 12.9779 18.859 13.7787 18.9416 14.6289C18.9579 14.8027 18.9043 14.9758 18.7925 15.1101C18.6808 15.2444 18.5201 15.329 18.3458 15.3453C18.3252 15.3466 18.3046 15.3466 18.284 15.3453C18.119 15.346 17.9597 15.2851 17.8375 15.1746C17.7154 15.0641 17.6391 14.9119 17.6239 14.7482C17.5683 14.1827 17.3311 13.6501 16.9476 13.2297C16.564 12.8093 16.0546 12.5235 15.4951 12.4149ZM24.842 15.268C24.8073 15.3453 23.9715 17.1901 22.0894 18.8704C22.0251 18.9296 21.9496 18.9755 21.8673 19.0054C21.785 19.0353 21.6976 19.0485 21.6101 19.0444C21.5227 19.0403 21.4369 19.0188 21.3578 18.9813C21.2788 18.9438 21.2079 18.891 21.1495 18.826C21.0911 18.761 21.0463 18.685 21.0176 18.6025C20.989 18.52 20.9771 18.4327 20.9826 18.3456C20.9881 18.2585 21.011 18.1733 21.0499 18.0951C21.0887 18.0169 21.1428 17.9472 21.209 17.89C22.1323 17.0631 22.908 16.0858 23.5028 14.9999C22.9932 14.0687 22.3506 13.2162 21.5951 12.4692C19.7584 10.6564 17.5397 9.73611 15 9.73611C14.4649 9.73547 13.9306 9.77865 13.4026 9.86523C13.3167 9.88037 13.2287 9.8784 13.1436 9.85943C13.0585 9.84046 12.978 9.80488 12.9068 9.75473C12.8356 9.70458 12.775 9.64086 12.7286 9.56726C12.6823 9.49365 12.651 9.41161 12.6366 9.32589C12.6222 9.24016 12.625 9.15244 12.6448 9.06779C12.6646 8.98315 12.7011 8.90326 12.752 8.83273C12.803 8.76221 12.8675 8.70245 12.9418 8.6569C13.016 8.61136 13.0986 8.58093 13.1848 8.56739C13.7847 8.46864 14.3919 8.4194 15 8.42017C17.878 8.42017 20.4928 9.51075 22.563 11.5743C24.1167 13.123 24.8156 14.6684 24.8445 14.7334C24.882 14.8175 24.9014 14.9086 24.9014 15.0007C24.9014 15.0928 24.882 15.1838 24.8445 15.268H24.842Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M8.43454 7.0011C8.53483 7.00648 8.63318 7.03187 8.72365 7.07537C8.81389 7.1188 8.89497 7.17911 8.96152 7.25381H8.96055L22.1611 21.7276L22.252 21.8472C22.2781 21.8896 22.3004 21.9345 22.3177 21.9813C22.3525 22.0752 22.3683 22.1755 22.3641 22.2755C22.3599 22.3754 22.3351 22.4733 22.2926 22.5639C22.25 22.6546 22.19 22.7358 22.1156 22.8031C22.0414 22.8703 21.9549 22.9229 21.8604 22.9565C21.7657 22.99 21.6648 23.0043 21.5645 22.9989C21.4643 22.9935 21.3658 22.9681 21.2754 22.9246C21.1852 22.8812 21.104 22.8209 21.0375 22.7462V22.7452L19.27 20.8065C17.9227 21.3887 16.469 21.6867 15 21.6784C12.0953 21.6784 9.45545 20.5773 7.36705 18.4964C5.8038 16.9382 5.09826 15.3839 5.06478 15.3086L5.03674 15.2344C5.01225 15.1591 5.00001 15.0804 5 15.001C5 14.8951 5.02163 14.79 5.06478 14.6933C5.12474 14.5582 6.39611 11.7739 9.34539 9.92461L7.83698 8.27139V8.27043C7.7692 8.19746 7.71588 8.11198 7.6813 8.01869C7.64654 7.92481 7.6307 7.82448 7.63489 7.7245C7.63912 7.62459 7.66395 7.52669 7.70644 7.43611C7.74897 7.34545 7.80912 7.26422 7.88339 7.1969C7.95773 7.12956 8.04499 7.07711 8.13962 7.04354C8.23415 7.01006 8.33437 6.99573 8.43454 7.0011ZM11.8933 12.5626C11.3183 13.2967 11.0228 14.2102 11.0578 15.1408C11.0929 16.0713 11.4562 16.9597 12.0847 17.6486C12.7133 18.3376 13.5663 18.7835 14.4924 18.9064C15.4185 19.0293 16.359 18.821 17.1466 18.3199L18.3611 19.6529C17.2885 20.063 16.1487 20.2698 15 20.2635C12.4603 20.2635 10.2413 19.3434 8.40456 17.529C7.65082 16.7822 7.01008 15.9302 6.50164 15C6.88871 14.2769 8.12345 12.2534 10.408 10.9383L11.8933 12.5626ZM10.3897 11.0647C8.21976 12.339 7.02085 14.2532 6.61477 14.999C7.11443 15.9026 7.73995 16.7311 8.47418 17.4586C10.2927 19.255 12.4869 20.1651 15 20.1651H15.001C16.0886 20.1711 17.1671 19.9804 18.188 19.6086L17.1282 18.4463C16.3358 18.928 15.4015 19.126 14.4798 19.0038C13.5306 18.8778 12.6565 18.4213 12.0122 17.7152C11.3679 17.009 10.9942 16.0986 10.9582 15.1447C10.9233 14.2183 11.2094 13.3092 11.7656 12.5684L10.3897 11.0647ZM24.8869 14.864L24.8443 14.7338C24.8172 14.6729 24.2017 13.3104 22.8447 11.8643L22.5633 11.574C20.6226 9.63947 18.2028 8.56085 15.5366 8.43344L15 8.41993C14.392 8.41916 13.785 8.46879 13.1851 8.56751L13.0584 8.6003C13.0178 8.61527 12.9784 8.6345 12.9414 8.65721L12.8379 8.73534C12.8062 8.76479 12.7774 8.79749 12.7519 8.83275C12.7009 8.90328 12.6644 8.98346 12.6446 9.0681L12.6281 9.19638C12.6267 9.23956 12.6297 9.28281 12.6368 9.32563C12.6512 9.41136 12.6823 9.49412 12.7287 9.56773C12.775 9.64118 12.8355 9.70478 12.9066 9.75485C12.9778 9.805 13.0584 9.84102 13.1435 9.85998C13.2286 9.87895 13.3168 9.8809 13.4026 9.86577C13.9307 9.77919 14.4649 9.73588 15 9.73652L15.4728 9.74713C17.8158 9.85497 19.8736 10.7697 21.5954 12.4691C22.3509 13.2161 22.9936 14.0688 23.5032 15C22.9083 16.0859 22.132 17.0628 21.2087 17.8897C21.1425 17.9469 21.0889 18.017 21.0501 18.0952L21.0037 18.2167C20.9923 18.2588 20.9852 18.3023 20.9824 18.346L20.9872 18.4762C20.9931 18.5191 21.003 18.5615 21.0172 18.6025C21.0459 18.685 21.0913 18.7613 21.1497 18.8263C21.208 18.8912 21.2786 18.9441 21.3576 18.9816C21.4366 19.0191 21.5225 19.0401 21.6099 19.0443C21.6536 19.0464 21.6975 19.0441 21.7405 19.0375L21.8671 19.0057C21.9494 18.9758 22.0252 18.9299 22.0895 18.8707C23.9716 17.1904 24.8077 15.3454 24.8424 15.2681H24.8443L24.8869 15.1379L24.9014 15.001C24.9014 14.9548 24.8964 14.9089 24.8869 14.864ZM16.2309 17.3284C15.7779 17.5659 15.2669 17.6661 14.7602 17.6197L14.5436 17.5907C13.9675 17.4895 13.4412 17.2005 13.0478 16.769C12.7036 16.3915 12.478 15.9238 12.3961 15.4234L12.3699 15.2064C12.3239 14.6252 12.4721 14.0448 12.7925 13.5571L16.2309 17.3284ZM12.8089 13.721C12.5474 14.1667 12.4276 14.6819 12.4686 15.1987C12.513 15.7581 12.7426 16.2871 13.1213 16.7024C13.5 17.1178 14.0064 17.3969 14.561 17.4943C15.0727 17.5841 15.5978 17.513 16.0675 17.2966L12.8089 13.721ZM15.761 11.0251C16.623 11.1917 17.4086 11.6315 17.9994 12.279C18.5903 12.9268 18.9552 13.7485 19.0398 14.62C19.0586 14.8198 18.9972 15.0191 18.8687 15.1736C18.7403 15.3279 18.5555 15.425 18.3553 15.4437H18.2847V15.4446C18.095 15.4455 17.9117 15.3749 17.7712 15.2479C17.6659 15.1526 17.5904 15.0304 17.5517 14.8958L17.5256 14.7579C17.4721 14.2136 17.2431 13.7013 16.8739 13.2966C16.5048 12.8921 16.0151 12.6162 15.4767 12.5115V12.5125C15.2791 12.4749 15.1045 12.36 14.9913 12.1942C14.8782 12.0282 14.8357 11.8241 14.8733 11.627C14.9111 11.4298 15.0259 11.2556 15.1924 11.1428C15.3589 11.0301 15.5633 10.9876 15.761 11.0251ZM15.7426 11.1226C15.5706 11.0898 15.3924 11.1257 15.2475 11.2238C15.1027 11.3219 15.0028 11.4739 14.97 11.6453L14.9584 11.7746C14.9596 11.9034 14.9989 12.0301 15.0725 12.1382C15.1709 12.2826 15.3231 12.3823 15.4951 12.415C16.0546 12.5237 16.5639 12.8097 16.9474 13.2301C17.3309 13.6505 17.5687 14.1828 17.6243 14.7483C17.6395 14.912 17.7158 15.0641 17.8379 15.1746C17.96 15.2849 18.1189 15.3459 18.2837 15.3453C18.3042 15.3466 18.3251 15.3466 18.3456 15.3453C18.5199 15.329 18.6806 15.2443 18.7923 15.11C18.904 14.9756 18.9575 14.8024 18.9412 14.6287C18.8689 13.8848 18.5874 13.1788 18.1319 12.5906L17.9269 12.3456C17.4224 11.7925 16.7722 11.3956 16.054 11.1959L15.7426 11.1226ZM5.11313 15.1379C5.12267 15.1826 5.13698 15.2262 5.15568 15.2681C5.18496 15.334 5.8837 16.8779 7.43667 18.426C9.50688 20.4888 12.122 21.5801 15 21.5801C16.479 21.5885 17.943 21.2844 19.2961 20.6888L21.112 22.6806C21.1699 22.7455 21.2404 22.7981 21.3189 22.8359C21.3581 22.8547 21.3988 22.8705 21.4407 22.8812L21.5703 22.9005C21.6137 22.9028 21.6571 22.9009 21.6999 22.8947L21.8265 22.8639C21.8676 22.8493 21.9073 22.8301 21.9445 22.8079L22.0489 22.7308C22.0812 22.7015 22.1111 22.6691 22.1369 22.6343L22.2036 22.5224C22.2406 22.4435 22.2609 22.3577 22.2646 22.2707C22.2663 22.2274 22.2645 22.184 22.2578 22.1414L22.2249 22.0151C22.1946 21.9335 22.148 21.8588 22.0886 21.7952L8.88803 7.3194C8.85896 7.28674 8.82612 7.2578 8.79134 7.23162L8.68014 7.16411C8.6409 7.14526 8.60028 7.12954 8.55831 7.11877L8.42874 7.09948C8.34175 7.09488 8.25458 7.10705 8.1725 7.13614L8.05453 7.19208C8.01736 7.21428 7.98235 7.24007 7.95011 7.26924L7.86212 7.36569C7.83631 7.40058 7.81391 7.43812 7.7954 7.47758C7.7584 7.55644 7.73813 7.64234 7.73448 7.72932L7.74125 7.85857C7.748 7.90146 7.75896 7.94401 7.77412 7.98493C7.80439 8.0665 7.85102 8.14117 7.91046 8.20484L9.49816 9.94583C6.50135 11.7791 5.21261 14.6055 5.15568 14.7338L5.11313 14.864C5.10356 14.9089 5.09863 14.9548 5.09863 15.001L5.11313 15.1379ZM25 15.001C25 15.1068 24.9784 15.2119 24.9352 15.3086L24.9091 15.3665H24.9033C24.7418 15.707 23.8902 17.3951 22.1553 18.944C22.0816 19.0116 21.9951 19.0641 21.901 19.0983C21.8064 19.1326 21.7056 19.1484 21.6051 19.1436C21.5046 19.1389 21.4059 19.1134 21.315 19.0703C21.2243 19.0273 21.1432 18.9665 21.0762 18.8919C21.0091 18.8172 20.9574 18.73 20.9244 18.6353C20.8914 18.5405 20.8774 18.4394 20.8838 18.3392C20.8902 18.2392 20.9166 18.1416 20.9611 18.0518C21.0058 17.9619 21.0679 17.8812 21.1439 17.8155C22.045 17.0082 22.8033 16.0559 23.3891 14.999C22.9521 14.21 22.4182 13.479 21.8004 12.8221L21.5258 12.5395C19.7073 10.7447 17.5131 9.83491 15 9.83491C14.4704 9.83427 13.9416 9.87753 13.4191 9.96319L13.4181 9.96223C13.3199 9.97932 13.2195 9.97714 13.1222 9.95547C13.0244 9.93367 12.9314 9.89352 12.8495 9.83587C12.7676 9.7782 12.6979 9.70447 12.6446 9.61982C12.5913 9.53521 12.5557 9.44056 12.5392 9.34203C12.5227 9.24361 12.5261 9.14309 12.5488 9.04592C12.5716 8.94856 12.613 8.85599 12.6716 8.77488C12.7302 8.69382 12.8048 8.62565 12.8902 8.57329C12.9754 8.52104 13.0698 8.48572 13.1686 8.47009L13.6241 8.4045C14.0804 8.34855 14.5399 8.32097 15 8.32155L15.5415 8.33409C18.2326 8.46271 20.6751 9.55294 22.633 11.5045C24.1979 13.0644 24.9032 14.6212 24.9352 14.6933C24.9784 14.79 25 14.895 25 15.001Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON IMPRESI\u00D3N -->\r\n<div *ngIf=\"icon == 'print'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.5 19H13C12.724 19 12.5 19.2235 12.5 19.5C12.5 19.7765 12.724 20 13 20H15.5C15.776 20 16 19.7765 16 19.5C16 19.2235 15.776 19 15.5 19Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M17 17H13C12.724 17 12.5 17.2235 12.5 17.5C12.5 17.7765 12.724 18 13 18H17C17.276 18 17.5 17.7765 17.5 17.5C17.5 17.2235 17.276 17 17 17Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.2857 11H20.1429V8.71429C20.1429 7.76914 19.3737 7 18.4286 7H11.5714C10.6263 7 9.85714 7.76914 9.85714 8.71429V11H8.71429C7.76914 11 7 11.7691 7 12.7143V17.8571C7 19.1177 8.02514 20.1429 9.28571 20.1429H9.85714V21.2857C9.85714 22.2309 10.6263 23 11.5714 23H18.4286C19.3737 23 20.1429 22.2309 20.1429 21.2857V20.1429H20.7143C21.9749 20.1429 23 19.1177 23 17.8571V12.7143C23 11.7691 22.2309 11 21.2857 11ZM11 8.71429C11 8.39886 11.2566 8.14286 11.5714 8.14286H18.4286C18.7434 8.14286 19 8.39886 19 8.71429V11H11V8.71429ZM19 21.2857C19 21.6011 18.7434 21.8571 18.4286 21.8571H11.5714C11.2566 21.8571 11 21.6011 11 21.2857V16.7143C11 16.3989 11.2566 16.1429 11.5714 16.1429H18.4286C18.7434 16.1429 19 16.3989 19 16.7143V21.2857ZM21.8571 17.8571C21.8571 18.4874 21.3446 19 20.7143 19H20.1429V16.7143C20.1429 15.7691 19.3737 15 18.4286 15H11.5714C10.6263 15 9.85714 15.7691 9.85714 16.7143V19H9.28571C8.65543 19 8.14286 18.4874 8.14286 17.8571V12.7143C8.14286 12.3989 8.39943 12.1429 8.71429 12.1429H21.2857C21.6006 12.1429 21.8571 12.3989 21.8571 12.7143V17.8571Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.5 19H13C12.724 19 12.5 19.2235 12.5 19.5C12.5 19.7765 12.724 20 13 20H15.5C15.776 20 16 19.7765 16 19.5C16 19.2235 15.776 19 15.5 19Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M17 17H13C12.724 17 12.5 17.2235 12.5 17.5C12.5 17.7765 12.724 18 13 18H17C17.276 18 17.5 17.7765 17.5 17.5C17.5 17.2235 17.276 17 17 17Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.2857 11H20.1429V8.71429C20.1429 7.76914 19.3737 7 18.4286 7H11.5714C10.6263 7 9.85714 7.76914 9.85714 8.71429V11H8.71429C7.76914 11 7 11.7691 7 12.7143V17.8571C7 19.1177 8.02514 20.1429 9.28571 20.1429H9.85714V21.2857C9.85714 22.2309 10.6263 23 11.5714 23H18.4286C19.3737 23 20.1429 22.2309 20.1429 21.2857V20.1429H20.7143C21.9749 20.1429 23 19.1177 23 17.8571V12.7143C23 11.7691 22.2309 11 21.2857 11ZM11 8.71429C11 8.39886 11.2566 8.14286 11.5714 8.14286H18.4286C18.7434 8.14286 19 8.39886 19 8.71429V11H11V8.71429ZM19 21.2857C19 21.6011 18.7434 21.8571 18.4286 21.8571H11.5714C11.2566 21.8571 11 21.6011 11 21.2857V16.7143C11 16.3989 11.2566 16.1429 11.5714 16.1429H18.4286C18.7434 16.1429 19 16.3989 19 16.7143V21.2857ZM21.8571 17.8571C21.8571 18.4874 21.3446 19 20.7143 19H20.1429V16.7143C20.1429 15.7691 19.3737 15 18.4286 15H11.5714C10.6263 15 9.85714 15.7691 9.85714 16.7143V19H9.28571C8.65543 19 8.14286 18.4874 8.14286 17.8571V12.7143C8.14286 12.3989 8.39943 12.1429 8.71429 12.1429H21.2857C21.6006 12.1429 21.8571 12.3989 21.8571 12.7143V17.8571Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON ENVIAR -->\r\n<div *ngIf=\"icon == 'send'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.9741 8.02548C22.1201 7.98864 22.2738 7.9918 22.4182 8.0346C22.5626 8.0774 22.692 8.15819 22.7924 8.26809C22.8927 8.37798 22.96 8.51272 22.9869 8.65749C23.0138 8.80226 22.9992 8.95145 22.9447 9.08867L18.0217 21.4885C17.973 21.6113 17.8939 21.7205 17.7916 21.8064C17.6892 21.8923 17.5667 21.9522 17.4349 21.9808C17.3031 22.0095 17.166 22.006 17.0359 21.9706C16.9059 21.9352 16.7867 21.8691 16.6892 21.7781L13.9142 19.1901L12.9271 20.1517C12.4053 20.6605 11.5126 20.3005 11.5126 19.5805V16.9501L7.2533 12.9782C7.14762 12.8796 7.07088 12.7553 7.03104 12.6181C6.99119 12.4809 6.98968 12.3358 7.02667 12.1979C7.06366 12.0599 7.13779 11.9341 7.2414 11.8334C7.34501 11.7328 7.47432 11.661 7.61596 11.6254L21.9741 8.02548ZM20.2395 11.4694L13.6771 16.755L16.9345 19.7933L20.2395 11.4694ZM18.9447 10.4374L9.4539 12.8158L12.4832 15.6398L18.9447 10.4358V10.4374Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.9741 8.02548C22.1201 7.98864 22.2738 7.9918 22.4182 8.0346C22.5626 8.0774 22.692 8.15819 22.7924 8.26809C22.8927 8.37798 22.96 8.51272 22.9869 8.65749C23.0138 8.80226 22.9992 8.95145 22.9447 9.08867L18.0217 21.4885C17.973 21.6113 17.8939 21.7205 17.7916 21.8064C17.6892 21.8923 17.5667 21.9522 17.4349 21.9808C17.3031 22.0095 17.166 22.006 17.0359 21.9706C16.9059 21.9352 16.7867 21.8691 16.6892 21.7781L13.9142 19.1901L12.9271 20.1517C12.4053 20.6605 11.5126 20.3005 11.5126 19.5805V16.9501L7.2533 12.9782C7.14762 12.8796 7.07088 12.7553 7.03104 12.6181C6.99119 12.4809 6.98968 12.3358 7.02667 12.1979C7.06366 12.0599 7.13779 11.9341 7.2414 11.8334C7.34501 11.7328 7.47432 11.661 7.61596 11.6254L21.9741 8.02548ZM20.2395 11.4694L13.6771 16.755L16.9345 19.7933L20.2395 11.4694ZM18.9447 10.4374L9.4539 12.8158L12.4832 15.6398L18.9447 10.4358V10.4374Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON HUELLA DACTILAR -->\r\n<div *ngIf=\"icon == 'fingerprint'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.4134 9.12307C19.3527 9.12307 19.292 9.10746 19.2388 9.07624C17.7817 8.30358 16.5219 7.97578 15.0116 7.97578C13.5089 7.97578 12.0821 8.3426 10.7844 9.07624C10.6022 9.1777 10.3746 9.10746 10.2683 8.92015C10.221 8.82887 10.2104 8.72214 10.2387 8.62289C10.2671 8.52365 10.3322 8.43982 10.4201 8.38943C11.8317 7.60116 13.3799 7.19531 15.0116 7.19531C16.6281 7.19531 18.0397 7.56213 19.5879 8.38163C19.7777 8.48309 19.846 8.71723 19.7473 8.90454C19.7173 8.9696 19.67 9.02463 19.611 9.06329C19.5519 9.10195 19.4834 9.12267 19.4134 9.12307ZM8.55313 13.2205C8.48318 13.2212 8.41441 13.2019 8.35445 13.1649C8.2945 13.1278 8.2457 13.0744 8.21347 13.0105C8.18124 12.9466 8.16685 12.8748 8.17188 12.8031C8.17691 12.7313 8.20117 12.6624 8.24197 12.604C8.99331 11.5113 9.94956 10.6528 11.088 10.0518C13.471 8.78747 16.5219 8.77967 18.9125 10.044C20.0509 10.645 21.0071 11.4957 21.7585 12.5806C21.7876 12.6225 21.8083 12.67 21.8195 12.7202C21.8307 12.7704 21.8321 12.8224 21.8237 12.8732C21.8152 12.924 21.797 12.9726 21.7702 13.0161C21.7434 13.0597 21.7084 13.0973 21.6674 13.1269C21.4929 13.2518 21.2576 13.2127 21.1362 13.0332C20.4713 12.066 19.5885 11.2787 18.5634 10.7386C16.3853 9.59135 13.6 9.59135 11.4295 10.7464C10.3973 11.2928 9.53215 12.0732 8.84912 13.0566C8.7884 13.1659 8.67456 13.2205 8.55313 13.2205ZM13.2964 22.6408C13.2467 22.6414 13.1973 22.6313 13.1516 22.6112C13.1058 22.591 13.0647 22.5612 13.0308 22.5237C12.3705 21.8447 12.0138 21.4077 11.5054 20.4633C10.9817 19.5033 10.7085 18.3326 10.7085 17.0761C10.7085 14.7581 12.6362 12.8693 15.004 12.8693C17.3719 12.8693 19.2996 14.7581 19.2996 17.0761C19.2996 17.2946 19.1326 17.4663 18.9201 17.4663C18.7076 17.4663 18.5406 17.2946 18.5406 17.0761C18.5406 15.1873 16.9545 13.6498 15.004 13.6498C13.0536 13.6498 11.4674 15.1873 11.4674 17.0761C11.4674 18.1999 11.7103 19.238 12.1732 20.0809C12.6589 20.9784 12.9929 21.3608 13.5772 21.9696C13.7214 22.1257 13.7214 22.3676 13.5772 22.5237C13.4938 22.6018 13.3951 22.6408 13.2964 22.6408ZM18.7379 21.1969C17.8348 21.1969 17.0379 20.9628 16.3853 20.5023C15.2545 19.714 14.579 18.4341 14.579 17.0761C14.579 16.8575 14.746 16.6858 14.9585 16.6858C15.171 16.6858 15.3379 16.8575 15.3379 17.0761C15.3379 18.1765 15.8844 19.2145 16.8103 19.8545C17.3491 20.2291 17.979 20.4087 18.7379 20.4087C18.9201 20.4087 19.2237 20.3852 19.5272 20.3306C19.7321 20.2916 19.9295 20.4321 19.9674 20.6506C20.0054 20.8613 19.8687 21.0642 19.6562 21.1033C19.2237 21.1891 18.8442 21.1969 18.7379 21.1969ZM17.2125 22.8047C17.1821 22.8047 17.1442 22.7969 17.1138 22.7891C15.9071 22.4457 15.1179 21.9852 14.2906 21.1501C13.7665 20.6177 13.3509 19.9832 13.0681 19.2837C12.7854 18.5841 12.6411 17.8336 12.6438 17.0761C12.6438 15.8117 13.6911 14.7815 14.9813 14.7815C16.2714 14.7815 17.3188 15.8117 17.3188 17.0761C17.3188 17.9112 18.0246 18.5902 18.8973 18.5902C19.7701 18.5902 20.4759 17.9112 20.4759 17.0761C20.4759 14.1337 18.0094 11.7454 14.9737 11.7454C12.8183 11.7454 10.8451 12.9786 9.95715 14.8907C9.66117 15.5229 9.50938 16.2644 9.50938 17.0761C9.50938 17.6848 9.56251 18.6448 10.0179 19.8935C10.0938 20.0965 9.9951 20.3228 9.79778 20.393C9.60045 20.4711 9.38037 20.3618 9.31206 20.1667C8.94571 19.1798 8.75795 18.1324 8.75804 17.0761C8.75804 16.1395 8.9326 15.2888 9.27412 14.5473C10.2835 12.3698 12.5223 10.9572 14.9737 10.9572C18.4268 10.9572 21.2348 13.6966 21.2348 17.0682C21.2348 18.3326 20.1875 19.3628 18.8973 19.3628C17.6071 19.3628 16.5598 18.3326 16.5598 17.0682C16.5598 16.2331 15.854 15.5541 14.9813 15.5541C14.1085 15.5541 13.4027 16.2331 13.4027 17.0682C13.4027 18.4029 13.9036 19.6516 14.8219 20.5882C15.5429 21.3218 16.2335 21.7276 17.3036 22.032C17.5085 22.0867 17.6223 22.3052 17.5692 22.5081C17.5312 22.6876 17.3719 22.8047 17.2125 22.8047Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.3382 17.076C15.3382 16.8575 15.1706 16.6854 14.9581 16.6854C14.7458 16.6856 14.579 16.8576 14.5789 17.076C14.5789 18.4339 15.2546 19.7137 16.3853 20.502C17.0379 20.9624 17.8346 21.1964 18.7376 21.1965C18.8438 21.1965 19.2235 21.1889 19.656 21.1031C19.8685 21.0641 20.0055 20.8613 19.9675 20.6506C19.9296 20.4321 19.7322 20.2915 19.5274 20.3305L19.3016 20.3657C19.0795 20.3954 18.8742 20.4086 18.7376 20.4086V20.2133C18.9069 20.2133 19.1986 20.1915 19.4912 20.139L19.6093 20.1285C19.8801 20.1345 20.1116 20.3387 20.16 20.6172H20.159C20.2149 20.9311 20.0113 21.2368 19.6912 21.2956L19.6903 21.2946C19.2422 21.3832 18.8505 21.3918 18.7376 21.3918C17.8002 21.3917 16.9627 21.1487 16.2729 20.662V20.6611C15.0915 19.837 14.3836 18.4986 14.3836 17.076C14.3837 16.755 14.633 16.4912 14.9581 16.491C15.2835 16.491 15.5335 16.7549 15.5336 17.076C15.5336 18.0467 15.9848 18.9678 16.7616 19.5769L16.9217 19.6941C17.4225 20.0422 18.0117 20.2132 18.7376 20.2133V20.4086C17.9788 20.4085 17.3489 20.2287 16.8102 19.8541C15.9424 19.2542 15.4074 18.3047 15.344 17.2818L15.3382 17.076ZM16.3643 17.0684C16.3643 16.3484 15.7536 15.7488 14.981 15.7488C14.2085 15.749 13.5976 16.3485 13.5976 17.0684C13.5977 18.3532 14.0795 19.5524 14.961 20.4515L15.2211 20.702C15.8273 21.2545 16.446 21.5847 17.3542 21.8434L17.4657 21.8863C17.7092 22.0107 17.8262 22.2979 17.7582 22.5579L17.7572 22.557C17.6965 22.8236 17.4593 23 17.2122 23C17.1562 23 17.0987 22.9866 17.0655 22.9781L17.0608 22.9771C15.8237 22.6251 15.0043 22.1473 14.1521 21.287H14.1512C13.609 20.7362 13.1792 20.0798 12.8869 19.3568C12.5946 18.6337 12.4459 17.8577 12.4486 17.075C12.4492 15.7002 13.5868 14.5867 14.981 14.5865C16.3756 14.5865 17.5142 15.7006 17.5143 17.076C17.5143 17.7959 18.125 18.3955 18.8976 18.3955V18.5899L18.7357 18.5822C17.992 18.5097 17.4018 17.9423 17.3266 17.2303L17.319 17.076C17.3189 15.8907 16.3982 14.9111 15.2201 14.7933L14.981 14.7818C13.691 14.782 12.644 15.8118 12.644 17.076C12.6413 17.8334 12.7852 18.584 13.0679 19.2834C13.3506 19.9828 13.7663 20.6175 14.2903 21.1498C15.1175 21.9849 15.9074 22.446 17.1141 22.7894C17.1443 22.7972 17.182 22.8046 17.2122 22.8047C17.3716 22.8047 17.5315 22.6878 17.5695 22.5084C17.616 22.3308 17.5345 22.1409 17.3761 22.0597L17.3037 22.032C16.2336 21.7277 15.5429 21.3214 14.8219 20.5877C13.961 19.7096 13.4673 18.5573 13.409 17.317L13.4023 17.0684C13.4023 16.2334 14.1083 15.5546 14.981 15.5545L15.1429 15.5621C15.9396 15.6398 16.5596 16.2855 16.5596 17.0684L16.572 17.3027C16.684 18.3805 17.559 19.2411 18.6585 19.3511L18.8976 19.3625C20.1069 19.3624 21.1033 18.4575 21.2232 17.3027L21.2346 17.0684C21.2346 13.8021 18.5995 11.1291 15.2954 10.9652L14.9734 10.9576C12.5221 10.9577 10.2835 12.37 9.27418 14.5475L9.15413 14.8304C8.89191 15.5028 8.75781 16.2565 8.7578 17.076C8.7577 18.1323 8.94594 19.1797 9.31228 20.1666C9.38059 20.3617 9.60085 20.4714 9.79817 20.3934C9.9707 20.3318 10.0675 20.1505 10.0383 19.9703L10.0183 19.8932C9.61991 18.8007 9.52876 17.9294 9.51236 17.3208L9.5095 17.076C9.50951 16.3656 9.62596 15.7091 9.85343 15.1324L9.95728 14.8904C10.8452 12.9785 12.8182 11.7456 14.9734 11.7455L15.2563 11.7522C18.161 11.8949 20.4762 14.2255 20.4763 17.076L20.4677 17.2303C20.3871 17.9931 19.7158 18.5897 18.8976 18.5899V18.3955C19.6701 18.3954 20.281 17.7958 20.281 17.076C20.2809 14.2472 17.9072 11.9408 14.9734 11.9408C12.8915 11.9409 10.9893 13.1325 10.1345 14.9733H10.1335C9.85152 15.5757 9.70481 16.2882 9.70481 17.076C9.70481 17.6697 9.75597 18.6055 10.2012 19.8265H10.2002C10.31 20.1217 10.1717 20.4618 9.86867 20.5734L9.86963 20.5744H9.86772C9.86614 20.575 9.86455 20.5767 9.86296 20.5772L9.86201 20.5763C9.55839 20.6917 9.22969 20.5234 9.12746 20.2314V20.2304C8.75404 19.223 8.56239 18.1539 8.56249 17.076C8.5625 16.1152 8.74214 15.2359 9.09697 14.4655L9.19891 14.2569C10.2841 12.1278 12.527 10.7624 14.9734 10.7623C18.5297 10.7623 21.4299 13.5845 21.4299 17.0684C21.4299 18.4436 20.2921 19.5577 18.8976 19.5578C17.503 19.5578 16.3644 18.4437 16.3643 17.0684ZM19.2997 17.076C19.2996 14.8305 17.4906 12.9875 15.2249 12.8745L15.0038 12.8697C12.6361 12.8698 10.709 14.7581 10.709 17.076L10.7214 17.5428C10.7808 18.6218 11.0473 19.6229 11.5054 20.4629C12.0139 21.4072 12.3705 21.8447 13.0308 22.5236C13.0646 22.5611 13.106 22.5911 13.1518 22.6113C13.1974 22.6314 13.2469 22.6414 13.2966 22.6408C13.3705 22.6408 13.4444 22.6189 13.5119 22.5751L13.5776 22.5236C13.7036 22.3871 13.7189 22.185 13.6243 22.032L13.5776 21.9692C13.0662 21.4364 12.746 21.0774 12.3486 20.3943L12.1733 20.0809C11.7104 19.238 11.4673 18.1999 11.4673 17.076C11.4674 15.1873 13.0535 13.6501 15.0038 13.65L15.1858 13.6538C17.0521 13.7458 18.5403 15.2463 18.5403 17.076C18.5403 17.267 18.6683 17.422 18.8424 17.458L18.9205 17.4666C19.1061 17.4664 19.257 17.3349 19.292 17.156L19.2997 17.076ZM11.2273 9.76194C13.6307 8.5858 16.6319 8.61743 19.0034 9.8715L19.2206 9.98964C20.2922 10.597 21.198 11.4289 21.9187 12.4696C21.9623 12.5324 21.9935 12.6036 22.0102 12.6782C22.0267 12.7527 22.0284 12.8297 22.0159 12.905C22.0033 12.9804 21.9769 13.0533 21.9368 13.1184C21.8966 13.1836 21.8436 13.2403 21.7815 13.2851H21.7805C21.5189 13.4723 21.1599 13.4147 20.9755 13.1431V13.1441C20.3283 12.2026 19.4695 11.436 18.4727 10.9109C16.3514 9.79356 13.6338 9.79399 11.5207 10.9185C10.5175 11.4496 9.67549 12.2088 9.00932 13.1679C8.90634 13.338 8.72651 13.4156 8.55297 13.4156V13.4147C8.44656 13.4153 8.34239 13.3868 8.25191 13.3308C8.16089 13.2746 8.08763 13.1938 8.03945 13.0984C7.99132 13.003 7.97009 12.8962 7.97752 12.7897C7.985 12.6831 8.02112 12.5801 8.08232 12.4924C8.85077 11.3753 9.82989 10.4951 10.9967 9.87912L11.2273 9.76194ZM18.9129 10.0439C16.5223 8.77963 13.4712 8.78734 11.0882 10.0516L10.8767 10.1678C9.83097 10.7612 8.9467 11.5797 8.24238 12.6039L8.19379 12.6982C8.18193 12.7318 8.17441 12.767 8.17188 12.803C8.16685 12.8748 8.18157 12.9469 8.2138 13.0107C8.24603 13.0744 8.29494 13.128 8.3548 13.1651C8.41462 13.202 8.4832 13.2209 8.55297 13.2203C8.67439 13.2203 8.78855 13.1657 8.84926 13.0564C9.53226 12.0732 10.3972 11.2924 11.4292 10.7461C13.5997 9.59105 16.3851 9.59131 18.5632 10.7385C19.5883 11.2785 20.4716 12.0663 21.1365 13.0336C21.2428 13.1904 21.436 13.2397 21.5995 13.166L21.6672 13.127C21.6878 13.1121 21.7071 13.0951 21.7243 13.0765L21.7701 13.0164C21.7834 12.9948 21.7945 12.9716 21.8034 12.9478L21.8234 12.8735C21.8277 12.8481 21.8298 12.822 21.8291 12.7964L21.8196 12.7201C21.814 12.6949 21.8061 12.6703 21.7958 12.6468L21.7586 12.5801C21.1013 11.631 20.2869 10.8614 19.3311 10.2812L18.9129 10.0439ZM15.0115 7C16.6624 7 18.1052 7.3761 19.6788 8.209L19.6798 8.20996C19.9628 8.3613 20.0636 8.70649 19.9227 8.98547L19.9246 8.98642C19.8796 9.08414 19.808 9.16751 19.7179 9.22651C19.6278 9.28549 19.5227 9.31728 19.4149 9.31797H19.413C19.322 9.31791 19.2298 9.29524 19.1472 9.24842C17.7157 8.48939 16.4869 8.17089 15.0115 8.17089C13.5416 8.17092 12.1481 8.5299 10.8805 9.24652H10.8795C10.5967 9.40403 10.2534 9.28936 10.0983 9.01596L10.0954 9.01024C10.0251 8.87454 10.0096 8.71607 10.0516 8.56913C10.0937 8.4222 10.1904 8.29661 10.3231 8.22044L10.325 8.21948C11.7656 7.41504 13.3465 7.00003 15.0115 7ZM15.0115 7.19531C13.3799 7.19534 11.8318 7.60093 10.4203 8.38907C10.3325 8.43942 10.2668 8.52335 10.2383 8.62248C10.21 8.72154 10.2208 8.82857 10.2679 8.91973C10.3741 9.10704 10.6021 9.17742 10.7842 9.07598C12.082 8.34237 13.5088 7.97561 15.0115 7.97559C16.5216 7.97559 17.7816 8.30341 19.2387 9.07598C19.2917 9.10713 19.3524 9.1226 19.413 9.12266C19.4656 9.12236 19.518 9.11153 19.5655 9.08932L19.6112 9.06359C19.6703 9.02493 19.7174 8.96955 19.7474 8.90449C19.846 8.71726 19.7779 8.48295 19.5883 8.38145C18.0401 7.56195 16.628 7.19531 15.0115 7.19531ZM19.495 17.076C19.495 17.397 19.2457 17.6608 18.9205 17.661C18.5951 17.661 18.346 17.3971 18.346 17.076C18.3459 15.3008 16.8523 13.8453 15.0038 13.8453C13.1554 13.8454 11.6627 15.3009 11.6626 17.076C11.6626 18.0356 11.8444 18.9245 12.1876 19.6741L12.3448 19.9884C12.7008 20.6462 12.9711 21.0175 13.3271 21.4156L13.7177 21.8348L13.7205 21.8367C13.9338 22.0676 13.9338 22.4252 13.7205 22.6561L13.7158 22.6618L13.71 22.6665C13.5938 22.7751 13.449 22.8349 13.2975 22.8352L13.2985 22.8361C13.2208 22.837 13.1437 22.8208 13.0727 22.7894C13.0036 22.7589 12.9419 22.7143 12.8907 22.6589C12.2207 21.9699 11.8524 21.5182 11.334 20.5553V20.5563C10.7924 19.5634 10.5137 18.3597 10.5137 17.076C10.5137 14.6465 12.5322 12.6745 15.0038 12.6744C17.4756 12.6744 19.4949 14.6465 19.495 17.076Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.4134 9.12307C19.3527 9.12307 19.292 9.10746 19.2388 9.07624C17.7817 8.30358 16.5219 7.97578 15.0116 7.97578C13.5089 7.97578 12.0821 8.3426 10.7844 9.07624C10.6022 9.1777 10.3746 9.10746 10.2683 8.92015C10.221 8.82887 10.2104 8.72214 10.2387 8.62289C10.2671 8.52365 10.3322 8.43982 10.4201 8.38943C11.8317 7.60116 13.3799 7.19531 15.0116 7.19531C16.6281 7.19531 18.0397 7.56213 19.5879 8.38163C19.7777 8.48309 19.846 8.71723 19.7473 8.90454C19.7173 8.9696 19.67 9.02463 19.611 9.06329C19.5519 9.10195 19.4834 9.12267 19.4134 9.12307ZM8.55313 13.2205C8.48318 13.2212 8.41441 13.2019 8.35445 13.1649C8.2945 13.1278 8.2457 13.0744 8.21347 13.0105C8.18124 12.9466 8.16685 12.8748 8.17188 12.8031C8.17691 12.7313 8.20117 12.6624 8.24197 12.604C8.99331 11.5113 9.94956 10.6528 11.088 10.0518C13.471 8.78747 16.5219 8.77967 18.9125 10.044C20.0509 10.645 21.0071 11.4957 21.7585 12.5806C21.7876 12.6225 21.8083 12.67 21.8195 12.7202C21.8307 12.7704 21.8321 12.8224 21.8237 12.8732C21.8152 12.924 21.797 12.9726 21.7702 13.0161C21.7434 13.0597 21.7084 13.0973 21.6674 13.1269C21.4929 13.2518 21.2576 13.2127 21.1362 13.0332C20.4713 12.066 19.5885 11.2787 18.5634 10.7386C16.3853 9.59135 13.6 9.59135 11.4295 10.7464C10.3973 11.2928 9.53215 12.0732 8.84912 13.0566C8.7884 13.1659 8.67456 13.2205 8.55313 13.2205ZM13.2964 22.6408C13.2467 22.6414 13.1973 22.6313 13.1516 22.6112C13.1058 22.591 13.0647 22.5612 13.0308 22.5237C12.3705 21.8447 12.0138 21.4077 11.5054 20.4633C10.9817 19.5033 10.7085 18.3326 10.7085 17.0761C10.7085 14.7581 12.6362 12.8693 15.004 12.8693C17.3719 12.8693 19.2996 14.7581 19.2996 17.0761C19.2996 17.2946 19.1326 17.4663 18.9201 17.4663C18.7076 17.4663 18.5406 17.2946 18.5406 17.0761C18.5406 15.1873 16.9545 13.6498 15.004 13.6498C13.0536 13.6498 11.4674 15.1873 11.4674 17.0761C11.4674 18.1999 11.7103 19.238 12.1732 20.0809C12.6589 20.9784 12.9929 21.3608 13.5772 21.9696C13.7214 22.1257 13.7214 22.3676 13.5772 22.5237C13.4938 22.6018 13.3951 22.6408 13.2964 22.6408ZM18.7379 21.1969C17.8348 21.1969 17.0379 20.9628 16.3853 20.5023C15.2545 19.714 14.579 18.4341 14.579 17.0761C14.579 16.8575 14.746 16.6858 14.9585 16.6858C15.171 16.6858 15.3379 16.8575 15.3379 17.0761C15.3379 18.1765 15.8844 19.2145 16.8103 19.8545C17.3491 20.2291 17.979 20.4087 18.7379 20.4087C18.9201 20.4087 19.2237 20.3852 19.5272 20.3306C19.7321 20.2916 19.9295 20.4321 19.9674 20.6506C20.0054 20.8613 19.8687 21.0642 19.6562 21.1033C19.2237 21.1891 18.8442 21.1969 18.7379 21.1969ZM17.2125 22.8047C17.1821 22.8047 17.1442 22.7969 17.1138 22.7891C15.9071 22.4457 15.1179 21.9852 14.2906 21.1501C13.7665 20.6177 13.3509 19.9832 13.0681 19.2837C12.7854 18.5841 12.6411 17.8336 12.6438 17.0761C12.6438 15.8117 13.6911 14.7815 14.9813 14.7815C16.2714 14.7815 17.3188 15.8117 17.3188 17.0761C17.3188 17.9112 18.0246 18.5902 18.8973 18.5902C19.7701 18.5902 20.4759 17.9112 20.4759 17.0761C20.4759 14.1337 18.0094 11.7454 14.9737 11.7454C12.8183 11.7454 10.8451 12.9786 9.95715 14.8907C9.66117 15.5229 9.50938 16.2644 9.50938 17.0761C9.50938 17.6848 9.56251 18.6448 10.0179 19.8935C10.0938 20.0965 9.9951 20.3228 9.79778 20.393C9.60045 20.4711 9.38037 20.3618 9.31206 20.1667C8.94571 19.1798 8.75795 18.1324 8.75804 17.0761C8.75804 16.1395 8.9326 15.2888 9.27412 14.5473C10.2835 12.3698 12.5223 10.9572 14.9737 10.9572C18.4268 10.9572 21.2348 13.6966 21.2348 17.0682C21.2348 18.3326 20.1875 19.3628 18.8973 19.3628C17.6071 19.3628 16.5598 18.3326 16.5598 17.0682C16.5598 16.2331 15.854 15.5541 14.9813 15.5541C14.1085 15.5541 13.4027 16.2331 13.4027 17.0682C13.4027 18.4029 13.9036 19.6516 14.8219 20.5882C15.5429 21.3218 16.2335 21.7276 17.3036 22.032C17.5085 22.0867 17.6223 22.3052 17.5692 22.5081C17.5312 22.6876 17.3719 22.8047 17.2125 22.8047Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.3382 17.076C15.3382 16.8575 15.1706 16.6854 14.9581 16.6854C14.7458 16.6856 14.579 16.8576 14.5789 17.076C14.5789 18.4339 15.2546 19.7137 16.3853 20.502C17.0379 20.9624 17.8346 21.1964 18.7376 21.1965C18.8438 21.1965 19.2235 21.1889 19.656 21.1031C19.8685 21.0641 20.0055 20.8613 19.9675 20.6506C19.9296 20.4321 19.7322 20.2915 19.5274 20.3305L19.3016 20.3657C19.0795 20.3954 18.8742 20.4086 18.7376 20.4086V20.2133C18.9069 20.2133 19.1986 20.1915 19.4912 20.139L19.6093 20.1285C19.8801 20.1345 20.1116 20.3387 20.16 20.6172H20.159C20.2149 20.9311 20.0113 21.2368 19.6912 21.2956L19.6903 21.2946C19.2422 21.3832 18.8505 21.3918 18.7376 21.3918C17.8002 21.3917 16.9627 21.1487 16.2729 20.662V20.6611C15.0915 19.837 14.3836 18.4986 14.3836 17.076C14.3837 16.755 14.633 16.4912 14.9581 16.491C15.2835 16.491 15.5335 16.7549 15.5336 17.076C15.5336 18.0467 15.9848 18.9678 16.7616 19.5769L16.9217 19.6941C17.4225 20.0422 18.0117 20.2132 18.7376 20.2133V20.4086C17.9788 20.4085 17.3489 20.2287 16.8102 19.8541C15.9424 19.2542 15.4074 18.3047 15.344 17.2818L15.3382 17.076ZM16.3643 17.0684C16.3643 16.3484 15.7536 15.7488 14.981 15.7488C14.2085 15.749 13.5976 16.3485 13.5976 17.0684C13.5977 18.3532 14.0795 19.5524 14.961 20.4515L15.2211 20.702C15.8273 21.2545 16.446 21.5847 17.3542 21.8434L17.4657 21.8863C17.7092 22.0107 17.8262 22.2979 17.7582 22.5579L17.7572 22.557C17.6965 22.8236 17.4593 23 17.2122 23C17.1562 23 17.0987 22.9866 17.0655 22.9781L17.0608 22.9771C15.8237 22.6251 15.0043 22.1473 14.1521 21.287H14.1512C13.609 20.7362 13.1792 20.0798 12.8869 19.3568C12.5946 18.6337 12.4459 17.8577 12.4486 17.075C12.4492 15.7002 13.5868 14.5867 14.981 14.5865C16.3756 14.5865 17.5142 15.7006 17.5143 17.076C17.5143 17.7959 18.125 18.3955 18.8976 18.3955V18.5899L18.7357 18.5822C17.992 18.5097 17.4018 17.9423 17.3266 17.2303L17.319 17.076C17.3189 15.8907 16.3982 14.9111 15.2201 14.7933L14.981 14.7818C13.691 14.782 12.644 15.8118 12.644 17.076C12.6413 17.8334 12.7852 18.584 13.0679 19.2834C13.3506 19.9828 13.7663 20.6175 14.2903 21.1498C15.1175 21.9849 15.9074 22.446 17.1141 22.7894C17.1443 22.7972 17.182 22.8046 17.2122 22.8047C17.3716 22.8047 17.5315 22.6878 17.5695 22.5084C17.616 22.3308 17.5345 22.1409 17.3761 22.0597L17.3037 22.032C16.2336 21.7277 15.5429 21.3214 14.8219 20.5877C13.961 19.7096 13.4673 18.5573 13.409 17.317L13.4023 17.0684C13.4023 16.2334 14.1083 15.5546 14.981 15.5545L15.1429 15.5621C15.9396 15.6398 16.5596 16.2855 16.5596 17.0684L16.572 17.3027C16.684 18.3805 17.559 19.2411 18.6585 19.3511L18.8976 19.3625C20.1069 19.3624 21.1033 18.4575 21.2232 17.3027L21.2346 17.0684C21.2346 13.8021 18.5995 11.1291 15.2954 10.9652L14.9734 10.9576C12.5221 10.9577 10.2835 12.37 9.27418 14.5475L9.15413 14.8304C8.89191 15.5028 8.75781 16.2565 8.7578 17.076C8.7577 18.1323 8.94594 19.1797 9.31228 20.1666C9.38059 20.3617 9.60085 20.4714 9.79817 20.3934C9.9707 20.3318 10.0675 20.1505 10.0383 19.9703L10.0183 19.8932C9.61991 18.8007 9.52876 17.9294 9.51236 17.3208L9.5095 17.076C9.50951 16.3656 9.62596 15.7091 9.85343 15.1324L9.95728 14.8904C10.8452 12.9785 12.8182 11.7456 14.9734 11.7455L15.2563 11.7522C18.161 11.8949 20.4762 14.2255 20.4763 17.076L20.4677 17.2303C20.3871 17.9931 19.7158 18.5897 18.8976 18.5899V18.3955C19.6701 18.3954 20.281 17.7958 20.281 17.076C20.2809 14.2472 17.9072 11.9408 14.9734 11.9408C12.8915 11.9409 10.9893 13.1325 10.1345 14.9733H10.1335C9.85152 15.5757 9.70481 16.2882 9.70481 17.076C9.70481 17.6697 9.75597 18.6055 10.2012 19.8265H10.2002C10.31 20.1217 10.1717 20.4618 9.86867 20.5734L9.86963 20.5744H9.86772C9.86614 20.575 9.86455 20.5767 9.86296 20.5772L9.86201 20.5763C9.55839 20.6917 9.22969 20.5234 9.12746 20.2314V20.2304C8.75404 19.223 8.56239 18.1539 8.56249 17.076C8.5625 16.1152 8.74214 15.2359 9.09697 14.4655L9.19891 14.2569C10.2841 12.1278 12.527 10.7624 14.9734 10.7623C18.5297 10.7623 21.4299 13.5845 21.4299 17.0684C21.4299 18.4436 20.2921 19.5577 18.8976 19.5578C17.503 19.5578 16.3644 18.4437 16.3643 17.0684ZM19.2997 17.076C19.2996 14.8305 17.4906 12.9875 15.2249 12.8745L15.0038 12.8697C12.6361 12.8698 10.709 14.7581 10.709 17.076L10.7214 17.5428C10.7808 18.6218 11.0473 19.6229 11.5054 20.4629C12.0139 21.4072 12.3705 21.8447 13.0308 22.5236C13.0646 22.5611 13.106 22.5911 13.1518 22.6113C13.1974 22.6314 13.2469 22.6414 13.2966 22.6408C13.3705 22.6408 13.4444 22.6189 13.5119 22.5751L13.5776 22.5236C13.7036 22.3871 13.7189 22.185 13.6243 22.032L13.5776 21.9692C13.0662 21.4364 12.746 21.0774 12.3486 20.3943L12.1733 20.0809C11.7104 19.238 11.4673 18.1999 11.4673 17.076C11.4674 15.1873 13.0535 13.6501 15.0038 13.65L15.1858 13.6538C17.0521 13.7458 18.5403 15.2463 18.5403 17.076C18.5403 17.267 18.6683 17.422 18.8424 17.458L18.9205 17.4666C19.1061 17.4664 19.257 17.3349 19.292 17.156L19.2997 17.076ZM11.2273 9.76194C13.6307 8.5858 16.6319 8.61743 19.0034 9.8715L19.2206 9.98964C20.2922 10.597 21.198 11.4289 21.9187 12.4696C21.9623 12.5324 21.9935 12.6036 22.0102 12.6782C22.0267 12.7527 22.0284 12.8297 22.0159 12.905C22.0033 12.9804 21.9769 13.0533 21.9368 13.1184C21.8966 13.1836 21.8436 13.2403 21.7815 13.2851H21.7805C21.5189 13.4723 21.1599 13.4147 20.9755 13.1431V13.1441C20.3283 12.2026 19.4695 11.436 18.4727 10.9109C16.3514 9.79356 13.6338 9.79399 11.5207 10.9185C10.5175 11.4496 9.67549 12.2088 9.00932 13.1679C8.90634 13.338 8.72651 13.4156 8.55297 13.4156V13.4147C8.44656 13.4153 8.34239 13.3868 8.25191 13.3308C8.16089 13.2746 8.08763 13.1938 8.03945 13.0984C7.99132 13.003 7.97009 12.8962 7.97752 12.7897C7.985 12.6831 8.02112 12.5801 8.08232 12.4924C8.85077 11.3753 9.82989 10.4951 10.9967 9.87912L11.2273 9.76194ZM18.9129 10.0439C16.5223 8.77963 13.4712 8.78734 11.0882 10.0516L10.8767 10.1678C9.83097 10.7612 8.9467 11.5797 8.24238 12.6039L8.19379 12.6982C8.18193 12.7318 8.17441 12.767 8.17188 12.803C8.16685 12.8748 8.18157 12.9469 8.2138 13.0107C8.24603 13.0744 8.29494 13.128 8.3548 13.1651C8.41462 13.202 8.4832 13.2209 8.55297 13.2203C8.67439 13.2203 8.78855 13.1657 8.84926 13.0564C9.53226 12.0732 10.3972 11.2924 11.4292 10.7461C13.5997 9.59105 16.3851 9.59131 18.5632 10.7385C19.5883 11.2785 20.4716 12.0663 21.1365 13.0336C21.2428 13.1904 21.436 13.2397 21.5995 13.166L21.6672 13.127C21.6878 13.1121 21.7071 13.0951 21.7243 13.0765L21.7701 13.0164C21.7834 12.9948 21.7945 12.9716 21.8034 12.9478L21.8234 12.8735C21.8277 12.8481 21.8298 12.822 21.8291 12.7964L21.8196 12.7201C21.814 12.6949 21.8061 12.6703 21.7958 12.6468L21.7586 12.5801C21.1013 11.631 20.2869 10.8614 19.3311 10.2812L18.9129 10.0439ZM15.0115 7C16.6624 7 18.1052 7.3761 19.6788 8.209L19.6798 8.20996C19.9628 8.3613 20.0636 8.70649 19.9227 8.98547L19.9246 8.98642C19.8796 9.08414 19.808 9.16751 19.7179 9.22651C19.6278 9.28549 19.5227 9.31728 19.4149 9.31797H19.413C19.322 9.31791 19.2298 9.29524 19.1472 9.24842C17.7157 8.48939 16.4869 8.17089 15.0115 8.17089C13.5416 8.17092 12.1481 8.5299 10.8805 9.24652H10.8795C10.5967 9.40403 10.2534 9.28936 10.0983 9.01596L10.0954 9.01024C10.0251 8.87454 10.0096 8.71607 10.0516 8.56913C10.0937 8.4222 10.1904 8.29661 10.3231 8.22044L10.325 8.21948C11.7656 7.41504 13.3465 7.00003 15.0115 7ZM15.0115 7.19531C13.3799 7.19534 11.8318 7.60093 10.4203 8.38907C10.3325 8.43942 10.2668 8.52335 10.2383 8.62248C10.21 8.72154 10.2208 8.82857 10.2679 8.91973C10.3741 9.10704 10.6021 9.17742 10.7842 9.07598C12.082 8.34237 13.5088 7.97561 15.0115 7.97559C16.5216 7.97559 17.7816 8.30341 19.2387 9.07598C19.2917 9.10713 19.3524 9.1226 19.413 9.12266C19.4656 9.12236 19.518 9.11153 19.5655 9.08932L19.6112 9.06359C19.6703 9.02493 19.7174 8.96955 19.7474 8.90449C19.846 8.71726 19.7779 8.48295 19.5883 8.38145C18.0401 7.56195 16.628 7.19531 15.0115 7.19531ZM19.495 17.076C19.495 17.397 19.2457 17.6608 18.9205 17.661C18.5951 17.661 18.346 17.3971 18.346 17.076C18.3459 15.3008 16.8523 13.8453 15.0038 13.8453C13.1554 13.8454 11.6627 15.3009 11.6626 17.076C11.6626 18.0356 11.8444 18.9245 12.1876 19.6741L12.3448 19.9884C12.7008 20.6462 12.9711 21.0175 13.3271 21.4156L13.7177 21.8348L13.7205 21.8367C13.9338 22.0676 13.9338 22.4252 13.7205 22.6561L13.7158 22.6618L13.71 22.6665C13.5938 22.7751 13.449 22.8349 13.2975 22.8352L13.2985 22.8361C13.2208 22.837 13.1437 22.8208 13.0727 22.7894C13.0036 22.7589 12.9419 22.7143 12.8907 22.6589C12.2207 21.9699 11.8524 21.5182 11.334 20.5553V20.5563C10.7924 19.5634 10.5137 18.3597 10.5137 17.076C10.5137 14.6465 12.5322 12.6745 15.0038 12.6744C17.4756 12.6744 19.4949 14.6465 19.495 17.076Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON CUMPLEA\u00D1OS -->\r\n<div *ngIf=\"icon == 'birthday'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 7C14.145 7 13.5735 7.57432 13.2567 8.07958C12.9318 8.60084 12.75 9.23663 12.75 9.73684C12.75 10.1528 12.8067 10.7255 13.1388 11.2072C13.5078 11.7411 14.1342 12.0526 15 12.0526C15.8658 12.0526 16.4922 11.7411 16.8612 11.2072C17.1942 10.7255 17.25 10.1528 17.25 9.73684C17.25 9.23663 17.0682 8.6 16.7433 8.07958C16.4274 7.57432 15.855 7 15 7ZM14.1 9.73684C14.1 9.47579 14.2089 9.05895 14.4222 8.71789C14.6454 8.36084 14.8605 8.26316 15 8.26316C15.1395 8.26316 15.3546 8.36084 15.5778 8.71789C15.7911 9.05895 15.9 9.47579 15.9 9.73684C15.9 10.0821 15.8442 10.3516 15.7263 10.5217C15.6453 10.6396 15.4833 10.7895 15 10.7895C14.5158 10.7895 14.3547 10.6396 14.2737 10.5217C14.1567 10.3516 14.1 10.0821 14.1 9.73684ZM22.65 14.7895V21.7368H23.325C23.504 21.7368 23.6757 21.8034 23.8023 21.9218C23.9289 22.0403 24 22.2009 24 22.3684C24 22.5359 23.9289 22.6966 23.8023 22.815C23.6757 22.9335 23.504 23 23.325 23H6.675C6.49598 23 6.32429 22.9335 6.1977 22.815C6.07112 22.6966 6 22.5359 6 22.3684C6 22.2009 6.07112 22.0403 6.1977 21.9218C6.32429 21.8034 6.49598 21.7368 6.675 21.7368H7.35V14.7895C7.35 14.287 7.56335 13.805 7.94311 13.4497C8.32287 13.0944 8.83794 12.8947 9.375 12.8947H20.625C21.1621 12.8947 21.6771 13.0944 22.0569 13.4497C22.4367 13.805 22.65 14.287 22.65 14.7895ZM8.7 14.7895V16.5503L10.9023 17.8808C11.0842 17.9907 11.296 18.0491 11.5125 18.0491C11.729 18.0491 11.9408 17.9907 12.1227 17.8808L13.695 16.9309C14.0826 16.6971 14.5324 16.5692 14.9936 16.5618C15.4548 16.5543 15.909 16.6676 16.305 16.8888L18.1131 17.8985C18.2996 18.0027 18.5143 18.0542 18.7313 18.0467C18.9483 18.0392 19.1584 17.9732 19.3362 17.8564L21.3 16.5663V14.7895C21.3 14.622 21.2289 14.4613 21.1023 14.3429C20.9757 14.2244 20.804 14.1579 20.625 14.1579H9.375C9.19598 14.1579 9.02429 14.2244 8.8977 14.3429C8.77112 14.4613 8.7 14.622 8.7 14.7895ZM20.112 18.8905C19.7209 19.1474 19.2587 19.2928 18.7811 19.3092C18.3036 19.3257 17.8312 19.2124 17.421 18.9832L15.6138 17.9726C15.4337 17.872 15.2271 17.8204 15.0173 17.8239C14.8075 17.8273 14.603 17.8855 14.4267 17.992L12.8544 18.9419C12.4544 19.1834 11.9885 19.3118 11.5125 19.3118C11.0365 19.3118 10.5706 19.1834 10.1706 18.9419L8.7 18.0535V21.7368H21.3V18.1099L20.112 18.8905Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 7C14.145 7 13.5735 7.57432 13.2567 8.07958C12.9318 8.60084 12.75 9.23663 12.75 9.73684C12.75 10.1528 12.8067 10.7255 13.1388 11.2072C13.5078 11.7411 14.1342 12.0526 15 12.0526C15.8658 12.0526 16.4922 11.7411 16.8612 11.2072C17.1942 10.7255 17.25 10.1528 17.25 9.73684C17.25 9.23663 17.0682 8.6 16.7433 8.07958C16.4274 7.57432 15.855 7 15 7ZM14.1 9.73684C14.1 9.47579 14.2089 9.05895 14.4222 8.71789C14.6454 8.36084 14.8605 8.26316 15 8.26316C15.1395 8.26316 15.3546 8.36084 15.5778 8.71789C15.7911 9.05895 15.9 9.47579 15.9 9.73684C15.9 10.0821 15.8442 10.3516 15.7263 10.5217C15.6453 10.6396 15.4833 10.7895 15 10.7895C14.5158 10.7895 14.3547 10.6396 14.2737 10.5217C14.1567 10.3516 14.1 10.0821 14.1 9.73684ZM22.65 14.7895V21.7368H23.325C23.504 21.7368 23.6757 21.8034 23.8023 21.9218C23.9289 22.0403 24 22.2009 24 22.3684C24 22.5359 23.9289 22.6966 23.8023 22.815C23.6757 22.9335 23.504 23 23.325 23H6.675C6.49598 23 6.32429 22.9335 6.1977 22.815C6.07112 22.6966 6 22.5359 6 22.3684C6 22.2009 6.07112 22.0403 6.1977 21.9218C6.32429 21.8034 6.49598 21.7368 6.675 21.7368H7.35V14.7895C7.35 14.287 7.56335 13.805 7.94311 13.4497C8.32287 13.0944 8.83794 12.8947 9.375 12.8947H20.625C21.1621 12.8947 21.6771 13.0944 22.0569 13.4497C22.4367 13.805 22.65 14.287 22.65 14.7895ZM8.7 14.7895V16.5503L10.9023 17.8808C11.0842 17.9907 11.296 18.0491 11.5125 18.0491C11.729 18.0491 11.9408 17.9907 12.1227 17.8808L13.695 16.9309C14.0826 16.6971 14.5324 16.5692 14.9936 16.5618C15.4548 16.5543 15.909 16.6676 16.305 16.8888L18.1131 17.8985C18.2996 18.0027 18.5143 18.0542 18.7313 18.0467C18.9483 18.0392 19.1584 17.9732 19.3362 17.8564L21.3 16.5663V14.7895C21.3 14.622 21.2289 14.4613 21.1023 14.3429C20.9757 14.2244 20.804 14.1579 20.625 14.1579H9.375C9.19598 14.1579 9.02429 14.2244 8.8977 14.3429C8.77112 14.4613 8.7 14.622 8.7 14.7895ZM20.112 18.8905C19.7209 19.1474 19.2587 19.2928 18.7811 19.3092C18.3036 19.3257 17.8312 19.2124 17.421 18.9832L15.6138 17.9726C15.4337 17.872 15.2271 17.8204 15.0173 17.8239C14.8075 17.8273 14.603 17.8855 14.4267 17.992L12.8544 18.9419C12.4544 19.1834 11.9885 19.3118 11.5125 19.3118C11.0365 19.3118 10.5706 19.1834 10.1706 18.9419L8.7 18.0535V21.7368H21.3V18.1099L20.112 18.8905Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON SEGUIMIENTO -->\r\n<div *ngIf=\"icon == 'tracing'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M7 7C6.73478 7 6.48043 7.10536 6.29289 7.29289C6.10536 7.48043 6 7.73478 6 8C6 8.26522 6.10536 8.51957 6.29289 8.70711C6.48043 8.89464 6.73478 9 7 9H23C23.2652 9 23.5196 8.89464 23.7071 8.70711C23.8946 8.51957 24 8.26522 24 8C24 7.73478 23.8946 7.48043 23.7071 7.29289C23.5196 7.10536 23.2652 7 23 7H7ZM6 15C6 14.7348 6.10536 14.4804 6.29289 14.2929C6.48043 14.1054 6.73478 14 7 14H10C10.2652 14 10.5196 14.1054 10.7071 14.2929C10.8946 14.4804 11 14.7348 11 15C11 15.2652 10.8946 15.5196 10.7071 15.7071C10.5196 15.8946 10.2652 16 10 16H7C6.73478 16 6.48043 15.8946 6.29289 15.7071C6.10536 15.5196 6 15.2652 6 15ZM6 22C6 21.7348 6.10536 21.4804 6.29289 21.2929C6.48043 21.1054 6.73478 21 7 21H11C11.2652 21 11.5196 21.1054 11.7071 21.2929C11.8946 21.4804 12 21.7348 12 22C12 22.2652 11.8946 22.5196 11.7071 22.7071C11.5196 22.8946 11.2652 23 11 23H7C6.73478 23 6.48043 22.8946 6.29289 22.7071C6.10536 22.5196 6 22.2652 6 22ZM13 17C13.0002 16.2204 13.1827 15.4517 13.5329 14.7552C13.8831 14.0587 14.3913 13.4537 15.0169 12.9886C15.6426 12.5235 16.3683 12.2111 17.1361 12.0764C17.904 11.9417 18.6927 11.9884 19.4393 12.2128C20.1859 12.4373 20.8697 12.8331 21.436 13.3689C22.0024 13.9046 22.4356 14.5654 22.7011 15.2984C22.9666 16.0313 23.057 16.8162 22.9652 17.5904C22.8733 18.3646 22.6017 19.1065 22.172 19.757L23.707 21.293C23.8892 21.4816 23.99 21.7342 23.9877 21.9964C23.9854 22.2586 23.8802 22.5094 23.6948 22.6948C23.5094 22.8802 23.2586 22.9854 22.9964 22.9877C22.7342 22.99 22.4816 22.8892 22.293 22.707L20.757 21.172C20.0034 21.6701 19.1288 21.9548 18.2264 21.9957C17.3239 22.0366 16.4272 21.8322 15.6316 21.4043C14.836 20.9764 14.1712 20.3409 13.7078 19.5654C13.2445 18.7899 12.9999 17.9034 13 17ZM18 14C17.606 14 17.2159 14.0776 16.8519 14.2284C16.488 14.3791 16.1573 14.6001 15.8787 14.8787C15.6001 15.1573 15.3791 15.488 15.2284 15.8519C15.0776 16.2159 15 16.606 15 17C15 17.394 15.0776 17.7841 15.2284 18.1481C15.3791 18.512 15.6001 18.8427 15.8787 19.1213C16.1573 19.3999 16.488 19.6209 16.8519 19.7716C17.2159 19.9224 17.606 20 18 20C18.7956 20 19.5587 19.6839 20.1213 19.1213C20.6839 18.5587 21 17.7956 21 17C21 16.2044 20.6839 15.4413 20.1213 14.8787C19.5587 14.3161 18.7956 14 18 14Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M7 7C6.73478 7 6.48043 7.10536 6.29289 7.29289C6.10536 7.48043 6 7.73478 6 8C6 8.26522 6.10536 8.51957 6.29289 8.70711C6.48043 8.89464 6.73478 9 7 9H23C23.2652 9 23.5196 8.89464 23.7071 8.70711C23.8946 8.51957 24 8.26522 24 8C24 7.73478 23.8946 7.48043 23.7071 7.29289C23.5196 7.10536 23.2652 7 23 7H7ZM6 15C6 14.7348 6.10536 14.4804 6.29289 14.2929C6.48043 14.1054 6.73478 14 7 14H10C10.2652 14 10.5196 14.1054 10.7071 14.2929C10.8946 14.4804 11 14.7348 11 15C11 15.2652 10.8946 15.5196 10.7071 15.7071C10.5196 15.8946 10.2652 16 10 16H7C6.73478 16 6.48043 15.8946 6.29289 15.7071C6.10536 15.5196 6 15.2652 6 15ZM6 22C6 21.7348 6.10536 21.4804 6.29289 21.2929C6.48043 21.1054 6.73478 21 7 21H11C11.2652 21 11.5196 21.1054 11.7071 21.2929C11.8946 21.4804 12 21.7348 12 22C12 22.2652 11.8946 22.5196 11.7071 22.7071C11.5196 22.8946 11.2652 23 11 23H7C6.73478 23 6.48043 22.8946 6.29289 22.7071C6.10536 22.5196 6 22.2652 6 22ZM13 17C13.0002 16.2204 13.1827 15.4517 13.5329 14.7552C13.8831 14.0587 14.3913 13.4537 15.0169 12.9886C15.6426 12.5235 16.3683 12.2111 17.1361 12.0764C17.904 11.9417 18.6927 11.9884 19.4393 12.2128C20.1859 12.4373 20.8697 12.8331 21.436 13.3689C22.0024 13.9046 22.4356 14.5654 22.7011 15.2984C22.9666 16.0313 23.057 16.8162 22.9652 17.5904C22.8733 18.3646 22.6017 19.1065 22.172 19.757L23.707 21.293C23.8892 21.4816 23.99 21.7342 23.9877 21.9964C23.9854 22.2586 23.8802 22.5094 23.6948 22.6948C23.5094 22.8802 23.2586 22.9854 22.9964 22.9877C22.7342 22.99 22.4816 22.8892 22.293 22.707L20.757 21.172C20.0034 21.6701 19.1288 21.9548 18.2264 21.9957C17.3239 22.0366 16.4272 21.8322 15.6316 21.4043C14.836 20.9764 14.1712 20.3409 13.7078 19.5654C13.2445 18.7899 12.9999 17.9034 13 17ZM18 14C17.606 14 17.2159 14.0776 16.8519 14.2284C16.488 14.3791 16.1573 14.6001 15.8787 14.8787C15.6001 15.1573 15.3791 15.488 15.2284 15.8519C15.0776 16.2159 15 16.606 15 17C15 17.394 15.0776 17.7841 15.2284 18.1481C15.3791 18.512 15.6001 18.8427 15.8787 19.1213C16.1573 19.3999 16.488 19.6209 16.8519 19.7716C17.2159 19.9224 17.606 20 18 20C18.7956 20 19.5587 19.6839 20.1213 19.1213C20.6839 18.5587 21 17.7956 21 17C21 16.2044 20.6839 15.4413 20.1213 14.8787C19.5587 14.3161 18.7956 14 18 14Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON B\u00DASQUEDA AVANZADA -->\r\n<div *ngIf=\"icon == 'advanced-search'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.4727 17.6807C19.639 17.7992 20.5818 18.6699 20.8115 19.7998H22.2002C22.6419 19.7999 23 20.1588 23 20.6006C22.9996 21.042 22.6417 21.4003 22.2002 21.4004H20.6426C20.2309 22.3414 19.2931 22.9999 18.2002 23L17.9268 22.9863C16.6722 22.8586 15.6745 21.861 15.5469 20.6064L15.5332 20.334C15.5332 18.8613 16.7275 17.6671 18.2002 17.667L18.4727 17.6807ZM18.2002 19.167C17.5559 19.1671 17.0332 19.6897 17.0332 20.334C17.0336 20.9779 17.5562 21.4999 18.2002 21.5C18.8441 21.4998 19.3658 20.9779 19.3662 20.334C19.3662 19.6898 18.8444 19.1672 18.2002 19.167ZM13.667 19.7998C14.1087 19.8 14.4668 20.1589 14.4668 20.6006C14.4664 21.042 14.1084 21.4002 13.667 21.4004H7.7998C7.35829 21.4003 7.00036 21.042 7 20.6006C7 20.1588 7.35807 19.7999 7.7998 19.7998H13.667ZM11.7998 12.333C13.2724 12.3331 14.4666 13.5275 14.4668 15L14.4531 15.2725C14.3256 16.5272 13.3279 17.5246 12.0732 17.6523L11.7998 17.666C10.7067 17.6659 9.769 17.0076 9.35742 16.0664H7.7998C7.35813 16.0663 7.0001 15.7083 7 15.2666C7.00018 14.825 7.35818 14.4669 7.7998 14.4668H9.18848C9.41804 13.3367 10.3608 12.4652 11.5273 12.3467L11.7998 12.333ZM11.7998 13.833C11.1558 13.8332 10.634 14.356 10.6338 15C10.634 15.6441 11.1557 16.1658 11.7998 16.166C12.444 16.1659 12.9666 15.6441 12.9668 15C12.9666 14.3559 12.4439 13.8331 11.7998 13.833ZM22.2002 14.4668C22.6418 14.4669 22.9998 14.825 23 15.2666C22.9999 15.7083 22.6419 16.0663 22.2002 16.0664H16.333C15.8914 16.0662 15.5333 15.7082 15.5332 15.2666C15.5334 14.825 15.8914 14.467 16.333 14.4668H22.2002ZM18.4727 7.01367C19.6393 7.13221 20.5821 8.00346 20.8115 9.13379H22.2002C22.6419 9.13389 23 9.49183 23 9.93359C22.9999 10.3752 22.6418 10.7333 22.2002 10.7334H20.6426C20.231 11.6746 19.2932 12.3329 18.2002 12.333L17.9268 12.3193C16.672 12.1916 15.6744 11.1942 15.5469 9.93945L15.5332 9.66699C15.5332 8.19428 16.7275 7.00007 18.2002 7L18.4727 7.01367ZM18.2002 8.5C17.5559 8.50007 17.0332 9.0227 17.0332 9.66699C17.0334 10.3111 17.556 10.8329 18.2002 10.833C18.8443 10.8328 19.366 10.3111 19.3662 9.66699C19.3662 9.02277 18.8444 8.50018 18.2002 8.5ZM13.667 9.13379C14.1087 9.13397 14.4668 9.49187 14.4668 9.93359C14.4667 10.3752 14.1086 10.7332 13.667 10.7334H7.7998C7.35815 10.7333 7.00014 10.3752 7 9.93359C7 9.49183 7.35807 9.13389 7.7998 9.13379H13.667Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.4727 17.6807C19.639 17.7992 20.5818 18.6699 20.8115 19.7998H22.2002C22.6419 19.7999 23 20.1588 23 20.6006C22.9996 21.042 22.6417 21.4003 22.2002 21.4004H20.6426C20.2309 22.3414 19.2931 22.9999 18.2002 23L17.9268 22.9863C16.6722 22.8586 15.6745 21.861 15.5469 20.6064L15.5332 20.334C15.5332 18.8613 16.7275 17.6671 18.2002 17.667L18.4727 17.6807ZM18.2002 19.167C17.5559 19.1671 17.0332 19.6897 17.0332 20.334C17.0336 20.9779 17.5562 21.4999 18.2002 21.5C18.8441 21.4998 19.3658 20.9779 19.3662 20.334C19.3662 19.6898 18.8444 19.1672 18.2002 19.167ZM13.667 19.7998C14.1087 19.8 14.4668 20.1589 14.4668 20.6006C14.4664 21.042 14.1084 21.4002 13.667 21.4004H7.7998C7.35829 21.4003 7.00036 21.042 7 20.6006C7 20.1588 7.35807 19.7999 7.7998 19.7998H13.667ZM11.7998 12.333C13.2724 12.3331 14.4666 13.5275 14.4668 15L14.4531 15.2725C14.3256 16.5272 13.3279 17.5246 12.0732 17.6523L11.7998 17.666C10.7067 17.6659 9.769 17.0076 9.35742 16.0664H7.7998C7.35813 16.0663 7.0001 15.7083 7 15.2666C7.00018 14.825 7.35818 14.4669 7.7998 14.4668H9.18848C9.41804 13.3367 10.3608 12.4652 11.5273 12.3467L11.7998 12.333ZM11.7998 13.833C11.1558 13.8332 10.634 14.356 10.6338 15C10.634 15.6441 11.1557 16.1658 11.7998 16.166C12.444 16.1659 12.9666 15.6441 12.9668 15C12.9666 14.3559 12.4439 13.8331 11.7998 13.833ZM22.2002 14.4668C22.6418 14.4669 22.9998 14.825 23 15.2666C22.9999 15.7083 22.6419 16.0663 22.2002 16.0664H16.333C15.8914 16.0662 15.5333 15.7082 15.5332 15.2666C15.5334 14.825 15.8914 14.467 16.333 14.4668H22.2002ZM18.4727 7.01367C19.6393 7.13221 20.5821 8.00346 20.8115 9.13379H22.2002C22.6419 9.13389 23 9.49183 23 9.93359C22.9999 10.3752 22.6418 10.7333 22.2002 10.7334H20.6426C20.231 11.6746 19.2932 12.3329 18.2002 12.333L17.9268 12.3193C16.672 12.1916 15.6744 11.1942 15.5469 9.93945L15.5332 9.66699C15.5332 8.19428 16.7275 7.00007 18.2002 7L18.4727 7.01367ZM18.2002 8.5C17.5559 8.50007 17.0332 9.0227 17.0332 9.66699C17.0334 10.3111 17.556 10.8329 18.2002 10.833C18.8443 10.8328 19.366 10.3111 19.3662 9.66699C19.3662 9.02277 18.8444 8.50018 18.2002 8.5ZM13.667 9.13379C14.1087 9.13397 14.4668 9.49187 14.4668 9.93359C14.4667 10.3752 14.1086 10.7332 13.667 10.7334H7.7998C7.35815 10.7333 7.00014 10.3752 7 9.93359C7 9.49183 7.35807 9.13389 7.7998 9.13379H13.667Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON RECEPCI\u00D3N DE LOTES -->\r\n<div *ngIf=\"icon == 'batch-receipt'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M20.4004 7C21.3902 7.00014 22.2 7.79985 22.2002 8.77734V12.333C22.2002 12.8329 21.8838 13.1767 21.3994 13.2178L21.2998 13.2227H15V22.1113C14.9999 22.6445 14.6396 23 14.0996 23H7.7998C6.80994 23 6.00024 22.2002 6 21.2227V8.77734C6.00024 7.79977 6.80994 7.00001 7.7998 7H20.4004ZM20.4004 15C20.9401 15.0002 21.2997 15.3556 21.2998 15.8887V17.667H23.1006C23.6404 17.6671 24 18.0224 24 18.5557C24 19.0889 23.6404 19.4442 23.1006 19.4443H21.2998V21.2227C21.2996 21.7556 20.9401 22.1112 20.4004 22.1113C19.8605 22.1113 19.5002 21.7557 19.5 21.2227V19.4443H17.7002C17.1602 19.4443 16.7998 19.089 16.7998 18.5557C16.7998 18.0223 17.1602 17.667 17.7002 17.667H19.5V15.8887C19.5001 15.3555 19.8605 15 20.4004 15ZM7.7998 21.2227H13.2002V18.5557H7.7998V21.2227ZM7.7998 13.2227V16.7773H13.2002V13.2227H7.7998ZM7.7998 11.4443H13.2002V8.77734H7.7998V11.4443ZM15 11.4443H20.4004V8.77734H15V11.4443Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M20.4004 7C21.3902 7.00014 22.2 7.79985 22.2002 8.77734V12.333C22.2002 12.8329 21.8838 13.1767 21.3994 13.2178L21.2998 13.2227H15V22.1113C14.9999 22.6445 14.6396 23 14.0996 23H7.7998C6.80994 23 6.00024 22.2002 6 21.2227V8.77734C6.00024 7.79977 6.80994 7.00001 7.7998 7H20.4004ZM20.4004 15C20.9401 15.0002 21.2997 15.3556 21.2998 15.8887V17.667H23.1006C23.6404 17.6671 24 18.0224 24 18.5557C24 19.0889 23.6404 19.4442 23.1006 19.4443H21.2998V21.2227C21.2996 21.7556 20.9401 22.1112 20.4004 22.1113C19.8605 22.1113 19.5002 21.7557 19.5 21.2227V19.4443H17.7002C17.1602 19.4443 16.7998 19.089 16.7998 18.5557C16.7998 18.0223 17.1602 17.667 17.7002 17.667H19.5V15.8887C19.5001 15.3555 19.8605 15 20.4004 15ZM7.7998 21.2227H13.2002V18.5557H7.7998V21.2227ZM7.7998 13.2227V16.7773H13.2002V13.2227H7.7998ZM7.7998 11.4443H13.2002V8.77734H7.7998V11.4443ZM15 11.4443H20.4004V8.77734H15V11.4443Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON CALENDARIO -->\r\n<div *ngIf=\"icon == 'calendar'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.1074 7.10742C18.6045 7.10742 19.0078 7.51076 19.0078 8.00781V8.50586H20.4414C21.7049 8.5061 22.8971 9.44803 22.8975 10.8047V20.5967C22.8975 21.9536 21.7051 22.8953 20.4414 22.8955H9.55273C8.28885 22.8955 7.09668 21.9538 7.09668 20.5967V10.8047C7.09701 9.44785 8.28902 8.50586 9.55273 8.50586H10.9854V8.00781C10.9854 7.51076 11.3887 7.10742 11.8857 7.10742C12.3826 7.10769 12.7861 7.51092 12.7861 8.00781V8.50586H17.207V8.00781C17.207 7.51084 17.6105 7.10755 18.1074 7.10742ZM8.89746 14.5029V20.5967C8.89746 20.7847 9.09838 21.0957 9.55273 21.0957H20.4414C20.8954 21.0955 21.0977 20.7846 21.0977 20.5967V14.5029H8.89746ZM9.55273 10.3066C9.09883 10.3066 8.89786 10.6167 8.89746 10.8047V12.7021H21.0977V10.8047C21.0973 10.6167 20.895 10.3069 20.4414 10.3066H19.0078V10.8057C19.0075 11.3025 18.6043 11.7051 18.1074 11.7051C17.6107 11.7049 17.2073 11.3024 17.207 10.8057V10.3066H12.7861V10.8057C12.7858 11.3023 12.3824 11.7048 11.8857 11.7051C11.3889 11.7051 10.9856 11.3025 10.9854 10.8057V10.3066H9.55273Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.1074 7.10742C18.6045 7.10742 19.0078 7.51076 19.0078 8.00781V8.50586H20.4414C21.7049 8.5061 22.8971 9.44803 22.8975 10.8047V20.5967C22.8975 21.9536 21.7051 22.8953 20.4414 22.8955H9.55273C8.28885 22.8955 7.09668 21.9538 7.09668 20.5967V10.8047C7.09701 9.44785 8.28902 8.50586 9.55273 8.50586H10.9854V8.00781C10.9854 7.51076 11.3887 7.10742 11.8857 7.10742C12.3826 7.10769 12.7861 7.51092 12.7861 8.00781V8.50586H17.207V8.00781C17.207 7.51084 17.6105 7.10755 18.1074 7.10742ZM8.89746 14.5029V20.5967C8.89746 20.7847 9.09838 21.0957 9.55273 21.0957H20.4414C20.8954 21.0955 21.0977 20.7846 21.0977 20.5967V14.5029H8.89746ZM9.55273 10.3066C9.09883 10.3066 8.89786 10.6167 8.89746 10.8047V12.7021H21.0977V10.8047C21.0973 10.6167 20.895 10.3069 20.4414 10.3066H19.0078V10.8057C19.0075 11.3025 18.6043 11.7051 18.1074 11.7051C17.6107 11.7049 17.2073 11.3024 17.207 10.8057V10.3066H12.7861V10.8057C12.7858 11.3023 12.3824 11.7048 11.8857 11.7051C11.3889 11.7051 10.9856 11.3025 10.9854 10.8057V10.3066H9.55273Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON NO PROGRAMADO -->\r\n<div *ngIf=\"icon == 'calendar-close'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M23 11.6667V13C23 13.368 22.702 13.6667 22.3333 13.6667C21.9647 13.6667 21.6667 13.368 21.6667 13V11.6667C21.6667 10.564 20.7693 9.66667 19.6667 9.66667H10.3333C9.23067 9.66667 8.33333 10.564 8.33333 11.6667V12.3333H14.3333C14.7013 12.3333 15 12.632 15 13C15 13.368 14.7013 13.6667 14.3333 13.6667H8.33333V19.6667C8.33333 20.7693 9.23067 21.6667 10.3333 21.6667H13C13.368 21.6667 13.6667 21.9653 13.6667 22.3333C13.6667 22.7013 13.368 23 13 23H10.3333C8.49533 23 7 21.5047 7 19.6667V11.6667C7 9.82867 8.49533 8.33333 10.3333 8.33333H11V7.66667C11 7.29867 11.2987 7 11.6667 7C12.0347 7 12.3333 7.29867 12.3333 7.66667V8.33333H17.6667V7.66667C17.6667 7.29867 17.9647 7 18.3333 7C18.702 7 19 7.29867 19 7.66667V8.33333H19.6667C21.5047 8.33333 23 9.82867 23 11.6667Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.4247 19.9641C16.4583 19.9977 16.4972 20.0198 16.5414 20.0305C16.5872 20.0412 16.6315 20.0412 16.6742 20.0305C16.7184 20.0198 16.7566 19.9984 16.7886 19.9664L18.1961 18.5575L19.6014 19.9664C19.6334 19.9984 19.6716 20.0198 19.7158 20.0305C19.7601 20.0412 19.8043 20.0412 19.8486 20.0305C19.8928 20.0198 19.9317 19.9977 19.9653 19.9641C19.9973 19.932 20.0187 19.8938 20.0294 19.8495C20.04 19.8052 20.04 19.7617 20.0294 19.7189C20.0187 19.6747 19.9973 19.6357 19.9653 19.6021L18.56 18.1933L19.9653 16.7867C19.9973 16.7531 20.0187 16.715 20.0294 16.6722C20.0416 16.6279 20.0416 16.5836 20.0294 16.5393C20.0187 16.495 19.9973 16.4569 19.9653 16.4248C19.9302 16.3912 19.8905 16.369 19.8463 16.3584C19.8035 16.3477 19.7601 16.3477 19.7158 16.3584C19.6716 16.3675 19.6334 16.3889 19.6014 16.4225L18.1961 17.8313L16.7886 16.4225C16.7566 16.3904 16.7184 16.369 16.6742 16.3584C16.6299 16.3477 16.5857 16.3477 16.5414 16.3584C16.4972 16.369 16.4583 16.3912 16.4247 16.4248C16.3927 16.4569 16.3713 16.495 16.3606 16.5393C16.35 16.5836 16.35 16.6279 16.3606 16.6722C16.3713 16.7165 16.3927 16.7539 16.4247 16.7844L17.83 18.1933L16.4247 19.6044C16.3927 19.635 16.3706 19.6724 16.3584 19.7167C16.3477 19.7609 16.3477 19.8052 16.3584 19.8495C16.369 19.8938 16.3912 19.932 16.4247 19.9641Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.5144 16.2463C16.5764 16.2314 16.6392 16.2314 16.7013 16.2463C16.7661 16.262 16.8231 16.2939 16.8702 16.3411L18.1961 17.6682L19.519 16.342C19.5661 16.2929 19.624 16.2601 19.6906 16.2459C19.7515 16.2315 19.8132 16.2314 19.8738 16.2465C19.939 16.2623 19.9964 16.295 20.045 16.3416L20.0469 16.3433C20.0935 16.39 20.1252 16.4465 20.141 16.5105C20.1581 16.5738 20.1581 16.6382 20.1409 16.7015C20.125 16.7641 20.0934 16.8194 20.0487 16.8663L20.0469 16.8682L18.7229 18.1934L20.0487 19.5226C20.0944 19.5705 20.1258 19.6273 20.1413 19.6915C20.1565 19.7528 20.1563 19.815 20.1414 19.8766C20.1258 19.9414 20.0939 19.9984 20.0468 20.0455C19.999 20.0935 19.9414 20.1267 19.8756 20.1425C19.8136 20.1575 19.7508 20.1575 19.6888 20.1425C19.624 20.1269 19.567 20.095 19.5199 20.0478L18.1961 18.7207L16.8702 20.0478C16.8232 20.0949 16.7663 20.1267 16.7018 20.1424C16.6402 20.1578 16.5775 20.1573 16.5153 20.1428L16.5144 20.1425C16.449 20.1268 16.3918 20.0939 16.3442 20.0465C16.2955 19.9996 16.2622 19.9423 16.2463 19.8766C16.2314 19.8145 16.2314 19.7517 16.2463 19.6897L16.2472 19.686C16.2646 19.6229 16.2969 19.5674 16.344 19.5221L17.6673 18.1934L16.3441 16.8668C16.2961 16.8207 16.2642 16.7639 16.2486 16.6992C16.2337 16.6372 16.2337 16.5744 16.2486 16.5123C16.2642 16.4475 16.2961 16.3905 16.3432 16.3434C16.3911 16.2954 16.4486 16.2622 16.5144 16.2463ZM16.6471 16.4704C16.6207 16.464 16.595 16.464 16.5685 16.4704C16.5458 16.4759 16.5255 16.487 16.5063 16.5063C16.4893 16.5233 16.4784 16.5426 16.4727 16.5664C16.4663 16.5929 16.4663 16.6187 16.4727 16.6452C16.4784 16.6686 16.4888 16.6862 16.5043 16.701L16.5064 16.703L17.9927 18.1932L16.5043 19.6879C16.4884 19.7031 16.4769 19.7215 16.47 19.7455C16.464 19.7714 16.4642 19.7966 16.4704 19.8225C16.4758 19.8449 16.4865 19.8636 16.5044 19.8807L16.5063 19.8826C16.5254 19.9018 16.5456 19.9129 16.5681 19.9184C16.5971 19.9251 16.6226 19.9246 16.6462 19.9187L16.6471 19.9185C16.6709 19.9128 16.6901 19.9019 16.7071 19.8849L18.1962 18.3944L19.6829 19.8849C19.6999 19.9019 19.7192 19.9128 19.7429 19.9185C19.7694 19.9249 19.795 19.9249 19.8215 19.9185C19.8442 19.913 19.8645 19.9019 19.8838 19.8826C19.9007 19.8656 19.9116 19.8463 19.9173 19.8225C19.9238 19.7957 19.9236 19.771 19.9176 19.7469L19.9173 19.746C19.9116 19.7222 19.9005 19.7015 19.8827 19.6825L18.3972 18.1932L19.8827 16.7064C19.9012 16.6867 19.9121 16.6663 19.9176 16.6443L19.9182 16.6416C19.9249 16.6173 19.9249 16.5942 19.9183 16.57L19.9173 16.5664C19.9116 16.543 19.9011 16.5239 19.8846 16.5072C19.8635 16.4872 19.842 16.4759 19.8192 16.4704L19.8183 16.4702C19.7943 16.4642 19.7697 16.4639 19.7429 16.4704L19.7392 16.4713C19.7186 16.4756 19.7012 16.4849 19.6848 16.5021L19.683 16.5039L18.1962 17.9945L16.7071 16.504C16.6901 16.487 16.6709 16.4761 16.6471 16.4704Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.6228 15.9596C19.7271 15.9349 19.8354 15.9353 19.9424 15.9615C20.0612 15.9904 20.1651 16.0491 20.2485 16.1289L20.2552 16.1356L20.3136 16.2026C20.367 16.273 20.405 16.3532 20.4264 16.4399C20.4556 16.5517 20.4549 16.6669 20.4245 16.7785L20.4236 16.7776C20.3942 16.8902 20.3377 16.9889 20.2609 17.0694L20.26 17.0713L19.1378 18.1935L20.2619 19.3196C20.3424 19.404 20.3994 19.5067 20.4274 19.6219C20.4541 19.7301 20.4528 19.8398 20.4274 19.9452C20.3992 20.0622 20.3406 20.1678 20.2552 20.2533C20.1708 20.3378 20.065 20.3992 19.9443 20.4284C19.8371 20.4542 19.7271 20.4542 19.6199 20.4284C19.5321 20.4072 19.4509 20.3685 19.3798 20.3145L19.3119 20.2552L18.1954 19.1359L17.078 20.2552C16.9927 20.3406 16.8877 20.4 16.7709 20.4284L16.7699 20.4274C16.661 20.4541 16.552 20.4535 16.4484 20.4293L16.4475 20.4284H16.4456C16.3257 20.3994 16.2207 20.3388 16.1366 20.2552L16.1375 20.2543C16.0511 20.1699 15.9894 20.0649 15.9605 19.9452C15.9347 19.838 15.9347 19.7281 15.9605 19.6209L15.9615 19.6171L15.9634 19.6075C15.9943 19.4955 16.0539 19.3932 16.1404 19.31L17.2511 18.1935L16.1356 17.0742L16.1366 17.0732C16.0496 16.9878 15.9903 16.8834 15.9624 16.768C15.9366 16.6609 15.9367 16.5508 15.9624 16.4437C15.9907 16.3266 16.0501 16.2212 16.1356 16.1356C16.2199 16.0513 16.3249 15.9897 16.4456 15.9605C16.5528 15.9347 16.6627 15.9347 16.7699 15.9605C16.887 15.9888 16.9925 16.0481 17.078 16.1337L18.1954 17.2521L19.3109 16.1347C19.3954 16.0481 19.5016 15.9867 19.6228 15.9596ZM19.6907 16.2456C19.6242 16.2598 19.5656 16.2933 19.5185 16.3423L18.1964 17.6683L16.8704 16.3413C16.8233 16.2942 16.7658 16.2623 16.701 16.2466C16.639 16.2317 16.5764 16.2316 16.5145 16.2466C16.4487 16.2625 16.3911 16.2953 16.3432 16.3432C16.2961 16.3904 16.2641 16.4478 16.2485 16.5126C16.2336 16.5745 16.2336 16.6372 16.2485 16.6991C16.2641 16.7637 16.2963 16.8205 16.3442 16.8666L17.6673 18.1935L16.3442 19.5224C16.2971 19.5676 16.2649 19.623 16.2475 19.686L16.2466 19.6898C16.2316 19.7518 16.2317 19.8144 16.2466 19.8764C16.2624 19.9421 16.2955 19.9998 16.3442 20.0467C16.3918 20.094 16.4491 20.1265 16.5145 20.1423C16.5767 20.1568 16.6405 20.1576 16.702 20.1423C16.7665 20.1266 16.8234 20.0946 16.8704 20.0476L18.1964 18.7207L19.5195 20.0476C19.5666 20.0948 19.624 20.1267 19.6888 20.1423C19.7508 20.1573 19.8134 20.1573 19.8754 20.1423C19.9411 20.1264 19.9988 20.0935 20.0466 20.0457C20.0937 19.9986 20.1257 19.9411 20.1413 19.8764C20.1561 19.8149 20.1565 19.7528 20.1413 19.6917C20.1258 19.6275 20.0942 19.5703 20.0485 19.5224L18.7225 18.1935L20.0485 16.8666C20.0931 16.8198 20.1245 16.7644 20.1404 16.702C20.1576 16.6388 20.1584 16.5739 20.1413 16.5107C20.1256 16.4466 20.0933 16.3899 20.0466 16.3432L20.0447 16.3413C19.9961 16.2949 19.9385 16.2624 19.8735 16.2466C19.813 16.2316 19.7515 16.2313 19.6907 16.2456ZM19.818 16.4705C19.8408 16.476 19.8638 16.4869 19.8849 16.5068C19.9014 16.5236 19.9118 16.5429 19.9175 16.5661L19.9184 16.57C19.9251 16.5942 19.9251 16.6175 19.9184 16.6417L19.9175 16.6446C19.912 16.6665 19.9015 16.6872 19.883 16.7068L18.3973 18.1935L19.883 19.6821C19.9009 19.7011 19.9117 19.7224 19.9175 19.7462C19.9234 19.7703 19.9239 19.796 19.9175 19.8228C19.9117 19.8465 19.9009 19.8661 19.884 19.8831C19.8649 19.9022 19.8444 19.913 19.8218 19.9185C19.7955 19.9248 19.7697 19.9247 19.7434 19.9185C19.7197 19.9127 19.7 19.9019 19.6831 19.885L18.1964 18.3944L16.7068 19.885C16.6899 19.9018 16.6709 19.9127 16.6474 19.9185C16.6238 19.9244 16.597 19.9252 16.568 19.9185C16.5455 19.9129 16.525 19.9022 16.5059 19.8831L16.5039 19.8811C16.4861 19.8641 16.4759 19.845 16.4705 19.8228C16.4642 19.7969 16.4645 19.7712 16.4705 19.7453C16.4774 19.7215 16.4882 19.703 16.5039 19.6879L17.9926 18.1935L16.5068 16.703L16.5039 16.701C16.4886 16.6863 16.478 16.6688 16.4724 16.6456C16.466 16.619 16.466 16.5927 16.4724 16.5661C16.4781 16.5424 16.4889 16.5228 16.5059 16.5059C16.5251 16.4866 16.5463 16.476 16.569 16.4705C16.5953 16.4642 16.6211 16.4641 16.6474 16.4705C16.6709 16.4762 16.6899 16.4871 16.7068 16.504L18.1964 17.9945L19.6831 16.504L19.685 16.502C19.7013 16.485 19.7189 16.4757 19.7395 16.4714L19.7434 16.4705C19.7699 16.4641 19.7941 16.4645 19.818 16.4705ZM19.7472 16.7517L19.7491 16.7498L19.7749 16.6446V16.6427L19.7472 16.7517Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.1942 21.8824C20.2311 21.8824 21.8824 20.2311 21.8824 18.1942C21.8824 16.1573 20.2311 14.506 18.1942 14.506C16.1573 14.506 14.506 16.1573 14.506 18.1942C14.506 20.2311 16.1573 21.8824 18.1942 21.8824ZM18.1942 22.8044C20.7404 22.8044 22.8044 20.7404 22.8044 18.1942C22.8044 15.648 20.7404 13.584 18.1942 13.584C15.648 13.584 13.584 15.648 13.584 18.1942C13.584 20.7404 15.648 22.8044 18.1942 22.8044Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.1944 13.3879C20.8487 13.388 23 15.5401 23 18.1944C22.9999 20.8487 20.8487 22.9999 18.1944 23C15.5401 23 13.388 20.8487 13.3879 18.1944C13.3879 15.5401 15.5401 13.3879 18.1944 13.3879ZM18.1944 13.5841C15.6483 13.5841 13.5841 15.6483 13.5841 18.1944C13.5842 20.7405 15.6484 22.8048 18.1944 22.8048C20.7405 22.8047 22.8047 20.7405 22.8048 18.1944C22.8048 15.6484 20.7405 13.5842 18.1944 13.5841ZM18.1944 14.5063C20.2313 14.5064 21.8826 16.1576 21.8826 18.1944C21.8825 20.2312 20.2312 21.8825 18.1944 21.8826C16.1576 21.8826 14.5064 20.2313 14.5063 18.1944C14.5063 16.1575 16.1575 14.5063 18.1944 14.5063ZM18.1944 14.7025C16.2657 14.7025 14.7025 16.2657 14.7025 18.1944C14.7025 20.1231 16.2658 21.6864 18.1944 21.6864C20.123 21.6863 21.6863 20.123 21.6864 18.1944C21.6864 16.2658 20.1231 14.7025 18.1944 14.7025Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M23 11.6667V13C23 13.368 22.702 13.6667 22.3333 13.6667C21.9647 13.6667 21.6667 13.368 21.6667 13V11.6667C21.6667 10.564 20.7693 9.66667 19.6667 9.66667H10.3333C9.23067 9.66667 8.33333 10.564 8.33333 11.6667V12.3333H14.3333C14.7013 12.3333 15 12.632 15 13C15 13.368 14.7013 13.6667 14.3333 13.6667H8.33333V19.6667C8.33333 20.7693 9.23067 21.6667 10.3333 21.6667H13C13.368 21.6667 13.6667 21.9653 13.6667 22.3333C13.6667 22.7013 13.368 23 13 23H10.3333C8.49533 23 7 21.5047 7 19.6667V11.6667C7 9.82867 8.49533 8.33333 10.3333 8.33333H11V7.66667C11 7.29867 11.2987 7 11.6667 7C12.0347 7 12.3333 7.29867 12.3333 7.66667V8.33333H17.6667V7.66667C17.6667 7.29867 17.9647 7 18.3333 7C18.702 7 19 7.29867 19 7.66667V8.33333H19.6667C21.5047 8.33333 23 9.82867 23 11.6667Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.4247 19.9641C16.4583 19.9977 16.4972 20.0198 16.5414 20.0305C16.5872 20.0412 16.6315 20.0412 16.6742 20.0305C16.7184 20.0198 16.7566 19.9984 16.7886 19.9664L18.1961 18.5575L19.6014 19.9664C19.6334 19.9984 19.6716 20.0198 19.7158 20.0305C19.7601 20.0412 19.8043 20.0412 19.8486 20.0305C19.8928 20.0198 19.9317 19.9977 19.9653 19.9641C19.9973 19.932 20.0187 19.8938 20.0294 19.8495C20.04 19.8052 20.04 19.7617 20.0294 19.7189C20.0187 19.6747 19.9973 19.6357 19.9653 19.6021L18.56 18.1933L19.9653 16.7867C19.9973 16.7531 20.0187 16.715 20.0294 16.6722C20.0416 16.6279 20.0416 16.5836 20.0294 16.5393C20.0187 16.495 19.9973 16.4569 19.9653 16.4248C19.9302 16.3912 19.8905 16.369 19.8463 16.3584C19.8035 16.3477 19.7601 16.3477 19.7158 16.3584C19.6716 16.3675 19.6334 16.3889 19.6014 16.4225L18.1961 17.8313L16.7886 16.4225C16.7566 16.3904 16.7184 16.369 16.6742 16.3584C16.6299 16.3477 16.5857 16.3477 16.5414 16.3584C16.4972 16.369 16.4583 16.3912 16.4247 16.4248C16.3927 16.4569 16.3713 16.495 16.3606 16.5393C16.35 16.5836 16.35 16.6279 16.3606 16.6722C16.3713 16.7165 16.3927 16.7539 16.4247 16.7844L17.83 18.1933L16.4247 19.6044C16.3927 19.635 16.3706 19.6724 16.3584 19.7167C16.3477 19.7609 16.3477 19.8052 16.3584 19.8495C16.369 19.8938 16.3912 19.932 16.4247 19.9641Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.5144 16.2463C16.5764 16.2314 16.6392 16.2314 16.7013 16.2463C16.7661 16.262 16.8231 16.2939 16.8702 16.3411L18.1961 17.6682L19.519 16.342C19.5661 16.2929 19.624 16.2601 19.6906 16.2459C19.7515 16.2315 19.8132 16.2314 19.8738 16.2465C19.939 16.2623 19.9964 16.295 20.045 16.3416L20.0469 16.3433C20.0935 16.39 20.1252 16.4465 20.141 16.5105C20.1581 16.5738 20.1581 16.6382 20.1409 16.7015C20.125 16.7641 20.0934 16.8194 20.0487 16.8663L20.0469 16.8682L18.7229 18.1934L20.0487 19.5226C20.0944 19.5705 20.1258 19.6273 20.1413 19.6915C20.1565 19.7528 20.1563 19.815 20.1414 19.8766C20.1258 19.9414 20.0939 19.9984 20.0468 20.0455C19.999 20.0935 19.9414 20.1267 19.8756 20.1425C19.8136 20.1575 19.7508 20.1575 19.6888 20.1425C19.624 20.1269 19.567 20.095 19.5199 20.0478L18.1961 18.7207L16.8702 20.0478C16.8232 20.0949 16.7663 20.1267 16.7018 20.1424C16.6402 20.1578 16.5775 20.1573 16.5153 20.1428L16.5144 20.1425C16.449 20.1268 16.3918 20.0939 16.3442 20.0465C16.2955 19.9996 16.2622 19.9423 16.2463 19.8766C16.2314 19.8145 16.2314 19.7517 16.2463 19.6897L16.2472 19.686C16.2646 19.6229 16.2969 19.5674 16.344 19.5221L17.6673 18.1934L16.3441 16.8668C16.2961 16.8207 16.2642 16.7639 16.2486 16.6992C16.2337 16.6372 16.2337 16.5744 16.2486 16.5123C16.2642 16.4475 16.2961 16.3905 16.3432 16.3434C16.3911 16.2954 16.4486 16.2622 16.5144 16.2463ZM16.6471 16.4704C16.6207 16.464 16.595 16.464 16.5685 16.4704C16.5458 16.4759 16.5255 16.487 16.5063 16.5063C16.4893 16.5233 16.4784 16.5426 16.4727 16.5664C16.4663 16.5929 16.4663 16.6187 16.4727 16.6452C16.4784 16.6686 16.4888 16.6862 16.5043 16.701L16.5064 16.703L17.9927 18.1932L16.5043 19.6879C16.4884 19.7031 16.4769 19.7215 16.47 19.7455C16.464 19.7714 16.4642 19.7966 16.4704 19.8225C16.4758 19.8449 16.4865 19.8636 16.5044 19.8807L16.5063 19.8826C16.5254 19.9018 16.5456 19.9129 16.5681 19.9184C16.5971 19.9251 16.6226 19.9246 16.6462 19.9187L16.6471 19.9185C16.6709 19.9128 16.6901 19.9019 16.7071 19.8849L18.1962 18.3944L19.6829 19.8849C19.6999 19.9019 19.7192 19.9128 19.7429 19.9185C19.7694 19.9249 19.795 19.9249 19.8215 19.9185C19.8442 19.913 19.8645 19.9019 19.8838 19.8826C19.9007 19.8656 19.9116 19.8463 19.9173 19.8225C19.9238 19.7957 19.9236 19.771 19.9176 19.7469L19.9173 19.746C19.9116 19.7222 19.9005 19.7015 19.8827 19.6825L18.3972 18.1932L19.8827 16.7064C19.9012 16.6867 19.9121 16.6663 19.9176 16.6443L19.9182 16.6416C19.9249 16.6173 19.9249 16.5942 19.9183 16.57L19.9173 16.5664C19.9116 16.543 19.9011 16.5239 19.8846 16.5072C19.8635 16.4872 19.842 16.4759 19.8192 16.4704L19.8183 16.4702C19.7943 16.4642 19.7697 16.4639 19.7429 16.4704L19.7392 16.4713C19.7186 16.4756 19.7012 16.4849 19.6848 16.5021L19.683 16.5039L18.1962 17.9945L16.7071 16.504C16.6901 16.487 16.6709 16.4761 16.6471 16.4704Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.6228 15.9596C19.7271 15.9349 19.8354 15.9353 19.9424 15.9615C20.0612 15.9904 20.1651 16.0491 20.2485 16.1289L20.2552 16.1356L20.3136 16.2026C20.367 16.273 20.405 16.3532 20.4264 16.4399C20.4556 16.5517 20.4549 16.6669 20.4245 16.7785L20.4236 16.7776C20.3942 16.8902 20.3377 16.9889 20.2609 17.0694L20.26 17.0713L19.1378 18.1935L20.2619 19.3196C20.3424 19.404 20.3994 19.5067 20.4274 19.6219C20.4541 19.7301 20.4528 19.8398 20.4274 19.9452C20.3992 20.0622 20.3406 20.1678 20.2552 20.2533C20.1708 20.3378 20.065 20.3992 19.9443 20.4284C19.8371 20.4542 19.7271 20.4542 19.6199 20.4284C19.5321 20.4072 19.4509 20.3685 19.3798 20.3145L19.3119 20.2552L18.1954 19.1359L17.078 20.2552C16.9927 20.3406 16.8877 20.4 16.7709 20.4284L16.7699 20.4274C16.661 20.4541 16.552 20.4535 16.4484 20.4293L16.4475 20.4284H16.4456C16.3257 20.3994 16.2207 20.3388 16.1366 20.2552L16.1375 20.2543C16.0511 20.1699 15.9894 20.0649 15.9605 19.9452C15.9347 19.838 15.9347 19.7281 15.9605 19.6209L15.9615 19.6171L15.9634 19.6075C15.9943 19.4955 16.0539 19.3932 16.1404 19.31L17.2511 18.1935L16.1356 17.0742L16.1366 17.0732C16.0496 16.9878 15.9903 16.8834 15.9624 16.768C15.9366 16.6609 15.9367 16.5508 15.9624 16.4437C15.9907 16.3266 16.0501 16.2212 16.1356 16.1356C16.2199 16.0513 16.3249 15.9897 16.4456 15.9605C16.5528 15.9347 16.6627 15.9347 16.7699 15.9605C16.887 15.9888 16.9925 16.0481 17.078 16.1337L18.1954 17.2521L19.3109 16.1347C19.3954 16.0481 19.5016 15.9867 19.6228 15.9596ZM19.6907 16.2456C19.6242 16.2598 19.5656 16.2933 19.5185 16.3423L18.1964 17.6683L16.8704 16.3413C16.8233 16.2942 16.7658 16.2623 16.701 16.2466C16.639 16.2317 16.5764 16.2316 16.5145 16.2466C16.4487 16.2625 16.3911 16.2953 16.3432 16.3432C16.2961 16.3904 16.2641 16.4478 16.2485 16.5126C16.2336 16.5745 16.2336 16.6372 16.2485 16.6991C16.2641 16.7637 16.2963 16.8205 16.3442 16.8666L17.6673 18.1935L16.3442 19.5224C16.2971 19.5676 16.2649 19.623 16.2475 19.686L16.2466 19.6898C16.2316 19.7518 16.2317 19.8144 16.2466 19.8764C16.2624 19.9421 16.2955 19.9998 16.3442 20.0467C16.3918 20.094 16.4491 20.1265 16.5145 20.1423C16.5767 20.1568 16.6405 20.1576 16.702 20.1423C16.7665 20.1266 16.8234 20.0946 16.8704 20.0476L18.1964 18.7207L19.5195 20.0476C19.5666 20.0948 19.624 20.1267 19.6888 20.1423C19.7508 20.1573 19.8134 20.1573 19.8754 20.1423C19.9411 20.1264 19.9988 20.0935 20.0466 20.0457C20.0937 19.9986 20.1257 19.9411 20.1413 19.8764C20.1561 19.8149 20.1565 19.7528 20.1413 19.6917C20.1258 19.6275 20.0942 19.5703 20.0485 19.5224L18.7225 18.1935L20.0485 16.8666C20.0931 16.8198 20.1245 16.7644 20.1404 16.702C20.1576 16.6388 20.1584 16.5739 20.1413 16.5107C20.1256 16.4466 20.0933 16.3899 20.0466 16.3432L20.0447 16.3413C19.9961 16.2949 19.9385 16.2624 19.8735 16.2466C19.813 16.2316 19.7515 16.2313 19.6907 16.2456ZM19.818 16.4705C19.8408 16.476 19.8638 16.4869 19.8849 16.5068C19.9014 16.5236 19.9118 16.5429 19.9175 16.5661L19.9184 16.57C19.9251 16.5942 19.9251 16.6175 19.9184 16.6417L19.9175 16.6446C19.912 16.6665 19.9015 16.6872 19.883 16.7068L18.3973 18.1935L19.883 19.6821C19.9009 19.7011 19.9117 19.7224 19.9175 19.7462C19.9234 19.7703 19.9239 19.796 19.9175 19.8228C19.9117 19.8465 19.9009 19.8661 19.884 19.8831C19.8649 19.9022 19.8444 19.913 19.8218 19.9185C19.7955 19.9248 19.7697 19.9247 19.7434 19.9185C19.7197 19.9127 19.7 19.9019 19.6831 19.885L18.1964 18.3944L16.7068 19.885C16.6899 19.9018 16.6709 19.9127 16.6474 19.9185C16.6238 19.9244 16.597 19.9252 16.568 19.9185C16.5455 19.9129 16.525 19.9022 16.5059 19.8831L16.5039 19.8811C16.4861 19.8641 16.4759 19.845 16.4705 19.8228C16.4642 19.7969 16.4645 19.7712 16.4705 19.7453C16.4774 19.7215 16.4882 19.703 16.5039 19.6879L17.9926 18.1935L16.5068 16.703L16.5039 16.701C16.4886 16.6863 16.478 16.6688 16.4724 16.6456C16.466 16.619 16.466 16.5927 16.4724 16.5661C16.4781 16.5424 16.4889 16.5228 16.5059 16.5059C16.5251 16.4866 16.5463 16.476 16.569 16.4705C16.5953 16.4642 16.6211 16.4641 16.6474 16.4705C16.6709 16.4762 16.6899 16.4871 16.7068 16.504L18.1964 17.9945L19.6831 16.504L19.685 16.502C19.7013 16.485 19.7189 16.4757 19.7395 16.4714L19.7434 16.4705C19.7699 16.4641 19.7941 16.4645 19.818 16.4705ZM19.7472 16.7517L19.7491 16.7498L19.7749 16.6446V16.6427L19.7472 16.7517Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.1942 21.8824C20.2311 21.8824 21.8824 20.2311 21.8824 18.1942C21.8824 16.1573 20.2311 14.506 18.1942 14.506C16.1573 14.506 14.506 16.1573 14.506 18.1942C14.506 20.2311 16.1573 21.8824 18.1942 21.8824ZM18.1942 22.8044C20.7404 22.8044 22.8044 20.7404 22.8044 18.1942C22.8044 15.648 20.7404 13.584 18.1942 13.584C15.648 13.584 13.584 15.648 13.584 18.1942C13.584 20.7404 15.648 22.8044 18.1942 22.8044Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.1944 13.3879C20.8487 13.388 23 15.5401 23 18.1944C22.9999 20.8487 20.8487 22.9999 18.1944 23C15.5401 23 13.388 20.8487 13.3879 18.1944C13.3879 15.5401 15.5401 13.3879 18.1944 13.3879ZM18.1944 13.5841C15.6483 13.5841 13.5841 15.6483 13.5841 18.1944C13.5842 20.7405 15.6484 22.8048 18.1944 22.8048C20.7405 22.8047 22.8047 20.7405 22.8048 18.1944C22.8048 15.6484 20.7405 13.5842 18.1944 13.5841ZM18.1944 14.5063C20.2313 14.5064 21.8826 16.1576 21.8826 18.1944C21.8825 20.2312 20.2312 21.8825 18.1944 21.8826C16.1576 21.8826 14.5064 20.2313 14.5063 18.1944C14.5063 16.1575 16.1575 14.5063 18.1944 14.5063ZM18.1944 14.7025C16.2657 14.7025 14.7025 16.2657 14.7025 18.1944C14.7025 20.1231 16.2658 21.6864 18.1944 21.6864C20.123 21.6863 21.6863 20.123 21.6864 18.1944C21.6864 16.2658 20.1231 14.7025 18.1944 14.7025Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON PROGRAMADO -->\r\n<div *ngIf=\"icon == 'calendar-clock'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.3333 13.6927C15.7607 13.6927 13.6667 15.786 13.6667 18.3593C13.6667 20.918 15.7607 23 18.3333 23C20.906 23 23 20.9067 23 18.3333C23 15.7747 20.906 13.6927 18.3333 13.6927ZM18.3333 21.6667C16.4953 21.6667 15 20.1827 15 18.3593C15 16.5213 16.4953 15.026 18.3333 15.026C20.1713 15.026 21.6667 16.51 21.6667 18.3333C21.6667 20.1713 20.1713 21.6667 18.3333 21.6667ZM19.4713 18.5287C19.732 18.7893 19.732 19.2107 19.4713 19.4713C19.3413 19.6013 19.1707 19.6667 19 19.6667C18.8293 19.6667 18.6587 19.6013 18.5287 19.4713L17.862 18.8047C17.7367 18.6793 17.6667 18.51 17.6667 18.3333V17C17.6667 16.632 17.9647 16.3333 18.3333 16.3333C18.702 16.3333 19 16.632 19 17V18.0573L19.4713 18.5287ZM23 11.6667V13C23 13.368 22.702 13.6667 22.3333 13.6667C21.9647 13.6667 21.6667 13.368 21.6667 13V11.6667C21.6667 10.564 20.7693 9.66667 19.6667 9.66667H10.3333C9.23067 9.66667 8.33333 10.564 8.33333 11.6667V12.3333H14.3333C14.7013 12.3333 15 12.632 15 13C15 13.368 14.7013 13.6667 14.3333 13.6667H8.33333V19.6667C8.33333 20.7693 9.23067 21.6667 10.3333 21.6667H13C13.368 21.6667 13.6667 21.9653 13.6667 22.3333C13.6667 22.7013 13.368 23 13 23H10.3333C8.49533 23 7 21.5047 7 19.6667V11.6667C7 9.82867 8.49533 8.33333 10.3333 8.33333H11V7.66667C11 7.29867 11.2987 7 11.6667 7C12.0347 7 12.3333 7.29867 12.3333 7.66667V8.33333H17.6667V7.66667C17.6667 7.29867 17.9647 7 18.3333 7C18.702 7 19 7.29867 19 7.66667V8.33333H19.6667C21.5047 8.33333 23 9.82867 23 11.6667Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.3333 13.6927C15.7607 13.6927 13.6667 15.786 13.6667 18.3593C13.6667 20.918 15.7607 23 18.3333 23C20.906 23 23 20.9067 23 18.3333C23 15.7747 20.906 13.6927 18.3333 13.6927ZM18.3333 21.6667C16.4953 21.6667 15 20.1827 15 18.3593C15 16.5213 16.4953 15.026 18.3333 15.026C20.1713 15.026 21.6667 16.51 21.6667 18.3333C21.6667 20.1713 20.1713 21.6667 18.3333 21.6667ZM19.4713 18.5287C19.732 18.7893 19.732 19.2107 19.4713 19.4713C19.3413 19.6013 19.1707 19.6667 19 19.6667C18.8293 19.6667 18.6587 19.6013 18.5287 19.4713L17.862 18.8047C17.7367 18.6793 17.6667 18.51 17.6667 18.3333V17C17.6667 16.632 17.9647 16.3333 18.3333 16.3333C18.702 16.3333 19 16.632 19 17V18.0573L19.4713 18.5287ZM23 11.6667V13C23 13.368 22.702 13.6667 22.3333 13.6667C21.9647 13.6667 21.6667 13.368 21.6667 13V11.6667C21.6667 10.564 20.7693 9.66667 19.6667 9.66667H10.3333C9.23067 9.66667 8.33333 10.564 8.33333 11.6667V12.3333H14.3333C14.7013 12.3333 15 12.632 15 13C15 13.368 14.7013 13.6667 14.3333 13.6667H8.33333V19.6667C8.33333 20.7693 9.23067 21.6667 10.3333 21.6667H13C13.368 21.6667 13.6667 21.9653 13.6667 22.3333C13.6667 22.7013 13.368 23 13 23H10.3333C8.49533 23 7 21.5047 7 19.6667V11.6667C7 9.82867 8.49533 8.33333 10.3333 8.33333H11V7.66667C11 7.29867 11.2987 7 11.6667 7C12.0347 7 12.3333 7.29867 12.3333 7.66667V8.33333H17.6667V7.66667C17.6667 7.29867 17.9647 7 18.3333 7C18.702 7 19 7.29867 19 7.66667V8.33333H19.6667C21.5047 8.33333 23 9.82867 23 11.6667Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON B\u00DASQUEDA DE CUPOS -->\r\n<div *ngIf=\"icon == 'calendar-search'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M23 11.6667V13C23 13.368 22.702 13.6667 22.3333 13.6667C21.9647 13.6667 21.6667 13.368 21.6667 13V11.6667C21.6667 10.564 20.7693 9.66667 19.6667 9.66667H10.3333C9.23067 9.66667 8.33333 10.564 8.33333 11.6667V12.3333H14.3333C14.7013 12.3333 15 12.632 15 13C15 13.368 14.7013 13.6667 14.3333 13.6667H8.33333V19.6667C8.33333 20.7693 9.23067 21.6667 10.3333 21.6667H13C13.368 21.6667 13.6667 21.9653 13.6667 22.3333C13.6667 22.7013 13.368 23 13 23H10.3333C8.49533 23 7 21.5047 7 19.6667V11.6667C7 9.82867 8.49533 8.33333 10.3333 8.33333H11V7.66667C11 7.29867 11.2987 7 11.6667 7C12.0347 7 12.3333 7.29867 12.3333 7.66667V8.33333H17.6667V7.66667C17.6667 7.29867 17.9647 7 18.3333 7C18.702 7 19 7.29867 19 7.66667V8.33333H19.6667C21.5047 8.33333 23 9.82867 23 11.6667Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M20.4517 18.086C20.4517 17.4587 20.2022 16.857 19.7587 16.4134C19.3151 15.9698 18.7134 15.7205 18.086 15.7204C17.4586 15.7204 16.857 15.9697 16.4134 16.4134C15.9697 16.857 15.7204 17.4586 15.7204 18.086C15.7205 18.7134 15.9698 19.3151 16.4134 19.7587C16.857 20.2022 17.4587 20.4517 18.086 20.4517C18.7134 20.4516 19.3151 20.2023 19.7587 19.7587C20.2023 19.3151 20.4516 18.7134 20.4517 18.086ZM21.8915 18.086C21.8915 18.8519 21.66 19.5936 21.2368 20.2188L22.7095 21.6907L22.7587 21.7454C22.9895 22.0282 22.9731 22.4458 22.7095 22.7095C22.4458 22.9731 22.0282 22.9895 21.7454 22.7587L21.6907 22.7095L20.2188 21.2368C19.5936 21.66 18.8519 21.8915 18.086 21.8915C17.0767 21.8915 16.1083 21.4904 15.3946 20.7767C14.6811 20.063 14.2798 19.0952 14.2798 18.086C14.2798 17.0767 14.6809 16.1083 15.3946 15.3946C16.1083 14.6809 17.0767 14.2798 18.086 14.2798C19.0952 14.2798 20.063 14.6811 20.7767 15.3946C21.4904 16.1083 21.8915 17.0767 21.8915 18.086Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M23 11.6667V13C23 13.368 22.702 13.6667 22.3333 13.6667C21.9647 13.6667 21.6667 13.368 21.6667 13V11.6667C21.6667 10.564 20.7693 9.66667 19.6667 9.66667H10.3333C9.23067 9.66667 8.33333 10.564 8.33333 11.6667V12.3333H14.3333C14.7013 12.3333 15 12.632 15 13C15 13.368 14.7013 13.6667 14.3333 13.6667H8.33333V19.6667C8.33333 20.7693 9.23067 21.6667 10.3333 21.6667H13C13.368 21.6667 13.6667 21.9653 13.6667 22.3333C13.6667 22.7013 13.368 23 13 23H10.3333C8.49533 23 7 21.5047 7 19.6667V11.6667C7 9.82867 8.49533 8.33333 10.3333 8.33333H11V7.66667C11 7.29867 11.2987 7 11.6667 7C12.0347 7 12.3333 7.29867 12.3333 7.66667V8.33333H17.6667V7.66667C17.6667 7.29867 17.9647 7 18.3333 7C18.702 7 19 7.29867 19 7.66667V8.33333H19.6667C21.5047 8.33333 23 9.82867 23 11.6667Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M20.4517 18.086C20.4517 17.4587 20.2022 16.857 19.7587 16.4134C19.3151 15.9698 18.7134 15.7205 18.086 15.7204C17.4586 15.7204 16.857 15.9697 16.4134 16.4134C15.9697 16.857 15.7204 17.4586 15.7204 18.086C15.7205 18.7134 15.9698 19.3151 16.4134 19.7587C16.857 20.2022 17.4587 20.4517 18.086 20.4517C18.7134 20.4516 19.3151 20.2023 19.7587 19.7587C20.2023 19.3151 20.4516 18.7134 20.4517 18.086ZM21.8915 18.086C21.8915 18.8519 21.66 19.5936 21.2368 20.2188L22.7095 21.6907L22.7587 21.7454C22.9895 22.0282 22.9731 22.4458 22.7095 22.7095C22.4458 22.9731 22.0282 22.9895 21.7454 22.7587L21.6907 22.7095L20.2188 21.2368C19.5936 21.66 18.8519 21.8915 18.086 21.8915C17.0767 21.8915 16.1083 21.4904 15.3946 20.7767C14.6811 20.063 14.2798 19.0952 14.2798 18.086C14.2798 17.0767 14.6809 16.1083 15.3946 15.3946C16.1083 14.6809 17.0767 14.2798 18.086 14.2798C19.0952 14.2798 20.063 14.6811 20.7767 15.3946C21.4904 16.1083 21.8915 17.0767 21.8915 18.086Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON COLEGIATURA -->\r\n<div *ngIf=\"icon == 'tuition'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.9823 7H18.0177C19.035 7 19.8558 7 20.501 7.08707C21.1708 7.17638 21.7349 7.36987 22.1829 7.81714C22.6309 8.26516 22.8229 8.82927 22.9137 9.49905C23 10.1443 23 10.9651 23 11.9825V15.0412C23 16.0585 23 16.8794 22.9137 17.5246C22.8229 18.1944 22.6309 18.7585 22.1829 19.2065C21.8123 19.5771 21.3606 19.7744 20.8314 19.8815C20.5351 19.9379 20.2352 19.9742 19.934 19.9902L19.9392 20.0021C20.1423 20.4784 19.9689 21.0328 19.5075 21.294C19.3856 21.3591 19.2526 21.401 19.1153 21.4176C19.0067 21.4339 18.8698 21.4473 18.7187 21.4622L18.7038 21.4637C18.6285 21.471 18.5533 21.4799 18.4783 21.4905C18.4693 21.4938 18.4609 21.4989 18.4538 21.5054L18.4448 21.5165L18.4411 21.5374C18.4359 21.5746 18.43 21.6259 18.4203 21.7197L18.418 21.7346C18.4032 21.879 18.389 22.0114 18.3712 22.1179C18.3514 22.2566 18.3057 22.3904 18.2365 22.5123C17.9574 22.964 17.4015 23.1032 16.9446 22.9238C16.8196 22.8711 16.7046 22.7973 16.6045 22.7058C16.5035 22.6165 16.4047 22.5246 16.3083 22.4304L15 21.1764L13.6917 22.4304C13.5801 22.5376 13.4804 22.6329 13.3955 22.7058C13.2955 22.7976 13.1805 22.8716 13.0554 22.9246C12.5985 23.1032 12.0426 22.964 11.7635 22.5123C11.6945 22.3904 11.6491 22.2566 11.6296 22.1179C11.6096 21.9909 11.5937 21.8633 11.582 21.7353L11.5797 21.7205C11.5731 21.6523 11.5649 21.5843 11.5552 21.5165L11.5462 21.5054C11.5391 21.4989 11.5307 21.4938 11.5217 21.4905L11.4897 21.4845C11.4253 21.4764 11.3608 21.4694 11.2962 21.4637L11.2813 21.4622C11.1295 21.4473 10.9933 21.4339 10.8847 21.4176C10.7474 21.401 10.6144 21.3591 10.4925 21.294C10.2735 21.1702 10.1082 20.9696 10.0285 20.731C9.94881 20.4924 9.96032 20.2327 10.0608 20.0021L10.066 19.9902C9.79304 19.9761 9.52115 19.9452 9.25191 19.8979C8.68781 19.7937 8.20781 19.5972 7.81712 19.2058C7.36912 18.7585 7.17712 18.1937 7.08707 17.5239C7 16.8794 7 16.0585 7 15.0412V11.9825C7 10.9651 7 10.1443 7.08707 9.49905C7.17637 8.82927 7.36986 8.26516 7.81712 7.81714C8.26512 7.36913 8.82921 7.17712 9.49898 7.08707C10.1442 7 10.965 7 11.9823 7ZM11.0804 18.9044L11.6876 18.3224L12.2153 17.794C12.2615 17.0869 12.575 16.4239 13.0922 15.9394C13.6093 15.455 14.2914 15.1854 15 15.1854C15.7086 15.1854 16.3907 15.455 16.9078 15.9394C17.425 16.4239 17.7385 17.0869 17.7847 17.794L18.3131 18.3224L18.9531 18.9364V18.9044C19.6869 18.8969 20.2108 18.8687 20.6089 18.7883C20.9914 18.7101 21.2207 18.5896 21.3933 18.4169C21.5994 18.2108 21.7334 17.922 21.8071 17.375C21.8822 16.8131 21.8837 16.0682 21.8837 15.0003V12.0234C21.8837 10.9555 21.8822 10.2098 21.8071 9.6479C21.7334 9.10165 21.5987 8.81289 21.3933 8.60675C21.1872 8.4006 20.8984 8.26664 20.3514 8.19297C19.7896 8.1178 19.0447 8.11631 17.9767 8.11631H12.0233C10.9553 8.11631 10.2097 8.1178 9.64781 8.19297C9.10158 8.26664 8.81284 8.40135 8.6067 8.60675C8.40056 8.81289 8.2666 9.10165 8.19293 9.64864C8.11777 10.209 8.11628 10.9547 8.11628 12.0234V15.0003C8.11628 16.0682 8.11777 16.8139 8.19293 17.3758C8.2666 17.922 8.4013 18.2108 8.6067 18.4169C8.78753 18.5978 9.03237 18.722 9.45358 18.8002C9.8547 18.8739 10.3719 18.8969 11.0804 18.9044ZM17.5421 19.1299C17.2378 19.7992 16.6823 20.3218 15.9957 20.5848L17.0703 21.6148C17.1656 21.7063 17.2333 21.7711 17.2861 21.8187C17.2928 21.7621 17.301 21.6922 17.31 21.6014L17.3137 21.5642C17.3286 21.4272 17.3449 21.2657 17.4015 21.1191C17.5265 20.7954 17.787 20.5506 18.1085 20.4367C18.2528 20.3853 18.4128 20.3697 18.5565 20.3563L18.7953 20.3325L18.6361 20.1792L17.5421 19.1299ZM15.0223 19.6508L15 19.63L14.9777 19.6516C14.5356 19.6457 14.1137 19.4651 13.8042 19.1494C13.4947 18.8336 13.3227 18.4082 13.3256 17.9661C13.3286 17.5239 13.5063 17.1009 13.82 16.7893C14.1336 16.4777 14.5579 16.3028 15 16.3028C15.4421 16.3028 15.8664 16.4777 16.18 16.7893C16.4937 17.1009 16.6714 17.5239 16.6744 17.9661C16.6773 18.4082 16.5053 18.8336 16.1958 19.1494C15.8863 19.4651 15.4644 19.6449 15.0223 19.6508ZM14.0043 20.5855L12.9297 21.6155C12.8344 21.7071 12.7667 21.7718 12.7139 21.8194L12.69 21.6021L12.6863 21.5649C12.6714 21.428 12.6551 21.2665 12.5985 21.1199C12.5369 20.9619 12.4418 20.8191 12.3197 20.7013C12.1977 20.5835 12.0516 20.4935 11.8915 20.4374C11.7461 20.3924 11.5956 20.3654 11.4435 20.3571L11.2054 20.3333C11.2466 20.2921 11.2994 20.241 11.3639 20.1799L12.4579 19.1306C12.7622 19.7999 13.3177 20.3226 14.0043 20.5855ZM12.2093 10.535C12.2093 10.387 12.2681 10.245 12.3728 10.1403C12.4774 10.0356 12.6194 9.97684 12.7674 9.97684H17.2326C17.3806 9.97684 17.5226 10.0356 17.6272 10.1403C17.7319 10.245 17.7907 10.387 17.7907 10.535C17.7907 10.683 17.7319 10.825 17.6272 10.9297C17.5226 11.0343 17.3806 11.0932 17.2326 11.0932H12.7674C12.6194 11.0932 12.4774 11.0343 12.3728 10.9297C12.2681 10.825 12.2093 10.683 12.2093 10.535ZM10.7209 13.1397C10.7209 12.9917 10.7797 12.8497 10.8844 12.7451C10.9891 12.6404 11.131 12.5816 11.2791 12.5816H18.7209C18.869 12.5816 19.0109 12.6404 19.1156 12.7451C19.2203 12.8497 19.2791 12.9917 19.2791 13.1397C19.2791 13.2878 19.2203 13.4297 19.1156 13.5344C19.0109 13.6391 18.869 13.6979 18.7209 13.6979H11.2791C11.131 13.6979 10.9891 13.6391 10.8844 13.5344C10.7797 13.4297 10.7209 13.2878 10.7209 13.1397Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M11.9823 7H18.0177C19.035 7 19.8558 7 20.501 7.08707C21.1708 7.17638 21.7349 7.36987 22.1829 7.81714C22.6309 8.26516 22.8229 8.82927 22.9137 9.49905C23 10.1443 23 10.9651 23 11.9825V15.0412C23 16.0585 23 16.8794 22.9137 17.5246C22.8229 18.1944 22.6309 18.7585 22.1829 19.2065C21.8123 19.5771 21.3606 19.7744 20.8314 19.8815C20.5351 19.9379 20.2352 19.9742 19.934 19.9902L19.9392 20.0021C20.1423 20.4784 19.9689 21.0328 19.5075 21.294C19.3856 21.3591 19.2526 21.401 19.1153 21.4176C19.0067 21.4339 18.8698 21.4473 18.7187 21.4622L18.7038 21.4637C18.6285 21.471 18.5533 21.4799 18.4783 21.4905C18.4693 21.4938 18.4609 21.4989 18.4538 21.5054L18.4448 21.5165L18.4411 21.5374C18.4359 21.5746 18.43 21.6259 18.4203 21.7197L18.418 21.7346C18.4032 21.879 18.389 22.0114 18.3712 22.1179C18.3514 22.2566 18.3057 22.3904 18.2365 22.5123C17.9574 22.964 17.4015 23.1032 16.9446 22.9238C16.8196 22.8711 16.7046 22.7973 16.6045 22.7058C16.5035 22.6165 16.4047 22.5246 16.3083 22.4304L15 21.1764L13.6917 22.4304C13.5801 22.5376 13.4804 22.6329 13.3955 22.7058C13.2955 22.7976 13.1805 22.8716 13.0554 22.9246C12.5985 23.1032 12.0426 22.964 11.7635 22.5123C11.6945 22.3904 11.6491 22.2566 11.6296 22.1179C11.6096 21.9909 11.5937 21.8633 11.582 21.7353L11.5797 21.7205C11.5731 21.6523 11.5649 21.5843 11.5552 21.5165L11.5462 21.5054C11.5391 21.4989 11.5307 21.4938 11.5217 21.4905L11.4897 21.4845C11.4253 21.4764 11.3608 21.4694 11.2962 21.4637L11.2813 21.4622C11.1295 21.4473 10.9933 21.4339 10.8847 21.4176C10.7474 21.401 10.6144 21.3591 10.4925 21.294C10.2735 21.1702 10.1082 20.9696 10.0285 20.731C9.94881 20.4924 9.96032 20.2327 10.0608 20.0021L10.066 19.9902C9.79304 19.9761 9.52115 19.9452 9.25191 19.8979C8.68781 19.7937 8.20781 19.5972 7.81712 19.2058C7.36912 18.7585 7.17712 18.1937 7.08707 17.5239C7 16.8794 7 16.0585 7 15.0412V11.9825C7 10.9651 7 10.1443 7.08707 9.49905C7.17637 8.82927 7.36986 8.26516 7.81712 7.81714C8.26512 7.36913 8.82921 7.17712 9.49898 7.08707C10.1442 7 10.965 7 11.9823 7ZM11.0804 18.9044L11.6876 18.3224L12.2153 17.794C12.2615 17.0869 12.575 16.4239 13.0922 15.9394C13.6093 15.455 14.2914 15.1854 15 15.1854C15.7086 15.1854 16.3907 15.455 16.9078 15.9394C17.425 16.4239 17.7385 17.0869 17.7847 17.794L18.3131 18.3224L18.9531 18.9364V18.9044C19.6869 18.8969 20.2108 18.8687 20.6089 18.7883C20.9914 18.7101 21.2207 18.5896 21.3933 18.4169C21.5994 18.2108 21.7334 17.922 21.8071 17.375C21.8822 16.8131 21.8837 16.0682 21.8837 15.0003V12.0234C21.8837 10.9555 21.8822 10.2098 21.8071 9.6479C21.7334 9.10165 21.5987 8.81289 21.3933 8.60675C21.1872 8.4006 20.8984 8.26664 20.3514 8.19297C19.7896 8.1178 19.0447 8.11631 17.9767 8.11631H12.0233C10.9553 8.11631 10.2097 8.1178 9.64781 8.19297C9.10158 8.26664 8.81284 8.40135 8.6067 8.60675C8.40056 8.81289 8.2666 9.10165 8.19293 9.64864C8.11777 10.209 8.11628 10.9547 8.11628 12.0234V15.0003C8.11628 16.0682 8.11777 16.8139 8.19293 17.3758C8.2666 17.922 8.4013 18.2108 8.6067 18.4169C8.78753 18.5978 9.03237 18.722 9.45358 18.8002C9.8547 18.8739 10.3719 18.8969 11.0804 18.9044ZM17.5421 19.1299C17.2378 19.7992 16.6823 20.3218 15.9957 20.5848L17.0703 21.6148C17.1656 21.7063 17.2333 21.7711 17.2861 21.8187C17.2928 21.7621 17.301 21.6922 17.31 21.6014L17.3137 21.5642C17.3286 21.4272 17.3449 21.2657 17.4015 21.1191C17.5265 20.7954 17.787 20.5506 18.1085 20.4367C18.2528 20.3853 18.4128 20.3697 18.5565 20.3563L18.7953 20.3325L18.6361 20.1792L17.5421 19.1299ZM15.0223 19.6508L15 19.63L14.9777 19.6516C14.5356 19.6457 14.1137 19.4651 13.8042 19.1494C13.4947 18.8336 13.3227 18.4082 13.3256 17.9661C13.3286 17.5239 13.5063 17.1009 13.82 16.7893C14.1336 16.4777 14.5579 16.3028 15 16.3028C15.4421 16.3028 15.8664 16.4777 16.18 16.7893C16.4937 17.1009 16.6714 17.5239 16.6744 17.9661C16.6773 18.4082 16.5053 18.8336 16.1958 19.1494C15.8863 19.4651 15.4644 19.6449 15.0223 19.6508ZM14.0043 20.5855L12.9297 21.6155C12.8344 21.7071 12.7667 21.7718 12.7139 21.8194L12.69 21.6021L12.6863 21.5649C12.6714 21.428 12.6551 21.2665 12.5985 21.1199C12.5369 20.9619 12.4418 20.8191 12.3197 20.7013C12.1977 20.5835 12.0516 20.4935 11.8915 20.4374C11.7461 20.3924 11.5956 20.3654 11.4435 20.3571L11.2054 20.3333C11.2466 20.2921 11.2994 20.241 11.3639 20.1799L12.4579 19.1306C12.7622 19.7999 13.3177 20.3226 14.0043 20.5855ZM12.2093 10.535C12.2093 10.387 12.2681 10.245 12.3728 10.1403C12.4774 10.0356 12.6194 9.97684 12.7674 9.97684H17.2326C17.3806 9.97684 17.5226 10.0356 17.6272 10.1403C17.7319 10.245 17.7907 10.387 17.7907 10.535C17.7907 10.683 17.7319 10.825 17.6272 10.9297C17.5226 11.0343 17.3806 11.0932 17.2326 11.0932H12.7674C12.6194 11.0932 12.4774 11.0343 12.3728 10.9297C12.2681 10.825 12.2093 10.683 12.2093 10.535ZM10.7209 13.1397C10.7209 12.9917 10.7797 12.8497 10.8844 12.7451C10.9891 12.6404 11.131 12.5816 11.2791 12.5816H18.7209C18.869 12.5816 19.0109 12.6404 19.1156 12.7451C19.2203 12.8497 19.2791 12.9917 19.2791 13.1397C19.2791 13.2878 19.2203 13.4297 19.1156 13.5344C19.0109 13.6391 18.869 13.6979 18.7209 13.6979H11.2791C11.131 13.6979 10.9891 13.6391 10.8844 13.5344C10.7797 13.4297 10.7209 13.2878 10.7209 13.1397Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON DNI -->\r\n<div *ngIf=\"icon == 'identification-document'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.1855 7C22.8774 7 23.9999 8.09969 24 11.7178V18.2822C24 21.9007 22.8776 23 19.1855 23H10.8135C7.12176 22.9999 6 21.9006 6 18.2822V11.7178C6.0001 8.09983 7.12192 7.00008 10.8135 7H19.1855ZM10.8135 8.23145C7.81683 8.2315 7.25592 8.7891 7.25586 11.7178V18.2822C7.25586 21.2113 7.81667 21.7695 10.8135 21.7695H19.1855C22.1827 21.7695 22.7441 21.2115 22.7441 18.2822V11.7178C22.7441 8.78896 22.1826 8.23145 19.1855 8.23145H10.8135ZM11.3662 15.7061C11.8266 15.665 12.2955 15.6651 12.7559 15.7061C14.2627 15.8455 15.4683 17.0187 15.6191 18.4873C15.6526 18.8237 15.4018 19.1273 15.0586 19.1602C15.0419 19.1683 15.0167 19.1689 15 19.1689C14.6819 19.1689 14.4056 18.9304 14.3721 18.6104C14.2799 17.7243 13.5511 17.0108 12.6387 16.9287C12.2537 16.8959 11.8684 16.8959 11.4834 16.9287C10.5711 17.0109 9.84317 17.7162 9.75098 18.6104C9.7175 18.9467 9.4076 19.201 9.06445 19.1602C8.7212 19.1273 8.46944 18.8237 8.50293 18.4873C8.65369 17.0105 9.85106 15.8374 11.3662 15.7061ZM20.8604 17.667C21.2034 17.6671 21.4881 17.946 21.4883 18.2822C21.4883 18.6186 21.2035 18.8974 20.8604 18.8975H19.1855C18.8424 18.8973 18.5576 18.6186 18.5576 18.2822C18.5578 17.946 18.8425 17.6671 19.1855 17.667H20.8604ZM20.8604 14.3848C21.2036 14.3848 21.4883 14.6646 21.4883 15.001C21.488 15.3372 21.2034 15.6161 20.8604 15.6162H17.5117C17.1686 15.6162 16.884 15.3372 16.8838 15.001C16.8838 14.6646 17.1685 14.3848 17.5117 14.3848H20.8604ZM12.0693 10.832C13.2498 10.832 14.2129 11.7757 14.2129 12.9326C14.2129 14.0895 13.2498 15.0332 12.0693 15.0332C10.8891 15.033 9.92678 14.0894 9.92676 12.9326C9.92676 11.7758 10.8891 10.8322 12.0693 10.832ZM12.0693 12.0625C11.5839 12.0627 11.1826 12.4569 11.1826 12.9326C11.1826 13.4084 11.584 13.8025 12.0693 13.8027C12.5549 13.8027 12.957 13.4085 12.957 12.9326C12.957 12.4567 12.5549 12.0625 12.0693 12.0625ZM20.8604 11.1025C21.2036 11.1026 21.4883 11.3824 21.4883 11.7188C21.4881 12.055 21.2034 12.3339 20.8604 12.334H16.6738C16.3309 12.3337 16.0471 12.0548 16.0469 11.7188C16.0469 11.3825 16.3308 11.1028 16.6738 11.1025H20.8604Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.1855 7C22.8774 7 23.9999 8.09969 24 11.7178V18.2822C24 21.9007 22.8776 23 19.1855 23H10.8135C7.12176 22.9999 6 21.9006 6 18.2822V11.7178C6.0001 8.09983 7.12192 7.00008 10.8135 7H19.1855ZM10.8135 8.23145C7.81683 8.2315 7.25592 8.7891 7.25586 11.7178V18.2822C7.25586 21.2113 7.81667 21.7695 10.8135 21.7695H19.1855C22.1827 21.7695 22.7441 21.2115 22.7441 18.2822V11.7178C22.7441 8.78896 22.1826 8.23145 19.1855 8.23145H10.8135ZM11.3662 15.7061C11.8266 15.665 12.2955 15.6651 12.7559 15.7061C14.2627 15.8455 15.4683 17.0187 15.6191 18.4873C15.6526 18.8237 15.4018 19.1273 15.0586 19.1602C15.0419 19.1683 15.0167 19.1689 15 19.1689C14.6819 19.1689 14.4056 18.9304 14.3721 18.6104C14.2799 17.7243 13.5511 17.0108 12.6387 16.9287C12.2537 16.8959 11.8684 16.8959 11.4834 16.9287C10.5711 17.0109 9.84317 17.7162 9.75098 18.6104C9.7175 18.9467 9.4076 19.201 9.06445 19.1602C8.7212 19.1273 8.46944 18.8237 8.50293 18.4873C8.65369 17.0105 9.85106 15.8374 11.3662 15.7061ZM20.8604 17.667C21.2034 17.6671 21.4881 17.946 21.4883 18.2822C21.4883 18.6186 21.2035 18.8974 20.8604 18.8975H19.1855C18.8424 18.8973 18.5576 18.6186 18.5576 18.2822C18.5578 17.946 18.8425 17.6671 19.1855 17.667H20.8604ZM20.8604 14.3848C21.2036 14.3848 21.4883 14.6646 21.4883 15.001C21.488 15.3372 21.2034 15.6161 20.8604 15.6162H17.5117C17.1686 15.6162 16.884 15.3372 16.8838 15.001C16.8838 14.6646 17.1685 14.3848 17.5117 14.3848H20.8604ZM12.0693 10.832C13.2498 10.832 14.2129 11.7757 14.2129 12.9326C14.2129 14.0895 13.2498 15.0332 12.0693 15.0332C10.8891 15.033 9.92678 14.0894 9.92676 12.9326C9.92676 11.7758 10.8891 10.8322 12.0693 10.832ZM12.0693 12.0625C11.5839 12.0627 11.1826 12.4569 11.1826 12.9326C11.1826 13.4084 11.584 13.8025 12.0693 13.8027C12.5549 13.8027 12.957 13.4085 12.957 12.9326C12.957 12.4567 12.5549 12.0625 12.0693 12.0625ZM20.8604 11.1025C21.2036 11.1026 21.4883 11.3824 21.4883 11.7188C21.4881 12.055 21.2034 12.3339 20.8604 12.334H16.6738C16.3309 12.3337 16.0471 12.0548 16.0469 11.7188C16.0469 11.3825 16.3308 11.1028 16.6738 11.1025H20.8604Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON FACTURACI\u00D3N -->\r\n<div *ngIf=\"icon == 'billing'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.5342 7.05859C19.7022 6.98056 19.9023 6.98061 20.0703 7.05859L21.6719 7.83887H21.6641C21.872 7.9404 22 8.13604 22 8.3623V22.4141C22 22.617 21.8879 22.8048 21.7119 22.9141C21.5358 23.0156 21.3031 23.0234 21.127 22.9375L19.7988 22.2891L18.4697 22.9375C18.3017 23.0155 18.1016 23.0155 17.9336 22.9375L16.5967 22.2891L15.2676 22.9375C15.0996 23.0154 14.8994 23.0155 14.7314 22.9375L13.3945 22.2891L12.0664 22.9375C11.8984 23.0155 11.6983 23.0154 11.5303 22.9375L10.1934 22.2891L8.86426 22.9375C8.78435 22.9764 8.68846 23 8.60059 23C8.49654 23 8.38413 22.9687 8.28809 22.9141C8.11199 22.8048 8 22.617 8 22.4141V8.3623C8 8.14372 8.12802 7.93255 8.32812 7.83887L9.92871 7.05859C10.0968 6.98053 10.2977 6.98053 10.4658 7.05859L11.8018 7.70605L13.1309 7.05859C13.299 6.98053 13.4989 6.98053 13.667 7.05859L14.9883 7.70605L16.3242 7.05859C16.4923 6.98053 16.6932 6.98053 16.8613 7.05859L18.1973 7.70605L19.5342 7.05859ZM18.4541 8.88477C18.2861 8.96279 18.086 8.96271 17.918 8.88477L16.5811 8.2373L15.252 8.88477C15.0839 8.96283 14.8839 8.96283 14.7158 8.88477L13.3867 8.2373L12.0586 8.88477C11.8905 8.96283 11.6896 8.96283 11.5215 8.88477L10.1934 8.2373L9.19238 8.7207V21.4619L9.9209 21.1025C10.0889 21.0245 10.289 21.0246 10.457 21.1025L11.7939 21.751L13.123 21.1025C13.2911 21.0246 13.4912 21.0245 13.6592 21.1025L14.9961 21.751L16.3242 21.1025C16.4122 21.0635 16.5087 21.0401 16.5967 21.04C16.6847 21.04 16.7813 21.0635 16.8613 21.1025L18.1973 21.751L19.5264 21.1025C19.6944 21.0245 19.8945 21.0246 20.0625 21.1025L20.7988 21.4619V8.7207H20.791L19.791 8.2373L18.4541 8.88477ZM15.1074 14.1123C15.3237 14.0985 15.5574 14.2478 15.585 14.4688C15.6081 14.6524 15.7041 14.7046 15.8584 14.7627C16.065 14.8403 16.266 14.9453 16.4502 15.0654C16.6975 15.2275 16.7498 15.4782 16.6094 15.6865C16.463 15.903 16.1585 15.9682 15.9141 15.835C15.8025 15.7743 15.6942 15.7063 15.5781 15.6562C15.3568 15.5605 15.1232 15.5313 14.8936 15.6133C14.8064 15.6446 14.7183 15.7161 14.667 15.793C14.5829 15.9188 14.6386 16.0454 14.7881 16.1055C15.1126 16.2356 15.4404 16.3582 15.7656 16.4883C16.2109 16.6666 16.5797 16.9288 16.7383 17.3955C16.9583 18.0425 16.568 18.7482 15.8516 19.0137C15.7778 19.0412 15.7014 19.0641 15.6309 19.0879V19.0889C15.6168 19.1676 15.6103 19.2408 15.5898 19.3096C15.5244 19.5267 15.3045 19.6643 15.0723 19.6387C14.8606 19.6155 14.6715 19.4379 14.6631 19.2227C14.658 19.097 14.616 19.0464 14.4932 19.0107C14.1711 18.9169 13.8923 18.7449 13.6543 18.5127C13.4272 18.2911 13.4075 18.0006 13.6045 17.8047C13.8028 17.607 14.0939 17.6205 14.3281 17.8389C14.62 18.1116 14.9669 18.2238 15.3672 18.1719C15.4291 18.1637 15.491 18.1423 15.5479 18.1162C15.6999 18.0467 15.8253 17.9407 15.833 17.7686C15.84 17.6091 15.7168 17.5094 15.584 17.4512C15.2152 17.2904 14.8423 17.138 14.4658 16.9941C13.9578 16.8002 13.6797 16.4396 13.6738 15.9141C13.6681 15.371 13.9588 14.9883 14.4609 14.7686C14.5893 14.7122 14.6638 14.6672 14.665 14.5107C14.6672 14.3006 14.8824 14.1267 15.1074 14.1123ZM19.0068 11.6807C19.3349 11.6807 19.6073 11.9456 19.6074 12.2656C19.6074 12.5857 19.335 12.8516 19.0068 12.8516H11.002C10.674 12.8513 10.4023 12.5855 10.4023 12.2656C10.4025 11.9458 10.6741 11.6809 11.002 11.6807H19.0068ZM17.4023 10.1191C17.7304 10.1192 18.0028 10.3841 18.0029 10.7041C18.0029 11.0242 17.7305 11.29 17.4023 11.29H12.5996C12.2714 11.29 11.999 11.0242 11.999 10.7041C11.9991 10.3841 12.2715 10.1191 12.5996 10.1191H17.4023Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.5342 7.05859C19.7022 6.98056 19.9023 6.98061 20.0703 7.05859L21.6719 7.83887H21.6641C21.872 7.9404 22 8.13604 22 8.3623V22.4141C22 22.617 21.8879 22.8048 21.7119 22.9141C21.5358 23.0156 21.3031 23.0234 21.127 22.9375L19.7988 22.2891L18.4697 22.9375C18.3017 23.0155 18.1016 23.0155 17.9336 22.9375L16.5967 22.2891L15.2676 22.9375C15.0996 23.0154 14.8994 23.0155 14.7314 22.9375L13.3945 22.2891L12.0664 22.9375C11.8984 23.0155 11.6983 23.0154 11.5303 22.9375L10.1934 22.2891L8.86426 22.9375C8.78435 22.9764 8.68846 23 8.60059 23C8.49654 23 8.38413 22.9687 8.28809 22.9141C8.11199 22.8048 8 22.617 8 22.4141V8.3623C8 8.14372 8.12802 7.93255 8.32812 7.83887L9.92871 7.05859C10.0968 6.98053 10.2977 6.98053 10.4658 7.05859L11.8018 7.70605L13.1309 7.05859C13.299 6.98053 13.4989 6.98053 13.667 7.05859L14.9883 7.70605L16.3242 7.05859C16.4923 6.98053 16.6932 6.98053 16.8613 7.05859L18.1973 7.70605L19.5342 7.05859ZM18.4541 8.88477C18.2861 8.96279 18.086 8.96271 17.918 8.88477L16.5811 8.2373L15.252 8.88477C15.0839 8.96283 14.8839 8.96283 14.7158 8.88477L13.3867 8.2373L12.0586 8.88477C11.8905 8.96283 11.6896 8.96283 11.5215 8.88477L10.1934 8.2373L9.19238 8.7207V21.4619L9.9209 21.1025C10.0889 21.0245 10.289 21.0246 10.457 21.1025L11.7939 21.751L13.123 21.1025C13.2911 21.0246 13.4912 21.0245 13.6592 21.1025L14.9961 21.751L16.3242 21.1025C16.4122 21.0635 16.5087 21.0401 16.5967 21.04C16.6847 21.04 16.7813 21.0635 16.8613 21.1025L18.1973 21.751L19.5264 21.1025C19.6944 21.0245 19.8945 21.0246 20.0625 21.1025L20.7988 21.4619V8.7207H20.791L19.791 8.2373L18.4541 8.88477ZM15.1074 14.1123C15.3237 14.0985 15.5574 14.2478 15.585 14.4688C15.6081 14.6524 15.7041 14.7046 15.8584 14.7627C16.065 14.8403 16.266 14.9453 16.4502 15.0654C16.6975 15.2275 16.7498 15.4782 16.6094 15.6865C16.463 15.903 16.1585 15.9682 15.9141 15.835C15.8025 15.7743 15.6942 15.7063 15.5781 15.6562C15.3568 15.5605 15.1232 15.5313 14.8936 15.6133C14.8064 15.6446 14.7183 15.7161 14.667 15.793C14.5829 15.9188 14.6386 16.0454 14.7881 16.1055C15.1126 16.2356 15.4404 16.3582 15.7656 16.4883C16.2109 16.6666 16.5797 16.9288 16.7383 17.3955C16.9583 18.0425 16.568 18.7482 15.8516 19.0137C15.7778 19.0412 15.7014 19.0641 15.6309 19.0879V19.0889C15.6168 19.1676 15.6103 19.2408 15.5898 19.3096C15.5244 19.5267 15.3045 19.6643 15.0723 19.6387C14.8606 19.6155 14.6715 19.4379 14.6631 19.2227C14.658 19.097 14.616 19.0464 14.4932 19.0107C14.1711 18.9169 13.8923 18.7449 13.6543 18.5127C13.4272 18.2911 13.4075 18.0006 13.6045 17.8047C13.8028 17.607 14.0939 17.6205 14.3281 17.8389C14.62 18.1116 14.9669 18.2238 15.3672 18.1719C15.4291 18.1637 15.491 18.1423 15.5479 18.1162C15.6999 18.0467 15.8253 17.9407 15.833 17.7686C15.84 17.6091 15.7168 17.5094 15.584 17.4512C15.2152 17.2904 14.8423 17.138 14.4658 16.9941C13.9578 16.8002 13.6797 16.4396 13.6738 15.9141C13.6681 15.371 13.9588 14.9883 14.4609 14.7686C14.5893 14.7122 14.6638 14.6672 14.665 14.5107C14.6672 14.3006 14.8824 14.1267 15.1074 14.1123ZM19.0068 11.6807C19.3349 11.6807 19.6073 11.9456 19.6074 12.2656C19.6074 12.5857 19.335 12.8516 19.0068 12.8516H11.002C10.674 12.8513 10.4023 12.5855 10.4023 12.2656C10.4025 11.9458 10.6741 11.6809 11.002 11.6807H19.0068ZM17.4023 10.1191C17.7304 10.1192 18.0028 10.3841 18.0029 10.7041C18.0029 11.0242 17.7305 11.29 17.4023 11.29H12.5996C12.2714 11.29 11.999 11.0242 11.999 10.7041C11.9991 10.3841 12.2715 10.1191 12.5996 10.1191H17.4023Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON LISTA -->\r\n<div *ngIf=\"icon == 'list'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.5996 7C16.5937 7 17.4004 7.83948 17.4004 8.875C17.4004 9.91052 16.5937 10.75 15.5996 10.75H14.4004C13.6169 10.75 12.9513 10.228 12.7041 9.5H10.7998C10.4685 9.50011 10.2002 9.7799 10.2002 10.125V21.125C10.2002 21.4701 10.4685 21.7499 10.7998 21.75H19.2002C19.5315 21.7499 19.7998 21.4701 19.7998 21.125V10.125C19.7998 9.82311 19.5945 9.57112 19.3213 9.5127L19.0791 9.4873C18.8057 9.42903 18.5996 9.17704 18.5996 8.875C18.5996 8.52982 18.8688 8.25 19.2002 8.25C20.1942 8.25011 21 9.08955 21 10.125V21.125C21 22.1605 20.1942 22.9999 19.2002 23H10.7998C9.80579 22.9999 9 22.1605 9 21.125V10.125C9 9.08955 9.80579 8.25011 10.7998 8.25H12.7041C12.9513 7.52203 13.6169 7 14.4004 7H15.5996ZM18 18C18.3314 18 18.5996 18.2798 18.5996 18.625C18.5996 18.9702 18.3314 19.25 18 19.25H14.4004C14.069 19.25 13.7998 18.9702 13.7998 18.625C13.7998 18.2798 14.069 18 14.4004 18H18ZM18 15.5C18.3314 15.5 18.5996 15.7798 18.5996 16.125C18.5996 16.4702 18.3314 16.75 18 16.75H14.4004C14.069 16.75 13.7998 16.4702 13.7998 16.125C13.7998 15.7798 14.069 15.5 14.4004 15.5H18ZM18 13C18.3314 13 18.5996 13.2798 18.5996 13.625C18.5996 13.9702 18.3314 14.25 18 14.25H14.4004C14.069 14.25 13.7998 13.9702 13.7998 13.625C13.7998 13.2798 14.069 13 14.4004 13H18ZM14.4004 8.25C14.069 8.25 13.7998 8.52983 13.7998 8.875C13.7998 9.22017 14.069 9.5 14.4004 9.5H15.5996C15.931 9.5 16.2002 9.22017 16.2002 8.875C16.2002 8.52983 15.931 8.25 15.5996 8.25H14.4004Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.5996 7C16.5937 7 17.4004 7.83948 17.4004 8.875C17.4004 9.91052 16.5937 10.75 15.5996 10.75H14.4004C13.6169 10.75 12.9513 10.228 12.7041 9.5H10.7998C10.4685 9.50011 10.2002 9.7799 10.2002 10.125V21.125C10.2002 21.4701 10.4685 21.7499 10.7998 21.75H19.2002C19.5315 21.7499 19.7998 21.4701 19.7998 21.125V10.125C19.7998 9.82311 19.5945 9.57112 19.3213 9.5127L19.0791 9.4873C18.8057 9.42903 18.5996 9.17704 18.5996 8.875C18.5996 8.52982 18.8688 8.25 19.2002 8.25C20.1942 8.25011 21 9.08955 21 10.125V21.125C21 22.1605 20.1942 22.9999 19.2002 23H10.7998C9.80579 22.9999 9 22.1605 9 21.125V10.125C9 9.08955 9.80579 8.25011 10.7998 8.25H12.7041C12.9513 7.52203 13.6169 7 14.4004 7H15.5996ZM18 18C18.3314 18 18.5996 18.2798 18.5996 18.625C18.5996 18.9702 18.3314 19.25 18 19.25H14.4004C14.069 19.25 13.7998 18.9702 13.7998 18.625C13.7998 18.2798 14.069 18 14.4004 18H18ZM18 15.5C18.3314 15.5 18.5996 15.7798 18.5996 16.125C18.5996 16.4702 18.3314 16.75 18 16.75H14.4004C14.069 16.75 13.7998 16.4702 13.7998 16.125C13.7998 15.7798 14.069 15.5 14.4004 15.5H18ZM18 13C18.3314 13 18.5996 13.2798 18.5996 13.625C18.5996 13.9702 18.3314 14.25 18 14.25H14.4004C14.069 14.25 13.7998 13.9702 13.7998 13.625C13.7998 13.2798 14.069 13 14.4004 13H18ZM14.4004 8.25C14.069 8.25 13.7998 8.52983 13.7998 8.875C13.7998 9.22017 14.069 9.5 14.4004 9.5H15.5996C15.931 9.5 16.2002 9.22017 16.2002 8.875C16.2002 8.52983 15.931 8.25 15.5996 8.25H14.4004Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON USUARIO -->\r\n<div *ngIf=\"icon == 'user'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M14.9999 7.2959C15.9032 7.29562 16.7827 7.58556 17.5095 8.12315C18.2363 8.66074 18.772 9.41768 19.038 10.2829C19.304 11.148 19.2863 12.0759 18.9875 12.9302C18.6886 13.7846 18.1244 14.5204 17.3777 15.0298C18.6738 15.5063 19.798 16.3607 20.6056 17.483C21.4132 18.6053 21.8671 20.7143 21.909 22.0974C21.9129 22.1742 21.9015 22.251 21.8754 22.3233C21.8493 22.3956 21.8091 22.4619 21.7571 22.5184C21.7051 22.5749 21.6423 22.6204 21.5725 22.6523C21.5027 22.6842 21.4273 22.7017 21.3506 22.704C21.274 22.7063 21.1976 22.6931 21.1261 22.6654C21.0545 22.6377 20.9892 22.596 20.934 22.5426C20.8788 22.4893 20.8348 22.4254 20.8045 22.3548C20.7742 22.2842 20.7583 22.2082 20.7577 22.1313C20.712 20.6314 20.0854 18.4381 19.0106 17.3933C17.9359 16.3485 16.4975 15.7642 15.0003 15.7642C13.5031 15.7642 12.0647 16.3485 10.99 17.3933C9.91523 18.4381 9.2886 20.6314 9.24286 22.1313C9.23828 22.2844 9.1732 22.4294 9.06193 22.5345C8.95067 22.6395 8.80234 22.6959 8.64957 22.6913C8.4968 22.6867 8.35211 22.6215 8.24733 22.51C8.14254 22.3985 8.08625 22.2498 8.09084 22.0967C8.13288 20.7137 8.58689 18.6048 9.39444 17.4827C10.202 16.3605 11.3261 15.5062 12.6221 15.0298C11.8754 14.5204 11.3112 13.7846 11.0124 12.9302C10.7136 12.0759 10.6958 11.148 10.9618 10.2829C11.2278 9.41768 11.7635 8.66074 12.4903 8.12315C13.2171 7.58556 14.0966 7.29562 14.9999 7.2959ZM11.9278 11.5296C11.9278 12.3463 12.2515 13.1294 12.8276 13.7069C13.4038 14.2843 14.1851 14.6087 14.9999 14.6087C15.8147 14.6087 16.5961 14.2843 17.1722 13.7069C17.7483 13.1294 18.072 12.3463 18.072 11.5296C18.072 10.713 17.7483 9.92984 17.1722 9.3524C16.5961 8.77496 15.8147 8.45055 14.9999 8.45055C14.1851 8.45055 13.4038 8.77496 12.8276 9.3524C12.2515 9.92984 11.9278 10.713 11.9278 11.5296Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.0001 7C15.9667 6.99978 16.908 7.3097 17.6857 7.8849C18.4632 8.46008 19.0359 9.27011 19.3205 10.1955C19.605 11.121 19.5861 12.1137 19.2665 13.0276C19.0053 13.7743 18.5524 14.4341 17.9604 14.9487C19.1092 15.4678 20.1049 16.2812 20.8455 17.3104C21.2799 17.9141 21.607 18.7616 21.8306 19.6171C22.0547 20.4745 22.1824 21.3673 22.2046 22.0819C22.2106 22.198 22.193 22.3148 22.1536 22.4241C22.1141 22.5333 22.0538 22.6337 21.9752 22.7191C21.8966 22.8045 21.8013 22.8733 21.6957 22.9215C21.59 22.9698 21.4754 22.9962 21.3593 22.9996C21.2431 23.003 21.1274 22.9838 21.019 22.9418C20.9106 22.8998 20.8115 22.8365 20.7279 22.7557C20.6443 22.675 20.5779 22.5781 20.5322 22.4714C20.4874 22.3668 20.4636 22.2545 20.4618 22.1407L20.4474 21.8631C20.3978 21.1998 20.2415 20.4233 19.9895 19.6875C19.6999 18.8421 19.2938 18.0817 18.8038 17.6054C17.7843 16.6144 16.42 16.0602 15.0001 16.0602C13.5802 16.0602 12.2158 16.6144 11.1964 17.6054C10.7064 18.0817 10.3002 18.842 10.0107 19.6875C9.72266 20.5286 9.56024 21.4231 9.53836 22.1407C9.5313 22.3719 9.4337 22.5912 9.26556 22.75C9.09724 22.9088 8.8723 22.994 8.64093 22.9871C8.40944 22.9801 8.19027 22.8811 8.03171 22.7124C7.87323 22.5436 7.78765 22.3191 7.79458 22.0877L7.80807 21.8111C7.85017 21.1487 7.97193 20.3694 8.16859 19.6171C8.39229 18.7615 8.71928 17.9132 9.15375 17.3094C9.8942 16.2805 10.8903 15.4678 12.0388 14.9487C11.4469 14.4341 10.9938 13.7742 10.7327 13.0276C10.4132 12.1137 10.3942 11.1209 10.6787 10.1955C10.9633 9.27005 11.5369 8.46011 12.3145 7.8849C13.0922 7.30979 14.0335 6.9997 15.0001 7ZM15.0001 7.29593C14.0968 7.29566 13.2167 7.58541 12.49 8.123C11.7632 8.66059 11.2281 9.41806 10.9621 10.2832L10.8754 10.61C10.7046 11.3788 10.7508 12.1827 11.0122 12.9302C11.311 13.7845 11.8753 14.5204 12.622 15.0297C11.326 15.5061 10.2023 16.3608 9.39473 17.4829L9.24725 17.7046C8.53196 18.866 8.12998 20.7999 8.09051 22.0964C8.08593 22.2495 8.14285 22.3984 8.24764 22.5099C8.32617 22.5935 8.42688 22.6512 8.53682 22.6767L8.6496 22.6912C8.76395 22.6946 8.87588 22.6641 8.97156 22.6044L9.06217 22.534C9.17319 22.429 9.23785 22.284 9.24243 22.1311C9.28536 20.725 9.83904 18.7098 10.7934 17.6025L10.9901 17.3933C12.0648 16.3486 13.503 15.7643 15.0001 15.7642C16.4972 15.7642 17.9354 16.3487 19.0101 17.3933C20.0848 18.438 20.712 20.6312 20.7578 22.1311C20.7583 22.2079 20.7738 22.2842 20.804 22.3547C20.8343 22.4254 20.8789 22.4894 20.9342 22.5427C20.9893 22.596 21.0546 22.6374 21.126 22.6651C21.1619 22.679 21.1991 22.6895 21.2368 22.696L21.3506 22.7037C21.389 22.7025 21.4271 22.6979 21.4643 22.6892L21.5723 22.6526C21.6072 22.6367 21.6407 22.6172 21.6716 22.5948L21.7574 22.5186C21.8093 22.4621 21.8489 22.3952 21.875 22.3229C21.901 22.2507 21.9126 22.174 21.9087 22.0974C21.8668 20.7143 21.413 18.6052 20.6055 17.4829C19.7979 16.3607 18.6733 15.5062 17.3772 15.0297C18.1239 14.5204 18.6882 13.7845 18.987 12.9302C19.2484 12.1827 19.2955 11.3788 19.1248 10.61L19.0381 10.2832C18.7721 9.41803 18.236 8.66059 17.5093 8.123C16.8734 7.65276 16.1207 7.37212 15.3375 7.30943L15.0001 7.29593ZM17.7763 11.5296C17.7762 10.7913 17.4833 10.083 16.9627 9.56121C16.4421 9.03949 15.736 8.74674 15.0001 8.74667C14.2642 8.74667 13.5581 9.03959 13.0375 9.56121C12.5168 10.083 12.2239 10.7913 12.2239 11.5296C12.2239 12.2679 12.5168 12.9761 13.0375 13.498C13.5581 14.0196 14.2642 14.3125 15.0001 14.3125V14.6084L14.8478 14.6046C14.1391 14.5694 13.4642 14.2895 12.9382 13.8122L12.8274 13.7072C12.2871 13.1657 11.9694 12.4431 11.9318 11.6819L11.928 11.5296C11.928 10.713 12.2512 9.92946 12.8274 9.35203C13.4035 8.77465 14.1854 8.45074 15.0001 8.45074L15.1524 8.4546C15.9115 8.4924 16.6318 8.81094 17.1719 9.35203C17.748 9.92946 18.0722 10.713 18.0722 11.5296L18.0683 11.6819C18.0308 12.4431 17.7121 13.1657 17.1719 13.7072L17.062 13.8122C16.4985 14.3237 15.7639 14.6084 15.0001 14.6084V14.3125C15.736 14.3124 16.4421 14.0197 16.9627 13.498C17.4834 12.9761 17.7763 12.2679 17.7763 11.5296Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M14.9999 7.2959C15.9032 7.29562 16.7827 7.58556 17.5095 8.12315C18.2363 8.66074 18.772 9.41768 19.038 10.2829C19.304 11.148 19.2863 12.0759 18.9875 12.9302C18.6886 13.7846 18.1244 14.5204 17.3777 15.0298C18.6738 15.5063 19.798 16.3607 20.6056 17.483C21.4132 18.6053 21.8671 20.7143 21.909 22.0974C21.9129 22.1742 21.9015 22.251 21.8754 22.3233C21.8493 22.3956 21.8091 22.4619 21.7571 22.5184C21.7051 22.5749 21.6423 22.6204 21.5725 22.6523C21.5027 22.6842 21.4273 22.7017 21.3506 22.704C21.274 22.7063 21.1976 22.6931 21.1261 22.6654C21.0545 22.6377 20.9892 22.596 20.934 22.5426C20.8788 22.4893 20.8348 22.4254 20.8045 22.3548C20.7742 22.2842 20.7583 22.2082 20.7577 22.1313C20.712 20.6314 20.0854 18.4381 19.0106 17.3933C17.9359 16.3485 16.4975 15.7642 15.0003 15.7642C13.5031 15.7642 12.0647 16.3485 10.99 17.3933C9.91523 18.4381 9.2886 20.6314 9.24286 22.1313C9.23828 22.2844 9.1732 22.4294 9.06193 22.5345C8.95067 22.6395 8.80234 22.6959 8.64957 22.6913C8.4968 22.6867 8.35211 22.6215 8.24733 22.51C8.14254 22.3985 8.08625 22.2498 8.09084 22.0967C8.13288 20.7137 8.58689 18.6048 9.39444 17.4827C10.202 16.3605 11.3261 15.5062 12.6221 15.0298C11.8754 14.5204 11.3112 13.7846 11.0124 12.9302C10.7136 12.0759 10.6958 11.148 10.9618 10.2829C11.2278 9.41768 11.7635 8.66074 12.4903 8.12315C13.2171 7.58556 14.0966 7.29562 14.9999 7.2959ZM11.9278 11.5296C11.9278 12.3463 12.2515 13.1294 12.8276 13.7069C13.4038 14.2843 14.1851 14.6087 14.9999 14.6087C15.8147 14.6087 16.5961 14.2843 17.1722 13.7069C17.7483 13.1294 18.072 12.3463 18.072 11.5296C18.072 10.713 17.7483 9.92984 17.1722 9.3524C16.5961 8.77496 15.8147 8.45055 14.9999 8.45055C14.1851 8.45055 13.4038 8.77496 12.8276 9.3524C12.2515 9.92984 11.9278 10.713 11.9278 11.5296Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.0001 7C15.9667 6.99978 16.908 7.3097 17.6857 7.8849C18.4632 8.46008 19.0359 9.27011 19.3205 10.1955C19.605 11.121 19.5861 12.1137 19.2665 13.0276C19.0053 13.7743 18.5524 14.4341 17.9604 14.9487C19.1092 15.4678 20.1049 16.2812 20.8455 17.3104C21.2799 17.9141 21.607 18.7616 21.8306 19.6171C22.0547 20.4745 22.1824 21.3673 22.2046 22.0819C22.2106 22.198 22.193 22.3148 22.1536 22.4241C22.1141 22.5333 22.0538 22.6337 21.9752 22.7191C21.8966 22.8045 21.8013 22.8733 21.6957 22.9215C21.59 22.9698 21.4754 22.9962 21.3593 22.9996C21.2431 23.003 21.1274 22.9838 21.019 22.9418C20.9106 22.8998 20.8115 22.8365 20.7279 22.7557C20.6443 22.675 20.5779 22.5781 20.5322 22.4714C20.4874 22.3668 20.4636 22.2545 20.4618 22.1407L20.4474 21.8631C20.3978 21.1998 20.2415 20.4233 19.9895 19.6875C19.6999 18.8421 19.2938 18.0817 18.8038 17.6054C17.7843 16.6144 16.42 16.0602 15.0001 16.0602C13.5802 16.0602 12.2158 16.6144 11.1964 17.6054C10.7064 18.0817 10.3002 18.842 10.0107 19.6875C9.72266 20.5286 9.56024 21.4231 9.53836 22.1407C9.5313 22.3719 9.4337 22.5912 9.26556 22.75C9.09724 22.9088 8.8723 22.994 8.64093 22.9871C8.40944 22.9801 8.19027 22.8811 8.03171 22.7124C7.87323 22.5436 7.78765 22.3191 7.79458 22.0877L7.80807 21.8111C7.85017 21.1487 7.97193 20.3694 8.16859 19.6171C8.39229 18.7615 8.71928 17.9132 9.15375 17.3094C9.8942 16.2805 10.8903 15.4678 12.0388 14.9487C11.4469 14.4341 10.9938 13.7742 10.7327 13.0276C10.4132 12.1137 10.3942 11.1209 10.6787 10.1955C10.9633 9.27005 11.5369 8.46011 12.3145 7.8849C13.0922 7.30979 14.0335 6.9997 15.0001 7ZM15.0001 7.29593C14.0968 7.29566 13.2167 7.58541 12.49 8.123C11.7632 8.66059 11.2281 9.41806 10.9621 10.2832L10.8754 10.61C10.7046 11.3788 10.7508 12.1827 11.0122 12.9302C11.311 13.7845 11.8753 14.5204 12.622 15.0297C11.326 15.5061 10.2023 16.3608 9.39473 17.4829L9.24725 17.7046C8.53196 18.866 8.12998 20.7999 8.09051 22.0964C8.08593 22.2495 8.14285 22.3984 8.24764 22.5099C8.32617 22.5935 8.42688 22.6512 8.53682 22.6767L8.6496 22.6912C8.76395 22.6946 8.87588 22.6641 8.97156 22.6044L9.06217 22.534C9.17319 22.429 9.23785 22.284 9.24243 22.1311C9.28536 20.725 9.83904 18.7098 10.7934 17.6025L10.9901 17.3933C12.0648 16.3486 13.503 15.7643 15.0001 15.7642C16.4972 15.7642 17.9354 16.3487 19.0101 17.3933C20.0848 18.438 20.712 20.6312 20.7578 22.1311C20.7583 22.2079 20.7738 22.2842 20.804 22.3547C20.8343 22.4254 20.8789 22.4894 20.9342 22.5427C20.9893 22.596 21.0546 22.6374 21.126 22.6651C21.1619 22.679 21.1991 22.6895 21.2368 22.696L21.3506 22.7037C21.389 22.7025 21.4271 22.6979 21.4643 22.6892L21.5723 22.6526C21.6072 22.6367 21.6407 22.6172 21.6716 22.5948L21.7574 22.5186C21.8093 22.4621 21.8489 22.3952 21.875 22.3229C21.901 22.2507 21.9126 22.174 21.9087 22.0974C21.8668 20.7143 21.413 18.6052 20.6055 17.4829C19.7979 16.3607 18.6733 15.5062 17.3772 15.0297C18.1239 14.5204 18.6882 13.7845 18.987 12.9302C19.2484 12.1827 19.2955 11.3788 19.1248 10.61L19.0381 10.2832C18.7721 9.41803 18.236 8.66059 17.5093 8.123C16.8734 7.65276 16.1207 7.37212 15.3375 7.30943L15.0001 7.29593ZM17.7763 11.5296C17.7762 10.7913 17.4833 10.083 16.9627 9.56121C16.4421 9.03949 15.736 8.74674 15.0001 8.74667C14.2642 8.74667 13.5581 9.03959 13.0375 9.56121C12.5168 10.083 12.2239 10.7913 12.2239 11.5296C12.2239 12.2679 12.5168 12.9761 13.0375 13.498C13.5581 14.0196 14.2642 14.3125 15.0001 14.3125V14.6084L14.8478 14.6046C14.1391 14.5694 13.4642 14.2895 12.9382 13.8122L12.8274 13.7072C12.2871 13.1657 11.9694 12.4431 11.9318 11.6819L11.928 11.5296C11.928 10.713 12.2512 9.92946 12.8274 9.35203C13.4035 8.77465 14.1854 8.45074 15.0001 8.45074L15.1524 8.4546C15.9115 8.4924 16.6318 8.81094 17.1719 9.35203C17.748 9.92946 18.0722 10.713 18.0722 11.5296L18.0683 11.6819C18.0308 12.4431 17.7121 13.1657 17.1719 13.7072L17.062 13.8122C16.4985 14.3237 15.7639 14.6084 15.0001 14.6084V14.3125C15.736 14.3124 16.4421 14.0197 16.9627 13.498C17.4834 12.9761 17.7763 12.2679 17.7763 11.5296Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON ACOMPA\u00D1ANTE -->\r\n<div *ngIf=\"icon == 'add-user'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M23.05 13.5882H22.1V12.647C22.1 12.3974 22 12.158 21.8218 11.9815C21.6436 11.805 21.402 11.7058 21.15 11.7058C20.8981 11.7058 20.6565 11.805 20.4783 11.9815C20.3001 12.158 20.2 12.3974 20.2 12.647V13.5882H19.25C18.9981 13.5882 18.7565 13.6873 18.5783 13.8638C18.4001 14.0403 18.3 14.2797 18.3 14.5293C18.3 14.779 18.4001 15.0183 18.5783 15.1949C18.7565 15.3714 18.9981 15.4705 19.25 15.4705H20.2V16.4117C20.2 16.6613 20.3001 16.9007 20.4783 17.0772C20.6565 17.2537 20.8981 17.3529 21.15 17.3529C21.402 17.3529 21.6436 17.2537 21.8218 17.0772C22 16.9007 22.1 16.6613 22.1 16.4117V15.4705H23.05C23.302 15.4705 23.5436 15.3714 23.7218 15.1949C23.9 15.0183 24 14.779 24 14.5293C24 14.2797 23.9 14.0403 23.7218 13.8638C23.5436 13.6873 23.302 13.5882 23.05 13.5882Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.735 15.2071C17.2419 14.7724 17.6485 14.2347 17.9271 13.6306C18.2058 13.0265 18.35 12.3701 18.35 11.7059C18.35 10.4578 17.8496 9.26085 16.9588 8.37832C16.068 7.4958 14.8598 7 13.6 7C12.3402 7 11.132 7.4958 10.2412 8.37832C9.35045 9.26085 8.85 10.4578 8.85 11.7059C8.84999 12.3701 8.99421 13.0265 9.27287 13.6306C9.55153 14.2347 9.9581 14.7724 10.465 15.2071C9.13513 15.8037 8.00684 16.7671 7.21503 17.9822C6.42322 19.1972 6.0014 20.6125 6 22.0588C6 22.3084 6.10009 22.5478 6.27825 22.7243C6.45641 22.9008 6.69804 23 6.95 23C7.20196 23 7.44359 22.9008 7.62175 22.7243C7.79991 22.5478 7.9 22.3084 7.9 22.0588C7.9 20.5611 8.50053 19.1248 9.56949 18.0658C10.6384 17.0067 12.0883 16.4118 13.6 16.4118C15.1117 16.4118 16.5616 17.0067 17.6305 18.0658C18.6995 19.1248 19.3 20.5611 19.3 22.0588C19.3 22.3084 19.4001 22.5478 19.5782 22.7243C19.7564 22.9008 19.998 23 20.25 23C20.502 23 20.7436 22.9008 20.9218 22.7243C21.0999 22.5478 21.2 22.3084 21.2 22.0588C21.1986 20.6125 20.7768 19.1972 19.985 17.9822C19.1932 16.7671 18.0649 15.8037 16.735 15.2071ZM13.6 14.5294C13.0363 14.5294 12.4853 14.3638 12.0166 14.0536C11.5479 13.7433 11.1827 13.3023 10.9669 12.7864C10.7512 12.2705 10.6948 11.7028 10.8048 11.155C10.9147 10.6073 11.1862 10.1042 11.5847 9.70935C11.9833 9.31447 12.4911 9.04555 13.044 8.93661C13.5968 8.82766 14.1699 8.88358 14.6906 9.09728C15.2114 9.31099 15.6565 9.67289 15.9697 10.1372C16.2829 10.6015 16.45 11.1474 16.45 11.7059C16.45 12.4547 16.1497 13.1729 15.6153 13.7024C15.0808 14.2319 14.3559 14.5294 13.6 14.5294Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M23.05 13.5882H22.1V12.647C22.1 12.3974 22 12.158 21.8218 11.9815C21.6436 11.805 21.402 11.7058 21.15 11.7058C20.8981 11.7058 20.6565 11.805 20.4783 11.9815C20.3001 12.158 20.2 12.3974 20.2 12.647V13.5882H19.25C18.9981 13.5882 18.7565 13.6873 18.5783 13.8638C18.4001 14.0403 18.3 14.2797 18.3 14.5293C18.3 14.779 18.4001 15.0183 18.5783 15.1949C18.7565 15.3714 18.9981 15.4705 19.25 15.4705H20.2V16.4117C20.2 16.6613 20.3001 16.9007 20.4783 17.0772C20.6565 17.2537 20.8981 17.3529 21.15 17.3529C21.402 17.3529 21.6436 17.2537 21.8218 17.0772C22 16.9007 22.1 16.6613 22.1 16.4117V15.4705H23.05C23.302 15.4705 23.5436 15.3714 23.7218 15.1949C23.9 15.0183 24 14.779 24 14.5293C24 14.2797 23.9 14.0403 23.7218 13.8638C23.5436 13.6873 23.302 13.5882 23.05 13.5882Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.735 15.2071C17.2419 14.7724 17.6485 14.2347 17.9271 13.6306C18.2058 13.0265 18.35 12.3701 18.35 11.7059C18.35 10.4578 17.8496 9.26085 16.9588 8.37832C16.068 7.4958 14.8598 7 13.6 7C12.3402 7 11.132 7.4958 10.2412 8.37832C9.35045 9.26085 8.85 10.4578 8.85 11.7059C8.84999 12.3701 8.99421 13.0265 9.27287 13.6306C9.55153 14.2347 9.9581 14.7724 10.465 15.2071C9.13513 15.8037 8.00684 16.7671 7.21503 17.9822C6.42322 19.1972 6.0014 20.6125 6 22.0588C6 22.3084 6.10009 22.5478 6.27825 22.7243C6.45641 22.9008 6.69804 23 6.95 23C7.20196 23 7.44359 22.9008 7.62175 22.7243C7.79991 22.5478 7.9 22.3084 7.9 22.0588C7.9 20.5611 8.50053 19.1248 9.56949 18.0658C10.6384 17.0067 12.0883 16.4118 13.6 16.4118C15.1117 16.4118 16.5616 17.0067 17.6305 18.0658C18.6995 19.1248 19.3 20.5611 19.3 22.0588C19.3 22.3084 19.4001 22.5478 19.5782 22.7243C19.7564 22.9008 19.998 23 20.25 23C20.502 23 20.7436 22.9008 20.9218 22.7243C21.0999 22.5478 21.2 22.3084 21.2 22.0588C21.1986 20.6125 20.7768 19.1972 19.985 17.9822C19.1932 16.7671 18.0649 15.8037 16.735 15.2071ZM13.6 14.5294C13.0363 14.5294 12.4853 14.3638 12.0166 14.0536C11.5479 13.7433 11.1827 13.3023 10.9669 12.7864C10.7512 12.2705 10.6948 11.7028 10.8048 11.155C10.9147 10.6073 11.1862 10.1042 11.5847 9.70935C11.9833 9.31447 12.4911 9.04555 13.044 8.93661C13.5968 8.82766 14.1699 8.88358 14.6906 9.09728C15.2114 9.31099 15.6565 9.67289 15.9697 10.1372C16.2829 10.6015 16.45 11.1474 16.45 11.7059C16.45 12.4547 16.1497 13.1729 15.6153 13.7024C15.0808 14.2319 14.3559 14.5294 13.6 14.5294Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON EDITAR ACOMPA\u00D1ANTE -->\r\n<div *ngIf=\"icon == 'edit-user'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.0691 15.2071C16.5713 14.7724 16.9741 14.2347 17.2502 13.6306C17.5263 13.0265 17.6691 12.3701 17.6691 11.7059C17.6691 10.4578 17.1733 9.26085 16.2908 8.37832C15.4083 7.4958 14.2113 7 12.9632 7C11.7152 7 10.5182 7.4958 9.63569 8.37832C8.75316 9.26085 8.25737 10.4578 8.25737 11.7059C8.25736 12.3701 8.40024 13.0265 8.67631 13.6306C8.95238 14.2347 9.35518 14.7724 9.85737 15.2071C8.53985 15.8037 7.42204 16.7671 6.63758 17.9822C5.85313 19.1972 5.43522 20.6125 5.43384 22.0588C5.43384 22.3084 5.533 22.5478 5.7095 22.7243C5.88601 22.9008 6.1254 23 6.37501 23C6.62463 23 6.86402 22.9008 7.04053 22.7243C7.21703 22.5478 7.31619 22.3084 7.31619 22.0588C7.31619 20.5611 7.91115 19.1248 8.97018 18.0658C10.0292 17.0067 11.4656 16.4118 12.9632 16.4118C14.4609 16.4118 15.8973 17.0067 16.9563 18.0658C18.0154 19.1248 18.6103 20.5611 18.6103 22.0588C18.6103 22.3084 18.7095 22.5478 18.886 22.7243C19.0625 22.9008 19.3019 23 19.5515 23C19.8011 23 20.0405 22.9008 20.217 22.7243C20.3935 22.5478 20.4927 22.3084 20.4927 22.0588C20.4913 20.6125 20.0734 19.1972 19.2889 17.9822C18.5045 16.7671 17.3866 15.8037 16.0691 15.2071ZM12.9632 14.5294C12.4048 14.5294 11.8589 14.3638 11.3946 14.0536C10.9303 13.7433 10.5684 13.3023 10.3546 12.7864C10.1409 12.2705 10.085 11.7028 10.194 11.155C10.3029 10.6073 10.5718 10.1042 10.9667 9.70935C11.3616 9.31447 11.8647 9.04555 12.4124 8.93661C12.9601 8.82766 13.5278 8.88358 14.0438 9.09728C14.5597 9.31099 15.0007 9.67289 15.3109 10.1372C15.6212 10.6015 15.7868 11.1474 15.7868 11.7059C15.7868 12.4547 15.4893 13.1729 14.9598 13.7024C14.4303 14.2319 13.7121 14.5294 12.9632 14.5294Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M22.5164 12.3643C22.5164 12.3211 22.5075 12.2782 22.491 12.2383C22.4745 12.1984 22.4502 12.1623 22.4197 12.1318C22.3892 12.1013 22.3531 12.0771 22.3132 12.0605C22.2734 12.044 22.2304 12.0352 22.1873 12.0352C22.1443 12.0352 22.1019 12.0442 22.0623 12.0605C22.0224 12.0771 21.9854 12.1013 21.9548 12.1318L21.9529 12.1338L20.3513 13.7217V14.2002H20.8298L22.4177 12.5986L22.4197 12.5967C22.4501 12.5663 22.4745 12.5299 22.491 12.4902C22.5075 12.4504 22.5163 12.4073 22.5164 12.3643ZM24.116 12.3643C24.1159 12.6174 24.0664 12.8686 23.9695 13.1025C23.873 13.3354 23.7305 13.5461 23.5525 13.7246L23.5535 13.7256L21.7322 15.5635C21.582 15.715 21.3772 15.7998 21.1638 15.7998H19.5515C19.1097 15.7998 18.7517 15.4418 18.7517 15V13.3877C18.7517 13.1743 18.8365 12.9695 18.988 12.8193L20.8259 10.998C21.0046 10.82 21.2169 10.6786 21.45 10.582C21.6837 10.4853 21.9342 10.4356 22.1873 10.4355C22.4405 10.4355 22.6916 10.4851 22.9255 10.582C23.1595 10.6789 23.3724 10.8209 23.5515 11C23.7306 11.1791 23.8726 11.392 23.9695 11.626C24.0664 11.86 24.116 12.111 24.116 12.3643Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.0691 15.2071C16.5713 14.7724 16.9741 14.2347 17.2502 13.6306C17.5263 13.0265 17.6691 12.3701 17.6691 11.7059C17.6691 10.4578 17.1733 9.26085 16.2908 8.37832C15.4083 7.4958 14.2113 7 12.9632 7C11.7152 7 10.5182 7.4958 9.63569 8.37832C8.75316 9.26085 8.25737 10.4578 8.25737 11.7059C8.25736 12.3701 8.40024 13.0265 8.67631 13.6306C8.95238 14.2347 9.35518 14.7724 9.85737 15.2071C8.53985 15.8037 7.42204 16.7671 6.63758 17.9822C5.85313 19.1972 5.43522 20.6125 5.43384 22.0588C5.43384 22.3084 5.533 22.5478 5.7095 22.7243C5.88601 22.9008 6.1254 23 6.37501 23C6.62463 23 6.86402 22.9008 7.04053 22.7243C7.21703 22.5478 7.31619 22.3084 7.31619 22.0588C7.31619 20.5611 7.91115 19.1248 8.97018 18.0658C10.0292 17.0067 11.4656 16.4118 12.9632 16.4118C14.4609 16.4118 15.8973 17.0067 16.9563 18.0658C18.0154 19.1248 18.6103 20.5611 18.6103 22.0588C18.6103 22.3084 18.7095 22.5478 18.886 22.7243C19.0625 22.9008 19.3019 23 19.5515 23C19.8011 23 20.0405 22.9008 20.217 22.7243C20.3935 22.5478 20.4927 22.3084 20.4927 22.0588C20.4913 20.6125 20.0734 19.1972 19.2889 17.9822C18.5045 16.7671 17.3866 15.8037 16.0691 15.2071ZM12.9632 14.5294C12.4048 14.5294 11.8589 14.3638 11.3946 14.0536C10.9303 13.7433 10.5684 13.3023 10.3546 12.7864C10.1409 12.2705 10.085 11.7028 10.194 11.155C10.3029 10.6073 10.5718 10.1042 10.9667 9.70935C11.3616 9.31447 11.8647 9.04555 12.4124 8.93661C12.9601 8.82766 13.5278 8.88358 14.0438 9.09728C14.5597 9.31099 15.0007 9.67289 15.3109 10.1372C15.6212 10.6015 15.7868 11.1474 15.7868 11.7059C15.7868 12.4547 15.4893 13.1729 14.9598 13.7024C14.4303 14.2319 13.7121 14.5294 12.9632 14.5294Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M22.5164 12.3643C22.5164 12.3211 22.5075 12.2782 22.491 12.2383C22.4745 12.1984 22.4502 12.1623 22.4197 12.1318C22.3892 12.1013 22.3531 12.0771 22.3132 12.0605C22.2734 12.044 22.2304 12.0352 22.1873 12.0352C22.1443 12.0352 22.1019 12.0442 22.0623 12.0605C22.0224 12.0771 21.9854 12.1013 21.9548 12.1318L21.9529 12.1338L20.3513 13.7217V14.2002H20.8298L22.4177 12.5986L22.4197 12.5967C22.4501 12.5663 22.4745 12.5299 22.491 12.4902C22.5075 12.4504 22.5163 12.4073 22.5164 12.3643ZM24.116 12.3643C24.1159 12.6174 24.0664 12.8686 23.9695 13.1025C23.873 13.3354 23.7305 13.5461 23.5525 13.7246L23.5535 13.7256L21.7322 15.5635C21.582 15.715 21.3772 15.7998 21.1638 15.7998H19.5515C19.1097 15.7998 18.7517 15.4418 18.7517 15V13.3877C18.7517 13.1743 18.8365 12.9695 18.988 12.8193L20.8259 10.998C21.0046 10.82 21.2169 10.6786 21.45 10.582C21.6837 10.4853 21.9342 10.4356 22.1873 10.4355C22.4405 10.4355 22.6916 10.4851 22.9255 10.582C23.1595 10.6789 23.3724 10.8209 23.5515 11C23.7306 11.1791 23.8726 11.392 23.9695 11.626C24.0664 11.86 24.116 12.111 24.116 12.3643Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON ADMISI\u00D3N -->\r\n<div *ngIf=\"icon == 'up-user'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.6315 17.5158C10.8977 17.5158 10.1919 17.7978 9.66996 18.3028C9.14772 18.8082 8.85261 19.4956 8.85261 20.2142V22.007C8.85261 22.4969 8.43789 22.894 7.92631 22.894C7.41472 22.894 7 22.4969 7 22.007V20.2142C7 19.031 7.48563 17.8944 8.35313 17.055C9.22094 16.2152 10.4 15.7417 11.6315 15.7417H15.3368C15.8484 15.7417 16.2631 16.1388 16.2631 16.6287C16.2631 17.1186 15.8484 17.5158 15.3368 17.5158H11.6315Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.6316 16.3245C19.8564 16.3245 20.072 16.4093 20.2301 16.5602L22.7564 18.9694C23.0836 19.2813 23.0808 19.7845 22.7502 20.0932C22.4196 20.402 21.8864 20.3993 21.5593 20.0874L20.4737 19.052V22.2053C20.4737 22.6442 20.0967 23 19.6316 23C19.1665 23 18.7895 22.6442 18.7895 22.2053V19.052L17.7038 20.0874C17.3767 20.3993 16.8435 20.402 16.513 20.0932C16.1824 19.7845 16.1796 19.2813 16.5067 18.9694L19.033 16.5602C19.1912 16.4093 19.4067 16.3245 19.6316 16.3245Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.1686 8.17452C11.9181 7.42347 12.9364 7 14 7C15.0636 7 16.0819 7.42347 16.8314 8.17452C17.5806 8.92529 18 9.9418 18 11C18 12.0582 17.5806 13.0747 16.8314 13.8255C16.0819 14.5765 15.0636 15 14 15C12.9364 15 11.9181 14.5765 11.1686 13.8255C10.4194 13.0747 10 12.0582 10 11C10 9.9418 10.4194 8.92529 11.1686 8.17452ZM14 8.58664C13.3662 8.58664 12.7566 8.83886 12.3059 9.29055C11.8549 9.74252 11.6 10.3573 11.6 11C11.6 11.6427 11.8549 12.2575 12.3059 12.7094C12.7566 13.1611 13.3662 13.4134 14 13.4134C14.6338 13.4134 15.2434 13.1611 15.6941 12.7094C16.1451 12.2575 16.4 11.6427 16.4 11C16.4 10.3573 16.1451 9.74252 15.6941 9.29055C15.2434 8.83886 14.6338 8.58664 14 8.58664Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M11.6315 17.5158C10.8977 17.5158 10.1919 17.7978 9.66996 18.3028C9.14772 18.8082 8.85261 19.4956 8.85261 20.2142V22.007C8.85261 22.4969 8.43789 22.894 7.92631 22.894C7.41472 22.894 7 22.4969 7 22.007V20.2142C7 19.031 7.48563 17.8944 8.35313 17.055C9.22094 16.2152 10.4 15.7417 11.6315 15.7417H15.3368C15.8484 15.7417 16.2631 16.1388 16.2631 16.6287C16.2631 17.1186 15.8484 17.5158 15.3368 17.5158H11.6315Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.6316 16.3245C19.8564 16.3245 20.072 16.4093 20.2301 16.5602L22.7564 18.9694C23.0836 19.2813 23.0808 19.7845 22.7502 20.0932C22.4196 20.402 21.8864 20.3993 21.5593 20.0874L20.4737 19.052V22.2053C20.4737 22.6442 20.0967 23 19.6316 23C19.1665 23 18.7895 22.6442 18.7895 22.2053V19.052L17.7038 20.0874C17.3767 20.3993 16.8435 20.402 16.513 20.0932C16.1824 19.7845 16.1796 19.2813 16.5067 18.9694L19.033 16.5602C19.1912 16.4093 19.4067 16.3245 19.6316 16.3245Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.1686 8.17452C11.9181 7.42347 12.9364 7 14 7C15.0636 7 16.0819 7.42347 16.8314 8.17452C17.5806 8.92529 18 9.9418 18 11C18 12.0582 17.5806 13.0747 16.8314 13.8255C16.0819 14.5765 15.0636 15 14 15C12.9364 15 11.9181 14.5765 11.1686 13.8255C10.4194 13.0747 10 12.0582 10 11C10 9.9418 10.4194 8.92529 11.1686 8.17452ZM14 8.58664C13.3662 8.58664 12.7566 8.83886 12.3059 9.29055C11.8549 9.74252 11.6 10.3573 11.6 11C11.6 11.6427 11.8549 12.2575 12.3059 12.7094C12.7566 13.1611 13.3662 13.4134 14 13.4134C14.6338 13.4134 15.2434 13.1611 15.6941 12.7094C16.1451 12.2575 16.4 11.6427 16.4 11C16.4 10.3573 16.1451 9.74252 15.6941 9.29055C15.2434 8.83886 14.6338 8.58664 14 8.58664Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON ALTA -->\r\n<div *ngIf=\"icon == 'down-user'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.6315 17.5158C10.8977 17.5158 10.1919 17.7978 9.66995 18.3028C9.14771 18.8082 8.85261 19.4956 8.85261 20.2142V22.0069C8.85261 22.4968 8.43789 22.894 7.9263 22.894C7.41472 22.894 7 22.4968 7 22.0069V20.2142C7 19.031 7.48563 17.8944 8.35312 17.055C9.22093 16.2152 10.4 15.7417 11.6315 15.7417H15.3367C15.8483 15.7417 16.263 16.1388 16.263 16.6287C16.263 17.1186 15.8483 17.5158 15.3367 17.5158H11.6315Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.6316 23C19.4068 23 19.1912 22.9151 19.0331 22.7643L16.5068 20.3551C16.1797 20.0431 16.1824 19.54 16.513 19.2312C16.8436 18.9225 17.3768 18.9252 17.7039 19.2371L18.7895 20.2724L18.7895 17.1192C18.7895 16.6803 19.1666 16.3245 19.6316 16.3245C20.0967 16.3245 20.4737 16.6803 20.4737 17.1192L20.4737 20.2724L21.5593 19.2371C21.8865 18.9252 22.4197 18.9225 22.7502 19.2312C23.0808 19.54 23.0836 20.0431 22.7565 20.3551L20.2302 22.7643C20.072 22.9151 19.8565 23 19.6316 23Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.1686 8.17452C11.9181 7.42347 12.9364 7 14 7C15.0636 7 16.0819 7.42347 16.8314 8.17452C17.5806 8.92529 18 9.9418 18 11C18 12.0582 17.5806 13.0747 16.8314 13.8255C16.0819 14.5765 15.0636 15 14 15C12.9364 15 11.9181 14.5765 11.1686 13.8255C10.4194 13.0747 10 12.0582 10 11C10 9.9418 10.4194 8.92529 11.1686 8.17452ZM14 8.58664C13.3662 8.58664 12.7566 8.83886 12.3059 9.29055C11.8549 9.74252 11.6 10.3573 11.6 11C11.6 11.6427 11.8549 12.2575 12.3059 12.7094C12.7566 13.1611 13.3662 13.4134 14 13.4134C14.6338 13.4134 15.2434 13.1611 15.6941 12.7094C16.1451 12.2575 16.4 11.6427 16.4 11C16.4 10.3573 16.1451 9.74252 15.6941 9.29055C15.2434 8.83886 14.6338 8.58664 14 8.58664Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M11.6315 17.5158C10.8977 17.5158 10.1919 17.7978 9.66995 18.3028C9.14771 18.8082 8.85261 19.4956 8.85261 20.2142V22.0069C8.85261 22.4968 8.43789 22.894 7.9263 22.894C7.41472 22.894 7 22.4968 7 22.0069V20.2142C7 19.031 7.48563 17.8944 8.35312 17.055C9.22093 16.2152 10.4 15.7417 11.6315 15.7417H15.3367C15.8483 15.7417 16.263 16.1388 16.263 16.6287C16.263 17.1186 15.8483 17.5158 15.3367 17.5158H11.6315Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.6316 23C19.4068 23 19.1912 22.9151 19.0331 22.7643L16.5068 20.3551C16.1797 20.0431 16.1824 19.54 16.513 19.2312C16.8436 18.9225 17.3768 18.9252 17.7039 19.2371L18.7895 20.2724L18.7895 17.1192C18.7895 16.6803 19.1666 16.3245 19.6316 16.3245C20.0967 16.3245 20.4737 16.6803 20.4737 17.1192L20.4737 20.2724L21.5593 19.2371C21.8865 18.9252 22.4197 18.9225 22.7502 19.2312C23.0808 19.54 23.0836 20.0431 22.7565 20.3551L20.2302 22.7643C20.072 22.9151 19.8565 23 19.6316 23Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.1686 8.17452C11.9181 7.42347 12.9364 7 14 7C15.0636 7 16.0819 7.42347 16.8314 8.17452C17.5806 8.92529 18 9.9418 18 11C18 12.0582 17.5806 13.0747 16.8314 13.8255C16.0819 14.5765 15.0636 15 14 15C12.9364 15 11.9181 14.5765 11.1686 13.8255C10.4194 13.0747 10 12.0582 10 11C10 9.9418 10.4194 8.92529 11.1686 8.17452ZM14 8.58664C13.3662 8.58664 12.7566 8.83886 12.3059 9.29055C11.8549 9.74252 11.6 10.3573 11.6 11C11.6 11.6427 11.8549 12.2575 12.3059 12.7094C12.7566 13.1611 13.3662 13.4134 14 13.4134C14.6338 13.4134 15.2434 13.1611 15.6941 12.7094C16.1451 12.2575 16.4 11.6427 16.4 11C16.4 10.3573 16.1451 9.74252 15.6941 9.29055C15.2434 8.83886 14.6338 8.58664 14 8.58664Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON USER INFO -->\r\n<div *ngIf=\"icon == 'info-user'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.3545 14.2655C11.3798 14.2655 9.73423 12.6586 9.73423 10.7304C9.73423 8.80217 11.3798 7.19531 13.3545 7.19531C15.3292 7.19531 16.9747 8.80217 16.9747 10.7304C16.9747 12.6586 15.3292 14.2655 13.3545 14.2655ZM13.3545 8.11352C11.897 8.11352 10.6746 9.30718 10.6746 10.7304C10.6746 12.1536 11.897 13.3473 13.3545 13.3473C14.812 13.3473 16.0344 12.1536 16.0344 10.7304C16.0344 9.30718 14.812 8.11352 13.3545 8.11352ZM15.7112 14.2655C16.413 13.8575 17.2313 13.6227 18.1031 13.6227C20.6889 13.6227 22.8047 15.6887 22.8047 18.2137C22.8047 20.7388 20.6889 22.8047 18.1031 22.8047C15.5171 22.8047 13.4014 20.7388 13.4014 18.2137C13.4014 17.0554 13.8466 15.9937 14.5782 15.1837H10.3924C9.12299 15.1837 8.13564 16.1937 8.13564 17.3874V21.6111H9.82823V19.8665C9.82823 19.5911 10.0163 19.4075 10.2984 19.4075C10.5805 19.4075 10.7686 19.5911 10.7686 19.8665V22.0702C10.7686 22.3457 10.5805 22.5293 10.2984 22.5293H7.66548C7.38338 22.5293 7.19531 22.3457 7.19531 22.0702V17.3874C7.19531 15.6428 8.65282 14.2655 10.3924 14.2655H15.7112ZM14.3417 18.2137C14.3417 16.1936 16.0344 14.5409 18.1031 14.5409C20.1718 14.5409 21.8644 16.1936 21.8644 18.2137C21.8644 20.2337 20.1718 21.8865 18.1031 21.8865C16.0344 21.8865 14.3417 20.2337 14.3417 18.2137ZM18.1032 19.1778C17.821 19.1778 17.6329 18.9942 17.6329 18.7188V16.1478C17.6329 15.8723 17.821 15.6887 18.1032 15.6887C18.3852 15.6887 18.5733 15.8723 18.5733 16.1478V18.7188C18.5733 18.9483 18.3382 19.1778 18.1032 19.1778ZM17.774 19.8206C17.5859 20.0043 17.5859 20.2797 17.774 20.4634C17.962 20.647 18.2442 20.647 18.4322 20.4634C18.6203 20.2797 18.6203 20.0043 18.4322 19.8206C18.2442 19.637 17.962 19.637 17.774 19.8206Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M13.3547 7C15.4327 7.00009 17.1703 8.69057 17.1703 10.7309C17.1701 12.1823 16.29 13.4558 15.0343 14.0701H15.6631C16.3828 13.6627 17.2161 13.428 18.103 13.428C20.7922 13.428 22.9999 15.5764 23 18.2135C23 20.8507 20.7922 23 18.103 23C15.4138 23 13.206 20.8507 13.206 18.2135C13.2061 17.1544 13.563 16.1733 14.1635 15.3792H10.3926C9.22922 15.3792 8.33095 16.3034 8.33095 17.3875V21.4156H9.63332V19.8665C9.63333 19.683 9.69655 19.5155 9.82101 19.394C9.94506 19.2728 10.1143 19.212 10.2983 19.212C10.4823 19.212 10.6516 19.2728 10.7756 19.394C10.9001 19.5155 10.9633 19.683 10.9633 19.8665V22.0701C10.9633 22.2536 10.9001 22.4211 10.7756 22.5427C10.6516 22.6638 10.4823 22.7247 10.2983 22.7247H7.665C7.48126 22.7246 7.31258 22.6636 7.18864 22.5427C7.06416 22.4211 7 22.2536 7 22.0701V17.3875C7 15.529 8.55158 14.0701 10.3926 14.0701H11.675C10.4191 13.4558 9.53919 12.1824 9.539 10.7309C9.539 8.69051 11.2766 7 13.3547 7ZM18.103 13.6224C17.2312 13.6224 16.4125 13.8574 15.7107 14.2655H10.3926C8.65304 14.2655 7.19531 15.6429 7.19531 17.3875V22.0701C7.19531 22.3455 7.38316 22.5292 7.665 22.5294H10.2983C10.5804 22.5294 10.769 22.3457 10.769 22.0701V19.8665C10.769 19.5911 10.5804 19.4073 10.2983 19.4073C10.0163 19.4073 9.82864 19.5911 9.82863 19.8665V21.6109H8.13564V17.3875C8.13564 16.1939 9.1232 15.1839 10.3926 15.1839H14.5779C13.8465 15.9938 13.4014 17.0554 13.4013 18.2135C13.4013 20.7386 15.5171 22.8047 18.103 22.8047C20.6889 22.8047 22.8047 20.7386 22.8047 18.2135C22.8046 15.6885 20.6888 13.6224 18.103 13.6224ZM18.103 14.5408C20.1717 14.5408 21.8643 16.1935 21.8644 18.2135C21.8644 20.2335 20.1717 21.8863 18.103 21.8863C16.0343 21.8862 14.3417 20.2335 14.3417 18.2135C14.3418 16.1935 16.0344 14.5408 18.103 14.5408ZM18.103 14.7361C16.1377 14.7361 14.5371 16.3056 14.537 18.2135C14.537 20.1214 16.1377 21.6909 18.103 21.691C20.0684 21.691 21.669 20.1214 21.669 18.2135C21.6689 16.3056 20.0683 14.7361 18.103 14.7361ZM17.6381 19.6807C17.9019 19.4234 18.3052 19.4231 18.5689 19.6807C18.802 19.9084 18.8305 20.2444 18.6556 20.4991L18.5689 20.603C18.3381 20.8283 18.0004 20.8566 17.7429 20.6877L17.6381 20.603C17.3716 20.3428 17.3716 19.9409 17.6381 19.6807ZM18.4327 19.8208C18.2447 19.6372 17.9623 19.6372 17.7743 19.8208C17.5863 20.0044 17.5863 20.2793 17.7743 20.4629C17.9623 20.6465 18.2446 20.6465 18.4327 20.4629C18.6202 20.2794 18.6203 20.0043 18.4327 19.8208ZM18.103 15.4935C18.287 15.4935 18.4563 15.5543 18.5803 15.6755C18.7047 15.797 18.768 15.9646 18.768 16.148V18.7185C18.768 18.8984 18.6779 19.0609 18.5622 19.1739C18.4462 19.287 18.2823 19.373 18.103 19.373C17.919 19.373 17.7497 19.3121 17.6257 19.191C17.5013 19.0695 17.438 18.9019 17.438 18.7185V16.148C17.438 15.9646 17.5013 15.797 17.6257 15.6755C17.7497 15.5544 17.919 15.4935 18.103 15.4935ZM18.103 15.6888C17.8209 15.6889 17.6333 15.8726 17.6333 16.148V18.7185C17.6333 18.9939 17.8209 19.1776 18.103 19.1777C18.3381 19.1777 18.5737 18.948 18.5737 18.7185V16.148C18.5737 15.8725 18.3851 15.6888 18.103 15.6888ZM13.3547 7.19531C11.38 7.19531 9.73431 8.80263 9.73431 10.7309C9.73458 12.6589 11.3801 14.2655 13.3547 14.2655C15.3291 14.2654 16.9747 12.6588 16.975 10.7309C16.975 8.80268 15.3293 7.1954 13.3547 7.19531ZM13.3547 8.11373C14.8121 8.11382 16.0347 9.30769 16.0347 10.7309C16.0344 12.1538 14.8119 13.3469 13.3547 13.347C11.8973 13.347 10.6749 12.1539 10.6746 10.7309C10.6746 9.30764 11.8971 8.11373 13.3547 8.11373ZM13.3547 8.30904C12.0005 8.30904 10.87 9.41975 10.87 10.7309C10.8702 12.0418 12.0007 13.1517 13.3547 13.1517C14.7086 13.1516 15.8391 12.0417 15.8393 10.7309C15.8393 9.41981 14.7087 8.30913 13.3547 8.30904Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M13.3545 14.2655C11.3798 14.2655 9.73423 12.6586 9.73423 10.7304C9.73423 8.80217 11.3798 7.19531 13.3545 7.19531C15.3292 7.19531 16.9747 8.80217 16.9747 10.7304C16.9747 12.6586 15.3292 14.2655 13.3545 14.2655ZM13.3545 8.11352C11.897 8.11352 10.6746 9.30718 10.6746 10.7304C10.6746 12.1536 11.897 13.3473 13.3545 13.3473C14.812 13.3473 16.0344 12.1536 16.0344 10.7304C16.0344 9.30718 14.812 8.11352 13.3545 8.11352ZM15.7112 14.2655C16.413 13.8575 17.2313 13.6227 18.1031 13.6227C20.6889 13.6227 22.8047 15.6887 22.8047 18.2137C22.8047 20.7388 20.6889 22.8047 18.1031 22.8047C15.5171 22.8047 13.4014 20.7388 13.4014 18.2137C13.4014 17.0554 13.8466 15.9937 14.5782 15.1837H10.3924C9.12299 15.1837 8.13564 16.1937 8.13564 17.3874V21.6111H9.82823V19.8665C9.82823 19.5911 10.0163 19.4075 10.2984 19.4075C10.5805 19.4075 10.7686 19.5911 10.7686 19.8665V22.0702C10.7686 22.3457 10.5805 22.5293 10.2984 22.5293H7.66548C7.38338 22.5293 7.19531 22.3457 7.19531 22.0702V17.3874C7.19531 15.6428 8.65282 14.2655 10.3924 14.2655H15.7112ZM14.3417 18.2137C14.3417 16.1936 16.0344 14.5409 18.1031 14.5409C20.1718 14.5409 21.8644 16.1936 21.8644 18.2137C21.8644 20.2337 20.1718 21.8865 18.1031 21.8865C16.0344 21.8865 14.3417 20.2337 14.3417 18.2137ZM18.1032 19.1778C17.821 19.1778 17.6329 18.9942 17.6329 18.7188V16.1478C17.6329 15.8723 17.821 15.6887 18.1032 15.6887C18.3852 15.6887 18.5733 15.8723 18.5733 16.1478V18.7188C18.5733 18.9483 18.3382 19.1778 18.1032 19.1778ZM17.774 19.8206C17.5859 20.0043 17.5859 20.2797 17.774 20.4634C17.962 20.647 18.2442 20.647 18.4322 20.4634C18.6203 20.2797 18.6203 20.0043 18.4322 19.8206C18.2442 19.637 17.962 19.637 17.774 19.8206Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M13.3547 7C15.4327 7.00009 17.1703 8.69057 17.1703 10.7309C17.1701 12.1823 16.29 13.4558 15.0343 14.0701H15.6631C16.3828 13.6627 17.2161 13.428 18.103 13.428C20.7922 13.428 22.9999 15.5764 23 18.2135C23 20.8507 20.7922 23 18.103 23C15.4138 23 13.206 20.8507 13.206 18.2135C13.2061 17.1544 13.563 16.1733 14.1635 15.3792H10.3926C9.22922 15.3792 8.33095 16.3034 8.33095 17.3875V21.4156H9.63332V19.8665C9.63333 19.683 9.69655 19.5155 9.82101 19.394C9.94506 19.2728 10.1143 19.212 10.2983 19.212C10.4823 19.212 10.6516 19.2728 10.7756 19.394C10.9001 19.5155 10.9633 19.683 10.9633 19.8665V22.0701C10.9633 22.2536 10.9001 22.4211 10.7756 22.5427C10.6516 22.6638 10.4823 22.7247 10.2983 22.7247H7.665C7.48126 22.7246 7.31258 22.6636 7.18864 22.5427C7.06416 22.4211 7 22.2536 7 22.0701V17.3875C7 15.529 8.55158 14.0701 10.3926 14.0701H11.675C10.4191 13.4558 9.53919 12.1824 9.539 10.7309C9.539 8.69051 11.2766 7 13.3547 7ZM18.103 13.6224C17.2312 13.6224 16.4125 13.8574 15.7107 14.2655H10.3926C8.65304 14.2655 7.19531 15.6429 7.19531 17.3875V22.0701C7.19531 22.3455 7.38316 22.5292 7.665 22.5294H10.2983C10.5804 22.5294 10.769 22.3457 10.769 22.0701V19.8665C10.769 19.5911 10.5804 19.4073 10.2983 19.4073C10.0163 19.4073 9.82864 19.5911 9.82863 19.8665V21.6109H8.13564V17.3875C8.13564 16.1939 9.1232 15.1839 10.3926 15.1839H14.5779C13.8465 15.9938 13.4014 17.0554 13.4013 18.2135C13.4013 20.7386 15.5171 22.8047 18.103 22.8047C20.6889 22.8047 22.8047 20.7386 22.8047 18.2135C22.8046 15.6885 20.6888 13.6224 18.103 13.6224ZM18.103 14.5408C20.1717 14.5408 21.8643 16.1935 21.8644 18.2135C21.8644 20.2335 20.1717 21.8863 18.103 21.8863C16.0343 21.8862 14.3417 20.2335 14.3417 18.2135C14.3418 16.1935 16.0344 14.5408 18.103 14.5408ZM18.103 14.7361C16.1377 14.7361 14.5371 16.3056 14.537 18.2135C14.537 20.1214 16.1377 21.6909 18.103 21.691C20.0684 21.691 21.669 20.1214 21.669 18.2135C21.6689 16.3056 20.0683 14.7361 18.103 14.7361ZM17.6381 19.6807C17.9019 19.4234 18.3052 19.4231 18.5689 19.6807C18.802 19.9084 18.8305 20.2444 18.6556 20.4991L18.5689 20.603C18.3381 20.8283 18.0004 20.8566 17.7429 20.6877L17.6381 20.603C17.3716 20.3428 17.3716 19.9409 17.6381 19.6807ZM18.4327 19.8208C18.2447 19.6372 17.9623 19.6372 17.7743 19.8208C17.5863 20.0044 17.5863 20.2793 17.7743 20.4629C17.9623 20.6465 18.2446 20.6465 18.4327 20.4629C18.6202 20.2794 18.6203 20.0043 18.4327 19.8208ZM18.103 15.4935C18.287 15.4935 18.4563 15.5543 18.5803 15.6755C18.7047 15.797 18.768 15.9646 18.768 16.148V18.7185C18.768 18.8984 18.6779 19.0609 18.5622 19.1739C18.4462 19.287 18.2823 19.373 18.103 19.373C17.919 19.373 17.7497 19.3121 17.6257 19.191C17.5013 19.0695 17.438 18.9019 17.438 18.7185V16.148C17.438 15.9646 17.5013 15.797 17.6257 15.6755C17.7497 15.5544 17.919 15.4935 18.103 15.4935ZM18.103 15.6888C17.8209 15.6889 17.6333 15.8726 17.6333 16.148V18.7185C17.6333 18.9939 17.8209 19.1776 18.103 19.1777C18.3381 19.1777 18.5737 18.948 18.5737 18.7185V16.148C18.5737 15.8725 18.3851 15.6888 18.103 15.6888ZM13.3547 7.19531C11.38 7.19531 9.73431 8.80263 9.73431 10.7309C9.73458 12.6589 11.3801 14.2655 13.3547 14.2655C15.3291 14.2654 16.9747 12.6588 16.975 10.7309C16.975 8.80268 15.3293 7.1954 13.3547 7.19531ZM13.3547 8.11373C14.8121 8.11382 16.0347 9.30769 16.0347 10.7309C16.0344 12.1538 14.8119 13.3469 13.3547 13.347C11.8973 13.347 10.6749 12.1539 10.6746 10.7309C10.6746 9.30764 11.8971 8.11373 13.3547 8.11373ZM13.3547 8.30904C12.0005 8.30904 10.87 9.41975 10.87 10.7309C10.8702 12.0418 12.0007 13.1517 13.3547 13.1517C14.7086 13.1516 15.8391 12.0417 15.8393 10.7309C15.8393 9.41981 14.7087 8.30913 13.3547 8.30904Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON ASISTI\u00D3 -->\r\n<div *ngIf=\"icon == 'check-user'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.3546 14.2654C11.3804 14.2654 9.73516 12.6589 9.73516 10.7311C9.73516 8.80329 11.3804 7.19678 13.3546 7.19678C15.3289 7.19678 16.9741 8.80329 16.9741 10.7311C16.9741 12.6589 15.3289 14.2654 13.3546 14.2654ZM13.3546 8.11479C11.8975 8.11479 10.6753 9.3082 10.6753 10.7311C10.6753 12.154 11.8975 13.3474 13.3546 13.3474C14.8118 13.3474 16.034 12.154 16.034 10.7311C16.034 9.3082 14.8118 8.11479 13.3546 8.11479ZM15.7108 14.2655C16.4125 13.8575 17.2306 13.6228 18.1022 13.6228C20.6875 13.6228 22.8029 15.6883 22.8029 18.2128C22.8029 20.7374 20.6875 22.8029 18.1022 22.8029C15.5168 22.8029 13.4016 20.7374 13.4016 18.2128C13.4016 17.0548 13.8467 15.9933 14.5781 15.1835H10.3932C9.12404 15.1835 8.1369 16.1933 8.1369 17.3867V21.6095H9.82913V19.8653C9.82913 19.5899 10.0172 19.4063 10.2992 19.4063C10.5812 19.4063 10.7693 19.5899 10.7693 19.8653V22.0685C10.7693 22.344 10.5812 22.5276 10.2992 22.5276H7.66684C7.3848 22.5276 7.19678 22.344 7.19678 22.0685V17.3867C7.19678 15.6424 8.65398 14.2655 10.3932 14.2655H15.7108ZM14.3417 18.2128C14.3417 16.1932 16.0339 14.5408 18.1022 14.5408C20.1705 14.5408 21.8627 16.1932 21.8627 18.2128C21.8627 20.2324 20.1705 21.8849 18.1022 21.8849C16.0339 21.8849 14.3417 20.2324 14.3417 18.2128Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M13.3543 6.99902C15.4332 6.99902 17.1713 8.68987 17.1713 10.7312C17.1712 12.1804 16.295 13.4517 15.0429 14.0679H15.662C16.3818 13.6605 17.215 13.4257 18.1019 13.4256C20.7918 13.4256 23 15.5748 23 18.2128C23 20.8508 20.7918 23 18.1019 23C15.412 22.9999 13.2039 20.8507 13.2038 18.2128C13.2038 17.1548 13.5594 16.1742 14.1586 15.3804H10.3936C9.23187 15.3804 8.33483 16.3039 8.33469 17.3863V21.4117H9.63178V19.8648C9.63188 19.681 9.69592 19.5132 9.8208 19.3913C9.94533 19.2698 10.1147 19.209 10.2991 19.209C10.4836 19.209 10.6529 19.2698 10.7775 19.3913C10.9023 19.5132 10.9664 19.681 10.9665 19.8648V22.0684C10.9665 22.2524 10.9024 22.4208 10.7775 22.5429C10.6529 22.6643 10.4834 22.7252 10.2991 22.7252H7.66637C7.48211 22.7251 7.31249 22.6643 7.18804 22.5429C7.06306 22.4208 6.99902 22.2524 6.99902 22.0684V17.3863C6.99916 15.5269 8.55179 14.0679 10.3936 14.0679H11.6666C10.4144 13.4518 9.53732 12.1805 9.53727 10.7312C9.53727 8.68997 11.2755 6.99919 13.3543 6.99902ZM18.1019 13.6224C17.2305 13.6224 16.4128 13.8578 15.7112 14.2656H10.3936C8.65449 14.2656 7.19686 15.6422 7.19672 17.3863V22.0684C7.19672 22.3437 7.38456 22.5273 7.66637 22.5275H10.2991C10.5812 22.5275 10.7688 22.3439 10.7688 22.0684V19.8648C10.7686 19.5897 10.581 19.4067 10.2991 19.4067C10.0173 19.4067 9.82968 19.5897 9.82948 19.8648V21.6094H8.13699V17.3863C8.13713 16.1931 9.12455 15.1837 10.3936 15.1837H14.5781C13.8467 15.9935 13.4015 17.0548 13.4015 18.2128C13.4016 20.7373 15.5167 22.8031 18.1019 22.8033C20.6872 22.8033 22.8032 20.7373 22.8033 18.2128C22.8033 15.6883 20.6872 13.6224 18.1019 13.6224ZM18.1019 14.5405C20.1702 14.5405 21.863 16.1932 21.863 18.2128C21.863 20.2324 20.1702 21.8852 18.1019 21.8852C16.0338 21.885 14.3418 20.2323 14.3418 18.2128C14.3418 16.1932 16.0338 14.5406 18.1019 14.5405ZM18.1019 14.7382C16.1384 14.7383 14.5395 16.3067 14.5395 18.2128C14.5395 20.1188 16.1384 21.6873 18.1019 21.6875C20.0656 21.6875 21.6653 20.1189 21.6653 18.2128C21.6653 16.3066 20.0656 14.7382 18.1019 14.7382ZM13.3543 7.19672C11.3802 7.19689 9.73497 8.80345 9.73497 10.7312C9.73503 12.6588 11.3802 14.2655 13.3543 14.2656C15.3285 14.2656 16.9745 12.6589 16.9746 10.7312C16.9746 8.80335 15.3286 7.19672 13.3543 7.19672ZM13.3543 8.11481C14.8115 8.11481 16.0343 9.30826 16.0343 10.7312C16.0342 12.154 14.8114 13.3475 13.3543 13.3475C11.8973 13.3474 10.6753 12.1539 10.6752 10.7312C10.6752 9.30836 11.8972 8.11498 13.3543 8.11481ZM13.3543 8.31251C12.0018 8.31268 10.8729 9.42184 10.8729 10.7312C10.873 12.0404 12.0019 13.1497 13.3543 13.1498C14.7068 13.1498 15.8365 12.0405 15.8366 10.7312C15.8366 9.42174 14.7069 8.31251 13.3543 8.31251Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.2741 16.3323C20.4446 16.5081 20.4446 16.7931 20.2741 16.9689L17.6549 19.67C17.4844 19.8458 17.208 19.8458 17.0376 19.67L15.728 18.3195C15.5575 18.1437 15.5575 17.8586 15.728 17.6828C15.8984 17.507 16.1748 17.507 16.3453 17.6828L17.3462 18.715L19.6568 16.3323C19.8272 16.1565 20.1036 16.1565 20.2741 16.3323Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.5148 16.1946C19.7629 15.9387 20.1684 15.9387 20.4165 16.1946C20.6611 16.4468 20.6609 16.8535 20.4165 17.1059L17.7972 19.8071C17.5492 20.0629 17.1446 20.0628 16.8965 19.8071L15.5869 18.457C15.3421 18.2046 15.3421 17.7981 15.5869 17.5456C15.835 17.2898 16.2396 17.2898 16.4876 17.5456L17.3459 18.4309L19.5148 16.1946ZM20.2747 16.3325C20.1043 16.1567 19.827 16.1567 19.6566 16.3325L17.3469 18.7145L16.3459 17.6826C16.1755 17.5069 15.8992 17.5071 15.7287 17.6826C15.5582 17.8584 15.5582 18.1433 15.7287 18.3191L17.0383 19.6702C17.2088 19.8456 17.4851 19.8458 17.6555 19.6702L20.2747 16.9689C20.445 16.7932 20.4449 16.5083 20.2747 16.3325Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M13.3546 14.2654C11.3804 14.2654 9.73516 12.6589 9.73516 10.7311C9.73516 8.80329 11.3804 7.19678 13.3546 7.19678C15.3289 7.19678 16.9741 8.80329 16.9741 10.7311C16.9741 12.6589 15.3289 14.2654 13.3546 14.2654ZM13.3546 8.11479C11.8975 8.11479 10.6753 9.3082 10.6753 10.7311C10.6753 12.154 11.8975 13.3474 13.3546 13.3474C14.8118 13.3474 16.034 12.154 16.034 10.7311C16.034 9.3082 14.8118 8.11479 13.3546 8.11479ZM15.7108 14.2655C16.4125 13.8575 17.2306 13.6228 18.1022 13.6228C20.6875 13.6228 22.8029 15.6883 22.8029 18.2128C22.8029 20.7374 20.6875 22.8029 18.1022 22.8029C15.5168 22.8029 13.4016 20.7374 13.4016 18.2128C13.4016 17.0548 13.8467 15.9933 14.5781 15.1835H10.3932C9.12404 15.1835 8.1369 16.1933 8.1369 17.3867V21.6095H9.82913V19.8653C9.82913 19.5899 10.0172 19.4063 10.2992 19.4063C10.5812 19.4063 10.7693 19.5899 10.7693 19.8653V22.0685C10.7693 22.344 10.5812 22.5276 10.2992 22.5276H7.66684C7.3848 22.5276 7.19678 22.344 7.19678 22.0685V17.3867C7.19678 15.6424 8.65398 14.2655 10.3932 14.2655H15.7108ZM14.3417 18.2128C14.3417 16.1932 16.0339 14.5408 18.1022 14.5408C20.1705 14.5408 21.8627 16.1932 21.8627 18.2128C21.8627 20.2324 20.1705 21.8849 18.1022 21.8849C16.0339 21.8849 14.3417 20.2324 14.3417 18.2128Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M13.3543 6.99902C15.4332 6.99902 17.1713 8.68987 17.1713 10.7312C17.1712 12.1804 16.295 13.4517 15.0429 14.0679H15.662C16.3818 13.6605 17.215 13.4257 18.1019 13.4256C20.7918 13.4256 23 15.5748 23 18.2128C23 20.8508 20.7918 23 18.1019 23C15.412 22.9999 13.2039 20.8507 13.2038 18.2128C13.2038 17.1548 13.5594 16.1742 14.1586 15.3804H10.3936C9.23187 15.3804 8.33483 16.3039 8.33469 17.3863V21.4117H9.63178V19.8648C9.63188 19.681 9.69592 19.5132 9.8208 19.3913C9.94533 19.2698 10.1147 19.209 10.2991 19.209C10.4836 19.209 10.6529 19.2698 10.7775 19.3913C10.9023 19.5132 10.9664 19.681 10.9665 19.8648V22.0684C10.9665 22.2524 10.9024 22.4208 10.7775 22.5429C10.6529 22.6643 10.4834 22.7252 10.2991 22.7252H7.66637C7.48211 22.7251 7.31249 22.6643 7.18804 22.5429C7.06306 22.4208 6.99902 22.2524 6.99902 22.0684V17.3863C6.99916 15.5269 8.55179 14.0679 10.3936 14.0679H11.6666C10.4144 13.4518 9.53732 12.1805 9.53727 10.7312C9.53727 8.68997 11.2755 6.99919 13.3543 6.99902ZM18.1019 13.6224C17.2305 13.6224 16.4128 13.8578 15.7112 14.2656H10.3936C8.65449 14.2656 7.19686 15.6422 7.19672 17.3863V22.0684C7.19672 22.3437 7.38456 22.5273 7.66637 22.5275H10.2991C10.5812 22.5275 10.7688 22.3439 10.7688 22.0684V19.8648C10.7686 19.5897 10.581 19.4067 10.2991 19.4067C10.0173 19.4067 9.82968 19.5897 9.82948 19.8648V21.6094H8.13699V17.3863C8.13713 16.1931 9.12455 15.1837 10.3936 15.1837H14.5781C13.8467 15.9935 13.4015 17.0548 13.4015 18.2128C13.4016 20.7373 15.5167 22.8031 18.1019 22.8033C20.6872 22.8033 22.8032 20.7373 22.8033 18.2128C22.8033 15.6883 20.6872 13.6224 18.1019 13.6224ZM18.1019 14.5405C20.1702 14.5405 21.863 16.1932 21.863 18.2128C21.863 20.2324 20.1702 21.8852 18.1019 21.8852C16.0338 21.885 14.3418 20.2323 14.3418 18.2128C14.3418 16.1932 16.0338 14.5406 18.1019 14.5405ZM18.1019 14.7382C16.1384 14.7383 14.5395 16.3067 14.5395 18.2128C14.5395 20.1188 16.1384 21.6873 18.1019 21.6875C20.0656 21.6875 21.6653 20.1189 21.6653 18.2128C21.6653 16.3066 20.0656 14.7382 18.1019 14.7382ZM13.3543 7.19672C11.3802 7.19689 9.73497 8.80345 9.73497 10.7312C9.73503 12.6588 11.3802 14.2655 13.3543 14.2656C15.3285 14.2656 16.9745 12.6589 16.9746 10.7312C16.9746 8.80335 15.3286 7.19672 13.3543 7.19672ZM13.3543 8.11481C14.8115 8.11481 16.0343 9.30826 16.0343 10.7312C16.0342 12.154 14.8114 13.3475 13.3543 13.3475C11.8973 13.3474 10.6753 12.1539 10.6752 10.7312C10.6752 9.30836 11.8972 8.11498 13.3543 8.11481ZM13.3543 8.31251C12.0018 8.31268 10.8729 9.42184 10.8729 10.7312C10.873 12.0404 12.0019 13.1497 13.3543 13.1498C14.7068 13.1498 15.8365 12.0405 15.8366 10.7312C15.8366 9.42174 14.7069 8.31251 13.3543 8.31251Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.2741 16.3323C20.4446 16.5081 20.4446 16.7931 20.2741 16.9689L17.6549 19.67C17.4844 19.8458 17.208 19.8458 17.0376 19.67L15.728 18.3195C15.5575 18.1437 15.5575 17.8586 15.728 17.6828C15.8984 17.507 16.1748 17.507 16.3453 17.6828L17.3462 18.715L19.6568 16.3323C19.8272 16.1565 20.1036 16.1565 20.2741 16.3323Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.5148 16.1946C19.7629 15.9387 20.1684 15.9387 20.4165 16.1946C20.6611 16.4468 20.6609 16.8535 20.4165 17.1059L17.7972 19.8071C17.5492 20.0629 17.1446 20.0628 16.8965 19.8071L15.5869 18.457C15.3421 18.2046 15.3421 17.7981 15.5869 17.5456C15.835 17.2898 16.2396 17.2898 16.4876 17.5456L17.3459 18.4309L19.5148 16.1946ZM20.2747 16.3325C20.1043 16.1567 19.827 16.1567 19.6566 16.3325L17.3469 18.7145L16.3459 17.6826C16.1755 17.5069 15.8992 17.5071 15.7287 17.6826C15.5582 17.8584 15.5582 18.1433 15.7287 18.3191L17.0383 19.6702C17.2088 19.8456 17.4851 19.8458 17.6555 19.6702L20.2747 16.9689C20.445 16.7932 20.4449 16.5083 20.2747 16.3325Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON NO ASISTI\u00D3 -->\r\n<div *ngIf=\"icon == 'close-user'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.3545 14.2655C11.3798 14.2655 9.73423 12.6586 9.73423 10.7304C9.73423 8.80217 11.3798 7.19531 13.3545 7.19531C15.3292 7.19531 16.9747 8.80217 16.9747 10.7304C16.9747 12.6586 15.3292 14.2655 13.3545 14.2655ZM13.3545 8.11352C11.897 8.11352 10.6746 9.30718 10.6746 10.7304C10.6746 12.1536 11.897 13.3473 13.3545 13.3473C14.812 13.3473 16.0344 12.1536 16.0344 10.7304C16.0344 9.30718 14.812 8.11352 13.3545 8.11352ZM15.7112 14.2655C16.413 13.8575 17.2313 13.6227 18.1031 13.6227C20.6889 13.6227 22.8047 15.6887 22.8047 18.2137C22.8047 20.7388 20.6889 22.8047 18.1031 22.8047C15.5171 22.8047 13.4014 20.7388 13.4014 18.2137C13.4014 17.0554 13.8466 15.9937 14.5782 15.1837H10.3924C9.12299 15.1837 8.13564 16.1937 8.13564 17.3874V21.6111H9.82823V19.8665C9.82823 19.5911 10.0163 19.4075 10.2984 19.4075C10.5805 19.4075 10.7686 19.5911 10.7686 19.8665V22.0702C10.7686 22.3457 10.5805 22.5293 10.2984 22.5293H7.66548C7.38338 22.5293 7.19531 22.3457 7.19531 22.0702V17.3874C7.19531 15.6428 8.65282 14.2655 10.3924 14.2655H15.7112ZM14.3417 18.2137C14.3417 16.1936 16.0344 14.5409 18.1031 14.5409C20.1718 14.5409 21.8644 16.1936 21.8644 18.2137C21.8644 20.2337 20.1718 21.8865 18.1031 21.8865C16.0344 21.8865 14.3417 20.2337 14.3417 18.2137Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M13.3547 7C15.4327 7.00009 17.1703 8.69057 17.1703 10.7309C17.1701 12.1823 16.29 13.4558 15.0343 14.0701H15.6631C16.3828 13.6627 17.2161 13.428 18.103 13.428C20.7922 13.428 22.9999 15.5764 23 18.2135C23 20.8507 20.7922 23 18.103 23C15.4138 23 13.206 20.8507 13.206 18.2135C13.2061 17.1544 13.563 16.1733 14.1635 15.3792H10.3926C9.22922 15.3792 8.33095 16.3034 8.33095 17.3875V21.4156H9.63332V19.8665C9.63333 19.683 9.69655 19.5155 9.82101 19.394C9.94506 19.2728 10.1143 19.212 10.2983 19.212C10.4823 19.212 10.6516 19.2728 10.7756 19.394C10.9001 19.5155 10.9633 19.683 10.9633 19.8665V22.0701C10.9633 22.2536 10.9001 22.4211 10.7756 22.5427C10.6516 22.6638 10.4823 22.7247 10.2983 22.7247H7.665C7.48126 22.7246 7.31258 22.6636 7.18864 22.5427C7.06416 22.4211 7 22.2536 7 22.0701V17.3875C7 15.529 8.55158 14.0701 10.3926 14.0701H11.675C10.4191 13.4558 9.53919 12.1824 9.539 10.7309C9.539 8.69051 11.2766 7 13.3547 7ZM18.103 13.6224C17.2312 13.6224 16.4125 13.8574 15.7107 14.2655H10.3926C8.65304 14.2655 7.19531 15.6429 7.19531 17.3875V22.0701C7.19531 22.3455 7.38316 22.5292 7.665 22.5294H10.2983C10.5804 22.5294 10.769 22.3457 10.769 22.0701V19.8665C10.769 19.5911 10.5804 19.4073 10.2983 19.4073C10.0163 19.4073 9.82864 19.5911 9.82863 19.8665V21.6109H8.13564V17.3875C8.13564 16.1939 9.1232 15.1839 10.3926 15.1839H14.5779C13.8465 15.9938 13.4014 17.0554 13.4013 18.2135C13.4013 20.7386 15.5171 22.8047 18.103 22.8047C20.6889 22.8047 22.8047 20.7386 22.8047 18.2135C22.8046 15.6885 20.6888 13.6224 18.103 13.6224ZM18.103 14.5408C20.1717 14.5408 21.8643 16.1935 21.8644 18.2135C21.8644 20.2335 20.1717 21.8863 18.103 21.8863C16.0343 21.8862 14.3417 20.2335 14.3417 18.2135C14.3418 16.1935 16.0344 14.5408 18.103 14.5408ZM18.103 14.7361C16.1377 14.7361 14.5371 16.3056 14.537 18.2135C14.537 20.1214 16.1377 21.6909 18.103 21.691C20.0684 21.691 21.669 20.1214 21.669 18.2135C21.6689 16.3056 20.0683 14.7361 18.103 14.7361ZM13.3547 7.19531C11.38 7.19531 9.73431 8.80263 9.73431 10.7309C9.73458 12.6589 11.3801 14.2655 13.3547 14.2655C15.3291 14.2654 16.9747 12.6588 16.975 10.7309C16.975 8.80268 15.3293 7.1954 13.3547 7.19531ZM13.3547 8.11373C14.8121 8.11382 16.0347 9.30769 16.0347 10.7309C16.0344 12.1538 14.8119 13.3469 13.3547 13.347C11.8973 13.347 10.6749 12.1539 10.6746 10.7309C10.6746 9.30764 11.8971 8.11373 13.3547 8.11373ZM13.3547 8.30904C12.0005 8.30904 10.87 9.41975 10.87 10.7309C10.8702 12.0418 12.0007 13.1517 13.3547 13.1517C14.7086 13.1516 15.8391 12.0417 15.8393 10.7309C15.8393 9.41981 14.7087 8.30913 13.3547 8.30904Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.216 16.1183C16.4064 15.9279 16.7153 15.9281 16.9058 16.1183L18.1729 17.3855L19.441 16.1183C19.6314 15.9281 19.9403 15.9282 20.1307 16.1183C20.3212 16.3088 20.3212 16.6186 20.1307 16.8091L18.8627 18.0752L20.1307 19.3433C20.3212 19.5338 20.3212 19.8426 20.1307 20.0331C19.9402 20.2236 19.6315 20.2236 19.441 20.0331L18.1729 18.765L16.9058 20.0331C16.7153 20.2236 16.4065 20.2236 16.216 20.0331C16.0258 19.8425 16.0256 19.5337 16.216 19.3433L17.4831 18.0752L16.216 16.8081C16.0257 16.6176 16.0256 16.3088 16.216 16.1183Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.303 15.9804C19.5696 15.714 20.0025 15.7142 20.2691 15.9804L20.3567 16.088C20.5313 16.3532 20.5023 16.7142 20.2691 16.9474L19.1391 18.0754L20.2691 19.2053C20.5356 19.472 20.5356 19.9048 20.2691 20.1714C20.0024 20.438 19.5697 20.4379 19.303 20.1714L18.1731 19.0415L17.0441 20.1714C16.8107 20.4048 16.4498 20.4341 16.1848 20.259L16.078 20.1714C15.8119 19.9048 15.8113 19.472 16.078 19.2053L17.207 18.0754L16.078 16.9464C15.8117 16.6798 15.8114 16.2471 16.078 15.9804C16.3447 15.7137 16.7775 15.7141 17.0441 15.9804L18.1731 17.1093L19.303 15.9804ZM20.1309 16.1185C19.9405 15.9284 19.6316 15.9283 19.4412 16.1185L18.1731 17.3856L16.906 16.1185C16.7155 15.9282 16.4066 15.9281 16.2162 16.1185L16.1533 16.1947C16.0284 16.384 16.0497 16.6416 16.2162 16.8083L17.4833 18.0754L16.2162 19.3435L16.1533 19.4197C16.0284 19.609 16.0498 19.8666 16.2162 20.0332C16.383 20.1999 16.6404 20.2205 16.8297 20.0952L16.906 20.0332L18.1731 18.7652L19.4412 20.0332C19.608 20.1999 19.8654 20.2205 20.0547 20.0952L20.1309 20.0332C20.2977 19.8665 20.3181 19.609 20.1928 19.4197L20.1309 19.3435L18.8629 18.0754L20.1309 16.8092C20.2977 16.6425 20.3181 16.3843 20.1928 16.1947L20.1309 16.1185Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M13.3545 14.2655C11.3798 14.2655 9.73423 12.6586 9.73423 10.7304C9.73423 8.80217 11.3798 7.19531 13.3545 7.19531C15.3292 7.19531 16.9747 8.80217 16.9747 10.7304C16.9747 12.6586 15.3292 14.2655 13.3545 14.2655ZM13.3545 8.11352C11.897 8.11352 10.6746 9.30718 10.6746 10.7304C10.6746 12.1536 11.897 13.3473 13.3545 13.3473C14.812 13.3473 16.0344 12.1536 16.0344 10.7304C16.0344 9.30718 14.812 8.11352 13.3545 8.11352ZM15.7112 14.2655C16.413 13.8575 17.2313 13.6227 18.1031 13.6227C20.6889 13.6227 22.8047 15.6887 22.8047 18.2137C22.8047 20.7388 20.6889 22.8047 18.1031 22.8047C15.5171 22.8047 13.4014 20.7388 13.4014 18.2137C13.4014 17.0554 13.8466 15.9937 14.5782 15.1837H10.3924C9.12299 15.1837 8.13564 16.1937 8.13564 17.3874V21.6111H9.82823V19.8665C9.82823 19.5911 10.0163 19.4075 10.2984 19.4075C10.5805 19.4075 10.7686 19.5911 10.7686 19.8665V22.0702C10.7686 22.3457 10.5805 22.5293 10.2984 22.5293H7.66548C7.38338 22.5293 7.19531 22.3457 7.19531 22.0702V17.3874C7.19531 15.6428 8.65282 14.2655 10.3924 14.2655H15.7112ZM14.3417 18.2137C14.3417 16.1936 16.0344 14.5409 18.1031 14.5409C20.1718 14.5409 21.8644 16.1936 21.8644 18.2137C21.8644 20.2337 20.1718 21.8865 18.1031 21.8865C16.0344 21.8865 14.3417 20.2337 14.3417 18.2137Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M13.3547 7C15.4327 7.00009 17.1703 8.69057 17.1703 10.7309C17.1701 12.1823 16.29 13.4558 15.0343 14.0701H15.6631C16.3828 13.6627 17.2161 13.428 18.103 13.428C20.7922 13.428 22.9999 15.5764 23 18.2135C23 20.8507 20.7922 23 18.103 23C15.4138 23 13.206 20.8507 13.206 18.2135C13.2061 17.1544 13.563 16.1733 14.1635 15.3792H10.3926C9.22922 15.3792 8.33095 16.3034 8.33095 17.3875V21.4156H9.63332V19.8665C9.63333 19.683 9.69655 19.5155 9.82101 19.394C9.94506 19.2728 10.1143 19.212 10.2983 19.212C10.4823 19.212 10.6516 19.2728 10.7756 19.394C10.9001 19.5155 10.9633 19.683 10.9633 19.8665V22.0701C10.9633 22.2536 10.9001 22.4211 10.7756 22.5427C10.6516 22.6638 10.4823 22.7247 10.2983 22.7247H7.665C7.48126 22.7246 7.31258 22.6636 7.18864 22.5427C7.06416 22.4211 7 22.2536 7 22.0701V17.3875C7 15.529 8.55158 14.0701 10.3926 14.0701H11.675C10.4191 13.4558 9.53919 12.1824 9.539 10.7309C9.539 8.69051 11.2766 7 13.3547 7ZM18.103 13.6224C17.2312 13.6224 16.4125 13.8574 15.7107 14.2655H10.3926C8.65304 14.2655 7.19531 15.6429 7.19531 17.3875V22.0701C7.19531 22.3455 7.38316 22.5292 7.665 22.5294H10.2983C10.5804 22.5294 10.769 22.3457 10.769 22.0701V19.8665C10.769 19.5911 10.5804 19.4073 10.2983 19.4073C10.0163 19.4073 9.82864 19.5911 9.82863 19.8665V21.6109H8.13564V17.3875C8.13564 16.1939 9.1232 15.1839 10.3926 15.1839H14.5779C13.8465 15.9938 13.4014 17.0554 13.4013 18.2135C13.4013 20.7386 15.5171 22.8047 18.103 22.8047C20.6889 22.8047 22.8047 20.7386 22.8047 18.2135C22.8046 15.6885 20.6888 13.6224 18.103 13.6224ZM18.103 14.5408C20.1717 14.5408 21.8643 16.1935 21.8644 18.2135C21.8644 20.2335 20.1717 21.8863 18.103 21.8863C16.0343 21.8862 14.3417 20.2335 14.3417 18.2135C14.3418 16.1935 16.0344 14.5408 18.103 14.5408ZM18.103 14.7361C16.1377 14.7361 14.5371 16.3056 14.537 18.2135C14.537 20.1214 16.1377 21.6909 18.103 21.691C20.0684 21.691 21.669 20.1214 21.669 18.2135C21.6689 16.3056 20.0683 14.7361 18.103 14.7361ZM13.3547 7.19531C11.38 7.19531 9.73431 8.80263 9.73431 10.7309C9.73458 12.6589 11.3801 14.2655 13.3547 14.2655C15.3291 14.2654 16.9747 12.6588 16.975 10.7309C16.975 8.80268 15.3293 7.1954 13.3547 7.19531ZM13.3547 8.11373C14.8121 8.11382 16.0347 9.30769 16.0347 10.7309C16.0344 12.1538 14.8119 13.3469 13.3547 13.347C11.8973 13.347 10.6749 12.1539 10.6746 10.7309C10.6746 9.30764 11.8971 8.11373 13.3547 8.11373ZM13.3547 8.30904C12.0005 8.30904 10.87 9.41975 10.87 10.7309C10.8702 12.0418 12.0007 13.1517 13.3547 13.1517C14.7086 13.1516 15.8391 12.0417 15.8393 10.7309C15.8393 9.41981 14.7087 8.30913 13.3547 8.30904Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.216 16.1183C16.4064 15.9279 16.7153 15.9281 16.9058 16.1183L18.1729 17.3855L19.441 16.1183C19.6314 15.9281 19.9403 15.9282 20.1307 16.1183C20.3212 16.3088 20.3212 16.6186 20.1307 16.8091L18.8627 18.0752L20.1307 19.3433C20.3212 19.5338 20.3212 19.8426 20.1307 20.0331C19.9402 20.2236 19.6315 20.2236 19.441 20.0331L18.1729 18.765L16.9058 20.0331C16.7153 20.2236 16.4065 20.2236 16.216 20.0331C16.0258 19.8425 16.0256 19.5337 16.216 19.3433L17.4831 18.0752L16.216 16.8081C16.0257 16.6176 16.0256 16.3088 16.216 16.1183Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M19.303 15.9804C19.5696 15.714 20.0025 15.7142 20.2691 15.9804L20.3567 16.088C20.5313 16.3532 20.5023 16.7142 20.2691 16.9474L19.1391 18.0754L20.2691 19.2053C20.5356 19.472 20.5356 19.9048 20.2691 20.1714C20.0024 20.438 19.5697 20.4379 19.303 20.1714L18.1731 19.0415L17.0441 20.1714C16.8107 20.4048 16.4498 20.4341 16.1848 20.259L16.078 20.1714C15.8119 19.9048 15.8113 19.472 16.078 19.2053L17.207 18.0754L16.078 16.9464C15.8117 16.6798 15.8114 16.2471 16.078 15.9804C16.3447 15.7137 16.7775 15.7141 17.0441 15.9804L18.1731 17.1093L19.303 15.9804ZM20.1309 16.1185C19.9405 15.9284 19.6316 15.9283 19.4412 16.1185L18.1731 17.3856L16.906 16.1185C16.7155 15.9282 16.4066 15.9281 16.2162 16.1185L16.1533 16.1947C16.0284 16.384 16.0497 16.6416 16.2162 16.8083L17.4833 18.0754L16.2162 19.3435L16.1533 19.4197C16.0284 19.609 16.0498 19.8666 16.2162 20.0332C16.383 20.1999 16.6404 20.2205 16.8297 20.0952L16.906 20.0332L18.1731 18.7652L19.4412 20.0332C19.608 20.1999 19.8654 20.2205 20.0547 20.0952L20.1309 20.0332C20.2977 19.8665 20.3181 19.609 20.1928 19.4197L20.1309 19.3435L18.8629 18.0754L20.1309 16.8092C20.2977 16.6425 20.3181 16.3843 20.1928 16.1947L20.1309 16.1185Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON M\u00C9DICO -->\r\n<div *ngIf=\"icon == 'doctor'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 7C17.601 7 19.7177 9.11683 19.7178 11.7178C19.7178 13.0429 19.1671 14.2412 18.2842 15.0986C21.1076 16.3721 23 19.22 23 22.3848C22.9999 22.7243 22.7243 22.9999 22.3848 23C22.0451 23 21.7696 22.7244 21.7695 22.3848C21.7695 19.8196 20.3007 17.501 18.0771 16.3643V18.583C19.0214 18.853 19.7176 19.7136 19.7178 20.7432V21.5645C19.7175 21.9039 19.4421 22.1797 19.1025 22.1797C18.7631 22.1796 18.4875 21.9039 18.4873 21.5645V20.7432C18.4871 20.1781 18.027 19.7179 17.4619 19.7178C16.8967 19.7178 16.4357 20.178 16.4355 20.7432V21.5645C16.4353 21.9039 16.1599 22.1797 15.8203 22.1797C15.4809 22.1795 15.2053 21.9038 15.2051 21.5645V20.7432C15.2052 19.7136 15.9024 18.8529 16.8467 18.583V16.0537C16.2789 16.2973 15.6561 16.4355 15 16.4355C14.3439 16.4355 13.7212 16.2977 13.1533 16.0537V18.7998C13.6472 19.1313 13.9745 19.6947 13.9746 20.333C13.9746 21.3513 13.1462 22.1797 12.1279 22.1797C11.1098 22.1796 10.2822 21.3512 10.2822 20.333C10.2823 19.3855 11.0024 18.6113 11.9229 18.5078V16.3643C9.69933 17.5007 8.23047 19.8197 8.23047 22.3848C8.23039 22.7244 7.95488 23 7.61523 23C7.27566 22.9999 7.00008 22.7243 7 22.3848C7 19.22 8.89162 16.3721 11.7158 15.0986C10.8338 14.2404 10.2822 13.0429 10.2822 11.7178C10.2823 9.11683 12.399 7 15 7ZM12.1279 19.7178C11.7884 19.7179 11.5128 19.9935 11.5127 20.333C11.5127 20.6726 11.7883 20.9481 12.1279 20.9482C12.4676 20.9482 12.7432 20.6727 12.7432 20.333C12.743 19.9934 12.4675 19.7178 12.1279 19.7178ZM15 8.23047C13.0776 8.23047 11.5128 9.79539 11.5127 11.7178C11.5127 13.6402 13.0775 15.2051 15 15.2051C16.9225 15.2051 18.4873 13.6402 18.4873 11.7178C18.4872 9.79539 16.9224 8.23047 15 8.23047Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 7C17.601 7 19.7177 9.11683 19.7178 11.7178C19.7178 13.0429 19.1671 14.2412 18.2842 15.0986C21.1076 16.3721 23 19.22 23 22.3848C22.9999 22.7243 22.7243 22.9999 22.3848 23C22.0451 23 21.7696 22.7244 21.7695 22.3848C21.7695 19.8196 20.3007 17.501 18.0771 16.3643V18.583C19.0214 18.853 19.7176 19.7136 19.7178 20.7432V21.5645C19.7175 21.9039 19.4421 22.1797 19.1025 22.1797C18.7631 22.1796 18.4875 21.9039 18.4873 21.5645V20.7432C18.4871 20.1781 18.027 19.7179 17.4619 19.7178C16.8967 19.7178 16.4357 20.178 16.4355 20.7432V21.5645C16.4353 21.9039 16.1599 22.1797 15.8203 22.1797C15.4809 22.1795 15.2053 21.9038 15.2051 21.5645V20.7432C15.2052 19.7136 15.9024 18.8529 16.8467 18.583V16.0537C16.2789 16.2973 15.6561 16.4355 15 16.4355C14.3439 16.4355 13.7212 16.2977 13.1533 16.0537V18.7998C13.6472 19.1313 13.9745 19.6947 13.9746 20.333C13.9746 21.3513 13.1462 22.1797 12.1279 22.1797C11.1098 22.1796 10.2822 21.3512 10.2822 20.333C10.2823 19.3855 11.0024 18.6113 11.9229 18.5078V16.3643C9.69933 17.5007 8.23047 19.8197 8.23047 22.3848C8.23039 22.7244 7.95488 23 7.61523 23C7.27566 22.9999 7.00008 22.7243 7 22.3848C7 19.22 8.89162 16.3721 11.7158 15.0986C10.8338 14.2404 10.2822 13.0429 10.2822 11.7178C10.2823 9.11683 12.399 7 15 7ZM12.1279 19.7178C11.7884 19.7179 11.5128 19.9935 11.5127 20.333C11.5127 20.6726 11.7883 20.9481 12.1279 20.9482C12.4676 20.9482 12.7432 20.6727 12.7432 20.333C12.743 19.9934 12.4675 19.7178 12.1279 19.7178ZM15 8.23047C13.0776 8.23047 11.5128 9.79539 11.5127 11.7178C11.5127 13.6402 13.0775 15.2051 15 15.2051C16.9225 15.2051 18.4873 13.6402 18.4873 11.7178C18.4872 9.79539 16.9224 8.23047 15 8.23047Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON FRACTURA -->\r\n<div *ngIf=\"icon == 'fracture'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M20.5913 15.2764C19.1213 14.5727 17.2138 14 15 14C12.7863 14 10.8788 14.5727 9.4088 15.2764C8.98185 15.482 8.62419 15.7942 8.37552 16.1784C8.12684 16.5626 7.99688 17.0037 8.00006 17.4527V23H9.75005V17.4527C9.75005 17.1418 9.92505 16.8636 10.205 16.7327C11.2463 16.2336 12.9263 15.6364 15 15.6364C15.665 15.6364 16.2863 15.6936 16.8638 15.8L15.5075 18.5H13.0313C11.7013 18.5 10.625 19.5064 10.625 20.75C10.625 21.9936 11.7013 23 13.0313 23H20.25C21.2125 23 22 22.2636 22 21.3636V17.4527C22 16.5364 21.4663 15.6936 20.5913 15.2764ZM14.0725 21.3636H13.0313C12.6725 21.3636 12.375 21.0855 12.375 20.75C12.375 20.4145 12.6725 20.1364 13.0313 20.1364H14.685L14.0725 21.3636ZM20.25 21.3636H16.0063L18.5788 16.2336C19.0513 16.3973 19.4625 16.5691 19.8038 16.7327C20.075 16.8636 20.25 17.1418 20.25 17.4527V21.3636Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.2 13.4C16.968 13.4 18.4 11.968 18.4 10.2C18.4 8.432 16.968 7 15.2 7C13.432 7 12 8.432 12 10.2C12 11.968 13.432 13.4 15.2 13.4ZM15.2 8.6C16.08 8.6 16.8 9.32 16.8 10.2C16.8 11.08 16.08 11.8 15.2 11.8C14.32 11.8 13.6 11.08 13.6 10.2C13.6 9.32 14.32 8.6 15.2 8.6Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M20.5913 15.2764C19.1213 14.5727 17.2138 14 15 14C12.7863 14 10.8788 14.5727 9.4088 15.2764C8.98185 15.482 8.62419 15.7942 8.37552 16.1784C8.12684 16.5626 7.99688 17.0037 8.00006 17.4527V23H9.75005V17.4527C9.75005 17.1418 9.92505 16.8636 10.205 16.7327C11.2463 16.2336 12.9263 15.6364 15 15.6364C15.665 15.6364 16.2863 15.6936 16.8638 15.8L15.5075 18.5H13.0313C11.7013 18.5 10.625 19.5064 10.625 20.75C10.625 21.9936 11.7013 23 13.0313 23H20.25C21.2125 23 22 22.2636 22 21.3636V17.4527C22 16.5364 21.4663 15.6936 20.5913 15.2764ZM14.0725 21.3636H13.0313C12.6725 21.3636 12.375 21.0855 12.375 20.75C12.375 20.4145 12.6725 20.1364 13.0313 20.1364H14.685L14.0725 21.3636ZM20.25 21.3636H16.0063L18.5788 16.2336C19.0513 16.3973 19.4625 16.5691 19.8038 16.7327C20.075 16.8636 20.25 17.1418 20.25 17.4527V21.3636Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.2 13.4C16.968 13.4 18.4 11.968 18.4 10.2C18.4 8.432 16.968 7 15.2 7C13.432 7 12 8.432 12 10.2C12 11.968 13.432 13.4 15.2 13.4ZM15.2 8.6C16.08 8.6 16.8 9.32 16.8 10.2C16.8 11.08 16.08 11.8 15.2 11.8C14.32 11.8 13.6 11.08 13.6 10.2C13.6 9.32 14.32 8.6 15.2 8.6Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON HOSPITALIZACI\u00D3N -->\r\n<div *ngIf=\"icon == 'hospitalized'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M14.2402 17.4736C14.897 17.4751 15.5263 17.7372 15.9902 18.2021C16.4541 18.6671 16.7148 19.2973 16.7148 19.9541V22.4287C16.7148 22.5802 16.655 22.7259 16.5479 22.833C16.4407 22.9401 16.295 23 16.1436 23C15.9921 23 15.8464 22.9401 15.7393 22.833C15.6322 22.7259 15.5723 22.5802 15.5723 22.4287V21.4736H8.14258V22.4287C8.1425 22.5802 8.08269 22.7259 7.97559 22.833C7.86847 22.9401 7.72276 22.9999 7.57129 23C7.41984 23 7.27414 22.94 7.16699 22.833C7.05989 22.7259 7.00008 22.5802 7 22.4287V19.9541C7 19.2974 7.25988 18.6671 7.72363 18.2021C8.18754 17.7372 8.81779 17.4751 9.47461 17.4736H14.2402ZM21.2852 6.99805C21.7399 6.99805 22.1765 7.17847 22.498 7.5C22.8193 7.82144 22.9999 8.25743 23 8.71191V22.4277C23 22.5793 22.9392 22.7249 22.832 22.832C22.725 22.939 22.5801 22.9999 22.4287 23H20.1426C19.991 23 19.8455 22.9392 19.7383 22.832C19.6311 22.7249 19.5713 22.5793 19.5713 22.4277C19.5714 22.2763 19.6312 22.1305 19.7383 22.0234C19.8454 21.9164 19.9911 21.8564 20.1426 21.8564H21.8564V8.71191C21.8564 8.56043 21.7966 8.41474 21.6895 8.30762C21.5823 8.20056 21.4366 8.14062 21.2852 8.14062H19.5713C19.4199 8.14062 19.2741 8.20066 19.167 8.30762C19.0599 8.41474 18.9991 8.56043 18.999 8.71191V9.2832H19.8564C20.008 9.2832 20.1536 9.344 20.2607 9.45117C20.3679 9.55834 20.4277 9.70395 20.4277 9.85547V11.8555C20.426 12.2848 20.2865 12.7022 20.0293 13.0459C19.772 13.3896 19.4105 13.642 18.999 13.7646V16.667C18.999 17.8557 18.3761 18.6162 17.376 18.6162C17.2247 18.6161 17.0797 18.556 16.9727 18.4492C16.8655 18.3421 16.8048 18.1964 16.8047 18.0449C16.8047 17.8934 16.8655 17.7478 16.9727 17.6406C17.0797 17.5336 17.2246 17.4737 17.376 17.4736C17.5189 17.4736 17.8564 17.4728 17.8564 16.667V13.7646C17.445 13.642 17.0835 13.3896 16.8262 13.0459C16.569 12.7022 16.4295 12.2847 16.4277 11.8555V9.85547C16.4277 9.70399 16.4877 9.55833 16.5947 9.45117C16.7019 9.34401 16.8475 9.28322 16.999 9.2832H17.8564V8.71191C17.8565 8.25736 18.037 7.82146 18.3584 7.5C18.6799 7.17847 19.1166 6.99805 19.5713 6.99805H21.2852ZM9.47461 18.6162C9.12104 18.6177 8.78176 18.7593 8.53223 19.0098C8.28267 19.2604 8.14257 19.6004 8.14258 19.9541V20.3311H15.5723V19.9541C15.5723 19.6004 15.4322 19.2604 15.1826 19.0098C14.9331 18.7592 14.5939 18.6177 14.2402 18.6162H9.47461ZM14.2402 12.7119C14.8965 12.7119 15.5262 12.9725 15.9902 13.4365C16.4543 13.9006 16.7148 14.5302 16.7148 15.1865V16.998C16.7148 17.1496 16.655 17.2952 16.5479 17.4023C16.4407 17.5095 16.2951 17.5693 16.1436 17.5693C15.992 17.5693 15.8464 17.5095 15.7393 17.4023C15.6321 17.2952 15.5723 17.1496 15.5723 16.998V15.1865C15.5708 14.8338 15.4301 14.4955 15.1807 14.2461C14.9313 13.9967 14.5929 13.856 14.2402 13.8545H9.47461C9.12199 13.856 8.78356 13.9968 8.53418 14.2461C8.28478 14.4955 8.14408 14.8338 8.14258 15.1865V16.998C8.14257 17.1496 8.08269 17.2952 7.97559 17.4023C7.86846 17.5095 7.72278 17.5693 7.57129 17.5693C7.41978 17.5693 7.27416 17.5094 7.16699 17.4023C7.05982 17.2952 7.00001 17.1496 7 16.998V15.1865C7 14.5302 7.26054 13.9006 7.72461 13.4365C8.18867 12.9726 8.81839 12.7119 9.47461 12.7119H14.2402ZM11.7383 14.1426C12.0491 14.1442 12.3563 14.2137 12.6367 14.3477C12.9172 14.4816 13.1648 14.6763 13.3613 14.917C13.5579 15.1578 13.6993 15.4395 13.7744 15.7412C13.8495 16.0428 13.8565 16.3573 13.7959 16.6621V16.7598C13.7772 16.8325 13.7443 16.9009 13.6992 16.9609C13.6541 17.021 13.5979 17.0721 13.5332 17.1104C13.4685 17.1485 13.3966 17.1731 13.3223 17.1836C13.2478 17.1941 13.1714 17.1898 13.0986 17.1709C12.9555 17.1343 12.8317 17.0436 12.7539 16.918C12.6763 16.7924 12.6506 16.6414 12.6816 16.4971C12.6996 16.4184 12.7089 16.3376 12.71 16.2568C12.7201 16.1257 12.7034 15.9934 12.6602 15.8691C12.6169 15.745 12.5483 15.6307 12.459 15.5342C12.3697 15.4378 12.261 15.3612 12.1406 15.3086C12.0202 15.256 11.8903 15.2285 11.7588 15.2285C11.6273 15.2285 11.4974 15.256 11.377 15.3086C11.2566 15.3612 11.1479 15.4378 11.0586 15.5342C10.9693 15.6307 10.9006 15.745 10.8574 15.8691C10.8142 15.9934 10.7974 16.1257 10.8076 16.2568C10.8059 16.3377 10.8152 16.4189 10.8359 16.4971C10.8722 16.6431 10.8493 16.7974 10.7725 16.9268C10.6954 17.0563 10.5697 17.1508 10.4238 17.1885C10.3765 17.194 10.3286 17.194 10.2812 17.1885C10.1517 17.1925 10.0247 17.1519 9.9209 17.0742C9.81708 16.9964 9.74239 16.8854 9.70996 16.7598C9.66915 16.5894 9.64842 16.4144 9.64746 16.2393C9.64674 15.9642 9.69998 15.6918 9.80469 15.4375C9.90947 15.1831 10.0635 14.9517 10.2578 14.7568C10.452 14.5621 10.6825 14.4072 10.9365 14.3018C11.1905 14.1963 11.4633 14.1426 11.7383 14.1426ZM17.6221 12.1416C17.6818 12.3077 17.7916 12.4516 17.9355 12.5537C18.0795 12.6557 18.2513 12.7116 18.4277 12.7129C18.6044 12.7116 18.7768 12.6559 18.9209 12.5537C19.0648 12.4516 19.1737 12.3076 19.2334 12.1416H17.6221ZM17.5703 10.998H19.2852V10.4268H17.5703V10.998Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M14.2402 17.4736C14.897 17.4751 15.5263 17.7372 15.9902 18.2021C16.4541 18.6671 16.7148 19.2973 16.7148 19.9541V22.4287C16.7148 22.5802 16.655 22.7259 16.5479 22.833C16.4407 22.9401 16.295 23 16.1436 23C15.9921 23 15.8464 22.9401 15.7393 22.833C15.6322 22.7259 15.5723 22.5802 15.5723 22.4287V21.4736H8.14258V22.4287C8.1425 22.5802 8.08269 22.7259 7.97559 22.833C7.86847 22.9401 7.72276 22.9999 7.57129 23C7.41984 23 7.27414 22.94 7.16699 22.833C7.05989 22.7259 7.00008 22.5802 7 22.4287V19.9541C7 19.2974 7.25988 18.6671 7.72363 18.2021C8.18754 17.7372 8.81779 17.4751 9.47461 17.4736H14.2402ZM21.2852 6.99805C21.7399 6.99805 22.1765 7.17847 22.498 7.5C22.8193 7.82144 22.9999 8.25743 23 8.71191V22.4277C23 22.5793 22.9392 22.7249 22.832 22.832C22.725 22.939 22.5801 22.9999 22.4287 23H20.1426C19.991 23 19.8455 22.9392 19.7383 22.832C19.6311 22.7249 19.5713 22.5793 19.5713 22.4277C19.5714 22.2763 19.6312 22.1305 19.7383 22.0234C19.8454 21.9164 19.9911 21.8564 20.1426 21.8564H21.8564V8.71191C21.8564 8.56043 21.7966 8.41474 21.6895 8.30762C21.5823 8.20056 21.4366 8.14062 21.2852 8.14062H19.5713C19.4199 8.14062 19.2741 8.20066 19.167 8.30762C19.0599 8.41474 18.9991 8.56043 18.999 8.71191V9.2832H19.8564C20.008 9.2832 20.1536 9.344 20.2607 9.45117C20.3679 9.55834 20.4277 9.70395 20.4277 9.85547V11.8555C20.426 12.2848 20.2865 12.7022 20.0293 13.0459C19.772 13.3896 19.4105 13.642 18.999 13.7646V16.667C18.999 17.8557 18.3761 18.6162 17.376 18.6162C17.2247 18.6161 17.0797 18.556 16.9727 18.4492C16.8655 18.3421 16.8048 18.1964 16.8047 18.0449C16.8047 17.8934 16.8655 17.7478 16.9727 17.6406C17.0797 17.5336 17.2246 17.4737 17.376 17.4736C17.5189 17.4736 17.8564 17.4728 17.8564 16.667V13.7646C17.445 13.642 17.0835 13.3896 16.8262 13.0459C16.569 12.7022 16.4295 12.2847 16.4277 11.8555V9.85547C16.4277 9.70399 16.4877 9.55833 16.5947 9.45117C16.7019 9.34401 16.8475 9.28322 16.999 9.2832H17.8564V8.71191C17.8565 8.25736 18.037 7.82146 18.3584 7.5C18.6799 7.17847 19.1166 6.99805 19.5713 6.99805H21.2852ZM9.47461 18.6162C9.12104 18.6177 8.78176 18.7593 8.53223 19.0098C8.28267 19.2604 8.14257 19.6004 8.14258 19.9541V20.3311H15.5723V19.9541C15.5723 19.6004 15.4322 19.2604 15.1826 19.0098C14.9331 18.7592 14.5939 18.6177 14.2402 18.6162H9.47461ZM14.2402 12.7119C14.8965 12.7119 15.5262 12.9725 15.9902 13.4365C16.4543 13.9006 16.7148 14.5302 16.7148 15.1865V16.998C16.7148 17.1496 16.655 17.2952 16.5479 17.4023C16.4407 17.5095 16.2951 17.5693 16.1436 17.5693C15.992 17.5693 15.8464 17.5095 15.7393 17.4023C15.6321 17.2952 15.5723 17.1496 15.5723 16.998V15.1865C15.5708 14.8338 15.4301 14.4955 15.1807 14.2461C14.9313 13.9967 14.5929 13.856 14.2402 13.8545H9.47461C9.12199 13.856 8.78356 13.9968 8.53418 14.2461C8.28478 14.4955 8.14408 14.8338 8.14258 15.1865V16.998C8.14257 17.1496 8.08269 17.2952 7.97559 17.4023C7.86846 17.5095 7.72278 17.5693 7.57129 17.5693C7.41978 17.5693 7.27416 17.5094 7.16699 17.4023C7.05982 17.2952 7.00001 17.1496 7 16.998V15.1865C7 14.5302 7.26054 13.9006 7.72461 13.4365C8.18867 12.9726 8.81839 12.7119 9.47461 12.7119H14.2402ZM11.7383 14.1426C12.0491 14.1442 12.3563 14.2137 12.6367 14.3477C12.9172 14.4816 13.1648 14.6763 13.3613 14.917C13.5579 15.1578 13.6993 15.4395 13.7744 15.7412C13.8495 16.0428 13.8565 16.3573 13.7959 16.6621V16.7598C13.7772 16.8325 13.7443 16.9009 13.6992 16.9609C13.6541 17.021 13.5979 17.0721 13.5332 17.1104C13.4685 17.1485 13.3966 17.1731 13.3223 17.1836C13.2478 17.1941 13.1714 17.1898 13.0986 17.1709C12.9555 17.1343 12.8317 17.0436 12.7539 16.918C12.6763 16.7924 12.6506 16.6414 12.6816 16.4971C12.6996 16.4184 12.7089 16.3376 12.71 16.2568C12.7201 16.1257 12.7034 15.9934 12.6602 15.8691C12.6169 15.745 12.5483 15.6307 12.459 15.5342C12.3697 15.4378 12.261 15.3612 12.1406 15.3086C12.0202 15.256 11.8903 15.2285 11.7588 15.2285C11.6273 15.2285 11.4974 15.256 11.377 15.3086C11.2566 15.3612 11.1479 15.4378 11.0586 15.5342C10.9693 15.6307 10.9006 15.745 10.8574 15.8691C10.8142 15.9934 10.7974 16.1257 10.8076 16.2568C10.8059 16.3377 10.8152 16.4189 10.8359 16.4971C10.8722 16.6431 10.8493 16.7974 10.7725 16.9268C10.6954 17.0563 10.5697 17.1508 10.4238 17.1885C10.3765 17.194 10.3286 17.194 10.2812 17.1885C10.1517 17.1925 10.0247 17.1519 9.9209 17.0742C9.81708 16.9964 9.74239 16.8854 9.70996 16.7598C9.66915 16.5894 9.64842 16.4144 9.64746 16.2393C9.64674 15.9642 9.69998 15.6918 9.80469 15.4375C9.90947 15.1831 10.0635 14.9517 10.2578 14.7568C10.452 14.5621 10.6825 14.4072 10.9365 14.3018C11.1905 14.1963 11.4633 14.1426 11.7383 14.1426ZM17.6221 12.1416C17.6818 12.3077 17.7916 12.4516 17.9355 12.5537C18.0795 12.6557 18.2513 12.7116 18.4277 12.7129C18.6044 12.7116 18.7768 12.6559 18.9209 12.5537C19.0648 12.4516 19.1737 12.3076 19.2334 12.1416H17.6221ZM17.5703 10.998H19.2852V10.4268H17.5703V10.998Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON EX\u00C1MENES -->\r\n<div *ngIf=\"icon == 'x-ray'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.8095 6.80952C16.8095 7.28944 16.6188 7.7497 16.2795 8.08905C15.9401 8.4284 15.4799 8.61905 15 8.61905C14.52 8.61905 14.0598 8.4284 13.7204 8.08905C13.3811 7.7497 13.1904 7.28944 13.1904 6.80952C13.1904 6.32961 13.3811 5.86935 13.7204 5.53C14.0598 5.19065 14.52 5 15 5C15.4799 5 15.9401 5.19065 16.2795 5.53C16.6188 5.86935 16.8095 6.32961 16.8095 6.80952Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.2858 19.4761V23.1705C12.2858 23.3905 12.3811 23.6014 12.5508 23.757C12.7204 23.9125 12.9506 23.9999 13.1905 23.9999C13.4305 23.9999 13.6606 23.9125 13.8303 23.757C14 23.6014 14.0953 23.3905 14.0953 23.1705L14.0953 19.4761H13.1905H12.2858ZM15.9048 19.4761L15.9048 23.1705C15.9048 23.3905 16.0001 23.6014 16.1698 23.757C16.3395 23.9125 16.5696 23.9999 16.8096 23.9999C17.0495 23.9999 17.2797 23.9125 17.4493 23.757C17.619 23.6014 17.7143 23.3905 17.7143 23.1705L17.7143 19.4761H16.8096H15.9048Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.66663 10.5292C8.66663 10.2626 8.76195 10.0069 8.93162 9.81837C9.1013 9.62984 9.33143 9.52393 9.57139 9.52393H20.4285C20.6685 9.52393 20.8986 9.62984 21.0683 9.81837C21.238 10.0069 21.3333 10.2626 21.3333 10.5292V17.5663C21.3333 17.8329 21.238 18.0886 21.0683 18.2771C20.8986 18.4656 20.6685 18.5715 20.4285 18.5715H9.57139C9.33143 18.5715 9.1013 18.4656 8.93162 18.2771C8.76195 18.0886 8.66663 17.8329 8.66663 17.5663V10.5292ZM10.0238 17.0636V11.0319H14.3214V11.9497C13.803 12.01 13.2936 12.1417 12.8873 12.3679C12.8069 12.4116 12.7351 12.4727 12.676 12.5474C12.6168 12.6222 12.5716 12.7092 12.5429 12.8034C12.5142 12.8977 12.5026 12.9973 12.5087 13.0966C12.5149 13.1959 12.5386 13.2928 12.5786 13.3818C12.6186 13.4709 12.6741 13.5502 12.7418 13.6153C12.8095 13.6804 12.8882 13.73 12.9733 13.7611C13.0583 13.7923 13.1481 13.8044 13.2374 13.7968C13.3267 13.7893 13.4137 13.7621 13.4935 13.717C13.6917 13.6064 13.9812 13.519 14.3214 13.4687V14.3523C13.6205 14.4608 12.9506 14.7436 12.3617 15.1797C12.2141 15.2916 12.1122 15.4637 12.0781 15.6586C12.0441 15.8535 12.0805 16.0554 12.1797 16.2206C12.2788 16.3858 12.4325 16.5009 12.6075 16.5409C12.7825 16.5809 12.9647 16.5426 13.1144 16.4343C13.4802 16.1638 13.8903 15.9759 14.3214 15.8814V17.0636H10.0238ZM15.6785 15.8814V17.0636H19.9762V11.0319H15.6785V11.9497C16.197 12.01 16.7063 12.1417 17.1126 12.3679C17.193 12.4116 17.2649 12.4727 17.324 12.5474C17.3831 12.6222 17.4283 12.7092 17.457 12.8034C17.4857 12.8977 17.4973 12.9973 17.4912 13.0966C17.4851 13.1959 17.4613 13.2928 17.4213 13.3818C17.3813 13.4709 17.3258 13.5502 17.2581 13.6153C17.1904 13.6804 17.1117 13.73 17.0267 13.7611C16.9416 13.7923 16.8519 13.8044 16.7626 13.7968C16.6733 13.7893 16.5862 13.7621 16.5064 13.717C16.3082 13.6064 16.0187 13.519 15.6785 13.4687V14.3523C16.3795 14.4608 17.0493 14.7436 17.6382 15.1797C17.7135 15.2341 17.7782 15.3045 17.8288 15.3869C17.8793 15.4693 17.9146 15.562 17.9327 15.6597C17.9508 15.7573 17.9513 15.858 17.9341 15.9559C17.9169 16.0537 17.8825 16.1469 17.8327 16.2298C17.7829 16.3128 17.7188 16.384 17.6441 16.4392C17.5694 16.4945 17.4856 16.5327 17.3975 16.5517C17.3094 16.5707 17.2188 16.5702 17.1309 16.55C17.043 16.5298 16.9596 16.4905 16.8855 16.4343C16.5197 16.1638 16.1096 15.9759 15.6785 15.8814Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.8095 6.80952C16.8095 7.28944 16.6188 7.7497 16.2795 8.08905C15.9401 8.4284 15.4799 8.61905 15 8.61905C14.52 8.61905 14.0598 8.4284 13.7204 8.08905C13.3811 7.7497 13.1904 7.28944 13.1904 6.80952C13.1904 6.32961 13.3811 5.86935 13.7204 5.53C14.0598 5.19065 14.52 5 15 5C15.4799 5 15.9401 5.19065 16.2795 5.53C16.6188 5.86935 16.8095 6.32961 16.8095 6.80952Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.2858 19.4761V23.1705C12.2858 23.3905 12.3811 23.6014 12.5508 23.757C12.7204 23.9125 12.9506 23.9999 13.1905 23.9999C13.4305 23.9999 13.6606 23.9125 13.8303 23.757C14 23.6014 14.0953 23.3905 14.0953 23.1705L14.0953 19.4761H13.1905H12.2858ZM15.9048 19.4761L15.9048 23.1705C15.9048 23.3905 16.0001 23.6014 16.1698 23.757C16.3395 23.9125 16.5696 23.9999 16.8096 23.9999C17.0495 23.9999 17.2797 23.9125 17.4493 23.757C17.619 23.6014 17.7143 23.3905 17.7143 23.1705L17.7143 19.4761H16.8096H15.9048Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.66663 10.5292C8.66663 10.2626 8.76195 10.0069 8.93162 9.81837C9.1013 9.62984 9.33143 9.52393 9.57139 9.52393H20.4285C20.6685 9.52393 20.8986 9.62984 21.0683 9.81837C21.238 10.0069 21.3333 10.2626 21.3333 10.5292V17.5663C21.3333 17.8329 21.238 18.0886 21.0683 18.2771C20.8986 18.4656 20.6685 18.5715 20.4285 18.5715H9.57139C9.33143 18.5715 9.1013 18.4656 8.93162 18.2771C8.76195 18.0886 8.66663 17.8329 8.66663 17.5663V10.5292ZM10.0238 17.0636V11.0319H14.3214V11.9497C13.803 12.01 13.2936 12.1417 12.8873 12.3679C12.8069 12.4116 12.7351 12.4727 12.676 12.5474C12.6168 12.6222 12.5716 12.7092 12.5429 12.8034C12.5142 12.8977 12.5026 12.9973 12.5087 13.0966C12.5149 13.1959 12.5386 13.2928 12.5786 13.3818C12.6186 13.4709 12.6741 13.5502 12.7418 13.6153C12.8095 13.6804 12.8882 13.73 12.9733 13.7611C13.0583 13.7923 13.1481 13.8044 13.2374 13.7968C13.3267 13.7893 13.4137 13.7621 13.4935 13.717C13.6917 13.6064 13.9812 13.519 14.3214 13.4687V14.3523C13.6205 14.4608 12.9506 14.7436 12.3617 15.1797C12.2141 15.2916 12.1122 15.4637 12.0781 15.6586C12.0441 15.8535 12.0805 16.0554 12.1797 16.2206C12.2788 16.3858 12.4325 16.5009 12.6075 16.5409C12.7825 16.5809 12.9647 16.5426 13.1144 16.4343C13.4802 16.1638 13.8903 15.9759 14.3214 15.8814V17.0636H10.0238ZM15.6785 15.8814V17.0636H19.9762V11.0319H15.6785V11.9497C16.197 12.01 16.7063 12.1417 17.1126 12.3679C17.193 12.4116 17.2649 12.4727 17.324 12.5474C17.3831 12.6222 17.4283 12.7092 17.457 12.8034C17.4857 12.8977 17.4973 12.9973 17.4912 13.0966C17.4851 13.1959 17.4613 13.2928 17.4213 13.3818C17.3813 13.4709 17.3258 13.5502 17.2581 13.6153C17.1904 13.6804 17.1117 13.73 17.0267 13.7611C16.9416 13.7923 16.8519 13.8044 16.7626 13.7968C16.6733 13.7893 16.5862 13.7621 16.5064 13.717C16.3082 13.6064 16.0187 13.519 15.6785 13.4687V14.3523C16.3795 14.4608 17.0493 14.7436 17.6382 15.1797C17.7135 15.2341 17.7782 15.3045 17.8288 15.3869C17.8793 15.4693 17.9146 15.562 17.9327 15.6597C17.9508 15.7573 17.9513 15.858 17.9341 15.9559C17.9169 16.0537 17.8825 16.1469 17.8327 16.2298C17.7829 16.3128 17.7188 16.384 17.6441 16.4392C17.5694 16.4945 17.4856 16.5327 17.3975 16.5517C17.3094 16.5707 17.2188 16.5702 17.1309 16.55C17.043 16.5298 16.9596 16.4905 16.8855 16.4343C16.5197 16.1638 16.1096 15.9759 15.6785 15.8814Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON DIAGN\u00D3STICO -->\r\n<div *ngIf=\"icon == 'stethoscopes'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.0199 7.19531C15.3384 7.19531 15.5965 7.45037 15.5965 7.76504V7.80315H16.8472C17.1655 7.80324 17.4237 8.05839 17.4239 8.37288V11.0891C17.4237 13.4291 15.6292 15.3613 13.3286 15.6164V18.8166C13.3286 20.3873 14.622 21.6652 16.2118 21.6652C17.8015 21.6652 19.095 20.3873 19.095 18.8166V16.571C18.1982 16.3216 17.5386 15.5082 17.5386 14.5437C17.5388 13.3814 18.496 12.4362 19.6726 12.4362C20.8486 12.4365 21.8053 13.3816 21.8055 14.5437C21.8054 15.5084 21.1453 16.3218 20.2482 16.571V18.8166C20.2482 21.0155 18.4373 22.8047 16.2118 22.8047C13.986 22.8047 12.1753 21.0155 12.1753 18.8166V15.6012C9.93145 15.2943 8.19778 13.3891 8.19763 11.0891V8.37288C8.19779 8.05837 8.45592 7.8032 8.77427 7.80315H9.98444V7.76504C9.98444 7.45037 10.2426 7.19531 10.5611 7.19531C10.8795 7.1954 11.1377 7.45043 11.1377 7.76504V8.98071C11.1376 9.29518 10.8794 9.55035 10.5611 9.55044C10.2427 9.55044 9.98461 9.29524 9.98444 8.98071V8.9426H9.35091V11.0891C9.35107 12.9737 10.9032 14.5074 12.8107 14.5074C14.7183 14.5074 16.2704 12.9737 16.2706 11.0891V8.9426H15.5965V8.98071C15.5964 9.29524 15.3383 9.55044 15.0199 9.55044C14.7016 9.55037 14.4434 9.2952 14.4433 8.98071V7.76504C14.4433 7.45041 14.7015 7.19538 15.0199 7.19531ZM19.6716 13.5757C19.1312 13.5759 18.6921 14.0099 18.6919 14.5437C18.6919 15.0775 19.1311 15.5124 19.6716 15.5126C20.2121 15.5126 20.6523 15.0777 20.6523 14.5437C20.6521 14.0098 20.2119 13.5757 19.6716 13.5757Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M11.9777 18.8166V15.7669C9.72114 15.3759 8.00015 13.4294 8 11.0891V8.37287C8.00021 7.95074 8.34685 7.6079 8.77432 7.60784V7.80314C8.45597 7.80319 8.19783 8.05836 8.19768 8.37287V11.0891C8.19783 13.3891 9.9315 15.2943 12.1753 15.6012V18.8166C12.1753 21.0155 13.986 22.8047 16.2118 22.8047C18.4374 22.8047 20.2483 21.0155 20.2483 18.8166V16.571C21.1453 16.3218 21.8054 15.5084 21.8056 14.5436C21.8054 13.3815 20.8486 12.4365 19.6726 12.4362C18.496 12.4362 17.5388 13.3814 17.5387 14.5436C17.5387 15.5082 18.1983 16.3215 19.095 16.571V18.8166C19.095 20.3873 17.8016 21.6652 16.2118 21.6652V21.4699C17.6925 21.4699 18.8973 20.2795 18.8973 18.8166V16.712C18.052 16.4166 17.4279 15.6552 17.3497 14.739L17.341 14.5436C17.3412 13.2736 18.387 12.2409 19.6726 12.2409C20.8772 12.2412 21.8709 13.1487 21.9907 14.3083L22.0033 14.5436C22.0031 15.5459 21.3509 16.3961 20.446 16.712V18.8166C20.446 21.051 18.6635 22.8818 16.4297 22.9943L16.2118 23C13.877 23 11.9777 21.1232 11.9777 18.8166ZM13.3286 18.8166V15.6164C15.6292 15.3613 17.4237 13.4291 17.4239 11.0891V8.37287C17.4237 8.05839 17.1656 7.80324 16.8473 7.80314V7.60784C17.248 7.60795 17.578 7.90922 17.6177 8.29475L17.6216 8.37287V11.0891C17.6214 13.4698 15.8405 15.4434 13.5263 15.786V18.8166C13.5263 20.2795 14.7311 21.4699 16.2118 21.4699V21.6652C14.6221 21.6652 13.3286 20.3873 13.3286 18.8166ZM20.4546 14.5436C20.4544 14.1177 20.1031 13.771 19.6716 13.771C19.2403 13.7712 18.8898 14.1177 18.8896 14.5436C18.8896 14.97 19.2404 15.3171 19.6716 15.3173V15.5126C19.1311 15.5124 18.6919 15.0775 18.6919 14.5436C18.6921 14.0099 19.1312 13.5759 19.6716 13.5757C20.212 13.5757 20.6521 14.0098 20.6523 14.5436C20.6523 15.0777 20.2121 15.5126 19.6716 15.5126V15.3173C20.1031 15.3173 20.4546 14.9699 20.4546 14.5436ZM9.35096 11.0891V8.9426H9.98449V8.98071C9.98466 9.29524 10.2427 9.55043 10.5611 9.55043C10.8794 9.55034 11.1376 9.29518 11.1378 8.98071V7.76504C11.1378 7.45042 10.8795 7.1954 10.5611 7.19531C10.2426 7.19531 9.98449 7.45037 9.98449 7.76504V7.80314H8.77432V7.60784H9.80417C9.87759 7.2609 10.1882 7 10.5611 7C10.9885 7.00012 11.3354 7.3426 11.3354 7.76504V8.98071C11.3352 9.40281 10.9885 9.74562 10.5611 9.74574C10.1882 9.74574 9.87769 9.48468 9.80417 9.13791H9.54863V11.0891C9.5488 12.866 11.0123 14.3121 12.8108 14.3121V14.5074C10.9032 14.5074 9.35112 12.9737 9.35096 11.0891ZM16.0729 11.0891V9.13791H15.7769C15.7086 9.45987 15.4363 9.70812 15.099 9.74193L15.02 9.74574C14.5925 9.74565 14.2459 9.40281 14.2456 8.98071V7.76504C14.2456 7.3426 14.5925 7.00009 15.02 7L15.099 7.00381C15.4363 7.0376 15.7087 7.28572 15.7769 7.60784H16.8473V7.80314H15.5966V7.76504C15.5966 7.45037 15.3384 7.19531 15.02 7.19531C14.7015 7.19538 14.4433 7.45041 14.4433 7.76504V8.98071C14.4435 9.29519 14.7016 9.55037 15.02 9.55043C15.3383 9.55043 15.5964 9.29524 15.5966 8.98071V8.9426H16.2706V11.0891C16.2704 12.9737 14.7183 14.5074 12.8108 14.5074V14.3121C14.5529 14.3121 15.9813 12.955 16.0691 11.2549L16.0729 11.0891Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.0199 7.19531C15.3384 7.19531 15.5965 7.45037 15.5965 7.76504V7.80315H16.8472C17.1655 7.80324 17.4237 8.05839 17.4239 8.37288V11.0891C17.4237 13.4291 15.6292 15.3613 13.3286 15.6164V18.8166C13.3286 20.3873 14.622 21.6652 16.2118 21.6652C17.8015 21.6652 19.095 20.3873 19.095 18.8166V16.571C18.1982 16.3216 17.5386 15.5082 17.5386 14.5437C17.5388 13.3814 18.496 12.4362 19.6726 12.4362C20.8486 12.4365 21.8053 13.3816 21.8055 14.5437C21.8054 15.5084 21.1453 16.3218 20.2482 16.571V18.8166C20.2482 21.0155 18.4373 22.8047 16.2118 22.8047C13.986 22.8047 12.1753 21.0155 12.1753 18.8166V15.6012C9.93145 15.2943 8.19778 13.3891 8.19763 11.0891V8.37288C8.19779 8.05837 8.45592 7.8032 8.77427 7.80315H9.98444V7.76504C9.98444 7.45037 10.2426 7.19531 10.5611 7.19531C10.8795 7.1954 11.1377 7.45043 11.1377 7.76504V8.98071C11.1376 9.29518 10.8794 9.55035 10.5611 9.55044C10.2427 9.55044 9.98461 9.29524 9.98444 8.98071V8.9426H9.35091V11.0891C9.35107 12.9737 10.9032 14.5074 12.8107 14.5074C14.7183 14.5074 16.2704 12.9737 16.2706 11.0891V8.9426H15.5965V8.98071C15.5964 9.29524 15.3383 9.55044 15.0199 9.55044C14.7016 9.55037 14.4434 9.2952 14.4433 8.98071V7.76504C14.4433 7.45041 14.7015 7.19538 15.0199 7.19531ZM19.6716 13.5757C19.1312 13.5759 18.6921 14.0099 18.6919 14.5437C18.6919 15.0775 19.1311 15.5124 19.6716 15.5126C20.2121 15.5126 20.6523 15.0777 20.6523 14.5437C20.6521 14.0098 20.2119 13.5757 19.6716 13.5757Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M11.9777 18.8166V15.7669C9.72114 15.3759 8.00015 13.4294 8 11.0891V8.37287C8.00021 7.95074 8.34685 7.6079 8.77432 7.60784V7.80314C8.45597 7.80319 8.19783 8.05836 8.19768 8.37287V11.0891C8.19783 13.3891 9.9315 15.2943 12.1753 15.6012V18.8166C12.1753 21.0155 13.986 22.8047 16.2118 22.8047C18.4374 22.8047 20.2483 21.0155 20.2483 18.8166V16.571C21.1453 16.3218 21.8054 15.5084 21.8056 14.5436C21.8054 13.3815 20.8486 12.4365 19.6726 12.4362C18.496 12.4362 17.5388 13.3814 17.5387 14.5436C17.5387 15.5082 18.1983 16.3215 19.095 16.571V18.8166C19.095 20.3873 17.8016 21.6652 16.2118 21.6652V21.4699C17.6925 21.4699 18.8973 20.2795 18.8973 18.8166V16.712C18.052 16.4166 17.4279 15.6552 17.3497 14.739L17.341 14.5436C17.3412 13.2736 18.387 12.2409 19.6726 12.2409C20.8772 12.2412 21.8709 13.1487 21.9907 14.3083L22.0033 14.5436C22.0031 15.5459 21.3509 16.3961 20.446 16.712V18.8166C20.446 21.051 18.6635 22.8818 16.4297 22.9943L16.2118 23C13.877 23 11.9777 21.1232 11.9777 18.8166ZM13.3286 18.8166V15.6164C15.6292 15.3613 17.4237 13.4291 17.4239 11.0891V8.37287C17.4237 8.05839 17.1656 7.80324 16.8473 7.80314V7.60784C17.248 7.60795 17.578 7.90922 17.6177 8.29475L17.6216 8.37287V11.0891C17.6214 13.4698 15.8405 15.4434 13.5263 15.786V18.8166C13.5263 20.2795 14.7311 21.4699 16.2118 21.4699V21.6652C14.6221 21.6652 13.3286 20.3873 13.3286 18.8166ZM20.4546 14.5436C20.4544 14.1177 20.1031 13.771 19.6716 13.771C19.2403 13.7712 18.8898 14.1177 18.8896 14.5436C18.8896 14.97 19.2404 15.3171 19.6716 15.3173V15.5126C19.1311 15.5124 18.6919 15.0775 18.6919 14.5436C18.6921 14.0099 19.1312 13.5759 19.6716 13.5757C20.212 13.5757 20.6521 14.0098 20.6523 14.5436C20.6523 15.0777 20.2121 15.5126 19.6716 15.5126V15.3173C20.1031 15.3173 20.4546 14.9699 20.4546 14.5436ZM9.35096 11.0891V8.9426H9.98449V8.98071C9.98466 9.29524 10.2427 9.55043 10.5611 9.55043C10.8794 9.55034 11.1376 9.29518 11.1378 8.98071V7.76504C11.1378 7.45042 10.8795 7.1954 10.5611 7.19531C10.2426 7.19531 9.98449 7.45037 9.98449 7.76504V7.80314H8.77432V7.60784H9.80417C9.87759 7.2609 10.1882 7 10.5611 7C10.9885 7.00012 11.3354 7.3426 11.3354 7.76504V8.98071C11.3352 9.40281 10.9885 9.74562 10.5611 9.74574C10.1882 9.74574 9.87769 9.48468 9.80417 9.13791H9.54863V11.0891C9.5488 12.866 11.0123 14.3121 12.8108 14.3121V14.5074C10.9032 14.5074 9.35112 12.9737 9.35096 11.0891ZM16.0729 11.0891V9.13791H15.7769C15.7086 9.45987 15.4363 9.70812 15.099 9.74193L15.02 9.74574C14.5925 9.74565 14.2459 9.40281 14.2456 8.98071V7.76504C14.2456 7.3426 14.5925 7.00009 15.02 7L15.099 7.00381C15.4363 7.0376 15.7087 7.28572 15.7769 7.60784H16.8473V7.80314H15.5966V7.76504C15.5966 7.45037 15.3384 7.19531 15.02 7.19531C14.7015 7.19538 14.4433 7.45041 14.4433 7.76504V8.98071C14.4435 9.29519 14.7016 9.55037 15.02 9.55043C15.3383 9.55043 15.5964 9.29524 15.5966 8.98071V8.9426H16.2706V11.0891C16.2704 12.9737 14.7183 14.5074 12.8108 14.5074V14.3121C14.5529 14.3121 15.9813 12.955 16.0691 11.2549L16.0729 11.0891Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON PROCEDIMIENTO -->\r\n<div *ngIf=\"icon == 'scissors'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M9.5742 15.5451C10.1387 16.0617 10.3319 16.8335 10.1412 17.5251C10.114 17.5747 10.0996 17.6201 10.1009 17.6589C10.0155 17.8999 9.88104 18.1277 9.69791 18.3279C8.96457 19.1295 7.7161 19.1855 6.91439 18.4524C6.11281 17.719 6.05718 16.4698 6.79061 15.6681C7.52406 14.8668 8.77272 14.8118 9.5742 15.5451ZM14.7785 20.3063C15.5801 21.0397 15.6361 22.2882 14.903 23.0899C14.1695 23.8915 12.9204 23.947 12.1187 23.2136C11.317 22.4802 11.2615 21.2311 11.9949 20.4294C12.1782 20.2292 12.3938 20.0758 12.6263 19.9693C12.6649 19.9671 12.7085 19.948 12.7553 19.9166C13.4274 19.665 14.2137 19.7896 14.7785 20.3063ZM8.89458 16.2879C8.50267 15.9294 7.89215 15.956 7.53347 16.3477C7.1748 16.7398 7.202 17.3509 7.59401 17.7095C7.98606 18.0679 8.59648 18.0402 8.95506 17.6483C9.3133 17.2564 9.28623 16.6465 8.89458 16.2879ZM14.0989 21.0492C13.7069 20.6906 13.0965 20.7172 12.7378 21.109C12.3791 21.5011 12.4063 22.1121 12.7983 22.4708C13.1903 22.8294 13.8014 22.8023 14.1601 22.4102C14.5185 22.0182 14.4908 21.4078 14.0989 21.0492ZM11.4586 17.4914C11.98 17.9684 11.2556 18.7604 10.7341 18.2832L10.572 18.1349L11.4427 17.4769L11.4586 17.4914ZM12.1103 19.5423L11.9482 19.394C11.4267 18.9169 12.1513 18.1251 12.6727 18.6021L12.6885 18.6166L12.1103 19.5423ZM22.1799 8.54737C22.314 8.44385 22.5092 8.53571 22.5158 8.70385C22.5172 8.7412 22.5444 9.6239 21.9678 10.1362L17.6808 13.5866C17.6221 13.6337 17.5425 13.6451 17.4727 13.6173L16.4192 13.1948L10.5456 17.6329C10.6838 17.1283 10.6528 16.5884 10.4568 16.1023L17.128 11.0861C17.1833 11.0446 17.256 11.0329 17.3215 11.0554L18.4355 11.4393L22.1799 8.54737ZM14.1451 19.4767C13.6435 19.3245 13.1031 19.3416 12.6127 19.5241L16.0765 13.9759L16.4825 13.6696L17.3164 14.0037C17.3812 14.0297 17.4491 14.0445 17.5168 14.048L14.1451 19.4767ZM20.6349 6.91289C20.674 6.98034 20.672 7.06391 20.63 7.12946L18.2065 10.92L17.4568 10.6616C17.2635 10.5952 17.0503 10.6278 16.8855 10.7479L19.0597 7.49027C19.4207 6.97702 20.4723 6.6326 20.6349 6.91289Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M9.5742 15.5451C10.1387 16.0617 10.3319 16.8335 10.1412 17.5251C10.114 17.5747 10.0996 17.6201 10.1009 17.6589C10.0155 17.8999 9.88104 18.1277 9.69791 18.3279C8.96457 19.1295 7.7161 19.1855 6.91439 18.4524C6.11281 17.719 6.05718 16.4698 6.79061 15.6681C7.52406 14.8668 8.77272 14.8118 9.5742 15.5451ZM14.7785 20.3063C15.5801 21.0397 15.6361 22.2882 14.903 23.0899C14.1695 23.8915 12.9204 23.947 12.1187 23.2136C11.317 22.4802 11.2615 21.2311 11.9949 20.4294C12.1782 20.2292 12.3938 20.0758 12.6263 19.9693C12.6649 19.9671 12.7085 19.948 12.7553 19.9166C13.4274 19.665 14.2137 19.7896 14.7785 20.3063ZM8.89458 16.2879C8.50267 15.9294 7.89215 15.956 7.53347 16.3477C7.1748 16.7398 7.202 17.3509 7.59401 17.7095C7.98606 18.0679 8.59648 18.0402 8.95506 17.6483C9.3133 17.2564 9.28623 16.6465 8.89458 16.2879ZM14.0989 21.0492C13.7069 20.6906 13.0965 20.7172 12.7378 21.109C12.3791 21.5011 12.4063 22.1121 12.7983 22.4708C13.1903 22.8294 13.8014 22.8023 14.1601 22.4102C14.5185 22.0182 14.4908 21.4078 14.0989 21.0492ZM11.4586 17.4914C11.98 17.9684 11.2556 18.7604 10.7341 18.2832L10.572 18.1349L11.4427 17.4769L11.4586 17.4914ZM12.1103 19.5423L11.9482 19.394C11.4267 18.9169 12.1513 18.1251 12.6727 18.6021L12.6885 18.6166L12.1103 19.5423ZM22.1799 8.54737C22.314 8.44385 22.5092 8.53571 22.5158 8.70385C22.5172 8.7412 22.5444 9.6239 21.9678 10.1362L17.6808 13.5866C17.6221 13.6337 17.5425 13.6451 17.4727 13.6173L16.4192 13.1948L10.5456 17.6329C10.6838 17.1283 10.6528 16.5884 10.4568 16.1023L17.128 11.0861C17.1833 11.0446 17.256 11.0329 17.3215 11.0554L18.4355 11.4393L22.1799 8.54737ZM14.1451 19.4767C13.6435 19.3245 13.1031 19.3416 12.6127 19.5241L16.0765 13.9759L16.4825 13.6696L17.3164 14.0037C17.3812 14.0297 17.4491 14.0445 17.5168 14.048L14.1451 19.4767ZM20.6349 6.91289C20.674 6.98034 20.672 7.06391 20.63 7.12946L18.2065 10.92L17.4568 10.6616C17.2635 10.5952 17.0503 10.6278 16.8855 10.7479L19.0597 7.49027C19.4207 6.97702 20.4723 6.6326 20.6349 6.91289Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON DONAR SANGRE -->\r\n<div *ngIf=\"icon == 'blood-donation'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.6316 7C20.0967 7 20.4737 7.37702 20.4737 7.84211V9.52632H22.1579C22.623 9.52632 23 9.90334 23 10.3684C23 10.8335 22.623 11.2105 22.1579 11.2105H20.4737V12.8947C20.4737 13.3598 20.0967 13.7368 19.6316 13.7368C19.1665 13.7368 18.7895 13.3598 18.7895 12.8947V11.2105H17.1053C16.6402 11.2105 16.2632 10.8335 16.2632 10.3684C16.2632 9.90334 16.6402 9.52632 17.1053 9.52632H18.7895V7.84211C18.7895 7.37702 19.1665 7 19.6316 7Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.0526 8.68431L12.6918 8.1361C12.6127 8.04395 12.5147 7.96997 12.4044 7.91926C12.294 7.86854 12.1741 7.84229 12.0526 7.84229C11.9312 7.84229 11.8112 7.86854 11.7009 7.91926C11.5906 7.96997 11.4925 8.04395 11.4135 8.1361L12.0526 8.68431ZM12.0526 8.68431L11.4126 8.1361V8.13779L11.4084 8.14116C11.3429 8.21763 11.2789 8.2954 11.2164 8.37442C10.4884 9.28763 9.82248 10.2487 9.22316 11.2511C8.15116 13.0548 7 15.5332 7 17.9475H8.68421C8.68421 16.0022 9.63832 13.8498 10.6716 12.1117C11.2296 11.1785 11.8494 10.2836 12.5267 9.43295L12.6834 9.24263L12.6901 9.23421L12.6918 9.23252L12.0526 8.68431ZM17.1053 17.9475C17.1053 15.5332 15.9541 13.0548 14.8821 11.2511C14.2828 10.2487 13.6169 9.28763 12.8888 8.37442L12.6968 8.14116L12.6935 8.13779L12.6918 8.1361L12.0526 8.68431L11.4135 9.23252L11.4152 9.23421L11.4219 9.24263C11.4753 9.30511 11.5275 9.36856 11.5785 9.43295C12.2559 10.2836 12.8756 11.1785 13.4337 12.1117C14.4661 13.8498 15.4211 16.0022 15.4211 17.9475H17.1053ZM15.4211 17.9475C15.4211 18.8408 15.0662 19.6976 14.4345 20.3293C13.8028 20.961 12.946 21.3159 12.0526 21.3159V23.0001C13.3927 23.0001 14.6778 22.4678 15.6254 21.5202C16.5729 20.5727 17.1053 19.2875 17.1053 17.9475H15.4211ZM12.0526 21.3159C11.1593 21.3159 10.3025 20.961 9.6708 20.3293C9.0391 19.6976 8.68421 18.8408 8.68421 17.9475H7C7 19.2875 7.53233 20.5727 8.47988 21.5202C9.42743 22.4678 10.7126 23.0001 12.0526 23.0001V21.3159Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M19.6316 7C20.0967 7 20.4737 7.37702 20.4737 7.84211V9.52632H22.1579C22.623 9.52632 23 9.90334 23 10.3684C23 10.8335 22.623 11.2105 22.1579 11.2105H20.4737V12.8947C20.4737 13.3598 20.0967 13.7368 19.6316 13.7368C19.1665 13.7368 18.7895 13.3598 18.7895 12.8947V11.2105H17.1053C16.6402 11.2105 16.2632 10.8335 16.2632 10.3684C16.2632 9.90334 16.6402 9.52632 17.1053 9.52632H18.7895V7.84211C18.7895 7.37702 19.1665 7 19.6316 7Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.0526 8.68431L12.6918 8.1361C12.6127 8.04395 12.5147 7.96997 12.4044 7.91926C12.294 7.86854 12.1741 7.84229 12.0526 7.84229C11.9312 7.84229 11.8112 7.86854 11.7009 7.91926C11.5906 7.96997 11.4925 8.04395 11.4135 8.1361L12.0526 8.68431ZM12.0526 8.68431L11.4126 8.1361V8.13779L11.4084 8.14116C11.3429 8.21763 11.2789 8.2954 11.2164 8.37442C10.4884 9.28763 9.82248 10.2487 9.22316 11.2511C8.15116 13.0548 7 15.5332 7 17.9475H8.68421C8.68421 16.0022 9.63832 13.8498 10.6716 12.1117C11.2296 11.1785 11.8494 10.2836 12.5267 9.43295L12.6834 9.24263L12.6901 9.23421L12.6918 9.23252L12.0526 8.68431ZM17.1053 17.9475C17.1053 15.5332 15.9541 13.0548 14.8821 11.2511C14.2828 10.2487 13.6169 9.28763 12.8888 8.37442L12.6968 8.14116L12.6935 8.13779L12.6918 8.1361L12.0526 8.68431L11.4135 9.23252L11.4152 9.23421L11.4219 9.24263C11.4753 9.30511 11.5275 9.36856 11.5785 9.43295C12.2559 10.2836 12.8756 11.1785 13.4337 12.1117C14.4661 13.8498 15.4211 16.0022 15.4211 17.9475H17.1053ZM15.4211 17.9475C15.4211 18.8408 15.0662 19.6976 14.4345 20.3293C13.8028 20.961 12.946 21.3159 12.0526 21.3159V23.0001C13.3927 23.0001 14.6778 22.4678 15.6254 21.5202C16.5729 20.5727 17.1053 19.2875 17.1053 17.9475H15.4211ZM12.0526 21.3159C11.1593 21.3159 10.3025 20.961 9.6708 20.3293C9.0391 19.6976 8.68421 18.8408 8.68421 17.9475H7C7 19.2875 7.53233 20.5727 8.47988 21.5202C9.42743 22.4678 10.7126 23.0001 12.0526 23.0001V21.3159Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON SALUD -->\r\n<div *ngIf=\"icon == 'health-care'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M10.3337 9.66661C10.3337 9.29848 10.6325 9.00004 11.0004 9.00004H12.3341V7.66658C12.3341 7.29844 12.6329 7 13.0007 7C13.3686 7 13.6674 7.29876 13.6674 7.66658V9.00004H15.0011C15.3693 9.00004 15.6678 9.29879 15.6678 9.66661C15.6678 10.0344 15.369 10.3332 15.0011 10.3332H13.6674V11.6667C13.6674 12.0348 13.3686 12.3332 13.0007 12.3332C12.6329 12.3332 12.3341 12.0345 12.3341 11.6667V10.3332H11.0004C10.6322 10.3332 10.3337 10.0344 10.3337 9.66661ZM22.4931 15.6767L17.9557 20.7681C16.6914 22.1869 14.877 23 12.9776 23H9.66703C8.19615 23 7 21.804 7 20.3334V16.9999C7 15.5292 8.19615 14.3333 9.66703 14.3333H15.5734C16.3329 14.3333 16.999 14.7392 17.3665 15.3452L19.511 12.9892C19.8723 12.5926 20.3658 12.3598 20.9018 12.3351C21.4372 12.3051 21.9508 12.4951 22.3474 12.8564C23.1569 13.5945 23.2222 14.8592 22.4934 15.6758L22.4931 15.6767ZM21.4488 13.8426C21.316 13.722 21.1428 13.6645 20.9634 13.6679C20.7834 13.6767 20.618 13.7539 20.4968 13.8873L17.5456 17.1302C17.289 17.8443 16.6526 18.3908 15.8694 18.503L12.4281 18.9943C12.0646 19.0471 11.7261 18.7937 11.674 18.429C11.6221 18.0643 11.8752 17.7271 12.2394 17.6749L15.6806 17.1836C16.0535 17.1302 16.3348 16.8064 16.3348 16.4296C16.3348 16.0096 15.9935 15.6683 15.5734 15.6683H9.66672C8.93128 15.6683 8.33305 16.2664 8.33305 17.0018V20.3353C8.33305 21.0706 8.93128 21.6687 9.66672 21.6687H12.9773C14.497 21.6687 15.9491 21.0181 16.9599 19.8834L21.4973 14.7914C21.742 14.5167 21.7201 14.092 21.4485 13.8442L21.4488 13.8426Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M10.3337 9.66661C10.3337 9.29848 10.6325 9.00004 11.0004 9.00004H12.3341V7.66658C12.3341 7.29844 12.6329 7 13.0007 7C13.3686 7 13.6674 7.29876 13.6674 7.66658V9.00004H15.0011C15.3693 9.00004 15.6678 9.29879 15.6678 9.66661C15.6678 10.0344 15.369 10.3332 15.0011 10.3332H13.6674V11.6667C13.6674 12.0348 13.3686 12.3332 13.0007 12.3332C12.6329 12.3332 12.3341 12.0345 12.3341 11.6667V10.3332H11.0004C10.6322 10.3332 10.3337 10.0344 10.3337 9.66661ZM22.4931 15.6767L17.9557 20.7681C16.6914 22.1869 14.877 23 12.9776 23H9.66703C8.19615 23 7 21.804 7 20.3334V16.9999C7 15.5292 8.19615 14.3333 9.66703 14.3333H15.5734C16.3329 14.3333 16.999 14.7392 17.3665 15.3452L19.511 12.9892C19.8723 12.5926 20.3658 12.3598 20.9018 12.3351C21.4372 12.3051 21.9508 12.4951 22.3474 12.8564C23.1569 13.5945 23.2222 14.8592 22.4934 15.6758L22.4931 15.6767ZM21.4488 13.8426C21.316 13.722 21.1428 13.6645 20.9634 13.6679C20.7834 13.6767 20.618 13.7539 20.4968 13.8873L17.5456 17.1302C17.289 17.8443 16.6526 18.3908 15.8694 18.503L12.4281 18.9943C12.0646 19.0471 11.7261 18.7937 11.674 18.429C11.6221 18.0643 11.8752 17.7271 12.2394 17.6749L15.6806 17.1836C16.0535 17.1302 16.3348 16.8064 16.3348 16.4296C16.3348 16.0096 15.9935 15.6683 15.5734 15.6683H9.66672C8.93128 15.6683 8.33305 16.2664 8.33305 17.0018V20.3353C8.33305 21.0706 8.93128 21.6687 9.66672 21.6687H12.9773C14.497 21.6687 15.9491 21.0181 16.9599 19.8834L21.4973 14.7914C21.742 14.5167 21.7201 14.092 21.4485 13.8442L21.4488 13.8426Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON ESTAD\u00CDSTICAS -->\r\n<div *ngIf=\"icon == 'statistics'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M8 7C8.26522 7 8.51949 7.10543 8.70703 7.29297C8.89457 7.48051 9 7.73478 9 8V19.333C9 19.775 9.17572 20.1992 9.48828 20.5117C9.80084 20.8243 10.225 21 10.667 21H22C22.2652 21 22.5195 21.1054 22.707 21.293C22.8946 21.4805 23 21.7348 23 22C23 22.2652 22.8946 22.5195 22.707 22.707C22.5195 22.8946 22.2652 23 22 23H10.667C9.69453 23 8.76185 22.6134 8.07422 21.9258C7.38659 21.2381 7 20.3055 7 19.333V8C7 7.73478 7.10543 7.48051 7.29297 7.29297C7.48051 7.10543 7.73478 7 8 7ZM12 13C12.2652 13 12.5195 13.1054 12.707 13.293C12.8946 13.4805 13 13.7348 13 14V18C13 18.2652 12.8946 18.5195 12.707 18.707C12.5195 18.8946 12.2652 19 12 19C11.7348 19 11.4805 18.8946 11.293 18.707C11.1054 18.5195 11 18.2652 11 18V14C11 13.7348 11.1054 13.4805 11.293 13.293C11.4805 13.1054 11.7348 13 12 13ZM16 9.66699C16.2652 9.66699 16.5195 9.77242 16.707 9.95996C16.8945 10.1475 17 10.4019 17 10.667V18C17 18.2652 16.8946 18.5195 16.707 18.707C16.5195 18.8946 16.2652 19 16 19C15.7348 19 15.4805 18.8946 15.293 18.707C15.1054 18.5195 15 18.2652 15 18V10.667C15 10.4019 15.1055 10.1475 15.293 9.95996C15.4805 9.77242 15.7348 9.66699 16 9.66699ZM20 13C20.2652 13 20.5195 13.1054 20.707 13.293C20.8946 13.4805 21 13.7348 21 14V18C21 18.2652 20.8946 18.5195 20.707 18.707C20.5195 18.8946 20.2652 19 20 19C19.7348 19 19.4805 18.8946 19.293 18.707C19.1054 18.5195 19 18.2652 19 18V14C19 13.7348 19.1054 13.4805 19.293 13.293C19.4805 13.1054 19.7348 13 20 13Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M8 7C8.26522 7 8.51949 7.10543 8.70703 7.29297C8.89457 7.48051 9 7.73478 9 8V19.333C9 19.775 9.17572 20.1992 9.48828 20.5117C9.80084 20.8243 10.225 21 10.667 21H22C22.2652 21 22.5195 21.1054 22.707 21.293C22.8946 21.4805 23 21.7348 23 22C23 22.2652 22.8946 22.5195 22.707 22.707C22.5195 22.8946 22.2652 23 22 23H10.667C9.69453 23 8.76185 22.6134 8.07422 21.9258C7.38659 21.2381 7 20.3055 7 19.333V8C7 7.73478 7.10543 7.48051 7.29297 7.29297C7.48051 7.10543 7.73478 7 8 7ZM12 13C12.2652 13 12.5195 13.1054 12.707 13.293C12.8946 13.4805 13 13.7348 13 14V18C13 18.2652 12.8946 18.5195 12.707 18.707C12.5195 18.8946 12.2652 19 12 19C11.7348 19 11.4805 18.8946 11.293 18.707C11.1054 18.5195 11 18.2652 11 18V14C11 13.7348 11.1054 13.4805 11.293 13.293C11.4805 13.1054 11.7348 13 12 13ZM16 9.66699C16.2652 9.66699 16.5195 9.77242 16.707 9.95996C16.8945 10.1475 17 10.4019 17 10.667V18C17 18.2652 16.8946 18.5195 16.707 18.707C16.5195 18.8946 16.2652 19 16 19C15.7348 19 15.4805 18.8946 15.293 18.707C15.1054 18.5195 15 18.2652 15 18V10.667C15 10.4019 15.1055 10.1475 15.293 9.95996C15.4805 9.77242 15.7348 9.66699 16 9.66699ZM20 13C20.2652 13 20.5195 13.1054 20.707 13.293C20.8946 13.4805 21 13.7348 21 14V18C21 18.2652 20.8946 18.5195 20.707 18.707C20.5195 18.8946 20.2652 19 20 19C19.7348 19 19.4805 18.8946 19.293 18.707C19.1054 18.5195 19 18.2652 19 18V14C19 13.7348 19.1054 13.4805 19.293 13.293C19.4805 13.1054 19.7348 13 20 13Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON OBSERVACIONES -->\r\n<div *ngIf=\"icon == 'comments'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.38119 21.635C6.62359 21.8671 6.95183 21.9983 7.29462 22C7.57616 22.001 7.85051 21.9149 8.07692 21.7547L10.4515 20.0378C10.5479 19.9698 10.6642 19.9328 10.7839 19.9318H21.3208C22.032 19.9301 22.7135 19.6583 23.2157 19.1761C23.7179 18.694 24 18.0408 24 17.3599V10.5653C23.9982 9.88436 23.7144 9.23187 23.2108 8.75097C22.7073 8.27006 22.0251 8 21.3139 8H8.67924C7.96922 8.00175 7.28881 8.27259 6.78675 8.7533C6.28469 9.23402 6.00183 9.88551 6 10.5653V20.7604C6.00182 21.0886 6.1388 21.4029 6.38119 21.635ZM7.76581 9.69075C8.0082 9.45865 8.33644 9.3275 8.67924 9.32575H21.3208C21.6636 9.3275 21.9918 9.45865 22.2342 9.69075C22.4766 9.92284 22.6136 10.2371 22.6154 10.5653V17.3599C22.6154 17.6903 22.4783 18.0074 22.2342 18.241C21.9901 18.4748 21.659 18.606 21.3139 18.606H10.7839C10.3647 18.6079 9.95724 18.738 9.62077 18.9773L7.38462 20.5947V10.5653C7.38644 10.2371 7.52342 9.92284 7.76581 9.69075ZM18.4195 14.025C18.4195 14.3911 18.1096 14.6879 17.7272 14.6879C17.3448 14.6879 17.0349 14.3911 17.0349 14.025C17.0349 13.6589 17.3448 13.3621 17.7272 13.3621C18.1096 13.3621 18.4195 13.6589 18.4195 14.025ZM15.0414 14.6879C15.4238 14.6879 15.7337 14.3911 15.7337 14.025C15.7337 13.6589 15.4238 13.3621 15.0414 13.3621C14.6591 13.3621 14.3491 13.6589 14.3491 14.025C14.3491 14.3911 14.6591 14.6879 15.0414 14.6879ZM12.965 14.025C12.965 14.3911 12.655 14.6879 12.2727 14.6879C11.8903 14.6879 11.5804 14.3911 11.5804 14.025C11.5804 13.6589 11.8903 13.3621 12.2727 13.3621C12.655 13.3621 12.965 13.6589 12.965 14.025Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.3135 7.7998C22.0748 7.7998 22.807 8.08923 23.3486 8.60645C23.8905 9.12392 24.1982 9.82777 24.2002 10.5645V17.3594C24.2002 18.096 23.8949 18.8014 23.3545 19.3203C22.8143 19.8389 22.0828 20.13 21.3213 20.1318H10.7852L10.7266 20.1367C10.6686 20.146 10.6141 20.1683 10.5674 20.2012L8.19434 21.917L8.19238 21.918C7.93149 22.1026 7.61644 22.2013 7.29395 22.2002C6.90121 22.1982 6.5234 22.0476 6.24316 21.7793C5.9627 21.5107 5.80199 21.1454 5.7998 20.7617V10.5645C5.80188 9.82903 6.10819 9.12568 6.64844 8.6084C7.18845 8.09146 7.91867 7.80169 8.67871 7.7998H21.3135ZM8.67969 8C7.96985 8.00175 7.28914 8.27244 6.78711 8.75293C6.28505 9.23365 6.00183 9.8856 6 10.5654V20.7607C6.00191 21.0887 6.13873 21.4027 6.38086 21.6348C6.62325 21.8669 6.95213 21.9983 7.29492 22C7.57635 22.0009 7.85081 21.9151 8.07715 21.7549L10.4512 20.0381C10.5475 19.9701 10.6645 19.9326 10.7842 19.9316H21.3203C22.0316 19.9299 22.7136 19.6579 23.2158 19.1758C23.7179 18.6937 24 18.0402 24 17.3594V10.5654C23.9982 9.88448 23.7144 9.23188 23.2109 8.75098C22.7074 8.27007 22.0247 8 21.3135 8H8.67969ZM21.3203 9.32617C21.6631 9.32791 21.992 9.45837 22.2344 9.69043C22.4768 9.92252 22.6134 10.2372 22.6152 10.5654V17.3594C22.6152 17.6899 22.4785 18.0075 22.2344 18.2412C21.9903 18.475 21.6586 18.6064 21.3135 18.6064H10.7842C10.3651 18.6083 9.95754 18.7383 9.62109 18.9775L7.38477 20.5947V10.5654C7.38659 10.2372 7.52323 9.92252 7.76562 9.69043C8.00801 9.45837 8.33692 9.32791 8.67969 9.32617H21.3203ZM8.57129 9.53125C8.31903 9.55636 8.08326 9.66369 7.9043 9.83496C7.70004 10.0305 7.58649 10.2937 7.58496 10.5664V20.2021L9.50391 18.8154L9.50488 18.8145C9.87549 18.5509 10.3235 18.4083 10.7832 18.4062H21.3135C21.6083 18.4062 21.8898 18.2938 22.0957 18.0967C22.3014 17.8998 22.415 17.634 22.415 17.3594V10.5664C22.4135 10.2937 22.3 10.0305 22.0957 9.83496C21.8912 9.63924 21.6121 9.52688 21.3193 9.52539H8.68066L8.57129 9.53125ZM12.2725 13.1621C12.757 13.1621 13.165 13.5407 13.165 14.0254C13.1648 14.5099 12.7569 14.8877 12.2725 14.8877C11.7882 14.8876 11.3801 14.5098 11.3799 14.0254C11.3799 13.5408 11.788 13.1622 12.2725 13.1621ZM15.041 13.1621C15.5256 13.1621 15.9336 13.5407 15.9336 14.0254C15.9334 14.5098 15.5254 14.8877 15.041 14.8877C14.5568 14.8875 14.1496 14.5097 14.1494 14.0254C14.1494 13.5409 14.5567 13.1623 15.041 13.1621ZM17.7275 13.1621C18.212 13.1623 18.6191 13.5409 18.6191 14.0254C18.6189 14.5097 18.2119 14.8875 17.7275 14.8877C17.2432 14.8877 16.8352 14.5099 16.835 14.0254C16.835 13.5407 17.243 13.1621 17.7275 13.1621ZM12.2725 13.3623C11.8902 13.3624 11.5801 13.6594 11.5801 14.0254C11.5803 14.3912 11.8903 14.6874 12.2725 14.6875C12.6547 14.6875 12.9646 14.3913 12.9648 14.0254C12.9648 13.6593 12.6548 13.3623 12.2725 13.3623ZM15.041 13.3623C14.6589 13.3625 14.3496 13.6594 14.3496 14.0254C14.3498 14.3912 14.659 14.6873 15.041 14.6875C15.4232 14.6875 15.7332 14.3913 15.7334 14.0254C15.7334 13.6593 15.4234 13.3623 15.041 13.3623ZM17.7275 13.3623C17.3452 13.3623 17.0352 13.6593 17.0352 14.0254C17.0354 14.3913 17.3453 14.6875 17.7275 14.6875C18.1096 14.6873 18.4197 14.3912 18.4199 14.0254C18.4199 13.6594 18.1098 13.3625 17.7275 13.3623Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M6.38119 21.635C6.62359 21.8671 6.95183 21.9983 7.29462 22C7.57616 22.001 7.85051 21.9149 8.07692 21.7547L10.4515 20.0378C10.5479 19.9698 10.6642 19.9328 10.7839 19.9318H21.3208C22.032 19.9301 22.7135 19.6583 23.2157 19.1761C23.7179 18.694 24 18.0408 24 17.3599V10.5653C23.9982 9.88436 23.7144 9.23187 23.2108 8.75097C22.7073 8.27006 22.0251 8 21.3139 8H8.67924C7.96922 8.00175 7.28881 8.27259 6.78675 8.7533C6.28469 9.23402 6.00183 9.88551 6 10.5653V20.7604C6.00182 21.0886 6.1388 21.4029 6.38119 21.635ZM7.76581 9.69075C8.0082 9.45865 8.33644 9.3275 8.67924 9.32575H21.3208C21.6636 9.3275 21.9918 9.45865 22.2342 9.69075C22.4766 9.92284 22.6136 10.2371 22.6154 10.5653V17.3599C22.6154 17.6903 22.4783 18.0074 22.2342 18.241C21.9901 18.4748 21.659 18.606 21.3139 18.606H10.7839C10.3647 18.6079 9.95724 18.738 9.62077 18.9773L7.38462 20.5947V10.5653C7.38644 10.2371 7.52342 9.92284 7.76581 9.69075ZM18.4195 14.025C18.4195 14.3911 18.1096 14.6879 17.7272 14.6879C17.3448 14.6879 17.0349 14.3911 17.0349 14.025C17.0349 13.6589 17.3448 13.3621 17.7272 13.3621C18.1096 13.3621 18.4195 13.6589 18.4195 14.025ZM15.0414 14.6879C15.4238 14.6879 15.7337 14.3911 15.7337 14.025C15.7337 13.6589 15.4238 13.3621 15.0414 13.3621C14.6591 13.3621 14.3491 13.6589 14.3491 14.025C14.3491 14.3911 14.6591 14.6879 15.0414 14.6879ZM12.965 14.025C12.965 14.3911 12.655 14.6879 12.2727 14.6879C11.8903 14.6879 11.5804 14.3911 11.5804 14.025C11.5804 13.6589 11.8903 13.3621 12.2727 13.3621C12.655 13.3621 12.965 13.6589 12.965 14.025Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.3135 7.7998C22.0748 7.7998 22.807 8.08923 23.3486 8.60645C23.8905 9.12392 24.1982 9.82777 24.2002 10.5645V17.3594C24.2002 18.096 23.8949 18.8014 23.3545 19.3203C22.8143 19.8389 22.0828 20.13 21.3213 20.1318H10.7852L10.7266 20.1367C10.6686 20.146 10.6141 20.1683 10.5674 20.2012L8.19434 21.917L8.19238 21.918C7.93149 22.1026 7.61644 22.2013 7.29395 22.2002C6.90121 22.1982 6.5234 22.0476 6.24316 21.7793C5.9627 21.5107 5.80199 21.1454 5.7998 20.7617V10.5645C5.80188 9.82903 6.10819 9.12568 6.64844 8.6084C7.18845 8.09146 7.91867 7.80169 8.67871 7.7998H21.3135ZM8.67969 8C7.96985 8.00175 7.28914 8.27244 6.78711 8.75293C6.28505 9.23365 6.00183 9.8856 6 10.5654V20.7607C6.00191 21.0887 6.13873 21.4027 6.38086 21.6348C6.62325 21.8669 6.95213 21.9983 7.29492 22C7.57635 22.0009 7.85081 21.9151 8.07715 21.7549L10.4512 20.0381C10.5475 19.9701 10.6645 19.9326 10.7842 19.9316H21.3203C22.0316 19.9299 22.7136 19.6579 23.2158 19.1758C23.7179 18.6937 24 18.0402 24 17.3594V10.5654C23.9982 9.88448 23.7144 9.23188 23.2109 8.75098C22.7074 8.27007 22.0247 8 21.3135 8H8.67969ZM21.3203 9.32617C21.6631 9.32791 21.992 9.45837 22.2344 9.69043C22.4768 9.92252 22.6134 10.2372 22.6152 10.5654V17.3594C22.6152 17.6899 22.4785 18.0075 22.2344 18.2412C21.9903 18.475 21.6586 18.6064 21.3135 18.6064H10.7842C10.3651 18.6083 9.95754 18.7383 9.62109 18.9775L7.38477 20.5947V10.5654C7.38659 10.2372 7.52323 9.92252 7.76562 9.69043C8.00801 9.45837 8.33692 9.32791 8.67969 9.32617H21.3203ZM8.57129 9.53125C8.31903 9.55636 8.08326 9.66369 7.9043 9.83496C7.70004 10.0305 7.58649 10.2937 7.58496 10.5664V20.2021L9.50391 18.8154L9.50488 18.8145C9.87549 18.5509 10.3235 18.4083 10.7832 18.4062H21.3135C21.6083 18.4062 21.8898 18.2938 22.0957 18.0967C22.3014 17.8998 22.415 17.634 22.415 17.3594V10.5664C22.4135 10.2937 22.3 10.0305 22.0957 9.83496C21.8912 9.63924 21.6121 9.52688 21.3193 9.52539H8.68066L8.57129 9.53125ZM12.2725 13.1621C12.757 13.1621 13.165 13.5407 13.165 14.0254C13.1648 14.5099 12.7569 14.8877 12.2725 14.8877C11.7882 14.8876 11.3801 14.5098 11.3799 14.0254C11.3799 13.5408 11.788 13.1622 12.2725 13.1621ZM15.041 13.1621C15.5256 13.1621 15.9336 13.5407 15.9336 14.0254C15.9334 14.5098 15.5254 14.8877 15.041 14.8877C14.5568 14.8875 14.1496 14.5097 14.1494 14.0254C14.1494 13.5409 14.5567 13.1623 15.041 13.1621ZM17.7275 13.1621C18.212 13.1623 18.6191 13.5409 18.6191 14.0254C18.6189 14.5097 18.2119 14.8875 17.7275 14.8877C17.2432 14.8877 16.8352 14.5099 16.835 14.0254C16.835 13.5407 17.243 13.1621 17.7275 13.1621ZM12.2725 13.3623C11.8902 13.3624 11.5801 13.6594 11.5801 14.0254C11.5803 14.3912 11.8903 14.6874 12.2725 14.6875C12.6547 14.6875 12.9646 14.3913 12.9648 14.0254C12.9648 13.6593 12.6548 13.3623 12.2725 13.3623ZM15.041 13.3623C14.6589 13.3625 14.3496 13.6594 14.3496 14.0254C14.3498 14.3912 14.659 14.6873 15.041 14.6875C15.4232 14.6875 15.7332 14.3913 15.7334 14.0254C15.7334 13.6593 15.4234 13.3623 15.041 13.3623ZM17.7275 13.3623C17.3452 13.3623 17.0352 13.6593 17.0352 14.0254C17.0354 14.3913 17.3453 14.6875 17.7275 14.6875C18.1096 14.6873 18.4197 14.3912 18.4199 14.0254C18.4199 13.6594 18.1098 13.3625 17.7275 13.3623Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON CELULAR -->\r\n<div *ngIf=\"icon == 'cellphone'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.8 8.37931C10.8 7.86511 11.1454 7.44828 11.5714 7.44828H18.4285C18.8546 7.44828 19.2 7.86511 19.2 8.37931V21.6207C19.2 22.1349 18.8546 22.5517 18.4285 22.5517H11.5714C11.1454 22.5517 10.8 22.1349 10.8 21.6207V8.37931ZM11.5714 6C10.4826 6 9.59998 7.06525 9.59998 8.37931V21.6207C9.59998 22.9347 10.4826 24 11.5714 24H18.4285C19.5173 24 20.4 22.9347 20.4 21.6207V8.37931C20.4 7.06525 19.5173 6 18.4285 6H11.5714Z\"/>\r\n <circle [attr.fill]=\"color\" cx=\"15\" cy=\"20.4\" r=\"0.9\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\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=\"M10.8 8.37931C10.8 7.86511 11.1454 7.44828 11.5714 7.44828H18.4285C18.8546 7.44828 19.2 7.86511 19.2 8.37931V21.6207C19.2 22.1349 18.8546 22.5517 18.4285 22.5517H11.5714C11.1454 22.5517 10.8 22.1349 10.8 21.6207V8.37931ZM11.5714 6C10.4826 6 9.59998 7.06525 9.59998 8.37931V21.6207C9.59998 22.9347 10.4826 24 11.5714 24H18.4285C19.5173 24 20.4 22.9347 20.4 21.6207V8.37931C20.4 7.06525 19.5173 6 18.4285 6H11.5714Z\"/>\r\n <circle [attr.fill]=\"color\" cx=\"15\" cy=\"20.4\" r=\"0.9\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON VIRTUAL -->\r\n<div *ngIf=\"icon == 'videocamera'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M23.6744 10.5641C23.5603 10.4986 23.4193 10.4961 23.3028 10.5575L19.238 12.7063V11.417C19.2368 10.414 18.3973 9.60123 17.3613 9.6001H8.01869C6.98268 9.60123 6.14314 10.414 6.14197 11.417V18.5911C6.14314 19.5941 6.98268 20.4069 8.01869 20.408H17.3613C18.3973 20.4069 19.2368 19.5941 19.238 18.5911V17.3252L23.303 19.474C23.4193 19.5354 23.5604 19.533 23.6744 19.4676C23.7884 19.402 23.8582 19.2832 23.8582 19.155V10.8765C23.8582 10.7482 23.7883 10.6295 23.6744 10.5641ZM18.487 18.5912C18.4864 19.1931 17.9826 19.6806 17.361 19.6814H8.01869C7.39703 19.6806 6.89339 19.1931 6.89266 18.5912V11.417C6.89339 10.8153 7.39703 10.3276 8.01869 10.3269H17.3613C17.9828 10.3276 18.4866 10.8153 18.4873 11.417L18.487 18.5912ZM23.1075 18.5427L19.238 16.4972V13.5343L23.1075 11.489V18.5427Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M17.3607 19.2817V19.6812H8.01892V19.2817H17.3607ZM18.0873 11.4175C18.0869 11.0947 17.8476 10.8087 17.5111 10.7417L17.3607 10.7271H8.01892C7.6574 10.7276 7.37285 10.9731 7.30701 11.2817L7.29236 11.4175V18.5903C7.29281 18.9595 7.60565 19.2811 8.01892 19.2817V19.6812L7.90369 19.6753C7.37395 19.6227 6.95315 19.2155 6.8988 18.7026L6.89294 18.5913V11.4175C6.89363 10.8533 7.33607 10.3889 7.90369 10.3325L8.01892 10.3267H17.3617C17.983 10.3276 18.4869 10.8159 18.4877 11.4175L18.4867 18.5913L18.4808 18.7026C18.4227 19.2521 17.9435 19.6805 17.3607 19.6812V19.2817C17.7739 19.2812 18.0866 18.9601 18.0873 18.5913V11.4175ZM23.1078 18.5425L19.2377 16.4976V13.5347L23.1078 11.4888V18.5425ZM19.6381 13.7749V16.2563L22.7074 17.8784V12.1519L19.6381 13.7749ZM23.8578 10.8765C23.8578 10.7482 23.7881 10.6294 23.6742 10.564C23.5603 10.4987 23.4194 10.4959 23.3031 10.5571L19.2377 12.7065V11.4175C19.2365 10.4146 18.3975 9.60146 17.3617 9.6001H8.01892C6.98291 9.60123 6.14314 10.4145 6.14197 11.4175V18.5913C6.1432 19.5314 6.88093 20.3039 7.82654 20.3979L8.01892 20.4077H17.3617C18.3327 20.4064 19.1309 19.6924 19.2279 18.7769L19.2377 18.5913V17.3247L23.3031 19.4741C23.4193 19.5355 23.5603 19.5327 23.6742 19.4673C23.7883 19.4017 23.8578 19.283 23.8578 19.1548V10.8765ZM24.2582 19.1548C24.2582 19.4304 24.1078 19.6792 23.8734 19.814C23.6403 19.9479 23.353 19.9531 23.1156 19.8276L19.6381 17.9888V18.5913C19.6366 19.8269 18.606 20.8067 17.3617 20.8081H8.01794C6.85148 20.8067 5.87314 19.9456 5.75427 18.8198L5.74158 18.5913V11.4165C5.74305 10.181 6.7738 9.20123 8.01794 9.19971H17.3617L17.5922 9.21143C18.7307 9.32461 19.6367 10.2581 19.6381 11.4165V12.0425L23.1156 10.2036C23.3236 10.0938 23.5694 10.0846 23.7836 10.1733L23.8734 10.2173L23.9574 10.2729C24.143 10.4144 24.2582 10.635 24.2582 10.8765V19.1548Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M23.6744 10.5641C23.5603 10.4986 23.4193 10.4961 23.3028 10.5575L19.238 12.7063V11.417C19.2368 10.414 18.3973 9.60123 17.3613 9.6001H8.01869C6.98268 9.60123 6.14314 10.414 6.14197 11.417V18.5911C6.14314 19.5941 6.98268 20.4069 8.01869 20.408H17.3613C18.3973 20.4069 19.2368 19.5941 19.238 18.5911V17.3252L23.303 19.474C23.4193 19.5354 23.5604 19.533 23.6744 19.4676C23.7884 19.402 23.8582 19.2832 23.8582 19.155V10.8765C23.8582 10.7482 23.7883 10.6295 23.6744 10.5641ZM18.487 18.5912C18.4864 19.1931 17.9826 19.6806 17.361 19.6814H8.01869C7.39703 19.6806 6.89339 19.1931 6.89266 18.5912V11.417C6.89339 10.8153 7.39703 10.3276 8.01869 10.3269H17.3613C17.9828 10.3276 18.4866 10.8153 18.4873 11.417L18.487 18.5912ZM23.1075 18.5427L19.238 16.4972V13.5343L23.1075 11.489V18.5427Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M17.3607 19.2817V19.6812H8.01892V19.2817H17.3607ZM18.0873 11.4175C18.0869 11.0947 17.8476 10.8087 17.5111 10.7417L17.3607 10.7271H8.01892C7.6574 10.7276 7.37285 10.9731 7.30701 11.2817L7.29236 11.4175V18.5903C7.29281 18.9595 7.60565 19.2811 8.01892 19.2817V19.6812L7.90369 19.6753C7.37395 19.6227 6.95315 19.2155 6.8988 18.7026L6.89294 18.5913V11.4175C6.89363 10.8533 7.33607 10.3889 7.90369 10.3325L8.01892 10.3267H17.3617C17.983 10.3276 18.4869 10.8159 18.4877 11.4175L18.4867 18.5913L18.4808 18.7026C18.4227 19.2521 17.9435 19.6805 17.3607 19.6812V19.2817C17.7739 19.2812 18.0866 18.9601 18.0873 18.5913V11.4175ZM23.1078 18.5425L19.2377 16.4976V13.5347L23.1078 11.4888V18.5425ZM19.6381 13.7749V16.2563L22.7074 17.8784V12.1519L19.6381 13.7749ZM23.8578 10.8765C23.8578 10.7482 23.7881 10.6294 23.6742 10.564C23.5603 10.4987 23.4194 10.4959 23.3031 10.5571L19.2377 12.7065V11.4175C19.2365 10.4146 18.3975 9.60146 17.3617 9.6001H8.01892C6.98291 9.60123 6.14314 10.4145 6.14197 11.4175V18.5913C6.1432 19.5314 6.88093 20.3039 7.82654 20.3979L8.01892 20.4077H17.3617C18.3327 20.4064 19.1309 19.6924 19.2279 18.7769L19.2377 18.5913V17.3247L23.3031 19.4741C23.4193 19.5355 23.5603 19.5327 23.6742 19.4673C23.7883 19.4017 23.8578 19.283 23.8578 19.1548V10.8765ZM24.2582 19.1548C24.2582 19.4304 24.1078 19.6792 23.8734 19.814C23.6403 19.9479 23.353 19.9531 23.1156 19.8276L19.6381 17.9888V18.5913C19.6366 19.8269 18.606 20.8067 17.3617 20.8081H8.01794C6.85148 20.8067 5.87314 19.9456 5.75427 18.8198L5.74158 18.5913V11.4165C5.74305 10.181 6.7738 9.20123 8.01794 9.19971H17.3617L17.5922 9.21143C18.7307 9.32461 19.6367 10.2581 19.6381 11.4165V12.0425L23.1156 10.2036C23.3236 10.0938 23.5694 10.0846 23.7836 10.1733L23.8734 10.2173L23.9574 10.2729C24.143 10.4144 24.2582 10.635 24.2582 10.8765V19.1548Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON MONEDA -->\r\n<div *ngIf=\"icon == 'border-circle-dolar'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 7C19.4183 7 23 10.5817 23 15C23 19.4183 19.4183 23 15 23C10.5817 23 7 19.4183 7 15C7 10.5817 10.5817 7 15 7ZM15 8.09961C11.1892 8.09961 8.09961 11.1892 8.09961 15C8.09961 18.8108 11.1892 21.9004 15 21.9004C18.8108 21.9004 21.9004 18.8108 21.9004 15C21.9004 11.1892 18.8108 8.09961 15 8.09961ZM15.3037 11.501C15.6924 11.5235 16.0414 11.6021 16.3506 11.7373C16.7238 11.8995 17.0178 12.1228 17.2324 12.4072C17.4469 12.6893 17.559 13.0135 17.5684 13.3799H16.5254C16.488 13.0645 16.334 12.8197 16.0635 12.6465C15.8527 12.5099 15.5993 12.4277 15.3037 12.3975V14.5312L15.6055 14.6064C15.834 14.6598 16.0684 14.7322 16.3086 14.8232C16.5488 14.9143 16.7713 15.0348 16.9766 15.1836C17.1819 15.3325 17.3476 15.5173 17.4736 15.7373C17.6019 15.9573 17.666 16.2208 17.666 16.5273C17.6659 16.9137 17.5613 17.2568 17.3516 17.5566C17.144 17.8566 16.8418 18.0933 16.4453 18.2666C16.121 18.4092 15.7402 18.4913 15.3037 18.5166V19.2666H14.7305V18.5176C14.3121 18.4936 13.9423 18.4162 13.6211 18.2832C13.2291 18.121 12.9218 17.8915 12.7002 17.5938C12.4787 17.2939 12.3564 16.9383 12.333 16.5273H13.418C13.439 16.7738 13.523 16.9792 13.6699 17.1436C13.8192 17.3058 14.0093 17.4268 14.2402 17.5068C14.3939 17.5581 14.5576 17.5899 14.7305 17.6074V15.3447L14.3906 15.2568C13.817 15.108 13.3623 14.8893 13.0264 14.6006C12.6927 14.3117 12.5254 13.9287 12.5254 13.4531C12.5255 13.0601 12.6376 12.717 12.8613 12.4238C13.0853 12.1305 13.3889 11.9025 13.7715 11.7402C14.0628 11.6151 14.3824 11.5367 14.7305 11.5068V10.7334H15.3037V11.501ZM15.3037 17.6055C15.4913 17.5851 15.6644 17.5477 15.8223 17.4873C16.0624 17.394 16.251 17.2649 16.3887 17.1006C16.5263 16.9339 16.5957 16.7388 16.5957 16.5166C16.5956 16.3145 16.5343 16.1493 16.4131 16.0205C16.2941 15.8917 16.132 15.7846 15.9268 15.7002C15.7415 15.6231 15.5336 15.5555 15.3037 15.4951V17.6055ZM14.7305 12.4033C14.5643 12.4241 14.4132 12.4608 14.2783 12.5166C14.0638 12.6033 13.8972 12.7237 13.7783 12.877C13.6617 13.028 13.6035 13.2003 13.6035 13.3936C13.6035 13.5558 13.6433 13.6957 13.7227 13.8135C13.8043 13.9312 13.9104 14.0304 14.041 14.1104C14.1739 14.1881 14.3162 14.2533 14.4678 14.3066C14.5572 14.3368 14.6451 14.3628 14.7305 14.3867V12.4033Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M23 15C23 10.5817 19.4183 7 15 7C10.5817 7 7 10.5817 7 15C7 19.4183 10.5817 23 15 23C19.4183 23 23 19.4183 23 15ZM21.7002 15C21.7002 11.2997 18.7003 8.2998 15 8.2998C11.2997 8.2998 8.2998 11.2997 8.2998 15C8.2998 18.7003 11.2997 21.7002 15 21.7002V21.9004C11.1892 21.9004 8.09961 18.8108 8.09961 15C8.09961 11.1892 11.1892 8.09961 15 8.09961C18.8108 8.09961 21.9004 11.1892 21.9004 15C21.9004 18.8108 18.8108 21.9004 15 21.9004V21.7002C18.7003 21.7002 21.7002 18.7003 21.7002 15ZM17.666 16.5273C17.666 16.2208 17.6019 15.9573 17.4736 15.7373C17.3476 15.5173 17.1819 15.3325 16.9766 15.1836C16.7713 15.0348 16.5488 14.9143 16.3086 14.8232C16.0684 14.7322 15.834 14.6598 15.6055 14.6064L15.3037 14.5312V12.3975C15.5993 12.4277 15.8527 12.5099 16.0635 12.6465C16.334 12.8197 16.488 13.0645 16.5254 13.3799H17.5684C17.559 13.0135 17.4469 12.6893 17.2324 12.4072C17.0178 12.1228 16.7238 11.8995 16.3506 11.7373C16.0414 11.6021 15.6924 11.5235 15.3037 11.501V10.7334H14.7305V11.5068C14.3824 11.5367 14.0628 11.6151 13.7715 11.7402C13.3889 11.9025 13.0853 12.1305 12.8613 12.4238C12.6376 12.717 12.5255 13.0601 12.5254 13.4531C12.5254 13.9287 12.6927 14.3117 13.0264 14.6006C13.3623 14.8893 13.817 15.108 14.3906 15.2568L14.7305 15.3447V17.6074C14.5576 17.5899 14.3939 17.5581 14.2402 17.5068C14.0093 17.4268 13.8192 17.3058 13.6699 17.1436C13.523 16.9792 13.439 16.7738 13.418 16.5273H12.333C12.3564 16.9383 12.4787 17.2939 12.7002 17.5938C12.9218 17.8915 13.2291 18.121 13.6211 18.2832C13.9423 18.4162 14.3121 18.4936 14.7305 18.5176V19.2666H15.3037V18.5166C15.7402 18.4913 16.121 18.4092 16.4453 18.2666C16.8418 18.0933 17.144 17.8566 17.3516 17.5566C17.5613 17.2568 17.6659 16.9137 17.666 16.5273ZM16.3955 16.5166C16.3954 16.3583 16.3493 16.244 16.2676 16.1572L16.2666 16.1562C16.1717 16.0535 16.0356 15.9609 15.8506 15.8848H15.8496C15.7434 15.8406 15.628 15.8005 15.5039 15.7617V17.3701C15.5914 17.3517 15.6736 17.33 15.75 17.3008L15.9004 17.2334C16.041 17.1606 16.1512 17.0721 16.2354 16.9717C16.3419 16.8421 16.3955 16.6929 16.3955 16.5166ZM14.7305 14.3867C14.6451 14.3628 14.5572 14.3368 14.4678 14.3066C14.3162 14.2533 14.1739 14.1881 14.041 14.1104C13.9104 14.0304 13.8043 13.9312 13.7227 13.8135C13.6433 13.6957 13.6035 13.5558 13.6035 13.3936C13.6035 13.2003 13.6617 13.028 13.7783 12.877C13.8972 12.7237 14.0638 12.6033 14.2783 12.5166C14.4132 12.4608 14.5643 12.4241 14.7305 12.4033V14.3867ZM16.5957 16.5166C16.5957 16.7388 16.5263 16.9339 16.3887 17.1006C16.251 17.2649 16.0624 17.394 15.8223 17.4873C15.6644 17.5477 15.4913 17.5851 15.3037 17.6055V15.4951C15.5336 15.5555 15.7415 15.6231 15.9268 15.7002C16.132 15.7846 16.2941 15.8917 16.4131 16.0205C16.5343 16.1493 16.5956 16.3145 16.5957 16.5166ZM23.2002 15C23.2002 19.5287 19.5287 23.2002 15 23.2002C10.4713 23.2002 6.7998 19.5287 6.7998 15C6.7998 10.4713 10.4713 6.7998 15 6.7998C19.5287 6.7998 23.2002 10.4713 23.2002 15ZM13.8037 13.3936C13.8037 13.5203 13.8337 13.6193 13.8867 13.6992C13.9516 13.7927 14.0371 13.8731 14.1455 13.9395C14.2647 14.0088 14.3928 14.0676 14.5303 14.1162V12.6436C14.4676 12.6596 14.4088 12.6787 14.3545 12.7012L14.3535 12.7021C14.1658 12.778 14.0301 12.8794 13.9365 13L13.9355 12.999C13.8466 13.1144 13.8037 13.2439 13.8037 13.3936ZM15.5039 11.3193C15.8391 11.355 16.1488 11.4305 16.4307 11.5537L16.5771 11.6221C16.9099 11.7893 17.1823 12.0105 17.3906 12.2861H17.3916C17.6324 12.6028 17.7581 12.9681 17.7686 13.375C17.7699 13.4288 17.7494 13.481 17.7119 13.5195C17.6743 13.5582 17.6223 13.5801 17.5684 13.5801H16.5254C16.424 13.5801 16.3391 13.504 16.3271 13.4033C16.2969 13.1481 16.1767 12.9558 15.9561 12.8145H15.9551C15.8273 12.7316 15.6772 12.6713 15.5039 12.6328V14.374L15.6543 14.4121H15.6533C15.8906 14.4676 16.1331 14.5431 16.3799 14.6367C16.6364 14.734 16.8745 14.8625 17.0938 15.0215C17.3217 15.1868 17.5065 15.3927 17.6465 15.6367L17.6992 15.7344C17.8128 15.968 17.8662 16.2344 17.8662 16.5273C17.8661 16.899 17.777 17.239 17.5977 17.543L17.5156 17.6709C17.2833 18.0064 16.9492 18.2649 16.5254 18.4502V18.4492C16.2238 18.5818 15.8821 18.6611 15.5039 18.6982V19.2666C15.5039 19.3771 15.4142 19.4668 15.3037 19.4668H14.7305C14.62 19.4668 14.5303 19.3771 14.5303 19.2666V18.6992C14.1693 18.6638 13.8401 18.5899 13.5449 18.4678C13.1247 18.2939 12.7863 18.0438 12.54 17.7129H12.5391C12.292 17.3785 12.1592 16.9844 12.1338 16.5391C12.1307 16.4841 12.1497 16.4296 12.1875 16.3896C12.2253 16.3497 12.278 16.3271 12.333 16.3271H13.418C13.5218 16.3271 13.6083 16.4073 13.6172 16.5107C13.635 16.7182 13.7041 16.8801 13.8174 17.0078L13.917 17.1035C14.0243 17.1933 14.1532 17.2646 14.3057 17.3174H14.3047C14.3765 17.3413 14.4518 17.3596 14.5303 17.375V15.499L14.3408 15.4502C13.7472 15.2962 13.262 15.0661 12.8965 14.752H12.8955C12.5621 14.4632 12.3754 14.0902 12.334 13.6475L12.3252 13.4531C12.3253 13.0194 12.4501 12.633 12.7021 12.3027C12.9497 11.9785 13.2829 11.7297 13.6934 11.5557C13.953 11.4442 14.2325 11.3697 14.5303 11.3291V10.7334C14.5303 10.6229 14.62 10.5332 14.7305 10.5332H15.3037C15.4142 10.5332 15.5039 10.6229 15.5039 10.7334V11.3193Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M15 7C19.4183 7 23 10.5817 23 15C23 19.4183 19.4183 23 15 23C10.5817 23 7 19.4183 7 15C7 10.5817 10.5817 7 15 7ZM15 8.09961C11.1892 8.09961 8.09961 11.1892 8.09961 15C8.09961 18.8108 11.1892 21.9004 15 21.9004C18.8108 21.9004 21.9004 18.8108 21.9004 15C21.9004 11.1892 18.8108 8.09961 15 8.09961ZM15.3037 11.501C15.6924 11.5235 16.0414 11.6021 16.3506 11.7373C16.7238 11.8995 17.0178 12.1228 17.2324 12.4072C17.4469 12.6893 17.559 13.0135 17.5684 13.3799H16.5254C16.488 13.0645 16.334 12.8197 16.0635 12.6465C15.8527 12.5099 15.5993 12.4277 15.3037 12.3975V14.5312L15.6055 14.6064C15.834 14.6598 16.0684 14.7322 16.3086 14.8232C16.5488 14.9143 16.7713 15.0348 16.9766 15.1836C17.1819 15.3325 17.3476 15.5173 17.4736 15.7373C17.6019 15.9573 17.666 16.2208 17.666 16.5273C17.6659 16.9137 17.5613 17.2568 17.3516 17.5566C17.144 17.8566 16.8418 18.0933 16.4453 18.2666C16.121 18.4092 15.7402 18.4913 15.3037 18.5166V19.2666H14.7305V18.5176C14.3121 18.4936 13.9423 18.4162 13.6211 18.2832C13.2291 18.121 12.9218 17.8915 12.7002 17.5938C12.4787 17.2939 12.3564 16.9383 12.333 16.5273H13.418C13.439 16.7738 13.523 16.9792 13.6699 17.1436C13.8192 17.3058 14.0093 17.4268 14.2402 17.5068C14.3939 17.5581 14.5576 17.5899 14.7305 17.6074V15.3447L14.3906 15.2568C13.817 15.108 13.3623 14.8893 13.0264 14.6006C12.6927 14.3117 12.5254 13.9287 12.5254 13.4531C12.5255 13.0601 12.6376 12.717 12.8613 12.4238C13.0853 12.1305 13.3889 11.9025 13.7715 11.7402C14.0628 11.6151 14.3824 11.5367 14.7305 11.5068V10.7334H15.3037V11.501ZM15.3037 17.6055C15.4913 17.5851 15.6644 17.5477 15.8223 17.4873C16.0624 17.394 16.251 17.2649 16.3887 17.1006C16.5263 16.9339 16.5957 16.7388 16.5957 16.5166C16.5956 16.3145 16.5343 16.1493 16.4131 16.0205C16.2941 15.8917 16.132 15.7846 15.9268 15.7002C15.7415 15.6231 15.5336 15.5555 15.3037 15.4951V17.6055ZM14.7305 12.4033C14.5643 12.4241 14.4132 12.4608 14.2783 12.5166C14.0638 12.6033 13.8972 12.7237 13.7783 12.877C13.6617 13.028 13.6035 13.2003 13.6035 13.3936C13.6035 13.5558 13.6433 13.6957 13.7227 13.8135C13.8043 13.9312 13.9104 14.0304 14.041 14.1104C14.1739 14.1881 14.3162 14.2533 14.4678 14.3066C14.5572 14.3368 14.6451 14.3628 14.7305 14.3867V12.4033Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M23 15C23 10.5817 19.4183 7 15 7C10.5817 7 7 10.5817 7 15C7 19.4183 10.5817 23 15 23C19.4183 23 23 19.4183 23 15ZM21.7002 15C21.7002 11.2997 18.7003 8.2998 15 8.2998C11.2997 8.2998 8.2998 11.2997 8.2998 15C8.2998 18.7003 11.2997 21.7002 15 21.7002V21.9004C11.1892 21.9004 8.09961 18.8108 8.09961 15C8.09961 11.1892 11.1892 8.09961 15 8.09961C18.8108 8.09961 21.9004 11.1892 21.9004 15C21.9004 18.8108 18.8108 21.9004 15 21.9004V21.7002C18.7003 21.7002 21.7002 18.7003 21.7002 15ZM17.666 16.5273C17.666 16.2208 17.6019 15.9573 17.4736 15.7373C17.3476 15.5173 17.1819 15.3325 16.9766 15.1836C16.7713 15.0348 16.5488 14.9143 16.3086 14.8232C16.0684 14.7322 15.834 14.6598 15.6055 14.6064L15.3037 14.5312V12.3975C15.5993 12.4277 15.8527 12.5099 16.0635 12.6465C16.334 12.8197 16.488 13.0645 16.5254 13.3799H17.5684C17.559 13.0135 17.4469 12.6893 17.2324 12.4072C17.0178 12.1228 16.7238 11.8995 16.3506 11.7373C16.0414 11.6021 15.6924 11.5235 15.3037 11.501V10.7334H14.7305V11.5068C14.3824 11.5367 14.0628 11.6151 13.7715 11.7402C13.3889 11.9025 13.0853 12.1305 12.8613 12.4238C12.6376 12.717 12.5255 13.0601 12.5254 13.4531C12.5254 13.9287 12.6927 14.3117 13.0264 14.6006C13.3623 14.8893 13.817 15.108 14.3906 15.2568L14.7305 15.3447V17.6074C14.5576 17.5899 14.3939 17.5581 14.2402 17.5068C14.0093 17.4268 13.8192 17.3058 13.6699 17.1436C13.523 16.9792 13.439 16.7738 13.418 16.5273H12.333C12.3564 16.9383 12.4787 17.2939 12.7002 17.5938C12.9218 17.8915 13.2291 18.121 13.6211 18.2832C13.9423 18.4162 14.3121 18.4936 14.7305 18.5176V19.2666H15.3037V18.5166C15.7402 18.4913 16.121 18.4092 16.4453 18.2666C16.8418 18.0933 17.144 17.8566 17.3516 17.5566C17.5613 17.2568 17.6659 16.9137 17.666 16.5273ZM16.3955 16.5166C16.3954 16.3583 16.3493 16.244 16.2676 16.1572L16.2666 16.1562C16.1717 16.0535 16.0356 15.9609 15.8506 15.8848H15.8496C15.7434 15.8406 15.628 15.8005 15.5039 15.7617V17.3701C15.5914 17.3517 15.6736 17.33 15.75 17.3008L15.9004 17.2334C16.041 17.1606 16.1512 17.0721 16.2354 16.9717C16.3419 16.8421 16.3955 16.6929 16.3955 16.5166ZM14.7305 14.3867C14.6451 14.3628 14.5572 14.3368 14.4678 14.3066C14.3162 14.2533 14.1739 14.1881 14.041 14.1104C13.9104 14.0304 13.8043 13.9312 13.7227 13.8135C13.6433 13.6957 13.6035 13.5558 13.6035 13.3936C13.6035 13.2003 13.6617 13.028 13.7783 12.877C13.8972 12.7237 14.0638 12.6033 14.2783 12.5166C14.4132 12.4608 14.5643 12.4241 14.7305 12.4033V14.3867ZM16.5957 16.5166C16.5957 16.7388 16.5263 16.9339 16.3887 17.1006C16.251 17.2649 16.0624 17.394 15.8223 17.4873C15.6644 17.5477 15.4913 17.5851 15.3037 17.6055V15.4951C15.5336 15.5555 15.7415 15.6231 15.9268 15.7002C16.132 15.7846 16.2941 15.8917 16.4131 16.0205C16.5343 16.1493 16.5956 16.3145 16.5957 16.5166ZM23.2002 15C23.2002 19.5287 19.5287 23.2002 15 23.2002C10.4713 23.2002 6.7998 19.5287 6.7998 15C6.7998 10.4713 10.4713 6.7998 15 6.7998C19.5287 6.7998 23.2002 10.4713 23.2002 15ZM13.8037 13.3936C13.8037 13.5203 13.8337 13.6193 13.8867 13.6992C13.9516 13.7927 14.0371 13.8731 14.1455 13.9395C14.2647 14.0088 14.3928 14.0676 14.5303 14.1162V12.6436C14.4676 12.6596 14.4088 12.6787 14.3545 12.7012L14.3535 12.7021C14.1658 12.778 14.0301 12.8794 13.9365 13L13.9355 12.999C13.8466 13.1144 13.8037 13.2439 13.8037 13.3936ZM15.5039 11.3193C15.8391 11.355 16.1488 11.4305 16.4307 11.5537L16.5771 11.6221C16.9099 11.7893 17.1823 12.0105 17.3906 12.2861H17.3916C17.6324 12.6028 17.7581 12.9681 17.7686 13.375C17.7699 13.4288 17.7494 13.481 17.7119 13.5195C17.6743 13.5582 17.6223 13.5801 17.5684 13.5801H16.5254C16.424 13.5801 16.3391 13.504 16.3271 13.4033C16.2969 13.1481 16.1767 12.9558 15.9561 12.8145H15.9551C15.8273 12.7316 15.6772 12.6713 15.5039 12.6328V14.374L15.6543 14.4121H15.6533C15.8906 14.4676 16.1331 14.5431 16.3799 14.6367C16.6364 14.734 16.8745 14.8625 17.0938 15.0215C17.3217 15.1868 17.5065 15.3927 17.6465 15.6367L17.6992 15.7344C17.8128 15.968 17.8662 16.2344 17.8662 16.5273C17.8661 16.899 17.777 17.239 17.5977 17.543L17.5156 17.6709C17.2833 18.0064 16.9492 18.2649 16.5254 18.4502V18.4492C16.2238 18.5818 15.8821 18.6611 15.5039 18.6982V19.2666C15.5039 19.3771 15.4142 19.4668 15.3037 19.4668H14.7305C14.62 19.4668 14.5303 19.3771 14.5303 19.2666V18.6992C14.1693 18.6638 13.8401 18.5899 13.5449 18.4678C13.1247 18.2939 12.7863 18.0438 12.54 17.7129H12.5391C12.292 17.3785 12.1592 16.9844 12.1338 16.5391C12.1307 16.4841 12.1497 16.4296 12.1875 16.3896C12.2253 16.3497 12.278 16.3271 12.333 16.3271H13.418C13.5218 16.3271 13.6083 16.4073 13.6172 16.5107C13.635 16.7182 13.7041 16.8801 13.8174 17.0078L13.917 17.1035C14.0243 17.1933 14.1532 17.2646 14.3057 17.3174H14.3047C14.3765 17.3413 14.4518 17.3596 14.5303 17.375V15.499L14.3408 15.4502C13.7472 15.2962 13.262 15.0661 12.8965 14.752H12.8955C12.5621 14.4632 12.3754 14.0902 12.334 13.6475L12.3252 13.4531C12.3253 13.0194 12.4501 12.633 12.7021 12.3027C12.9497 11.9785 13.2829 11.7297 13.6934 11.5557C13.953 11.4442 14.2325 11.3697 14.5303 11.3291V10.7334C14.5303 10.6229 14.62 10.5332 14.7305 10.5332H15.3037C15.4142 10.5332 15.5039 10.6229 15.5039 10.7334V11.3193Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON PAGAR -->\r\n<div *ngIf=\"icon == 'pay'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M8.71429 6C8.25963 6 7.82359 6.17779 7.5021 6.49426C7.18061 6.81072 7 7.23995 7 7.6875V22.3125C7 22.7601 7.18061 23.1893 7.5021 23.5057C7.82359 23.8222 8.25963 24 8.71429 24H16.7143C17.1689 24 17.605 23.8222 17.9265 23.5057C18.248 23.1893 18.4286 22.7601 18.4286 22.3125V20.625C18.4286 20.4758 18.3684 20.3327 18.2612 20.2273C18.154 20.1218 18.0087 20.0625 17.8571 20.0625C17.3851 20.0625 17.0834 19.9478 16.8789 19.797C16.6709 19.644 16.5093 19.4104 16.3943 19.0961C16.1497 18.4346 16.1429 17.5583 16.1429 16.6875C16.1428 16.6135 16.128 16.5402 16.0992 16.4719C16.0703 16.4036 16.0281 16.3415 15.9749 16.2892L15.648 15.9664L14.2617 14.6017C13.728 14.0764 13.5714 13.7242 13.5417 13.5274C13.5189 13.3699 13.5669 13.2641 13.6811 13.1561C13.9257 12.9255 14.1006 12.7691 14.2983 12.7219C14.416 12.6926 14.6846 12.6724 15.1669 13.1471L18.5954 16.5221C18.7026 16.6277 18.848 16.6871 18.9996 16.6873C19.0747 16.6873 19.149 16.6728 19.2184 16.6446C19.2878 16.6163 19.3509 16.5749 19.404 16.5227C19.4571 16.4705 19.4993 16.4084 19.5281 16.3402C19.5569 16.2719 19.5717 16.1987 19.5717 16.1248C19.5718 16.0509 19.5571 15.9777 19.5284 15.9094C19.4997 15.8411 19.4576 15.779 19.4046 15.7267L18.4286 14.7671V11.2954L21.3543 14.1754C21.5137 14.3321 21.6401 14.5181 21.7264 14.7229C21.8127 14.9277 21.8571 15.1473 21.8571 15.369V23.4375C21.8571 23.5867 21.9173 23.7298 22.0245 23.8352C22.1317 23.9407 22.277 24 22.4286 24C22.5801 24 22.7255 23.9407 22.8326 23.8352C22.9398 23.7298 23 23.5867 23 23.4375V15.369C22.9998 14.6234 22.6989 13.9084 22.1634 13.3811L18.4286 9.70463V7.6875C18.4286 7.23995 18.248 6.81072 17.9265 6.49426C17.605 6.17779 17.1689 6 16.7143 6H8.71429ZM17.2857 9.9375V13.6421L15.976 12.3517C15.3154 11.7015 14.6571 11.4776 14.0274 11.6284C13.9037 11.6583 13.7837 11.7017 13.6697 11.7578C13.1588 11.6118 12.6205 11.5849 12.0972 11.6792C11.574 11.7734 11.0801 11.9862 10.6549 12.3007C10.2296 12.6153 9.88446 13.0229 9.64683 13.4914C9.4092 13.9599 9.28557 14.4764 9.28571 15C9.28567 15.6524 9.47773 16.2909 9.83866 16.8381C10.1996 17.3853 10.7139 17.8178 11.3194 18.0833C11.9248 18.3487 12.5955 18.4357 13.2501 18.3338C13.9048 18.2318 14.5154 17.9452 15.008 17.5087C15.0274 18.159 15.0937 18.87 15.32 19.4809C15.4891 19.9387 15.7589 20.3764 16.1931 20.6959L16.2 20.7026C15.852 20.8104 15.548 21.0246 15.3322 21.3141C15.1163 21.6036 15 21.9534 15 22.3125V22.875H10.4286V22.3125C10.4286 21.8649 10.248 21.4357 9.92647 21.1193C9.60498 20.8028 9.16894 20.625 8.71429 20.625H8.14286V9.375H8.71429C9.16894 9.375 9.60498 9.19721 9.92647 8.88074C10.248 8.56428 10.4286 8.13505 10.4286 7.6875V7.125H15V7.6875C15 8.13505 15.1806 8.56428 15.5021 8.88074C15.8236 9.19721 16.2596 9.375 16.7143 9.375H17.2857V9.9375ZM17.2857 22.3125V22.3226C17.283 22.47 17.2216 22.6105 17.1148 22.7138C17.0079 22.8172 16.8641 22.875 16.7143 22.875H16.1429V22.3125C16.1429 22.1633 16.2031 22.0202 16.3102 21.9148C16.4174 21.8093 16.5627 21.75 16.7143 21.75H17.2857V22.3125ZM10.4286 15C10.4286 14.4278 10.65 13.8771 11.0479 13.46C11.4458 13.0428 11.9902 12.7905 12.5703 12.7545C12.4286 13.0132 12.3566 13.3282 12.4114 13.6916C12.4926 14.2339 12.8434 14.7975 13.4526 15.3971L14.4891 16.4175C14.1916 16.7785 13.7877 17.0399 13.3331 17.1657C12.8785 17.2916 12.3954 17.2757 11.9503 17.1203C11.5052 16.965 11.1199 16.6777 10.8475 16.298C10.575 15.9183 10.4286 15.4649 10.4286 15ZM9.28571 7.125V7.6875C9.28571 7.83668 9.22551 7.97976 9.11835 8.08525C9.01118 8.19074 8.86584 8.25 8.71429 8.25H8.14286V7.6875C8.14286 7.53832 8.20306 7.39524 8.31022 7.28975C8.41739 7.18426 8.56273 7.125 8.71429 7.125H9.28571ZM8.14286 21.75H8.71429C8.86584 21.75 9.01118 21.8093 9.11835 21.9148C9.22551 22.0202 9.28571 22.1633 9.28571 22.3125V22.875H8.71429C8.56273 22.875 8.41739 22.8157 8.31022 22.7102C8.20306 22.6048 8.14286 22.4617 8.14286 22.3125V21.75ZM17.2857 8.25H16.7143C16.5627 8.25 16.4174 8.19074 16.3102 8.08525C16.2031 7.97976 16.1429 7.83668 16.1429 7.6875V7.125H16.7143C16.8658 7.125 17.0112 7.18426 17.1183 7.28975C17.2255 7.39524 17.2857 7.53832 17.2857 7.6875V8.25Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M8.71429 6C8.25963 6 7.82359 6.17779 7.5021 6.49426C7.18061 6.81072 7 7.23995 7 7.6875V22.3125C7 22.7601 7.18061 23.1893 7.5021 23.5057C7.82359 23.8222 8.25963 24 8.71429 24H16.7143C17.1689 24 17.605 23.8222 17.9265 23.5057C18.248 23.1893 18.4286 22.7601 18.4286 22.3125V20.625C18.4286 20.4758 18.3684 20.3327 18.2612 20.2273C18.154 20.1218 18.0087 20.0625 17.8571 20.0625C17.3851 20.0625 17.0834 19.9478 16.8789 19.797C16.6709 19.644 16.5093 19.4104 16.3943 19.0961C16.1497 18.4346 16.1429 17.5583 16.1429 16.6875C16.1428 16.6135 16.128 16.5402 16.0992 16.4719C16.0703 16.4036 16.0281 16.3415 15.9749 16.2892L15.648 15.9664L14.2617 14.6017C13.728 14.0764 13.5714 13.7242 13.5417 13.5274C13.5189 13.3699 13.5669 13.2641 13.6811 13.1561C13.9257 12.9255 14.1006 12.7691 14.2983 12.7219C14.416 12.6926 14.6846 12.6724 15.1669 13.1471L18.5954 16.5221C18.7026 16.6277 18.848 16.6871 18.9996 16.6873C19.0747 16.6873 19.149 16.6728 19.2184 16.6446C19.2878 16.6163 19.3509 16.5749 19.404 16.5227C19.4571 16.4705 19.4993 16.4084 19.5281 16.3402C19.5569 16.2719 19.5717 16.1987 19.5717 16.1248C19.5718 16.0509 19.5571 15.9777 19.5284 15.9094C19.4997 15.8411 19.4576 15.779 19.4046 15.7267L18.4286 14.7671V11.2954L21.3543 14.1754C21.5137 14.3321 21.6401 14.5181 21.7264 14.7229C21.8127 14.9277 21.8571 15.1473 21.8571 15.369V23.4375C21.8571 23.5867 21.9173 23.7298 22.0245 23.8352C22.1317 23.9407 22.277 24 22.4286 24C22.5801 24 22.7255 23.9407 22.8326 23.8352C22.9398 23.7298 23 23.5867 23 23.4375V15.369C22.9998 14.6234 22.6989 13.9084 22.1634 13.3811L18.4286 9.70463V7.6875C18.4286 7.23995 18.248 6.81072 17.9265 6.49426C17.605 6.17779 17.1689 6 16.7143 6H8.71429ZM17.2857 9.9375V13.6421L15.976 12.3517C15.3154 11.7015 14.6571 11.4776 14.0274 11.6284C13.9037 11.6583 13.7837 11.7017 13.6697 11.7578C13.1588 11.6118 12.6205 11.5849 12.0972 11.6792C11.574 11.7734 11.0801 11.9862 10.6549 12.3007C10.2296 12.6153 9.88446 13.0229 9.64683 13.4914C9.4092 13.9599 9.28557 14.4764 9.28571 15C9.28567 15.6524 9.47773 16.2909 9.83866 16.8381C10.1996 17.3853 10.7139 17.8178 11.3194 18.0833C11.9248 18.3487 12.5955 18.4357 13.2501 18.3338C13.9048 18.2318 14.5154 17.9452 15.008 17.5087C15.0274 18.159 15.0937 18.87 15.32 19.4809C15.4891 19.9387 15.7589 20.3764 16.1931 20.6959L16.2 20.7026C15.852 20.8104 15.548 21.0246 15.3322 21.3141C15.1163 21.6036 15 21.9534 15 22.3125V22.875H10.4286V22.3125C10.4286 21.8649 10.248 21.4357 9.92647 21.1193C9.60498 20.8028 9.16894 20.625 8.71429 20.625H8.14286V9.375H8.71429C9.16894 9.375 9.60498 9.19721 9.92647 8.88074C10.248 8.56428 10.4286 8.13505 10.4286 7.6875V7.125H15V7.6875C15 8.13505 15.1806 8.56428 15.5021 8.88074C15.8236 9.19721 16.2596 9.375 16.7143 9.375H17.2857V9.9375ZM17.2857 22.3125V22.3226C17.283 22.47 17.2216 22.6105 17.1148 22.7138C17.0079 22.8172 16.8641 22.875 16.7143 22.875H16.1429V22.3125C16.1429 22.1633 16.2031 22.0202 16.3102 21.9148C16.4174 21.8093 16.5627 21.75 16.7143 21.75H17.2857V22.3125ZM10.4286 15C10.4286 14.4278 10.65 13.8771 11.0479 13.46C11.4458 13.0428 11.9902 12.7905 12.5703 12.7545C12.4286 13.0132 12.3566 13.3282 12.4114 13.6916C12.4926 14.2339 12.8434 14.7975 13.4526 15.3971L14.4891 16.4175C14.1916 16.7785 13.7877 17.0399 13.3331 17.1657C12.8785 17.2916 12.3954 17.2757 11.9503 17.1203C11.5052 16.965 11.1199 16.6777 10.8475 16.298C10.575 15.9183 10.4286 15.4649 10.4286 15ZM9.28571 7.125V7.6875C9.28571 7.83668 9.22551 7.97976 9.11835 8.08525C9.01118 8.19074 8.86584 8.25 8.71429 8.25H8.14286V7.6875C8.14286 7.53832 8.20306 7.39524 8.31022 7.28975C8.41739 7.18426 8.56273 7.125 8.71429 7.125H9.28571ZM8.14286 21.75H8.71429C8.86584 21.75 9.01118 21.8093 9.11835 21.9148C9.22551 22.0202 9.28571 22.1633 9.28571 22.3125V22.875H8.71429C8.56273 22.875 8.41739 22.8157 8.31022 22.7102C8.20306 22.6048 8.14286 22.4617 8.14286 22.3125V21.75ZM17.2857 8.25H16.7143C16.5627 8.25 16.4174 8.19074 16.3102 8.08525C16.2031 7.97976 16.1429 7.83668 16.1429 7.6875V7.125H16.7143C16.8658 7.125 17.0112 7.18426 17.1183 7.28975C17.2255 7.39524 17.2857 7.53832 17.2857 7.6875V8.25Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON BILLETE -->\r\n<div *ngIf=\"icon == 'money-bills'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M22.5701 15.3242C22.7821 15.2135 22.8651 14.9523 22.7575 14.7402C22.6469 14.5281 22.3858 14.4451 22.1738 14.5527L18.8615 16.2617V14.8601L22.5701 12.945C22.7821 12.8344 22.8651 12.5731 22.7575 12.361C22.6469 12.1489 22.3858 12.0659 22.1738 12.1735L18.8615 13.8826V12.4778L22.5701 10.5628C22.8651 10.406 22.902 9.99104 22.5701 9.79124L17.6294 7.24299C17.5034 7.17844 17.356 7.17844 17.2331 7.24299L7.43463 12.3026C7.13659 12.4655 7.09358 12.8743 7.43463 13.0741L12.3753 15.6224C12.5197 15.69 12.6519 15.6839 12.7717 15.6224L15.6538 14.1346V15.5394L12.572 17.1286L7.831 14.6818C7.61899 14.5711 7.35782 14.6541 7.24721 14.8693C7.13659 15.0814 7.21955 15.3427 7.43463 15.4533L12.3753 18.0016C12.5105 18.0661 12.6426 18.0661 12.7717 18.0016L15.6538 16.5138V17.9155L12.572 19.5047L7.831 17.0579C7.61899 16.9472 7.35782 17.0302 7.24721 17.2454C7.13659 17.4575 7.21955 17.7188 7.43463 17.8294L12.3723 20.3807C12.4982 20.4422 12.6304 20.4453 12.7686 20.3807L15.6507 18.893V20.2977L12.572 21.8839L7.831 19.4371C7.61899 19.3264 7.35782 19.4094 7.24721 19.6246C7.13659 19.8367 7.21955 20.0979 7.43463 20.2086L12.3753 22.7568C12.5105 22.8214 12.6426 22.8214 12.7717 22.7568L22.5701 17.7003C22.7821 17.5897 22.8651 17.3284 22.7575 17.1163C22.6469 16.9042 22.3858 16.8212 22.1738 16.9288L18.8615 18.6378V17.2331L22.5701 15.3242ZM12.572 14.7494L8.57763 12.6868L11.1463 11.362L15.1406 13.4246L12.572 14.7494ZM12.0927 10.8732L13.4876 10.154L17.4789 12.2134L16.0839 12.9327L12.0927 10.8732ZM17.992 19.0866L16.5848 19.8121L16.5172 19.8459V13.6858L17.992 12.9235V19.0866ZM18.4283 11.7247L14.434 9.66213L17.4297 8.11597L21.424 10.1785L18.4283 11.7247Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M17.142 7.07081C17.3224 6.97606 17.5373 6.97704 17.7185 7.06986H17.7194L22.6597 9.61765L22.6711 9.62337L22.5701 9.79106L17.6298 7.24327C17.5039 7.17875 17.3563 7.17882 17.2335 7.24327L7.43488 12.3026C7.13684 12.4656 7.09383 12.8746 7.43488 13.0744L12.3751 15.6222C12.5195 15.6898 12.6517 15.6836 12.7715 15.6222L15.6537 14.1349V15.5393L12.5724 17.1286L7.83125 14.6818C7.61924 14.5711 7.35779 14.6543 7.24718 14.8695L7.21478 14.9505C7.1593 15.1442 7.24658 15.3567 7.43488 15.4535L12.3751 18.0013C12.5103 18.0659 12.6425 18.0659 12.7715 18.0013L15.6537 16.514V17.9156L12.5724 19.5049L7.83125 17.0581C7.61924 16.9474 7.35779 17.0306 7.24718 17.2458L7.21478 17.3268C7.1594 17.5204 7.24663 17.733 7.43488 17.8298L12.3723 20.3805C12.4983 20.442 12.6304 20.445 12.7687 20.3805L15.6509 18.8932V20.2976L12.5724 21.884L7.83125 19.4372C7.61924 19.3265 7.35779 19.4097 7.24718 19.6249L7.21478 19.7059C7.15938 19.8996 7.24662 20.1121 7.43488 20.209L12.3751 22.7568C12.5103 22.8213 12.6425 22.8212 12.7715 22.7568L22.5701 17.7002C22.7821 17.5896 22.8653 17.3283 22.7578 17.1162C22.6472 16.9042 22.3857 16.821 22.1737 16.9285L18.8618 18.6378V17.2334L22.5701 15.324C22.7821 15.2133 22.8653 14.952 22.7578 14.7399C22.6471 14.528 22.3857 14.4456 22.1737 14.5532L18.8618 16.2615V14.86L22.5701 12.9448C22.7821 12.8341 22.8653 12.5728 22.7578 12.3608C22.6471 12.1488 22.3857 12.0665 22.1737 12.174L18.8618 13.8824V12.478L22.5701 10.5628C22.8651 10.4061 22.9019 9.99086 22.5701 9.79106L22.6711 9.62432C23.1346 9.9036 23.0884 10.5085 22.6616 10.7353L22.6597 10.7362L19.0571 12.5961V13.5613L22.0842 12.0006L22.0851 11.9996C22.3539 11.8633 22.6769 11.9381 22.8607 12.1645L22.9303 12.2712L22.9312 12.2731C23.087 12.5803 22.9675 12.958 22.6606 13.1182H22.6597L19.0571 14.9781V15.9404L22.0842 14.3797L22.0851 14.3788C22.3539 14.2424 22.6769 14.3173 22.8607 14.5436L22.9303 14.6503L22.9312 14.6522C23.087 14.9594 22.9675 15.3371 22.6606 15.4974H22.6597L19.0571 17.3515V18.3167L22.0842 16.7551H22.0851C22.3539 16.6187 22.6769 16.6935 22.8607 16.9199L22.9303 17.0266L22.9312 17.0285C23.0869 17.3357 22.9675 17.7135 22.6606 17.8737H22.6597L12.8611 22.9302L12.8592 22.9311C12.6739 23.0238 12.4784 23.0224 12.2913 22.933L12.2856 22.9302L7.34532 20.3824C7.03493 20.2227 6.91414 19.844 7.07472 19.5353H7.07377C7.2335 19.2248 7.61305 19.1027 7.92176 19.2638H7.92081L12.5724 21.6639L15.4556 20.1785V19.2133L12.8582 20.5539L12.8515 20.5577C12.6606 20.6468 12.4662 20.6435 12.2865 20.5558L12.2827 20.5539L7.34532 18.0032C7.03493 17.8435 6.91416 17.4648 7.07472 17.1562H7.07377C7.23349 16.8456 7.61304 16.7235 7.92176 16.8847H7.92081L12.5724 19.2848L15.4584 17.7965V16.8342L12.8611 18.1747L12.8592 18.1767V18.1757C12.6739 18.2683 12.4784 18.2669 12.2913 18.1776L12.2856 18.1747L7.34532 15.627C7.03493 15.4672 6.91406 15.0885 7.07472 14.7799H7.07377C7.23329 14.4699 7.61144 14.3483 7.91986 14.5084L12.5724 16.9085L15.4584 15.4202V14.455L12.8611 15.7956V15.7966C12.6859 15.8864 12.4896 15.8918 12.2923 15.7994L12.2856 15.7956L7.34532 13.2478L7.33579 13.2431C7.10739 13.1092 6.99225 12.8915 7.0004 12.6676C7.00839 12.4484 7.13462 12.2442 7.34151 12.1311L7.34532 12.1292L17.142 7.07081ZM17.9919 19.0866L16.5846 19.8126L16.517 19.846V13.6861L17.9919 12.9239V19.0866ZM16.7123 13.8043V19.5268L17.7966 18.9675V13.244L16.7123 13.8043ZM15.1411 13.425L12.5724 14.7494L8.57729 12.6866L11.146 11.3622L15.1411 13.425ZM9.00224 12.6866L12.5724 14.5293L14.7152 13.4241L11.1451 11.5814L9.00224 12.6866ZM17.4793 12.2131L16.0844 12.9324L12.0931 10.8734L13.488 10.1541L17.4793 12.2131ZM12.5171 10.8734L16.0834 12.7123L17.0534 12.2121L13.4871 10.3732L12.5171 10.8734ZM21.4239 10.1788L18.4283 11.7252L14.4341 9.66243L17.4298 8.11604L21.4239 10.1788ZM14.8591 9.66243L18.4283 11.5051L20.998 10.1779L17.4288 8.33518L14.8591 9.66243Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M22.5701 15.3242C22.7821 15.2135 22.8651 14.9523 22.7575 14.7402C22.6469 14.5281 22.3858 14.4451 22.1738 14.5527L18.8615 16.2617V14.8601L22.5701 12.945C22.7821 12.8344 22.8651 12.5731 22.7575 12.361C22.6469 12.1489 22.3858 12.0659 22.1738 12.1735L18.8615 13.8826V12.4778L22.5701 10.5628C22.8651 10.406 22.902 9.99104 22.5701 9.79124L17.6294 7.24299C17.5034 7.17844 17.356 7.17844 17.2331 7.24299L7.43463 12.3026C7.13659 12.4655 7.09358 12.8743 7.43463 13.0741L12.3753 15.6224C12.5197 15.69 12.6519 15.6839 12.7717 15.6224L15.6538 14.1346V15.5394L12.572 17.1286L7.831 14.6818C7.61899 14.5711 7.35782 14.6541 7.24721 14.8693C7.13659 15.0814 7.21955 15.3427 7.43463 15.4533L12.3753 18.0016C12.5105 18.0661 12.6426 18.0661 12.7717 18.0016L15.6538 16.5138V17.9155L12.572 19.5047L7.831 17.0579C7.61899 16.9472 7.35782 17.0302 7.24721 17.2454C7.13659 17.4575 7.21955 17.7188 7.43463 17.8294L12.3723 20.3807C12.4982 20.4422 12.6304 20.4453 12.7686 20.3807L15.6507 18.893V20.2977L12.572 21.8839L7.831 19.4371C7.61899 19.3264 7.35782 19.4094 7.24721 19.6246C7.13659 19.8367 7.21955 20.0979 7.43463 20.2086L12.3753 22.7568C12.5105 22.8214 12.6426 22.8214 12.7717 22.7568L22.5701 17.7003C22.7821 17.5897 22.8651 17.3284 22.7575 17.1163C22.6469 16.9042 22.3858 16.8212 22.1738 16.9288L18.8615 18.6378V17.2331L22.5701 15.3242ZM12.572 14.7494L8.57763 12.6868L11.1463 11.362L15.1406 13.4246L12.572 14.7494ZM12.0927 10.8732L13.4876 10.154L17.4789 12.2134L16.0839 12.9327L12.0927 10.8732ZM17.992 19.0866L16.5848 19.8121L16.5172 19.8459V13.6858L17.992 12.9235V19.0866ZM18.4283 11.7247L14.434 9.66213L17.4297 8.11597L21.424 10.1785L18.4283 11.7247Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M17.142 7.07081C17.3224 6.97606 17.5373 6.97704 17.7185 7.06986H17.7194L22.6597 9.61765L22.6711 9.62337L22.5701 9.79106L17.6298 7.24327C17.5039 7.17875 17.3563 7.17882 17.2335 7.24327L7.43488 12.3026C7.13684 12.4656 7.09383 12.8746 7.43488 13.0744L12.3751 15.6222C12.5195 15.6898 12.6517 15.6836 12.7715 15.6222L15.6537 14.1349V15.5393L12.5724 17.1286L7.83125 14.6818C7.61924 14.5711 7.35779 14.6543 7.24718 14.8695L7.21478 14.9505C7.1593 15.1442 7.24658 15.3567 7.43488 15.4535L12.3751 18.0013C12.5103 18.0659 12.6425 18.0659 12.7715 18.0013L15.6537 16.514V17.9156L12.5724 19.5049L7.83125 17.0581C7.61924 16.9474 7.35779 17.0306 7.24718 17.2458L7.21478 17.3268C7.1594 17.5204 7.24663 17.733 7.43488 17.8298L12.3723 20.3805C12.4983 20.442 12.6304 20.445 12.7687 20.3805L15.6509 18.8932V20.2976L12.5724 21.884L7.83125 19.4372C7.61924 19.3265 7.35779 19.4097 7.24718 19.6249L7.21478 19.7059C7.15938 19.8996 7.24662 20.1121 7.43488 20.209L12.3751 22.7568C12.5103 22.8213 12.6425 22.8212 12.7715 22.7568L22.5701 17.7002C22.7821 17.5896 22.8653 17.3283 22.7578 17.1162C22.6472 16.9042 22.3857 16.821 22.1737 16.9285L18.8618 18.6378V17.2334L22.5701 15.324C22.7821 15.2133 22.8653 14.952 22.7578 14.7399C22.6471 14.528 22.3857 14.4456 22.1737 14.5532L18.8618 16.2615V14.86L22.5701 12.9448C22.7821 12.8341 22.8653 12.5728 22.7578 12.3608C22.6471 12.1488 22.3857 12.0665 22.1737 12.174L18.8618 13.8824V12.478L22.5701 10.5628C22.8651 10.4061 22.9019 9.99086 22.5701 9.79106L22.6711 9.62432C23.1346 9.9036 23.0884 10.5085 22.6616 10.7353L22.6597 10.7362L19.0571 12.5961V13.5613L22.0842 12.0006L22.0851 11.9996C22.3539 11.8633 22.6769 11.9381 22.8607 12.1645L22.9303 12.2712L22.9312 12.2731C23.087 12.5803 22.9675 12.958 22.6606 13.1182H22.6597L19.0571 14.9781V15.9404L22.0842 14.3797L22.0851 14.3788C22.3539 14.2424 22.6769 14.3173 22.8607 14.5436L22.9303 14.6503L22.9312 14.6522C23.087 14.9594 22.9675 15.3371 22.6606 15.4974H22.6597L19.0571 17.3515V18.3167L22.0842 16.7551H22.0851C22.3539 16.6187 22.6769 16.6935 22.8607 16.9199L22.9303 17.0266L22.9312 17.0285C23.0869 17.3357 22.9675 17.7135 22.6606 17.8737H22.6597L12.8611 22.9302L12.8592 22.9311C12.6739 23.0238 12.4784 23.0224 12.2913 22.933L12.2856 22.9302L7.34532 20.3824C7.03493 20.2227 6.91414 19.844 7.07472 19.5353H7.07377C7.2335 19.2248 7.61305 19.1027 7.92176 19.2638H7.92081L12.5724 21.6639L15.4556 20.1785V19.2133L12.8582 20.5539L12.8515 20.5577C12.6606 20.6468 12.4662 20.6435 12.2865 20.5558L12.2827 20.5539L7.34532 18.0032C7.03493 17.8435 6.91416 17.4648 7.07472 17.1562H7.07377C7.23349 16.8456 7.61304 16.7235 7.92176 16.8847H7.92081L12.5724 19.2848L15.4584 17.7965V16.8342L12.8611 18.1747L12.8592 18.1767V18.1757C12.6739 18.2683 12.4784 18.2669 12.2913 18.1776L12.2856 18.1747L7.34532 15.627C7.03493 15.4672 6.91406 15.0885 7.07472 14.7799H7.07377C7.23329 14.4699 7.61144 14.3483 7.91986 14.5084L12.5724 16.9085L15.4584 15.4202V14.455L12.8611 15.7956V15.7966C12.6859 15.8864 12.4896 15.8918 12.2923 15.7994L12.2856 15.7956L7.34532 13.2478L7.33579 13.2431C7.10739 13.1092 6.99225 12.8915 7.0004 12.6676C7.00839 12.4484 7.13462 12.2442 7.34151 12.1311L7.34532 12.1292L17.142 7.07081ZM17.9919 19.0866L16.5846 19.8126L16.517 19.846V13.6861L17.9919 12.9239V19.0866ZM16.7123 13.8043V19.5268L17.7966 18.9675V13.244L16.7123 13.8043ZM15.1411 13.425L12.5724 14.7494L8.57729 12.6866L11.146 11.3622L15.1411 13.425ZM9.00224 12.6866L12.5724 14.5293L14.7152 13.4241L11.1451 11.5814L9.00224 12.6866ZM17.4793 12.2131L16.0844 12.9324L12.0931 10.8734L13.488 10.1541L17.4793 12.2131ZM12.5171 10.8734L16.0834 12.7123L17.0534 12.2121L13.4871 10.3732L12.5171 10.8734ZM21.4239 10.1788L18.4283 11.7252L14.4341 9.66243L17.4298 8.11604L21.4239 10.1788ZM14.8591 9.66243L18.4283 11.5051L20.998 10.1779L17.4288 8.33518L14.8591 9.66243Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON PASTILLAS -->\r\n<div *ngIf=\"icon == 'pills'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M9.23077 7C8.10907 7.00116 7.03367 7.42295 6.24051 8.17285C5.44735 8.92274 5.00122 9.93949 5 11V19C5 21.2051 6.89769 23 9.23077 23C11.5638 23 13.4615 21.2051 13.4615 19V11C13.4615 8.79491 11.5638 7 9.23077 7ZM9.23077 8.45455C10.7154 8.45455 11.9231 9.59636 11.9231 11V14.2727H6.53846V11C6.53846 9.59636 7.74615 8.45455 9.23077 8.45455ZM20 13.5455C18.6745 13.5474 17.404 14.046 16.4667 14.9322C15.5295 15.8183 15.002 17.0196 15 18.2727C15 20.8793 17.2431 23 20 23C22.7569 23 25 20.8793 25 18.2727C25 15.6662 22.7569 13.5455 20 13.5455ZM20 15C21.9085 15 23.4615 16.4684 23.4615 18.2727C23.4615 18.912 23.26 19.504 22.9231 20.0087L18.1638 15.5084C18.7125 15.1777 19.3493 15.0014 20 15ZM6.53846 15.7273H11.9231V19C11.9231 20.4036 10.7154 21.5455 9.23077 21.5455C7.74615 21.5455 6.53846 20.4036 6.53846 19V15.7273ZM17.0769 16.5367L21.8362 21.0371C21.2875 21.3677 20.6507 21.544 20 21.5455C19.0823 21.5445 18.2024 21.1994 17.5534 20.5858C16.9045 19.9723 16.5395 19.1404 16.5385 18.2727C16.5385 17.6335 16.74 17.0415 17.0769 16.5367Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M9.23077 7C8.10907 7.00116 7.03367 7.42295 6.24051 8.17285C5.44735 8.92274 5.00122 9.93949 5 11V19C5 21.2051 6.89769 23 9.23077 23C11.5638 23 13.4615 21.2051 13.4615 19V11C13.4615 8.79491 11.5638 7 9.23077 7ZM9.23077 8.45455C10.7154 8.45455 11.9231 9.59636 11.9231 11V14.2727H6.53846V11C6.53846 9.59636 7.74615 8.45455 9.23077 8.45455ZM20 13.5455C18.6745 13.5474 17.404 14.046 16.4667 14.9322C15.5295 15.8183 15.002 17.0196 15 18.2727C15 20.8793 17.2431 23 20 23C22.7569 23 25 20.8793 25 18.2727C25 15.6662 22.7569 13.5455 20 13.5455ZM20 15C21.9085 15 23.4615 16.4684 23.4615 18.2727C23.4615 18.912 23.26 19.504 22.9231 20.0087L18.1638 15.5084C18.7125 15.1777 19.3493 15.0014 20 15ZM6.53846 15.7273H11.9231V19C11.9231 20.4036 10.7154 21.5455 9.23077 21.5455C7.74615 21.5455 6.53846 20.4036 6.53846 19V15.7273ZM17.0769 16.5367L21.8362 21.0371C21.2875 21.3677 20.6507 21.544 20 21.5455C19.0823 21.5445 18.2024 21.1994 17.5534 20.5858C16.9045 19.9723 16.5395 19.1404 16.5385 18.2727C16.5385 17.6335 16.74 17.0415 17.0769 16.5367Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON ALERGIAS -->\r\n<div *ngIf=\"icon == 'allergies'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.1244 6C14.2599 6 13.5424 6.62293 13.3274 7.44643C13.1073 7.35321 12.8755 7.28571 12.6242 7.28571C11.596 7.28571 10.749 8.15679 10.749 9.21429V16.125L10.2021 15.5625C9.8484 15.203 9.37115 15.0013 8.87385 15.0013C8.37656 15.0013 7.89931 15.203 7.54561 15.5625C7.19604 15.9263 7 16.4171 7 16.9286C7 17.44 7.19604 17.9309 7.54561 18.2946L11.7841 22.6539C12.5192 23.4073 13.5349 24 14.7337 24H17.6246C20.0342 24 22 21.9782 22 19.5V11.7857C22 10.7282 21.1531 9.85714 20.1248 9.85714C19.9112 9.85923 19.6996 9.90014 19.4998 9.978V9.21429C19.4998 8.15679 18.6528 7.28571 17.6246 7.28571C17.3733 7.28571 17.1415 7.35321 16.9214 7.44643C16.7064 6.62293 15.9889 6 15.1244 6ZM15.1244 7.28571C15.4782 7.28571 15.7495 7.56471 15.7495 7.92857V14.3571H16.9996V9.21429C16.9996 8.85043 17.2708 8.57143 17.6246 8.57143C17.9784 8.57143 18.2497 8.85043 18.2497 9.21429V14.3571H19.4998V11.7857C19.4998 11.4219 19.7711 11.1429 20.1248 11.1429C20.4786 11.1429 20.7499 11.4219 20.7499 11.7857V19.5C20.7499 21.2826 19.3579 22.7143 17.6246 22.7143H14.7337C13.938 22.7143 13.2542 22.3151 12.6829 21.7301L8.42444 17.3908C8.36529 17.3302 8.31835 17.2581 8.28633 17.1788C8.2543 17.0995 8.23781 17.0145 8.23781 16.9286C8.23781 16.8427 8.2543 16.7576 8.28633 16.6783C8.31835 16.599 8.36529 16.527 8.42444 16.4664C8.48338 16.4055 8.55342 16.3572 8.63054 16.3243C8.70766 16.2914 8.79035 16.2744 8.87385 16.2744C8.95736 16.2744 9.04005 16.2914 9.11717 16.3243C9.19429 16.3572 9.26433 16.4055 9.32327 16.4664L10.9247 18.1339L11.9991 19.239V9.21429C11.9991 8.85043 12.2704 8.57143 12.6242 8.57143C12.978 8.57143 13.2492 8.85043 13.2492 9.21429V14.3571H14.4993V7.92857C14.4993 7.56471 14.7706 7.28571 15.1244 7.28571ZM15.1244 15.6429C14.9586 15.6429 14.7996 15.7106 14.6824 15.8311C14.5652 15.9517 14.4993 16.1152 14.4993 16.2857C14.4993 16.4562 14.5652 16.6197 14.6824 16.7403C14.7996 16.8608 14.9586 16.9286 15.1244 16.9286C15.2902 16.9286 15.4492 16.8608 15.5664 16.7403C15.6836 16.6197 15.7495 16.4562 15.7495 16.2857C15.7495 16.1152 15.6836 15.9517 15.5664 15.8311C15.4492 15.7106 15.2902 15.6429 15.1244 15.6429ZM18.8747 15.6429C18.709 15.6429 18.55 15.7106 18.4327 15.8311C18.3155 15.9517 18.2497 16.1152 18.2497 16.2857C18.2497 16.4562 18.3155 16.6197 18.4327 16.7403C18.55 16.8608 18.709 16.9286 18.8747 16.9286C19.0405 16.9286 19.1995 16.8608 19.3167 16.7403C19.4339 16.6197 19.4998 16.4562 19.4998 16.2857C19.4998 16.1152 19.4339 15.9517 19.3167 15.8311C19.1995 15.7106 19.0405 15.6429 18.8747 15.6429ZM16.3745 17.5714C16.2087 17.5714 16.0497 17.6392 15.9325 17.7597C15.8153 17.8803 15.7495 18.0438 15.7495 18.2143C15.7495 18.3848 15.8153 18.5483 15.9325 18.6689C16.0497 18.7894 16.2087 18.8571 16.3745 18.8571C16.5403 18.8571 16.6993 18.7894 16.8165 18.6689C16.9337 18.5483 16.9996 18.3848 16.9996 18.2143C16.9996 18.0438 16.9337 17.8803 16.8165 17.7597C16.6993 17.6392 16.5403 17.5714 16.3745 17.5714ZM13.8743 18.2143C13.7085 18.2143 13.5495 18.282 13.4323 18.4026C13.3151 18.5231 13.2492 18.6866 13.2492 18.8571C13.2492 19.0276 13.3151 19.1912 13.4323 19.3117C13.5495 19.4323 13.7085 19.5 13.8743 19.5C14.0401 19.5 14.1991 19.4323 14.3163 19.3117C14.4335 19.1912 14.4993 19.0276 14.4993 18.8571C14.4993 18.6866 14.4335 18.5231 14.3163 18.4026C14.1991 18.282 14.0401 18.2143 13.8743 18.2143ZM18.8747 18.2143C18.709 18.2143 18.55 18.282 18.4327 18.4026C18.3155 18.5231 18.2497 18.6866 18.2497 18.8571C18.2497 19.0276 18.3155 19.1912 18.4327 19.3117C18.55 19.4323 18.709 19.5 18.8747 19.5C19.0405 19.5 19.1995 19.4323 19.3167 19.3117C19.4339 19.1912 19.4998 19.0276 19.4998 18.8571C19.4998 18.6866 19.4339 18.5231 19.3167 18.4026C19.1995 18.282 19.0405 18.2143 18.8747 18.2143ZM16.3745 20.1429C16.2087 20.1429 16.0497 20.2106 15.9325 20.3311C15.8153 20.4517 15.7495 20.6152 15.7495 20.7857C15.7495 20.9562 15.8153 21.1197 15.9325 21.2403C16.0497 21.3608 16.2087 21.4286 16.3745 21.4286C16.5403 21.4286 16.6993 21.3608 16.8165 21.2403C16.9337 21.1197 16.9996 20.9562 16.9996 20.7857C16.9996 20.6152 16.9337 20.4517 16.8165 20.3311C16.6993 20.2106 16.5403 20.1429 16.3745 20.1429Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M15.1244 6C14.2599 6 13.5424 6.62293 13.3274 7.44643C13.1073 7.35321 12.8755 7.28571 12.6242 7.28571C11.596 7.28571 10.749 8.15679 10.749 9.21429V16.125L10.2021 15.5625C9.8484 15.203 9.37115 15.0013 8.87385 15.0013C8.37656 15.0013 7.89931 15.203 7.54561 15.5625C7.19604 15.9263 7 16.4171 7 16.9286C7 17.44 7.19604 17.9309 7.54561 18.2946L11.7841 22.6539C12.5192 23.4073 13.5349 24 14.7337 24H17.6246C20.0342 24 22 21.9782 22 19.5V11.7857C22 10.7282 21.1531 9.85714 20.1248 9.85714C19.9112 9.85923 19.6996 9.90014 19.4998 9.978V9.21429C19.4998 8.15679 18.6528 7.28571 17.6246 7.28571C17.3733 7.28571 17.1415 7.35321 16.9214 7.44643C16.7064 6.62293 15.9889 6 15.1244 6ZM15.1244 7.28571C15.4782 7.28571 15.7495 7.56471 15.7495 7.92857V14.3571H16.9996V9.21429C16.9996 8.85043 17.2708 8.57143 17.6246 8.57143C17.9784 8.57143 18.2497 8.85043 18.2497 9.21429V14.3571H19.4998V11.7857C19.4998 11.4219 19.7711 11.1429 20.1248 11.1429C20.4786 11.1429 20.7499 11.4219 20.7499 11.7857V19.5C20.7499 21.2826 19.3579 22.7143 17.6246 22.7143H14.7337C13.938 22.7143 13.2542 22.3151 12.6829 21.7301L8.42444 17.3908C8.36529 17.3302 8.31835 17.2581 8.28633 17.1788C8.2543 17.0995 8.23781 17.0145 8.23781 16.9286C8.23781 16.8427 8.2543 16.7576 8.28633 16.6783C8.31835 16.599 8.36529 16.527 8.42444 16.4664C8.48338 16.4055 8.55342 16.3572 8.63054 16.3243C8.70766 16.2914 8.79035 16.2744 8.87385 16.2744C8.95736 16.2744 9.04005 16.2914 9.11717 16.3243C9.19429 16.3572 9.26433 16.4055 9.32327 16.4664L10.9247 18.1339L11.9991 19.239V9.21429C11.9991 8.85043 12.2704 8.57143 12.6242 8.57143C12.978 8.57143 13.2492 8.85043 13.2492 9.21429V14.3571H14.4993V7.92857C14.4993 7.56471 14.7706 7.28571 15.1244 7.28571ZM15.1244 15.6429C14.9586 15.6429 14.7996 15.7106 14.6824 15.8311C14.5652 15.9517 14.4993 16.1152 14.4993 16.2857C14.4993 16.4562 14.5652 16.6197 14.6824 16.7403C14.7996 16.8608 14.9586 16.9286 15.1244 16.9286C15.2902 16.9286 15.4492 16.8608 15.5664 16.7403C15.6836 16.6197 15.7495 16.4562 15.7495 16.2857C15.7495 16.1152 15.6836 15.9517 15.5664 15.8311C15.4492 15.7106 15.2902 15.6429 15.1244 15.6429ZM18.8747 15.6429C18.709 15.6429 18.55 15.7106 18.4327 15.8311C18.3155 15.9517 18.2497 16.1152 18.2497 16.2857C18.2497 16.4562 18.3155 16.6197 18.4327 16.7403C18.55 16.8608 18.709 16.9286 18.8747 16.9286C19.0405 16.9286 19.1995 16.8608 19.3167 16.7403C19.4339 16.6197 19.4998 16.4562 19.4998 16.2857C19.4998 16.1152 19.4339 15.9517 19.3167 15.8311C19.1995 15.7106 19.0405 15.6429 18.8747 15.6429ZM16.3745 17.5714C16.2087 17.5714 16.0497 17.6392 15.9325 17.7597C15.8153 17.8803 15.7495 18.0438 15.7495 18.2143C15.7495 18.3848 15.8153 18.5483 15.9325 18.6689C16.0497 18.7894 16.2087 18.8571 16.3745 18.8571C16.5403 18.8571 16.6993 18.7894 16.8165 18.6689C16.9337 18.5483 16.9996 18.3848 16.9996 18.2143C16.9996 18.0438 16.9337 17.8803 16.8165 17.7597C16.6993 17.6392 16.5403 17.5714 16.3745 17.5714ZM13.8743 18.2143C13.7085 18.2143 13.5495 18.282 13.4323 18.4026C13.3151 18.5231 13.2492 18.6866 13.2492 18.8571C13.2492 19.0276 13.3151 19.1912 13.4323 19.3117C13.5495 19.4323 13.7085 19.5 13.8743 19.5C14.0401 19.5 14.1991 19.4323 14.3163 19.3117C14.4335 19.1912 14.4993 19.0276 14.4993 18.8571C14.4993 18.6866 14.4335 18.5231 14.3163 18.4026C14.1991 18.282 14.0401 18.2143 13.8743 18.2143ZM18.8747 18.2143C18.709 18.2143 18.55 18.282 18.4327 18.4026C18.3155 18.5231 18.2497 18.6866 18.2497 18.8571C18.2497 19.0276 18.3155 19.1912 18.4327 19.3117C18.55 19.4323 18.709 19.5 18.8747 19.5C19.0405 19.5 19.1995 19.4323 19.3167 19.3117C19.4339 19.1912 19.4998 19.0276 19.4998 18.8571C19.4998 18.6866 19.4339 18.5231 19.3167 18.4026C19.1995 18.282 19.0405 18.2143 18.8747 18.2143ZM16.3745 20.1429C16.2087 20.1429 16.0497 20.2106 15.9325 20.3311C15.8153 20.4517 15.7495 20.6152 15.7495 20.7857C15.7495 20.9562 15.8153 21.1197 15.9325 21.2403C16.0497 21.3608 16.2087 21.4286 16.3745 21.4286C16.5403 21.4286 16.6993 21.3608 16.8165 21.2403C16.9337 21.1197 16.9996 20.9562 16.9996 20.7857C16.9996 20.6152 16.9337 20.4517 16.8165 20.3311C16.6993 20.2106 16.5403 20.1429 16.3745 20.1429Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON HISTORIA CL\u00CDNICA -->\r\n<div *ngIf=\"icon == 'medical-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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M9.31329 17.6245C9.31329 17.5085 9.35938 17.3972 9.44142 17.3152C9.52345 17.2332 9.63472 17.1871 9.75073 17.1871H15.8749C15.9909 17.1871 16.1022 17.2332 16.1842 17.3152C16.2662 17.3972 16.3123 17.5085 16.3123 17.6245C16.3123 17.7405 16.2662 17.8518 16.1842 17.9338C16.1022 18.0159 15.9909 18.0619 15.8749 18.0619H9.75073C9.63472 18.0619 9.52345 18.0159 9.44142 17.9338C9.35938 17.8518 9.31329 17.7405 9.31329 17.6245ZM9.75073 19.3743C9.63472 19.3743 9.52345 19.4203 9.44142 19.5024C9.35938 19.5844 9.31329 19.6957 9.31329 19.8117C9.31329 19.9277 9.35938 20.039 9.44142 20.121C9.52345 20.2031 9.63472 20.2491 9.75073 20.2491H15.8749C15.9909 20.2491 16.1022 20.2031 16.1842 20.121C16.2662 20.039 16.3123 19.9277 16.3123 19.8117C16.3123 19.6957 16.2662 19.5844 16.1842 19.5024C16.1022 19.4203 15.9909 19.3743 15.8749 19.3743H9.75073ZM10.6256 13.6876V12.3752H11.5005V13.6876H12.8128V14.5624H11.5005V15.8748H10.6256V14.5624H9.31329V13.6876H10.6256Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.063 7.12598C10.715 7.12598 10.3812 7.26424 10.1351 7.51034C9.88899 7.75645 9.75073 8.09024 9.75073 8.43829H8.43841C8.09037 8.43829 7.75657 8.57655 7.51047 8.82266C7.26436 9.06877 7.1261 9.40256 7.1261 9.75061V21.5614C7.1261 21.9095 7.26436 22.2433 7.51047 22.4894C7.75657 22.7355 8.09037 22.8738 8.43841 22.8738H17.1872C17.5352 22.8738 17.869 22.7355 18.1151 22.4894C18.3612 22.2433 18.4995 21.9095 18.4995 21.5614V9.75061C18.4995 9.40256 18.3612 9.06877 18.1151 8.82266C17.869 8.57655 17.5352 8.43829 17.1872 8.43829H15.8749C15.8749 8.09024 15.7366 7.75645 15.4905 7.51034C15.2444 7.26424 14.9106 7.12598 14.5626 7.12598H11.063ZM14.5626 9.75061C14.6786 9.75061 14.7898 9.70452 14.8719 9.62248C14.9539 9.54045 15 9.42919 15 9.31317V8.43829C15 8.32228 14.9539 8.21101 14.8719 8.12898C14.7898 8.04694 14.6786 8.00085 14.5626 8.00085H11.063C10.947 8.00085 10.8358 8.04694 10.7537 8.12898C10.6717 8.21101 10.6256 8.32228 10.6256 8.43829V9.31317C10.6256 9.42919 10.6717 9.54045 10.7537 9.62248C10.8358 9.70452 10.947 9.75061 11.063 9.75061H14.5626ZM9.75073 9.31317C9.75073 9.66122 9.88899 9.99501 10.1351 10.2411C10.3812 10.4872 10.715 10.6255 11.063 10.6255H14.5626C14.9106 10.6255 15.2444 10.4872 15.4905 10.2411C15.7366 9.99501 15.8749 9.66122 15.8749 9.31317H17.1872C17.3032 9.31317 17.4145 9.35926 17.4965 9.44129C17.5785 9.52333 17.6246 9.63459 17.6246 9.75061V21.5614C17.6246 21.6775 17.5785 21.7887 17.4965 21.8708C17.4145 21.9528 17.3032 21.9989 17.1872 21.9989H8.43841C8.3224 21.9989 8.21113 21.9528 8.1291 21.8708C8.04706 21.7887 8.00098 21.6775 8.00098 21.5614V9.75061C8.00098 9.63459 8.04706 9.52333 8.1291 9.44129C8.21113 9.35926 8.3224 9.31317 8.43841 9.31317H9.75073ZM20.2493 11.9378C20.2493 11.5898 20.3875 11.256 20.6336 11.0099C20.8797 10.7637 21.2135 10.6255 21.5616 10.6255C21.9096 10.6255 22.2434 10.7637 22.4895 11.0099C22.7356 11.256 22.8739 11.5898 22.8739 11.9378V20.8191L21.5616 22.7876L20.2493 20.8191V11.9378ZM21.5616 11.5004C21.4456 11.5004 21.3343 11.5464 21.2523 11.6285C21.1702 11.7105 21.1241 11.8218 21.1241 11.9378V12.8127H21.999V11.9378C21.999 11.8218 21.9529 11.7105 21.8709 11.6285C21.7889 11.5464 21.6776 11.5004 21.5616 11.5004ZM21.5616 21.2102L21.999 20.554V13.6876H21.1241V20.554L21.5616 21.2102Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M14.5626 7C14.944 7.00002 15.3098 7.1517 15.5795 7.42138C15.8194 7.66131 15.9653 7.97735 15.9947 8.31273H17.1875C17.5688 8.3128 17.9346 8.46386 18.2043 8.73349C18.474 9.00322 18.6257 9.36948 18.6257 9.75094V21.5618C18.6256 21.9432 18.474 22.3089 18.2043 22.5786C17.9346 22.8483 17.5688 22.9999 17.1875 23H8.43822C8.05683 22.9999 7.69106 22.8483 7.42138 22.5786C7.15169 22.3089 7.00005 21.9432 7 21.5618V9.75094C7 9.36948 7.15164 9.00322 7.42138 8.73349C7.69105 8.46387 8.05688 8.31278 8.43822 8.31273H9.63099C9.66041 7.97736 9.80628 7.66131 10.0462 7.42138C10.3159 7.15171 10.6816 7 11.0631 7H14.5626ZM21.5618 10.4996C21.9432 10.4996 22.3089 10.6513 22.5786 10.921C22.8483 11.1907 23 11.5564 23 11.9378V20.8193C23 20.8442 22.9923 20.8687 22.9785 20.8894L21.6664 22.8579C21.643 22.8928 21.6037 22.9138 21.5618 22.9139C21.5197 22.9139 21.48 22.8929 21.4566 22.8579L20.1445 20.8894C20.1307 20.8687 20.1236 20.8442 20.1236 20.8193V11.9378C20.1236 11.5564 20.2747 11.1906 20.5443 10.921C20.8141 10.6512 21.1803 10.4996 21.5618 10.4996ZM11.0631 7.12611C10.7151 7.12611 10.3815 7.26453 10.1354 7.51057C9.88935 7.75663 9.751 8.09024 9.75094 8.43822H8.43822C8.09029 8.43827 7.75662 8.57669 7.51057 8.82268C7.26447 9.06879 7.12611 9.40289 7.12611 9.75094V21.5618C7.12616 21.9098 7.26451 22.2434 7.51057 22.4894C7.75663 22.7355 8.09024 22.8738 8.43822 22.8739H17.1875C17.5354 22.8738 17.8691 22.7355 18.1151 22.4894C18.3611 22.2434 18.4995 21.9097 18.4996 21.5618V9.75094C18.4996 9.40289 18.3612 9.06879 18.1151 8.82268C17.8691 8.57668 17.5354 8.43829 17.1875 8.43822H15.8747C15.8747 8.09024 15.7363 7.75663 15.4903 7.51057C15.2442 7.26452 14.9106 7.12612 14.5626 7.12611H11.0631ZM21.5618 10.6257C21.2137 10.6257 20.8796 10.764 20.6335 11.0101C20.3875 11.2562 20.2491 11.5899 20.2491 11.9378V20.8193L21.5618 22.7878L22.8739 20.8193V11.9378C22.8739 11.5898 22.7355 11.2562 22.4894 11.0101C22.2434 10.7641 21.9098 10.6257 21.5618 10.6257ZM9.75094 9.31357C9.75101 9.66152 9.88937 9.99517 10.1354 10.2412C10.3815 10.4872 10.7151 10.6257 11.0631 10.6257H14.5626C14.9106 10.6257 15.2442 10.4872 15.4903 10.2412C15.7363 9.99517 15.8747 9.66152 15.8747 9.31357H17.1875C17.3034 9.31364 17.4143 9.35959 17.4963 9.44152C17.5783 9.52356 17.6248 9.63493 17.6248 9.75094V21.5618C17.6248 21.6777 17.5782 21.7886 17.4963 21.8706C17.4143 21.9526 17.3034 21.9991 17.1875 21.9992H8.43822C8.32227 21.9991 8.2114 21.9526 8.12941 21.8706C8.04742 21.7886 8.0009 21.6777 8.00085 21.5618V9.75094C8.00085 9.63493 8.04738 9.52356 8.12941 9.44152C8.21139 9.3596 8.32232 9.31363 8.43822 9.31357H9.75094ZM8.43822 9.43906C8.35569 9.43912 8.27635 9.47236 8.21799 9.53072C8.15971 9.58911 8.12695 9.66844 8.12695 9.75094V21.5618C8.12701 21.6443 8.15963 21.7236 8.21799 21.782C8.27635 21.8404 8.35569 21.873 8.43822 21.873H17.1875C17.27 21.873 17.3493 21.8404 17.4077 21.782C17.466 21.7236 17.4987 21.6443 17.4987 21.5618V9.75094C17.4987 9.66845 17.4659 9.58911 17.4077 9.53072C17.3493 9.47237 17.27 9.43913 17.1875 9.43906H15.9947C15.9653 9.77441 15.8194 10.0905 15.5795 10.3304C15.3098 10.6001 14.944 10.7518 14.5626 10.7518H11.0631C10.6817 10.7518 10.3159 10.6001 10.0462 10.3304C9.8063 10.0905 9.66043 9.77441 9.63099 9.43906H8.43822ZM21.9992 13.6879V20.5542L21.5618 21.2105L21.1244 20.5542V13.6879H21.9992ZM21.2499 20.5154L21.5612 20.9829L21.873 20.5154V13.8134H21.2499V20.5154ZM21.5618 11.5004C21.6776 11.5005 21.7886 11.5466 21.8706 11.6284C21.9526 11.7104 21.9991 11.8218 21.9992 11.9378V12.8125H21.1244V11.9378C21.1245 11.8218 21.1704 11.7104 21.2524 11.6284C21.3344 11.5464 21.4458 11.5004 21.5618 11.5004ZM21.5618 11.6265C21.4793 11.6265 21.4 11.6593 21.3416 11.7176C21.2832 11.7759 21.2499 11.8552 21.2499 11.9378V12.687H21.873V11.9378C21.873 11.8553 21.8404 11.7759 21.782 11.7176C21.7236 11.6592 21.6443 11.6266 21.5618 11.6265ZM14.5626 8.00085C14.6786 8.00086 14.79 8.04739 14.872 8.12941C14.9539 8.21138 14.9999 8.32239 15 8.43822V9.31357C14.9999 9.42939 14.9539 9.54042 14.872 9.62238C14.79 9.7044 14.6786 9.75092 14.5626 9.75094H11.0631C10.947 9.75094 10.8357 9.70441 10.7536 9.62238C10.6718 9.54042 10.6258 9.42941 10.6257 9.31357V8.43822C10.6257 8.32237 10.6718 8.21138 10.7536 8.12941C10.8357 8.04738 10.947 8.00085 11.0631 8.00085H14.5626ZM11.0631 8.12695C10.9805 8.12695 10.9012 8.15965 10.8428 8.21799C10.7845 8.27635 10.7518 8.35569 10.7518 8.43822V9.31357C10.7519 9.39608 10.7845 9.47545 10.8428 9.53379C10.9012 9.59212 10.9805 9.62484 11.0631 9.62484H14.5626C14.6452 9.62482 14.7245 9.59212 14.7829 9.53379C14.8412 9.47545 14.8738 9.39608 14.8739 9.31357V8.43822C14.8738 8.35569 14.8412 8.27635 14.7829 8.21799C14.7245 8.15964 14.6452 8.12697 14.5626 8.12695H11.0631Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M9.31329 17.6245C9.31329 17.5085 9.35938 17.3972 9.44142 17.3152C9.52345 17.2332 9.63472 17.1871 9.75073 17.1871H15.8749C15.9909 17.1871 16.1022 17.2332 16.1842 17.3152C16.2662 17.3972 16.3123 17.5085 16.3123 17.6245C16.3123 17.7405 16.2662 17.8518 16.1842 17.9338C16.1022 18.0159 15.9909 18.0619 15.8749 18.0619H9.75073C9.63472 18.0619 9.52345 18.0159 9.44142 17.9338C9.35938 17.8518 9.31329 17.7405 9.31329 17.6245ZM9.75073 19.3743C9.63472 19.3743 9.52345 19.4203 9.44142 19.5024C9.35938 19.5844 9.31329 19.6957 9.31329 19.8117C9.31329 19.9277 9.35938 20.039 9.44142 20.121C9.52345 20.2031 9.63472 20.2491 9.75073 20.2491H15.8749C15.9909 20.2491 16.1022 20.2031 16.1842 20.121C16.2662 20.039 16.3123 19.9277 16.3123 19.8117C16.3123 19.6957 16.2662 19.5844 16.1842 19.5024C16.1022 19.4203 15.9909 19.3743 15.8749 19.3743H9.75073ZM10.6256 13.6876V12.3752H11.5005V13.6876H12.8128V14.5624H11.5005V15.8748H10.6256V14.5624H9.31329V13.6876H10.6256Z\"/>\r\n <path [attr.fill]=\"color\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.063 7.12598C10.715 7.12598 10.3812 7.26424 10.1351 7.51034C9.88899 7.75645 9.75073 8.09024 9.75073 8.43829H8.43841C8.09037 8.43829 7.75657 8.57655 7.51047 8.82266C7.26436 9.06877 7.1261 9.40256 7.1261 9.75061V21.5614C7.1261 21.9095 7.26436 22.2433 7.51047 22.4894C7.75657 22.7355 8.09037 22.8738 8.43841 22.8738H17.1872C17.5352 22.8738 17.869 22.7355 18.1151 22.4894C18.3612 22.2433 18.4995 21.9095 18.4995 21.5614V9.75061C18.4995 9.40256 18.3612 9.06877 18.1151 8.82266C17.869 8.57655 17.5352 8.43829 17.1872 8.43829H15.8749C15.8749 8.09024 15.7366 7.75645 15.4905 7.51034C15.2444 7.26424 14.9106 7.12598 14.5626 7.12598H11.063ZM14.5626 9.75061C14.6786 9.75061 14.7898 9.70452 14.8719 9.62248C14.9539 9.54045 15 9.42919 15 9.31317V8.43829C15 8.32228 14.9539 8.21101 14.8719 8.12898C14.7898 8.04694 14.6786 8.00085 14.5626 8.00085H11.063C10.947 8.00085 10.8358 8.04694 10.7537 8.12898C10.6717 8.21101 10.6256 8.32228 10.6256 8.43829V9.31317C10.6256 9.42919 10.6717 9.54045 10.7537 9.62248C10.8358 9.70452 10.947 9.75061 11.063 9.75061H14.5626ZM9.75073 9.31317C9.75073 9.66122 9.88899 9.99501 10.1351 10.2411C10.3812 10.4872 10.715 10.6255 11.063 10.6255H14.5626C14.9106 10.6255 15.2444 10.4872 15.4905 10.2411C15.7366 9.99501 15.8749 9.66122 15.8749 9.31317H17.1872C17.3032 9.31317 17.4145 9.35926 17.4965 9.44129C17.5785 9.52333 17.6246 9.63459 17.6246 9.75061V21.5614C17.6246 21.6775 17.5785 21.7887 17.4965 21.8708C17.4145 21.9528 17.3032 21.9989 17.1872 21.9989H8.43841C8.3224 21.9989 8.21113 21.9528 8.1291 21.8708C8.04706 21.7887 8.00098 21.6775 8.00098 21.5614V9.75061C8.00098 9.63459 8.04706 9.52333 8.1291 9.44129C8.21113 9.35926 8.3224 9.31317 8.43841 9.31317H9.75073ZM20.2493 11.9378C20.2493 11.5898 20.3875 11.256 20.6336 11.0099C20.8797 10.7637 21.2135 10.6255 21.5616 10.6255C21.9096 10.6255 22.2434 10.7637 22.4895 11.0099C22.7356 11.256 22.8739 11.5898 22.8739 11.9378V20.8191L21.5616 22.7876L20.2493 20.8191V11.9378ZM21.5616 11.5004C21.4456 11.5004 21.3343 11.5464 21.2523 11.6285C21.1702 11.7105 21.1241 11.8218 21.1241 11.9378V12.8127H21.999V11.9378C21.999 11.8218 21.9529 11.7105 21.8709 11.6285C21.7889 11.5464 21.6776 11.5004 21.5616 11.5004ZM21.5616 21.2102L21.999 20.554V13.6876H21.1241V20.554L21.5616 21.2102Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M14.5626 7C14.944 7.00002 15.3098 7.1517 15.5795 7.42138C15.8194 7.66131 15.9653 7.97735 15.9947 8.31273H17.1875C17.5688 8.3128 17.9346 8.46386 18.2043 8.73349C18.474 9.00322 18.6257 9.36948 18.6257 9.75094V21.5618C18.6256 21.9432 18.474 22.3089 18.2043 22.5786C17.9346 22.8483 17.5688 22.9999 17.1875 23H8.43822C8.05683 22.9999 7.69106 22.8483 7.42138 22.5786C7.15169 22.3089 7.00005 21.9432 7 21.5618V9.75094C7 9.36948 7.15164 9.00322 7.42138 8.73349C7.69105 8.46387 8.05688 8.31278 8.43822 8.31273H9.63099C9.66041 7.97736 9.80628 7.66131 10.0462 7.42138C10.3159 7.15171 10.6816 7 11.0631 7H14.5626ZM21.5618 10.4996C21.9432 10.4996 22.3089 10.6513 22.5786 10.921C22.8483 11.1907 23 11.5564 23 11.9378V20.8193C23 20.8442 22.9923 20.8687 22.9785 20.8894L21.6664 22.8579C21.643 22.8928 21.6037 22.9138 21.5618 22.9139C21.5197 22.9139 21.48 22.8929 21.4566 22.8579L20.1445 20.8894C20.1307 20.8687 20.1236 20.8442 20.1236 20.8193V11.9378C20.1236 11.5564 20.2747 11.1906 20.5443 10.921C20.8141 10.6512 21.1803 10.4996 21.5618 10.4996ZM11.0631 7.12611C10.7151 7.12611 10.3815 7.26453 10.1354 7.51057C9.88935 7.75663 9.751 8.09024 9.75094 8.43822H8.43822C8.09029 8.43827 7.75662 8.57669 7.51057 8.82268C7.26447 9.06879 7.12611 9.40289 7.12611 9.75094V21.5618C7.12616 21.9098 7.26451 22.2434 7.51057 22.4894C7.75663 22.7355 8.09024 22.8738 8.43822 22.8739H17.1875C17.5354 22.8738 17.8691 22.7355 18.1151 22.4894C18.3611 22.2434 18.4995 21.9097 18.4996 21.5618V9.75094C18.4996 9.40289 18.3612 9.06879 18.1151 8.82268C17.8691 8.57668 17.5354 8.43829 17.1875 8.43822H15.8747C15.8747 8.09024 15.7363 7.75663 15.4903 7.51057C15.2442 7.26452 14.9106 7.12612 14.5626 7.12611H11.0631ZM21.5618 10.6257C21.2137 10.6257 20.8796 10.764 20.6335 11.0101C20.3875 11.2562 20.2491 11.5899 20.2491 11.9378V20.8193L21.5618 22.7878L22.8739 20.8193V11.9378C22.8739 11.5898 22.7355 11.2562 22.4894 11.0101C22.2434 10.7641 21.9098 10.6257 21.5618 10.6257ZM9.75094 9.31357C9.75101 9.66152 9.88937 9.99517 10.1354 10.2412C10.3815 10.4872 10.7151 10.6257 11.0631 10.6257H14.5626C14.9106 10.6257 15.2442 10.4872 15.4903 10.2412C15.7363 9.99517 15.8747 9.66152 15.8747 9.31357H17.1875C17.3034 9.31364 17.4143 9.35959 17.4963 9.44152C17.5783 9.52356 17.6248 9.63493 17.6248 9.75094V21.5618C17.6248 21.6777 17.5782 21.7886 17.4963 21.8706C17.4143 21.9526 17.3034 21.9991 17.1875 21.9992H8.43822C8.32227 21.9991 8.2114 21.9526 8.12941 21.8706C8.04742 21.7886 8.0009 21.6777 8.00085 21.5618V9.75094C8.00085 9.63493 8.04738 9.52356 8.12941 9.44152C8.21139 9.3596 8.32232 9.31363 8.43822 9.31357H9.75094ZM8.43822 9.43906C8.35569 9.43912 8.27635 9.47236 8.21799 9.53072C8.15971 9.58911 8.12695 9.66844 8.12695 9.75094V21.5618C8.12701 21.6443 8.15963 21.7236 8.21799 21.782C8.27635 21.8404 8.35569 21.873 8.43822 21.873H17.1875C17.27 21.873 17.3493 21.8404 17.4077 21.782C17.466 21.7236 17.4987 21.6443 17.4987 21.5618V9.75094C17.4987 9.66845 17.4659 9.58911 17.4077 9.53072C17.3493 9.47237 17.27 9.43913 17.1875 9.43906H15.9947C15.9653 9.77441 15.8194 10.0905 15.5795 10.3304C15.3098 10.6001 14.944 10.7518 14.5626 10.7518H11.0631C10.6817 10.7518 10.3159 10.6001 10.0462 10.3304C9.8063 10.0905 9.66043 9.77441 9.63099 9.43906H8.43822ZM21.9992 13.6879V20.5542L21.5618 21.2105L21.1244 20.5542V13.6879H21.9992ZM21.2499 20.5154L21.5612 20.9829L21.873 20.5154V13.8134H21.2499V20.5154ZM21.5618 11.5004C21.6776 11.5005 21.7886 11.5466 21.8706 11.6284C21.9526 11.7104 21.9991 11.8218 21.9992 11.9378V12.8125H21.1244V11.9378C21.1245 11.8218 21.1704 11.7104 21.2524 11.6284C21.3344 11.5464 21.4458 11.5004 21.5618 11.5004ZM21.5618 11.6265C21.4793 11.6265 21.4 11.6593 21.3416 11.7176C21.2832 11.7759 21.2499 11.8552 21.2499 11.9378V12.687H21.873V11.9378C21.873 11.8553 21.8404 11.7759 21.782 11.7176C21.7236 11.6592 21.6443 11.6266 21.5618 11.6265ZM14.5626 8.00085C14.6786 8.00086 14.79 8.04739 14.872 8.12941C14.9539 8.21138 14.9999 8.32239 15 8.43822V9.31357C14.9999 9.42939 14.9539 9.54042 14.872 9.62238C14.79 9.7044 14.6786 9.75092 14.5626 9.75094H11.0631C10.947 9.75094 10.8357 9.70441 10.7536 9.62238C10.6718 9.54042 10.6258 9.42941 10.6257 9.31357V8.43822C10.6257 8.32237 10.6718 8.21138 10.7536 8.12941C10.8357 8.04738 10.947 8.00085 11.0631 8.00085H14.5626ZM11.0631 8.12695C10.9805 8.12695 10.9012 8.15965 10.8428 8.21799C10.7845 8.27635 10.7518 8.35569 10.7518 8.43822V9.31357C10.7519 9.39608 10.7845 9.47545 10.8428 9.53379C10.9012 9.59212 10.9805 9.62484 11.0631 9.62484H14.5626C14.6452 9.62482 14.7245 9.59212 14.7829 9.53379C14.8412 9.47545 14.8738 9.39608 14.8739 9.31357V8.43822C14.8738 8.35569 14.8412 8.27635 14.7829 8.21799C14.7245 8.15964 14.6452 8.12697 14.5626 8.12695H11.0631Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON SALA -->\r\n<div *ngIf=\"icon == 'hall'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M13.9684 6.00255L14.0559 6.017L21.4934 7.717C21.6224 7.74634 21.7394 7.81296 21.8287 7.90809C21.918 8.00322 21.9756 8.12241 21.9939 8.24995L22 8.3375V20.6625C22.0001 20.7913 21.96 20.9171 21.885 21.0233C21.81 21.1295 21.7037 21.2112 21.58 21.2575L21.4943 21.283L14.0567 22.983C13.9678 23.0034 13.8754 23.0055 13.7855 22.9891C13.6957 22.9728 13.6103 22.9384 13.5349 22.8881C13.4595 22.8379 13.3958 22.7729 13.3478 22.6973C13.2998 22.6217 13.2686 22.5372 13.2561 22.4492L13.25 22.3625V6.6375C13.2499 6.47233 13.3158 6.31356 13.4338 6.19464C13.5518 6.07573 13.7127 6.00595 13.8826 6L13.9684 6.00255ZM14.5625 7.44245V21.5576L20.6875 20.1576V8.8424L14.5625 7.44245ZM12.375 7.7V8.975H9.3125V20.025H12.375V21.3H8.65625C8.49767 21.3 8.34445 21.2442 8.22494 21.143C8.10542 21.0417 8.02769 20.9018 8.00612 20.7492L8 20.6625V8.3375C8.00001 8.18345 8.05744 8.03461 8.16167 7.91851C8.26591 7.80241 8.40989 7.7269 8.567 7.70595L8.65625 7.7H12.375ZM16.75 13.65C16.9821 13.65 17.2046 13.7396 17.3687 13.899C17.5328 14.0584 17.625 14.2746 17.625 14.5C17.625 14.7254 17.5328 14.9416 17.3687 15.101C17.2046 15.2605 16.9821 15.35 16.75 15.35C16.5179 15.35 16.2954 15.2605 16.1313 15.101C15.9672 14.9416 15.875 14.7254 15.875 14.5C15.875 14.2746 15.9672 14.0584 16.1313 13.899C16.2954 13.7396 16.5179 13.65 16.75 13.65Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M13.9684 6.00255L14.0559 6.017L21.4934 7.717C21.6224 7.74634 21.7394 7.81296 21.8287 7.90809C21.918 8.00322 21.9756 8.12241 21.9939 8.24995L22 8.3375V20.6625C22.0001 20.7913 21.96 20.9171 21.885 21.0233C21.81 21.1295 21.7037 21.2112 21.58 21.2575L21.4943 21.283L14.0567 22.983C13.9678 23.0034 13.8754 23.0055 13.7855 22.9891C13.6957 22.9728 13.6103 22.9384 13.5349 22.8881C13.4595 22.8379 13.3958 22.7729 13.3478 22.6973C13.2998 22.6217 13.2686 22.5372 13.2561 22.4492L13.25 22.3625V6.6375C13.2499 6.47233 13.3158 6.31356 13.4338 6.19464C13.5518 6.07573 13.7127 6.00595 13.8826 6L13.9684 6.00255ZM14.5625 7.44245V21.5576L20.6875 20.1576V8.8424L14.5625 7.44245ZM12.375 7.7V8.975H9.3125V20.025H12.375V21.3H8.65625C8.49767 21.3 8.34445 21.2442 8.22494 21.143C8.10542 21.0417 8.02769 20.9018 8.00612 20.7492L8 20.6625V8.3375C8.00001 8.18345 8.05744 8.03461 8.16167 7.91851C8.26591 7.80241 8.40989 7.7269 8.567 7.70595L8.65625 7.7H12.375ZM16.75 13.65C16.9821 13.65 17.2046 13.7396 17.3687 13.899C17.5328 14.0584 17.625 14.2746 17.625 14.5C17.625 14.7254 17.5328 14.9416 17.3687 15.101C17.2046 15.2605 16.9821 15.35 16.75 15.35C16.5179 15.35 16.2954 15.2605 16.1313 15.101C15.9672 14.9416 15.875 14.7254 15.875 14.5C15.875 14.2746 15.9672 14.0584 16.1313 13.899C16.2954 13.7396 16.5179 13.65 16.75 13.65Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON MICR\u00D3FONO -->\r\n<div *ngIf=\"icon == 'microphone'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.7012 8.01666C16.7012 7.56347 16.5216 7.12902 16.2027 6.80856C15.9235 6.52815 15.5576 6.35532 15.1682 6.3165L15.0001 6.30767C14.5491 6.30768 14.1166 6.48811 13.7976 6.80856C13.4787 7.12902 13.2991 7.56347 13.2991 8.01666V14.9839C13.2991 15.437 13.4787 15.8716 13.7976 16.192C14.1166 16.5124 14.5491 16.6929 15.0001 16.6929C15.4512 16.6929 15.8837 16.5124 16.2027 16.192C16.5216 15.8716 16.7011 15.437 16.7012 14.9839V8.01666ZM18.5 14.9839C18.5 15.9162 18.1315 16.8103 17.4754 17.4696C16.819 18.1291 15.9284 18.5001 15.0001 18.5001C14.0719 18.5001 13.1812 18.1291 12.5248 17.4696C11.8688 16.8103 11.5003 15.9162 11.5002 14.9839V8.01666C11.5002 7.08406 11.8684 6.18931 12.5248 5.52985C13.1812 4.8704 14.0719 4.50049 15.0001 4.50049L15.1737 4.5049C16.0388 4.54801 16.8601 4.91161 17.4754 5.52985C18.1318 6.18931 18.5 7.08406 18.5 8.01666V14.9839Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M8.00031 15.2274V13.5416C8.00031 13.0586 8.40474 12.6672 8.9039 12.6672C9.40306 12.6672 9.80749 13.0586 9.80749 13.5416V15.2274L9.81411 15.4761C9.87776 16.718 10.416 17.896 11.3289 18.7793C12.3026 19.7215 13.6226 20.2515 14.9996 20.2516L15.2577 20.2452C16.5409 20.1835 17.7585 19.6626 18.6713 18.7793C19.5841 17.896 20.1225 16.7179 20.1861 15.4761L20.1927 15.2274V13.5416C20.1927 13.0586 20.5972 12.6672 21.0963 12.6672C21.5953 12.6674 21.9999 13.0587 21.9999 13.5416V15.2274L21.9911 15.5626C21.9053 17.2368 21.1807 18.8257 19.95 20.0167C18.7193 21.2076 17.0772 21.9087 15.3471 21.9918L14.9996 22.0003C13.1432 22.0002 11.3628 21.2869 10.0502 20.0167C8.81947 18.8257 8.09489 17.2369 8.00913 15.5626L8.00031 15.2274Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M13.95 24.6025V21.1467C13.95 20.6515 14.4199 20.2502 14.9999 20.2502C15.5799 20.2502 16.0499 20.6515 16.0499 21.1467V24.6025C16.0499 25.0977 15.5799 25.5001 14.9999 25.5001C14.4199 25.5001 13.95 25.0977 13.95 24.6025Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.3348 23.3999L18.4225 23.405C18.859 23.4585 19.1998 23.9059 19.1998 24.4499C19.1998 24.9938 18.859 25.4412 18.4225 25.4947L18.3348 25.4998H11.6651C11.1872 25.4998 10.8 25.0299 10.8 24.4499C10.8 23.8698 11.1872 23.3999 11.6651 23.3999H18.3348Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.7012 8.01666C16.7012 7.56347 16.5216 7.12902 16.2027 6.80856C15.9235 6.52815 15.5576 6.35532 15.1682 6.3165L15.0001 6.30767C14.5491 6.30768 14.1166 6.48811 13.7976 6.80856C13.4787 7.12902 13.2991 7.56347 13.2991 8.01666V14.9839C13.2991 15.437 13.4787 15.8716 13.7976 16.192C14.1166 16.5124 14.5491 16.6929 15.0001 16.6929C15.4512 16.6929 15.8837 16.5124 16.2027 16.192C16.5216 15.8716 16.7011 15.437 16.7012 14.9839V8.01666ZM18.5 14.9839C18.5 15.9162 18.1315 16.8103 17.4754 17.4696C16.819 18.1291 15.9284 18.5001 15.0001 18.5001C14.0719 18.5001 13.1812 18.1291 12.5248 17.4696C11.8688 16.8103 11.5003 15.9162 11.5002 14.9839V8.01666C11.5002 7.08406 11.8684 6.18931 12.5248 5.52985C13.1812 4.8704 14.0719 4.50049 15.0001 4.50049L15.1737 4.5049C16.0388 4.54801 16.8601 4.91161 17.4754 5.52985C18.1318 6.18931 18.5 7.08406 18.5 8.01666V14.9839Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M8.00031 15.2274V13.5416C8.00031 13.0586 8.40474 12.6672 8.9039 12.6672C9.40306 12.6672 9.80749 13.0586 9.80749 13.5416V15.2274L9.81411 15.4761C9.87776 16.718 10.416 17.896 11.3289 18.7793C12.3026 19.7215 13.6226 20.2515 14.9996 20.2516L15.2577 20.2452C16.5409 20.1835 17.7585 19.6626 18.6713 18.7793C19.5841 17.896 20.1225 16.7179 20.1861 15.4761L20.1927 15.2274V13.5416C20.1927 13.0586 20.5972 12.6672 21.0963 12.6672C21.5953 12.6674 21.9999 13.0587 21.9999 13.5416V15.2274L21.9911 15.5626C21.9053 17.2368 21.1807 18.8257 19.95 20.0167C18.7193 21.2076 17.0772 21.9087 15.3471 21.9918L14.9996 22.0003C13.1432 22.0002 11.3628 21.2869 10.0502 20.0167C8.81947 18.8257 8.09489 17.2369 8.00913 15.5626L8.00031 15.2274Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M13.95 24.6025V21.1467C13.95 20.6515 14.4199 20.2502 14.9999 20.2502C15.5799 20.2502 16.0499 20.6515 16.0499 21.1467V24.6025C16.0499 25.0977 15.5799 25.5001 14.9999 25.5001C14.4199 25.5001 13.95 25.0977 13.95 24.6025Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M18.3348 23.3999L18.4225 23.405C18.859 23.4585 19.1998 23.9059 19.1998 24.4499C19.1998 24.9938 18.859 25.4412 18.4225 25.4947L18.3348 25.4998H11.6651C11.1872 25.4998 10.8 25.0299 10.8 24.4499C10.8 23.8698 11.1872 23.3999 11.6651 23.3999H18.3348Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON SEXO -->\r\n<div *ngIf=\"icon == 'gender'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M22.0324 5.18481H18.128C17.9209 5.18481 17.7223 5.26532 17.5759 5.40861C17.4294 5.55191 17.3472 5.74626 17.3472 5.9489C17.3472 6.15155 17.4294 6.3459 17.5759 6.4892C17.7223 6.63249 17.9209 6.713 18.128 6.713H20.1476L17.6927 9.1151C16.9719 8.45779 16.1024 7.97663 15.1553 7.71094C14.2081 7.44524 13.2102 7.40255 12.2429 7.58634C11.2757 7.77013 10.3666 8.17519 9.58991 8.76844C8.81322 9.36168 8.19095 10.1263 7.77393 10.9998C7.35691 11.8733 7.15697 12.831 7.19043 13.7946C7.2239 14.7582 7.48982 15.7003 7.96648 16.5441C8.44314 17.3879 9.11702 18.1094 9.93308 18.6497C10.7491 19.19 11.6842 19.5338 12.662 19.6529V21.2307H10.3194C10.1123 21.2307 9.91368 21.3112 9.76724 21.4545C9.6208 21.5978 9.53853 21.7922 9.53853 21.9948C9.53853 22.1975 9.6208 22.3918 9.76724 22.5351C9.91368 22.6784 10.1123 22.7589 10.3194 22.7589H12.662V25.0512C12.662 25.2538 12.7443 25.4482 12.8907 25.5915C13.0371 25.7348 13.2358 25.8153 13.4429 25.8153C13.65 25.8153 13.8486 25.7348 13.995 25.5915C14.1414 25.4482 14.2237 25.2538 14.2237 25.0512V22.7589H16.5663C16.7734 22.7589 16.972 22.6784 17.1185 22.5351C17.2649 22.3918 17.3472 22.1975 17.3472 21.9948C17.3472 21.7922 17.2649 21.5978 17.1185 21.4545C16.972 21.3112 16.7734 21.2307 16.5663 21.2307H14.2237V19.6529C15.2704 19.5249 16.2668 19.1394 17.1199 18.5323C17.973 17.9253 18.6549 17.1165 19.1018 16.1816C19.5487 15.2466 19.7461 14.2161 19.6755 13.1863C19.6049 12.1564 19.2686 11.1609 18.6981 10.2928L21.2515 7.79323V9.76936C21.2515 9.97201 21.3338 10.1664 21.4802 10.3096C21.6267 10.4529 21.8253 10.5334 22.0324 10.5334C22.2395 10.5334 22.4381 10.4529 22.5845 10.3096C22.731 10.1664 22.8132 9.97201 22.8132 9.76936V5.9489C22.8132 5.74626 22.731 5.55191 22.5845 5.40861C22.4381 5.26532 22.2395 5.18481 22.0324 5.18481ZM13.4429 18.1743C12.5162 18.1743 11.6104 17.9055 10.8399 17.4017C10.0694 16.898 9.46891 16.182 9.1143 15.3442C8.75969 14.5065 8.66691 13.5847 8.84769 12.6954C9.02847 11.8061 9.47469 10.9892 10.1299 10.348C10.7852 9.70689 11.62 9.27025 12.5288 9.09336C13.4377 8.91646 14.3797 9.00725 15.2358 9.35424C16.0919 9.70124 16.8236 10.2888 17.3384 11.0428C17.8533 11.7967 18.128 12.6831 18.128 13.5898C18.1267 14.8053 17.6327 15.9707 16.7544 16.8302C15.876 17.6897 14.685 18.1731 13.4429 18.1743Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.4755 25.051V22.9437H10.319C10.0633 22.9436 9.81726 22.8444 9.63574 22.6667C9.45414 22.489 9.35149 22.247 9.35149 21.9947C9.35156 21.7426 9.45433 21.5012 9.63574 21.3235C9.81726 21.1459 10.0633 21.0458 10.319 21.0457V21.2306C10.1121 21.2307 9.91329 21.3111 9.76693 21.4543C9.62055 21.5976 9.53833 21.7921 9.53826 21.9947C9.53826 22.1972 9.62065 22.3918 9.76693 22.535C9.91329 22.6782 10.1121 22.7587 10.319 22.7588H12.6623V25.051L12.6659 25.1268C12.6837 25.3017 12.7628 25.466 12.8909 25.5913C13.0191 25.7167 13.1869 25.7941 13.3656 25.8115L13.443 25.8151C13.6241 25.815 13.7989 25.754 13.9377 25.6428L13.9951 25.5913C14.1232 25.466 14.2024 25.3016 14.2202 25.1268L14.2238 25.051V22.7588H16.5661C16.7732 22.7588 16.9718 22.6783 17.1182 22.535C17.2647 22.3917 17.3469 22.1973 17.3469 21.9947C17.3468 21.7921 17.2646 21.5976 17.1182 21.4543C16.9718 21.3112 16.7731 21.2306 16.5661 21.2306V21.0457C16.822 21.0457 17.0678 21.1458 17.2494 21.3235C17.431 21.5012 17.5336 21.7424 17.5337 21.9947C17.5337 22.247 17.4311 22.489 17.2494 22.6667C17.0678 22.8443 16.8219 22.9437 16.5661 22.9437H14.4106V25.051C14.4106 25.3033 14.308 25.5453 14.1263 25.7231C13.9448 25.9007 13.6988 26 13.443 26C13.1872 26 12.9413 25.9007 12.7597 25.7231C12.5781 25.5453 12.4755 25.3033 12.4755 25.051ZM17.1601 5.94901C17.1601 5.69666 17.2627 5.45471 17.4444 5.27694C17.6259 5.09934 17.8719 5.00009 18.1277 5V5.18493C17.9207 5.18502 17.7219 5.26544 17.5756 5.40865C17.4292 5.55193 17.3469 5.74642 17.3469 5.94901C17.3469 6.1516 17.4292 6.34609 17.5756 6.48937C17.7219 6.63258 17.9207 6.713 18.1277 6.71309H20.1475L17.6931 9.11538L17.4152 8.87723C16.753 8.3412 15.9836 7.94328 15.1549 7.71081C14.208 7.44524 13.2102 7.40262 12.2432 7.58632L11.8833 7.66571C11.0506 7.87446 10.2699 8.24984 9.59019 8.76898L9.30594 8.99901C8.66084 9.55473 8.13843 10.2356 7.77355 10.9999C7.35658 11.8733 7.15703 12.8311 7.19047 13.7946C7.22394 14.7582 7.49003 15.7004 7.96669 16.5442C8.44329 17.3879 9.11684 18.1094 9.93275 18.6497C10.7488 19.19 11.6845 19.5337 12.6623 19.6528V21.2306H10.319V21.0457H12.4755V19.8107C11.5286 19.671 10.6244 19.3291 9.8298 18.803C8.98939 18.2466 8.29473 17.5038 7.80361 16.6344C7.3125 15.765 7.03819 14.794 7.00371 13.8009C6.96925 12.808 7.17546 11.8213 7.605 10.9214C8.0347 10.0213 8.67638 9.23293 9.47631 8.62193C10.2761 8.01113 11.2121 7.5942 12.2076 7.405C13.2034 7.2158 14.2308 7.25961 15.2059 7.5331C16.1233 7.79045 16.9687 8.24622 17.684 8.86279L19.6929 6.89802H18.1277C17.8719 6.89793 17.6259 6.79869 17.4444 6.62107C17.2627 6.44331 17.1601 6.20137 17.1601 5.94901ZM17.9418 13.5898C17.9418 12.7201 17.6778 11.8695 17.1838 11.146C16.6898 10.4226 15.9871 9.85817 15.1649 9.52494C14.3427 9.19175 13.4378 9.10514 12.5648 9.27505C11.6917 9.445 10.8897 9.86389 10.2607 10.4794C9.63181 11.0948 9.20422 11.8789 9.0308 12.7319C8.8574 13.5849 8.9466 14.4694 9.28681 15.2731C9.62704 16.0767 10.2034 16.7642 10.9431 17.2478C11.6829 17.7314 12.5529 17.9893 13.443 17.9893V18.1743L13.0968 18.1616C12.4071 18.1117 11.7372 17.9131 11.1353 17.5798L10.8402 17.4021C10.1661 16.9613 9.6216 16.358 9.25857 15.6529L9.11462 15.3444C8.80435 14.6114 8.69455 13.8141 8.79302 13.0305L8.84768 12.6958C9.00588 11.9176 9.36756 11.1947 9.89448 10.5966L10.1295 10.3486C10.7027 9.78766 11.4138 9.3831 12.1912 9.17221L12.5293 9.09373C13.438 8.91693 14.38 9.00749 15.236 9.35444C16.092 9.70144 16.8239 10.2893 17.3387 11.0432C17.8534 11.797 18.1277 12.6832 18.1277 13.5898C18.1264 14.8052 17.6329 15.9707 16.7547 16.8301L16.5862 16.9871C15.7271 17.7484 14.6075 18.173 13.443 18.1743V17.9893C14.6364 17.988 15.7804 17.5235 16.6235 16.6984C17.4137 15.9251 17.8792 14.8943 17.9354 13.8081L17.9418 13.5898ZM21.0649 9.76941V8.23583L18.9331 10.3215C19.4714 11.1854 19.7921 12.1626 19.8614 13.1739C19.9342 14.2353 19.7307 15.2975 19.2701 16.2609C18.8096 17.2242 18.107 18.057 17.2285 18.6822C16.3947 19.2755 15.4279 19.6601 14.4106 19.8107V21.0457H16.5661V21.2306H14.2238V19.6528C15.1397 19.5408 16.0173 19.2321 16.7939 18.7498L17.1201 18.5324C17.9731 17.9254 18.6547 17.1164 19.1016 16.1815C19.4926 15.3636 19.6926 14.4725 19.6892 13.5727L19.6756 13.1866C19.605 12.1567 19.2685 11.1608 18.698 10.2926L21.2517 7.7929V9.76941L21.2553 9.84518C21.2731 10.02 21.3523 10.1844 21.4804 10.3098C21.6084 10.4351 21.7764 10.5125 21.955 10.5299L22.0325 10.5335C22.2137 10.5335 22.3882 10.4717 22.5272 10.3603L22.5846 10.3098C22.7126 10.1844 22.7918 10.02 22.8096 9.84518L22.8132 9.76941V5.94901C22.8132 5.77167 22.7504 5.60056 22.6365 5.46458L22.5846 5.40865C22.4565 5.28336 22.2885 5.20597 22.1099 5.18854L22.0325 5.18493V5C22.2882 5.00002 22.5342 5.09936 22.7158 5.27694C22.8974 5.45471 23 5.69666 23 5.94901V9.76941C23 10.0218 22.8974 10.2637 22.7158 10.4415C22.5342 10.6191 22.2883 10.7184 22.0325 10.7184C21.7767 10.7184 21.5307 10.619 21.3492 10.4415C21.1675 10.2637 21.0649 10.0218 21.0649 9.76941ZM22.0325 5V5.18493H18.1277V5H22.0325Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M22.0324 5.18481H18.128C17.9209 5.18481 17.7223 5.26532 17.5759 5.40861C17.4294 5.55191 17.3472 5.74626 17.3472 5.9489C17.3472 6.15155 17.4294 6.3459 17.5759 6.4892C17.7223 6.63249 17.9209 6.713 18.128 6.713H20.1476L17.6927 9.1151C16.9719 8.45779 16.1024 7.97663 15.1553 7.71094C14.2081 7.44524 13.2102 7.40255 12.2429 7.58634C11.2757 7.77013 10.3666 8.17519 9.58991 8.76844C8.81322 9.36168 8.19095 10.1263 7.77393 10.9998C7.35691 11.8733 7.15697 12.831 7.19043 13.7946C7.2239 14.7582 7.48982 15.7003 7.96648 16.5441C8.44314 17.3879 9.11702 18.1094 9.93308 18.6497C10.7491 19.19 11.6842 19.5338 12.662 19.6529V21.2307H10.3194C10.1123 21.2307 9.91368 21.3112 9.76724 21.4545C9.6208 21.5978 9.53853 21.7922 9.53853 21.9948C9.53853 22.1975 9.6208 22.3918 9.76724 22.5351C9.91368 22.6784 10.1123 22.7589 10.3194 22.7589H12.662V25.0512C12.662 25.2538 12.7443 25.4482 12.8907 25.5915C13.0371 25.7348 13.2358 25.8153 13.4429 25.8153C13.65 25.8153 13.8486 25.7348 13.995 25.5915C14.1414 25.4482 14.2237 25.2538 14.2237 25.0512V22.7589H16.5663C16.7734 22.7589 16.972 22.6784 17.1185 22.5351C17.2649 22.3918 17.3472 22.1975 17.3472 21.9948C17.3472 21.7922 17.2649 21.5978 17.1185 21.4545C16.972 21.3112 16.7734 21.2307 16.5663 21.2307H14.2237V19.6529C15.2704 19.5249 16.2668 19.1394 17.1199 18.5323C17.973 17.9253 18.6549 17.1165 19.1018 16.1816C19.5487 15.2466 19.7461 14.2161 19.6755 13.1863C19.6049 12.1564 19.2686 11.1609 18.6981 10.2928L21.2515 7.79323V9.76936C21.2515 9.97201 21.3338 10.1664 21.4802 10.3096C21.6267 10.4529 21.8253 10.5334 22.0324 10.5334C22.2395 10.5334 22.4381 10.4529 22.5845 10.3096C22.731 10.1664 22.8132 9.97201 22.8132 9.76936V5.9489C22.8132 5.74626 22.731 5.55191 22.5845 5.40861C22.4381 5.26532 22.2395 5.18481 22.0324 5.18481ZM13.4429 18.1743C12.5162 18.1743 11.6104 17.9055 10.8399 17.4017C10.0694 16.898 9.46891 16.182 9.1143 15.3442C8.75969 14.5065 8.66691 13.5847 8.84769 12.6954C9.02847 11.8061 9.47469 10.9892 10.1299 10.348C10.7852 9.70689 11.62 9.27025 12.5288 9.09336C13.4377 8.91646 14.3797 9.00725 15.2358 9.35424C16.0919 9.70124 16.8236 10.2888 17.3384 11.0428C17.8533 11.7967 18.128 12.6831 18.128 13.5898C18.1267 14.8053 17.6327 15.9707 16.7544 16.8302C15.876 17.6897 14.685 18.1731 13.4429 18.1743Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.4755 25.051V22.9437H10.319C10.0633 22.9436 9.81726 22.8444 9.63574 22.6667C9.45414 22.489 9.35149 22.247 9.35149 21.9947C9.35156 21.7426 9.45433 21.5012 9.63574 21.3235C9.81726 21.1459 10.0633 21.0458 10.319 21.0457V21.2306C10.1121 21.2307 9.91329 21.3111 9.76693 21.4543C9.62055 21.5976 9.53833 21.7921 9.53826 21.9947C9.53826 22.1972 9.62065 22.3918 9.76693 22.535C9.91329 22.6782 10.1121 22.7587 10.319 22.7588H12.6623V25.051L12.6659 25.1268C12.6837 25.3017 12.7628 25.466 12.8909 25.5913C13.0191 25.7167 13.1869 25.7941 13.3656 25.8115L13.443 25.8151C13.6241 25.815 13.7989 25.754 13.9377 25.6428L13.9951 25.5913C14.1232 25.466 14.2024 25.3016 14.2202 25.1268L14.2238 25.051V22.7588H16.5661C16.7732 22.7588 16.9718 22.6783 17.1182 22.535C17.2647 22.3917 17.3469 22.1973 17.3469 21.9947C17.3468 21.7921 17.2646 21.5976 17.1182 21.4543C16.9718 21.3112 16.7731 21.2306 16.5661 21.2306V21.0457C16.822 21.0457 17.0678 21.1458 17.2494 21.3235C17.431 21.5012 17.5336 21.7424 17.5337 21.9947C17.5337 22.247 17.4311 22.489 17.2494 22.6667C17.0678 22.8443 16.8219 22.9437 16.5661 22.9437H14.4106V25.051C14.4106 25.3033 14.308 25.5453 14.1263 25.7231C13.9448 25.9007 13.6988 26 13.443 26C13.1872 26 12.9413 25.9007 12.7597 25.7231C12.5781 25.5453 12.4755 25.3033 12.4755 25.051ZM17.1601 5.94901C17.1601 5.69666 17.2627 5.45471 17.4444 5.27694C17.6259 5.09934 17.8719 5.00009 18.1277 5V5.18493C17.9207 5.18502 17.7219 5.26544 17.5756 5.40865C17.4292 5.55193 17.3469 5.74642 17.3469 5.94901C17.3469 6.1516 17.4292 6.34609 17.5756 6.48937C17.7219 6.63258 17.9207 6.713 18.1277 6.71309H20.1475L17.6931 9.11538L17.4152 8.87723C16.753 8.3412 15.9836 7.94328 15.1549 7.71081C14.208 7.44524 13.2102 7.40262 12.2432 7.58632L11.8833 7.66571C11.0506 7.87446 10.2699 8.24984 9.59019 8.76898L9.30594 8.99901C8.66084 9.55473 8.13843 10.2356 7.77355 10.9999C7.35658 11.8733 7.15703 12.8311 7.19047 13.7946C7.22394 14.7582 7.49003 15.7004 7.96669 16.5442C8.44329 17.3879 9.11684 18.1094 9.93275 18.6497C10.7488 19.19 11.6845 19.5337 12.6623 19.6528V21.2306H10.319V21.0457H12.4755V19.8107C11.5286 19.671 10.6244 19.3291 9.8298 18.803C8.98939 18.2466 8.29473 17.5038 7.80361 16.6344C7.3125 15.765 7.03819 14.794 7.00371 13.8009C6.96925 12.808 7.17546 11.8213 7.605 10.9214C8.0347 10.0213 8.67638 9.23293 9.47631 8.62193C10.2761 8.01113 11.2121 7.5942 12.2076 7.405C13.2034 7.2158 14.2308 7.25961 15.2059 7.5331C16.1233 7.79045 16.9687 8.24622 17.684 8.86279L19.6929 6.89802H18.1277C17.8719 6.89793 17.6259 6.79869 17.4444 6.62107C17.2627 6.44331 17.1601 6.20137 17.1601 5.94901ZM17.9418 13.5898C17.9418 12.7201 17.6778 11.8695 17.1838 11.146C16.6898 10.4226 15.9871 9.85817 15.1649 9.52494C14.3427 9.19175 13.4378 9.10514 12.5648 9.27505C11.6917 9.445 10.8897 9.86389 10.2607 10.4794C9.63181 11.0948 9.20422 11.8789 9.0308 12.7319C8.8574 13.5849 8.9466 14.4694 9.28681 15.2731C9.62704 16.0767 10.2034 16.7642 10.9431 17.2478C11.6829 17.7314 12.5529 17.9893 13.443 17.9893V18.1743L13.0968 18.1616C12.4071 18.1117 11.7372 17.9131 11.1353 17.5798L10.8402 17.4021C10.1661 16.9613 9.6216 16.358 9.25857 15.6529L9.11462 15.3444C8.80435 14.6114 8.69455 13.8141 8.79302 13.0305L8.84768 12.6958C9.00588 11.9176 9.36756 11.1947 9.89448 10.5966L10.1295 10.3486C10.7027 9.78766 11.4138 9.3831 12.1912 9.17221L12.5293 9.09373C13.438 8.91693 14.38 9.00749 15.236 9.35444C16.092 9.70144 16.8239 10.2893 17.3387 11.0432C17.8534 11.797 18.1277 12.6832 18.1277 13.5898C18.1264 14.8052 17.6329 15.9707 16.7547 16.8301L16.5862 16.9871C15.7271 17.7484 14.6075 18.173 13.443 18.1743V17.9893C14.6364 17.988 15.7804 17.5235 16.6235 16.6984C17.4137 15.9251 17.8792 14.8943 17.9354 13.8081L17.9418 13.5898ZM21.0649 9.76941V8.23583L18.9331 10.3215C19.4714 11.1854 19.7921 12.1626 19.8614 13.1739C19.9342 14.2353 19.7307 15.2975 19.2701 16.2609C18.8096 17.2242 18.107 18.057 17.2285 18.6822C16.3947 19.2755 15.4279 19.6601 14.4106 19.8107V21.0457H16.5661V21.2306H14.2238V19.6528C15.1397 19.5408 16.0173 19.2321 16.7939 18.7498L17.1201 18.5324C17.9731 17.9254 18.6547 17.1164 19.1016 16.1815C19.4926 15.3636 19.6926 14.4725 19.6892 13.5727L19.6756 13.1866C19.605 12.1567 19.2685 11.1608 18.698 10.2926L21.2517 7.7929V9.76941L21.2553 9.84518C21.2731 10.02 21.3523 10.1844 21.4804 10.3098C21.6084 10.4351 21.7764 10.5125 21.955 10.5299L22.0325 10.5335C22.2137 10.5335 22.3882 10.4717 22.5272 10.3603L22.5846 10.3098C22.7126 10.1844 22.7918 10.02 22.8096 9.84518L22.8132 9.76941V5.94901C22.8132 5.77167 22.7504 5.60056 22.6365 5.46458L22.5846 5.40865C22.4565 5.28336 22.2885 5.20597 22.1099 5.18854L22.0325 5.18493V5C22.2882 5.00002 22.5342 5.09936 22.7158 5.27694C22.8974 5.45471 23 5.69666 23 5.94901V9.76941C23 10.0218 22.8974 10.2637 22.7158 10.4415C22.5342 10.6191 22.2883 10.7184 22.0325 10.7184C21.7767 10.7184 21.5307 10.619 21.3492 10.4415C21.1675 10.2637 21.0649 10.0218 21.0649 9.76941ZM22.0325 5V5.18493H18.1277V5H22.0325Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON CASA -->\r\n<div *ngIf=\"icon == 'home'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.7483 22.2407V16.147C16.7483 16.0849 16.7223 16.0322 16.6879 15.9992C16.6547 15.9675 16.619 15.9576 16.592 15.9576H13.4083C13.3813 15.9576 13.3456 15.9675 13.3124 15.9992C13.278 16.0322 13.252 16.0849 13.252 16.147V22.2407C13.252 22.5568 12.9653 22.8133 12.612 22.8133C12.2586 22.8133 11.9719 22.5568 11.9719 22.2407V16.147C11.9719 15.8052 12.1139 15.4701 12.378 15.2174C12.6434 14.9635 13.013 14.8125 13.4083 14.8125H16.592C16.9873 14.8125 17.3569 14.9635 17.6223 15.2174C17.8864 15.4701 18.0284 15.8052 18.0284 16.147V22.2407C18.0284 22.5568 17.7417 22.8133 17.3883 22.8133C17.035 22.8133 16.7483 22.5568 16.7483 22.2407Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.5922 14.6169V14.8124H13.4084V14.6169H16.5922ZM16.7485 22.2409L16.7609 22.3562C16.8207 22.6169 17.0791 22.8127 17.3881 22.8128C17.6972 22.8128 17.9555 22.6169 18.0153 22.3562L18.0287 22.2409V16.1469C18.0287 15.8479 17.92 15.5537 17.716 15.3157L17.6226 15.2175C17.3904 14.9953 17.0781 14.8514 16.739 14.819L16.5922 14.8124V14.6169C17.0366 14.617 17.4545 14.787 17.757 15.0764C18.0585 15.3649 18.2241 15.7503 18.2241 16.1469V22.2409C18.2239 22.6845 17.8281 23.0082 17.3881 23.0082C16.9482 23.0081 16.5533 22.6844 16.5531 22.2409V16.1526H13.4474V22.2409C13.4472 22.6845 13.0515 23.0082 12.6115 23.0082C12.1716 23.008 11.7766 22.6844 11.7764 22.2409V16.1469C11.7764 15.7505 11.9413 15.3648 12.2426 15.0764C12.5451 14.787 12.9639 14.6169 13.4084 14.6169V14.8124L13.2616 14.819C12.9223 14.8514 12.6102 14.9952 12.3779 15.2175L12.2845 15.3157C12.0804 15.5537 11.9718 15.8478 11.9718 16.1469V22.2409L11.9852 22.3562C12.045 22.6167 12.3026 22.8126 12.6115 22.8128C12.9205 22.8128 13.1788 22.6169 13.2387 22.3562L13.252 22.2409V16.1469C13.252 16.0849 13.2778 16.0322 13.3121 15.9991C13.3286 15.9833 13.3462 15.9732 13.3626 15.9667L13.4084 15.9572H16.5922C16.6191 15.9572 16.6544 15.9676 16.6875 15.9991C16.7219 16.0322 16.7485 16.0847 16.7485 16.1469V22.2409Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.5246 13.861C21.5246 13.7169 21.4917 13.5756 21.4295 13.4474C21.3673 13.3193 21.2784 13.2087 21.1712 13.122L21.1678 13.1195L15.5985 8.55216C15.425 8.41187 15.2126 8.34041 15.0001 8.34041C14.7876 8.34041 14.5752 8.41187 14.4017 8.55216L8.83246 13.1195L8.82899 13.122C8.72177 13.2087 8.63289 13.3193 8.57073 13.4474C8.50857 13.5756 8.47563 13.7169 8.47562 13.861V20.7172C8.47567 20.9814 8.58554 21.2276 8.76928 21.4034C8.95166 21.5779 9.18939 21.6679 9.42743 21.668H20.5728C20.8108 21.6679 21.0486 21.5779 21.2309 21.4034C21.4147 21.2276 21.5246 20.9814 21.5246 20.7172V13.861ZM22.8048 20.7172C22.8047 21.261 22.5793 21.7898 22.1661 22.1852C21.7514 22.582 21.1791 22.813 20.5728 22.8131H9.42743C8.82111 22.813 8.24881 22.582 7.83414 22.1852C7.42088 21.7898 7.19549 21.261 7.19543 20.7172V13.8616C7.19536 13.5625 7.26401 13.266 7.39677 12.9922C7.52895 12.7196 7.72253 12.4744 7.96743 12.2756L13.5401 7.70576L13.5436 7.70328C13.9447 7.37894 14.4603 7.19531 15.0001 7.19531C15.54 7.19531 16.0555 7.37894 16.4566 7.70328L16.4601 7.70576L22.0328 12.2756H22.0321C22.2772 12.4745 22.4712 12.7195 22.6035 12.9922C22.7362 13.266 22.8049 13.5625 22.8048 13.8616V20.7172Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M22.8046 13.8614C22.8046 13.6372 22.7664 13.4145 22.6912 13.2017L22.6035 12.992C22.5043 12.7875 22.3701 12.599 22.206 12.4334L22.0325 12.2761L16.4599 7.70539L16.457 7.70349C16.1061 7.41977 15.6673 7.24364 15.2016 7.20399L15.0005 7.19541C14.4607 7.19541 13.945 7.37923 13.5439 7.70349L13.5401 7.70539L7.96753 12.2761L7.79309 12.4334C7.62932 12.5989 7.49562 12.7878 7.39654 12.992C7.26384 13.2657 7.19539 13.5624 7.19541 13.8614V20.717C7.19547 21.2607 7.42094 21.7895 7.83408 22.185C8.19694 22.5322 8.68052 22.753 9.20197 22.8027L9.42693 22.8132H20.5731L20.798 22.8027C21.3195 22.7531 21.803 22.5322 22.1659 22.185C22.5791 21.7895 22.8045 21.2607 22.8046 20.717V13.8614ZM8.4756 20.717V13.8614C8.47561 13.7533 8.49441 13.6465 8.52994 13.5458L8.57093 13.4477C8.63309 13.3196 8.72204 13.2084 8.82925 13.1217L8.83211 13.1198L14.4018 8.55186C14.5754 8.41173 14.7881 8.34024 15.0005 8.34024L15.1587 8.35359C15.3161 8.38022 15.468 8.4468 15.5982 8.55186L21.1679 13.1198L21.044 13.2704L15.4761 8.70438L15.3675 8.63098C15.2539 8.56784 15.1272 8.53572 15.0005 8.53566C14.8316 8.53566 14.6628 8.59289 14.5248 8.70438L8.95603 13.2704L8.9465 13.2789L8.94555 13.278C8.86298 13.3461 8.7947 13.4328 8.74632 13.5325C8.69692 13.6344 8.67102 13.7471 8.67102 13.8614V20.717C8.67106 20.9266 8.75833 21.1223 8.90456 21.2623C9.0496 21.401 9.23873 21.4729 9.42788 21.4729H20.5731V21.6683H9.42693L9.33828 21.6636C9.13082 21.6439 8.92878 21.556 8.7692 21.4033C8.60842 21.2494 8.50388 21.0417 8.48037 20.8152L8.4756 20.717ZM21.329 20.717V13.8614C21.329 13.7471 21.3031 13.6344 21.2537 13.5325C21.2042 13.4307 21.1337 13.343 21.0487 13.2742H21.0478L21.044 13.2713L21.1679 13.1198L21.1707 13.1217C21.278 13.2084 21.3669 13.3196 21.4291 13.4477C21.4912 13.5758 21.5244 13.7173 21.5244 13.8614V20.717C21.5243 20.9812 21.4145 21.2275 21.2308 21.4033C21.0485 21.5778 20.811 21.6682 20.5731 21.6683V21.4729C20.7621 21.4728 20.9514 21.401 21.0964 21.2623C21.2424 21.1223 21.3289 20.9264 21.329 20.717ZM23 20.717C22.9999 21.3152 22.7519 21.8947 22.3013 22.3261C21.8495 22.7584 21.2284 23.0084 20.5731 23.0086H9.42693C8.77168 23.0084 8.15046 22.7583 7.69872 22.3261C7.24818 21.8947 7.00006 21.3152 7 20.717V13.8614C6.99997 13.5324 7.0758 13.2069 7.22115 12.9072C7.36584 12.6088 7.57711 12.3411 7.84361 12.1246L13.4162 7.55478L13.4267 7.54716C13.8623 7.19714 14.4192 7 15.0005 7C15.5799 7.00009 16.1346 7.19628 16.5695 7.5443H16.5704L16.5733 7.54716L16.5838 7.55478L22.1564 12.1246C22.1577 12.1257 22.1589 12.1273 22.1602 12.1284C22.4246 12.3442 22.6348 12.6102 22.7789 12.9072C22.9242 13.2069 23 13.5324 23 13.8614V20.717Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.7483 22.2407V16.147C16.7483 16.0849 16.7223 16.0322 16.6879 15.9992C16.6547 15.9675 16.619 15.9576 16.592 15.9576H13.4083C13.3813 15.9576 13.3456 15.9675 13.3124 15.9992C13.278 16.0322 13.252 16.0849 13.252 16.147V22.2407C13.252 22.5568 12.9653 22.8133 12.612 22.8133C12.2586 22.8133 11.9719 22.5568 11.9719 22.2407V16.147C11.9719 15.8052 12.1139 15.4701 12.378 15.2174C12.6434 14.9635 13.013 14.8125 13.4083 14.8125H16.592C16.9873 14.8125 17.3569 14.9635 17.6223 15.2174C17.8864 15.4701 18.0284 15.8052 18.0284 16.147V22.2407C18.0284 22.5568 17.7417 22.8133 17.3883 22.8133C17.035 22.8133 16.7483 22.5568 16.7483 22.2407Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M16.5922 14.6169V14.8124H13.4084V14.6169H16.5922ZM16.7485 22.2409L16.7609 22.3562C16.8207 22.6169 17.0791 22.8127 17.3881 22.8128C17.6972 22.8128 17.9555 22.6169 18.0153 22.3562L18.0287 22.2409V16.1469C18.0287 15.8479 17.92 15.5537 17.716 15.3157L17.6226 15.2175C17.3904 14.9953 17.0781 14.8514 16.739 14.819L16.5922 14.8124V14.6169C17.0366 14.617 17.4545 14.787 17.757 15.0764C18.0585 15.3649 18.2241 15.7503 18.2241 16.1469V22.2409C18.2239 22.6845 17.8281 23.0082 17.3881 23.0082C16.9482 23.0081 16.5533 22.6844 16.5531 22.2409V16.1526H13.4474V22.2409C13.4472 22.6845 13.0515 23.0082 12.6115 23.0082C12.1716 23.008 11.7766 22.6844 11.7764 22.2409V16.1469C11.7764 15.7505 11.9413 15.3648 12.2426 15.0764C12.5451 14.787 12.9639 14.6169 13.4084 14.6169V14.8124L13.2616 14.819C12.9223 14.8514 12.6102 14.9952 12.3779 15.2175L12.2845 15.3157C12.0804 15.5537 11.9718 15.8478 11.9718 16.1469V22.2409L11.9852 22.3562C12.045 22.6167 12.3026 22.8126 12.6115 22.8128C12.9205 22.8128 13.1788 22.6169 13.2387 22.3562L13.252 22.2409V16.1469C13.252 16.0849 13.2778 16.0322 13.3121 15.9991C13.3286 15.9833 13.3462 15.9732 13.3626 15.9667L13.4084 15.9572H16.5922C16.6191 15.9572 16.6544 15.9676 16.6875 15.9991C16.7219 16.0322 16.7485 16.0847 16.7485 16.1469V22.2409Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M21.5246 13.861C21.5246 13.7169 21.4917 13.5756 21.4295 13.4474C21.3673 13.3193 21.2784 13.2087 21.1712 13.122L21.1678 13.1195L15.5985 8.55216C15.425 8.41187 15.2126 8.34041 15.0001 8.34041C14.7876 8.34041 14.5752 8.41187 14.4017 8.55216L8.83246 13.1195L8.82899 13.122C8.72177 13.2087 8.63289 13.3193 8.57073 13.4474C8.50857 13.5756 8.47563 13.7169 8.47562 13.861V20.7172C8.47567 20.9814 8.58554 21.2276 8.76928 21.4034C8.95166 21.5779 9.18939 21.6679 9.42743 21.668H20.5728C20.8108 21.6679 21.0486 21.5779 21.2309 21.4034C21.4147 21.2276 21.5246 20.9814 21.5246 20.7172V13.861ZM22.8048 20.7172C22.8047 21.261 22.5793 21.7898 22.1661 22.1852C21.7514 22.582 21.1791 22.813 20.5728 22.8131H9.42743C8.82111 22.813 8.24881 22.582 7.83414 22.1852C7.42088 21.7898 7.19549 21.261 7.19543 20.7172V13.8616C7.19536 13.5625 7.26401 13.266 7.39677 12.9922C7.52895 12.7196 7.72253 12.4744 7.96743 12.2756L13.5401 7.70576L13.5436 7.70328C13.9447 7.37894 14.4603 7.19531 15.0001 7.19531C15.54 7.19531 16.0555 7.37894 16.4566 7.70328L16.4601 7.70576L22.0328 12.2756H22.0321C22.2772 12.4745 22.4712 12.7195 22.6035 12.9922C22.7362 13.266 22.8049 13.5625 22.8048 13.8616V20.7172Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M22.8046 13.8614C22.8046 13.6372 22.7664 13.4145 22.6912 13.2017L22.6035 12.992C22.5043 12.7875 22.3701 12.599 22.206 12.4334L22.0325 12.2761L16.4599 7.70539L16.457 7.70349C16.1061 7.41977 15.6673 7.24364 15.2016 7.20399L15.0005 7.19541C14.4607 7.19541 13.945 7.37923 13.5439 7.70349L13.5401 7.70539L7.96753 12.2761L7.79309 12.4334C7.62932 12.5989 7.49562 12.7878 7.39654 12.992C7.26384 13.2657 7.19539 13.5624 7.19541 13.8614V20.717C7.19547 21.2607 7.42094 21.7895 7.83408 22.185C8.19694 22.5322 8.68052 22.753 9.20197 22.8027L9.42693 22.8132H20.5731L20.798 22.8027C21.3195 22.7531 21.803 22.5322 22.1659 22.185C22.5791 21.7895 22.8045 21.2607 22.8046 20.717V13.8614ZM8.4756 20.717V13.8614C8.47561 13.7533 8.49441 13.6465 8.52994 13.5458L8.57093 13.4477C8.63309 13.3196 8.72204 13.2084 8.82925 13.1217L8.83211 13.1198L14.4018 8.55186C14.5754 8.41173 14.7881 8.34024 15.0005 8.34024L15.1587 8.35359C15.3161 8.38022 15.468 8.4468 15.5982 8.55186L21.1679 13.1198L21.044 13.2704L15.4761 8.70438L15.3675 8.63098C15.2539 8.56784 15.1272 8.53572 15.0005 8.53566C14.8316 8.53566 14.6628 8.59289 14.5248 8.70438L8.95603 13.2704L8.9465 13.2789L8.94555 13.278C8.86298 13.3461 8.7947 13.4328 8.74632 13.5325C8.69692 13.6344 8.67102 13.7471 8.67102 13.8614V20.717C8.67106 20.9266 8.75833 21.1223 8.90456 21.2623C9.0496 21.401 9.23873 21.4729 9.42788 21.4729H20.5731V21.6683H9.42693L9.33828 21.6636C9.13082 21.6439 8.92878 21.556 8.7692 21.4033C8.60842 21.2494 8.50388 21.0417 8.48037 20.8152L8.4756 20.717ZM21.329 20.717V13.8614C21.329 13.7471 21.3031 13.6344 21.2537 13.5325C21.2042 13.4307 21.1337 13.343 21.0487 13.2742H21.0478L21.044 13.2713L21.1679 13.1198L21.1707 13.1217C21.278 13.2084 21.3669 13.3196 21.4291 13.4477C21.4912 13.5758 21.5244 13.7173 21.5244 13.8614V20.717C21.5243 20.9812 21.4145 21.2275 21.2308 21.4033C21.0485 21.5778 20.811 21.6682 20.5731 21.6683V21.4729C20.7621 21.4728 20.9514 21.401 21.0964 21.2623C21.2424 21.1223 21.3289 20.9264 21.329 20.717ZM23 20.717C22.9999 21.3152 22.7519 21.8947 22.3013 22.3261C21.8495 22.7584 21.2284 23.0084 20.5731 23.0086H9.42693C8.77168 23.0084 8.15046 22.7583 7.69872 22.3261C7.24818 21.8947 7.00006 21.3152 7 20.717V13.8614C6.99997 13.5324 7.0758 13.2069 7.22115 12.9072C7.36584 12.6088 7.57711 12.3411 7.84361 12.1246L13.4162 7.55478L13.4267 7.54716C13.8623 7.19714 14.4192 7 15.0005 7C15.5799 7.00009 16.1346 7.19628 16.5695 7.5443H16.5704L16.5733 7.54716L16.5838 7.55478L22.1564 12.1246C22.1577 12.1257 22.1589 12.1273 22.1602 12.1284C22.4246 12.3442 22.6348 12.6102 22.7789 12.9072C22.9242 13.2069 23 13.5324 23 13.8614V20.717Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON ANILLO -->\r\n<div *ngIf=\"icon == 'ring'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M17.1822 5L17.295 5.0071C17.5551 5.0397 17.7911 5.18361 17.9386 5.40483L19.3928 7.587C19.6072 7.90887 19.5951 8.33149 19.3617 8.63991L16.8156 12.0028C16.5126 12.4032 15.9428 12.4824 15.5425 12.1795C15.1421 11.8765 15.0628 11.3059 15.3658 10.9055L17.5214 8.05664L16.6957 6.81818H13.3044L12.4778 8.05664L14.6343 10.9055C14.9373 11.3059 14.858 11.8765 14.4576 12.1795C14.0573 12.4824 13.4875 12.4032 13.1845 12.0028L10.6384 8.63991C10.405 8.33149 10.3929 7.90887 10.6073 7.587L12.0615 5.40483C12.23 5.15202 12.514 5.00012 12.8179 5H17.1822Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M20.4545 17.7273C20.4545 14.7149 18.0125 12.2728 15 12.2728C11.9875 12.2728 9.54545 14.7149 9.54545 17.7273C9.54545 20.7398 11.9875 23.1819 15 23.1819C18.0125 23.1819 20.4545 20.7398 20.4545 17.7273ZM22.2727 17.7273C22.2727 21.7439 19.0166 25 15 25C10.9834 25 7.72726 21.7439 7.72726 17.7273C7.72726 13.7107 10.9834 10.4546 15 10.4546C19.0166 10.4546 22.2727 13.7107 22.2727 17.7273Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M17.1822 5L17.295 5.0071C17.5551 5.0397 17.7911 5.18361 17.9386 5.40483L19.3928 7.587C19.6072 7.90887 19.5951 8.33149 19.3617 8.63991L16.8156 12.0028C16.5126 12.4032 15.9428 12.4824 15.5425 12.1795C15.1421 11.8765 15.0628 11.3059 15.3658 10.9055L17.5214 8.05664L16.6957 6.81818H13.3044L12.4778 8.05664L14.6343 10.9055C14.9373 11.3059 14.858 11.8765 14.4576 12.1795C14.0573 12.4824 13.4875 12.4032 13.1845 12.0028L10.6384 8.63991C10.405 8.33149 10.3929 7.90887 10.6073 7.587L12.0615 5.40483C12.23 5.15202 12.514 5.00012 12.8179 5H17.1822Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M20.4545 17.7273C20.4545 14.7149 18.0125 12.2728 15 12.2728C11.9875 12.2728 9.54545 14.7149 9.54545 17.7273C9.54545 20.7398 11.9875 23.1819 15 23.1819C18.0125 23.1819 20.4545 20.7398 20.4545 17.7273ZM22.2727 17.7273C22.2727 21.7439 19.0166 25 15 25C10.9834 25 7.72726 21.7439 7.72726 17.7273C7.72726 13.7107 10.9834 10.4546 15 10.4546C19.0166 10.4546 22.2727 13.7107 22.2727 17.7273Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON TRABAJO -->\r\n<div *ngIf=\"icon == 'suitcase'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M7.8 23C7.305 23 6.8814 22.8352 6.5292 22.5057C6.177 22.1761 6.0006 21.7795 6 21.3158V12.0526C6 11.5895 6.1764 11.1931 6.5292 10.8636C6.882 10.534 7.3056 10.369 7.8 10.3684H11.4V8.68421C11.4 8.22105 11.5764 7.8247 11.9292 7.49516C12.282 7.16561 12.7056 7.00056 13.2 7H16.8C17.295 7 17.7189 7.16505 18.0717 7.49516C18.4245 7.82526 18.6006 8.22161 18.6 8.68421V10.3684H22.2C22.695 10.3684 23.1189 10.5335 23.4717 10.8636C23.8245 11.1937 24.0006 11.59 24 12.0526V21.3158C24 21.7789 23.8239 22.1756 23.4717 22.5057C23.1195 22.8358 22.6956 23.0006 22.2 23H7.8ZM7.8 21.3158H22.2V12.0526H7.8V21.3158ZM13.2 10.3684H16.8V8.68421H13.2V10.3684Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M7.8 23C7.305 23 6.8814 22.8352 6.5292 22.5057C6.177 22.1761 6.0006 21.7795 6 21.3158V12.0526C6 11.5895 6.1764 11.1931 6.5292 10.8636C6.882 10.534 7.3056 10.369 7.8 10.3684H11.4V8.68421C11.4 8.22105 11.5764 7.8247 11.9292 7.49516C12.282 7.16561 12.7056 7.00056 13.2 7H16.8C17.295 7 17.7189 7.16505 18.0717 7.49516C18.4245 7.82526 18.6006 8.22161 18.6 8.68421V10.3684H22.2C22.695 10.3684 23.1189 10.5335 23.4717 10.8636C23.8245 11.1937 24.0006 11.59 24 12.0526V21.3158C24 21.7789 23.8239 22.1756 23.4717 22.5057C23.1195 22.8358 22.6956 23.0006 22.2 23H7.8ZM7.8 21.3158H22.2V12.0526H7.8V21.3158ZM13.2 10.3684H16.8V8.68421H13.2V10.3684Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON PATOL\u00D3GICOS -->\r\n<div *ngIf=\"icon == 'virus'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M13.3871 15C13.0681 15 12.7563 14.9054 12.491 14.7282C12.2258 14.5509 12.019 14.299 11.897 14.0043C11.7749 13.7096 11.743 13.3853 11.8052 13.0724C11.8674 12.7596 12.021 12.4722 12.2466 12.2466C12.4722 12.021 12.7596 11.8674 13.0724 11.8052C13.3853 11.743 13.7096 11.7749 14.0043 11.897C14.299 12.019 14.5509 12.2258 14.7282 12.491C14.9054 12.7563 15 13.0681 15 13.3871C15 13.8149 14.8301 14.2251 14.5276 14.5276C14.2251 14.8301 13.8149 15 13.3871 15ZM18.2258 13.3871C17.9068 13.3871 17.595 13.4817 17.3297 13.6589C17.0645 13.8361 16.8578 14.088 16.7357 14.3828C16.6136 14.6775 16.5817 15.0018 16.6439 15.3147C16.7061 15.6275 16.8597 15.9149 17.0853 16.1405C17.3109 16.3661 17.5983 16.5197 17.9111 16.5819C18.224 16.6441 18.5483 16.6122 18.843 16.4901C19.1378 16.3681 19.3897 16.1613 19.5669 15.8961C19.7441 15.6308 19.8387 15.319 19.8387 15C19.8387 14.5722 19.6688 14.162 19.3663 13.8595C19.0638 13.557 18.6536 13.3871 18.2258 13.3871ZM15 16.6129C14.681 16.6129 14.3692 16.7075 14.1039 16.8847C13.8387 17.062 13.6319 17.3139 13.5099 17.6086C13.3878 17.9033 13.3559 18.2276 13.4181 18.5405C13.4803 18.8533 13.6339 19.1407 13.8595 19.3663C14.0851 19.5919 14.3725 19.7455 14.6853 19.8077C14.9982 19.87 15.3225 19.838 15.6172 19.7159C15.912 19.5939 16.1639 19.3871 16.3411 19.1219C16.5183 18.8566 16.6129 18.5448 16.6129 18.2258C16.6129 17.798 16.443 17.3878 16.1405 17.0853C15.838 16.7828 15.4278 16.6129 15 16.6129ZM25 15C25 15.2567 24.898 15.5028 24.7166 15.6843C24.5351 15.8658 24.2889 15.9677 24.0323 15.9677H23.0065C22.8302 17.4307 22.2549 18.8171 21.3435 19.975L22.1363 20.7669C22.3181 20.9487 22.4202 21.1953 22.4202 21.4524C22.4202 21.7095 22.3181 21.9561 22.1363 22.1379C21.9545 22.3197 21.7079 22.4218 21.4508 22.4218C21.1937 22.4218 20.9471 22.3197 20.7653 22.1379L19.9734 21.3452C18.8157 22.2557 17.43 22.8304 15.9677 23.0065V24.0323C15.9677 24.2889 15.8658 24.5351 15.6843 24.7166C15.5028 24.898 15.2567 25 15 25C14.7433 25 14.4972 24.898 14.3157 24.7166C14.1342 24.5351 14.0323 24.2889 14.0323 24.0323V23.0065C12.5693 22.8302 11.1829 22.2549 10.025 21.3435L9.23306 22.1363C9.14305 22.2263 9.03618 22.2977 8.91856 22.3464C8.80095 22.3952 8.67489 22.4202 8.54758 22.4202C8.42027 22.4202 8.29421 22.3952 8.1766 22.3464C8.05898 22.2977 7.95212 22.2263 7.8621 22.1363C7.77208 22.0463 7.70067 21.9394 7.65195 21.8218C7.60324 21.7042 7.57816 21.5781 7.57816 21.4508C7.57816 21.3235 7.60324 21.1974 7.65195 21.0798C7.70067 20.9622 7.77208 20.8553 7.8621 20.7653L8.65484 19.9734C7.7443 18.8157 7.16959 17.43 6.99355 15.9677H5.96774C5.71108 15.9677 5.46493 15.8658 5.28345 15.6843C5.10196 15.5028 5 15.2567 5 15C5 14.7433 5.10196 14.4972 5.28345 14.3157C5.46493 14.1342 5.71108 14.0323 5.96774 14.0323H6.99355C7.16978 12.5693 7.74506 11.1829 8.65645 10.025L7.86371 9.23306C7.68191 9.05126 7.57977 8.80469 7.57977 8.54758C7.57977 8.42027 7.60485 8.29421 7.65357 8.1766C7.70228 8.05898 7.77369 7.95212 7.86371 7.8621C7.95373 7.77208 8.0606 7.70067 8.17821 7.65195C8.29583 7.60324 8.42189 7.57816 8.54919 7.57816C8.8063 7.57816 9.05288 7.6803 9.23468 7.8621L10.0266 8.65484C11.1843 7.7443 12.57 7.16959 14.0323 6.99355V5.96774C14.0323 5.71108 14.1342 5.46493 14.3157 5.28345C14.4972 5.10196 14.7433 5 15 5C15.2567 5 15.5028 5.10196 15.6843 5.28345C15.8658 5.46493 15.9677 5.71108 15.9677 5.96774V6.99355C17.4307 7.16978 18.8171 7.74506 19.975 8.65645L20.7669 7.86371C20.9487 7.68191 21.1953 7.57977 21.4524 7.57977C21.7095 7.57977 21.9561 7.68191 22.1379 7.86371C22.3197 8.04551 22.4218 8.29209 22.4218 8.54919C22.4218 8.8063 22.3197 9.05288 22.1379 9.23468L21.3452 10.0266C22.2557 11.1843 22.8304 12.57 23.0065 14.0323H24.0323C24.2889 14.0323 24.5351 14.1342 24.7166 14.3157C24.898 14.4972 25 14.7433 25 15ZM21.129 15C21.129 13.7878 20.7696 12.6028 20.0961 11.5949C19.4226 10.587 18.4654 9.8014 17.3455 9.33751C16.2255 8.87362 14.9932 8.75225 13.8043 8.98874C12.6154 9.22523 11.5233 9.80896 10.6661 10.6661C9.80896 11.5233 9.22523 12.6154 8.98874 13.8043C8.75225 14.9932 8.87362 16.2255 9.33751 17.3455C9.8014 18.4654 10.587 19.4226 11.5949 20.0961C12.6028 20.7696 13.7878 21.129 15 21.129C16.625 21.1273 18.1829 20.481 19.332 19.332C20.481 18.1829 21.1273 16.625 21.129 15Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M13.3871 15C13.0681 15 12.7563 14.9054 12.491 14.7282C12.2258 14.5509 12.019 14.299 11.897 14.0043C11.7749 13.7096 11.743 13.3853 11.8052 13.0724C11.8674 12.7596 12.021 12.4722 12.2466 12.2466C12.4722 12.021 12.7596 11.8674 13.0724 11.8052C13.3853 11.743 13.7096 11.7749 14.0043 11.897C14.299 12.019 14.5509 12.2258 14.7282 12.491C14.9054 12.7563 15 13.0681 15 13.3871C15 13.8149 14.8301 14.2251 14.5276 14.5276C14.2251 14.8301 13.8149 15 13.3871 15ZM18.2258 13.3871C17.9068 13.3871 17.595 13.4817 17.3297 13.6589C17.0645 13.8361 16.8578 14.088 16.7357 14.3828C16.6136 14.6775 16.5817 15.0018 16.6439 15.3147C16.7061 15.6275 16.8597 15.9149 17.0853 16.1405C17.3109 16.3661 17.5983 16.5197 17.9111 16.5819C18.224 16.6441 18.5483 16.6122 18.843 16.4901C19.1378 16.3681 19.3897 16.1613 19.5669 15.8961C19.7441 15.6308 19.8387 15.319 19.8387 15C19.8387 14.5722 19.6688 14.162 19.3663 13.8595C19.0638 13.557 18.6536 13.3871 18.2258 13.3871ZM15 16.6129C14.681 16.6129 14.3692 16.7075 14.1039 16.8847C13.8387 17.062 13.6319 17.3139 13.5099 17.6086C13.3878 17.9033 13.3559 18.2276 13.4181 18.5405C13.4803 18.8533 13.6339 19.1407 13.8595 19.3663C14.0851 19.5919 14.3725 19.7455 14.6853 19.8077C14.9982 19.87 15.3225 19.838 15.6172 19.7159C15.912 19.5939 16.1639 19.3871 16.3411 19.1219C16.5183 18.8566 16.6129 18.5448 16.6129 18.2258C16.6129 17.798 16.443 17.3878 16.1405 17.0853C15.838 16.7828 15.4278 16.6129 15 16.6129ZM25 15C25 15.2567 24.898 15.5028 24.7166 15.6843C24.5351 15.8658 24.2889 15.9677 24.0323 15.9677H23.0065C22.8302 17.4307 22.2549 18.8171 21.3435 19.975L22.1363 20.7669C22.3181 20.9487 22.4202 21.1953 22.4202 21.4524C22.4202 21.7095 22.3181 21.9561 22.1363 22.1379C21.9545 22.3197 21.7079 22.4218 21.4508 22.4218C21.1937 22.4218 20.9471 22.3197 20.7653 22.1379L19.9734 21.3452C18.8157 22.2557 17.43 22.8304 15.9677 23.0065V24.0323C15.9677 24.2889 15.8658 24.5351 15.6843 24.7166C15.5028 24.898 15.2567 25 15 25C14.7433 25 14.4972 24.898 14.3157 24.7166C14.1342 24.5351 14.0323 24.2889 14.0323 24.0323V23.0065C12.5693 22.8302 11.1829 22.2549 10.025 21.3435L9.23306 22.1363C9.14305 22.2263 9.03618 22.2977 8.91856 22.3464C8.80095 22.3952 8.67489 22.4202 8.54758 22.4202C8.42027 22.4202 8.29421 22.3952 8.1766 22.3464C8.05898 22.2977 7.95212 22.2263 7.8621 22.1363C7.77208 22.0463 7.70067 21.9394 7.65195 21.8218C7.60324 21.7042 7.57816 21.5781 7.57816 21.4508C7.57816 21.3235 7.60324 21.1974 7.65195 21.0798C7.70067 20.9622 7.77208 20.8553 7.8621 20.7653L8.65484 19.9734C7.7443 18.8157 7.16959 17.43 6.99355 15.9677H5.96774C5.71108 15.9677 5.46493 15.8658 5.28345 15.6843C5.10196 15.5028 5 15.2567 5 15C5 14.7433 5.10196 14.4972 5.28345 14.3157C5.46493 14.1342 5.71108 14.0323 5.96774 14.0323H6.99355C7.16978 12.5693 7.74506 11.1829 8.65645 10.025L7.86371 9.23306C7.68191 9.05126 7.57977 8.80469 7.57977 8.54758C7.57977 8.42027 7.60485 8.29421 7.65357 8.1766C7.70228 8.05898 7.77369 7.95212 7.86371 7.8621C7.95373 7.77208 8.0606 7.70067 8.17821 7.65195C8.29583 7.60324 8.42189 7.57816 8.54919 7.57816C8.8063 7.57816 9.05288 7.6803 9.23468 7.8621L10.0266 8.65484C11.1843 7.7443 12.57 7.16959 14.0323 6.99355V5.96774C14.0323 5.71108 14.1342 5.46493 14.3157 5.28345C14.4972 5.10196 14.7433 5 15 5C15.2567 5 15.5028 5.10196 15.6843 5.28345C15.8658 5.46493 15.9677 5.71108 15.9677 5.96774V6.99355C17.4307 7.16978 18.8171 7.74506 19.975 8.65645L20.7669 7.86371C20.9487 7.68191 21.1953 7.57977 21.4524 7.57977C21.7095 7.57977 21.9561 7.68191 22.1379 7.86371C22.3197 8.04551 22.4218 8.29209 22.4218 8.54919C22.4218 8.8063 22.3197 9.05288 22.1379 9.23468L21.3452 10.0266C22.2557 11.1843 22.8304 12.57 23.0065 14.0323H24.0323C24.2889 14.0323 24.5351 14.1342 24.7166 14.3157C24.898 14.4972 25 14.7433 25 15ZM21.129 15C21.129 13.7878 20.7696 12.6028 20.0961 11.5949C19.4226 10.587 18.4654 9.8014 17.3455 9.33751C16.2255 8.87362 14.9932 8.75225 13.8043 8.98874C12.6154 9.22523 11.5233 9.80896 10.6661 10.6661C9.80896 11.5233 9.22523 12.6154 8.98874 13.8043C8.75225 14.9932 8.87362 16.2255 9.33751 17.3455C9.8014 18.4654 10.587 19.4226 11.5949 20.0961C12.6028 20.7696 13.7878 21.129 15 21.129C16.625 21.1273 18.1829 20.481 19.332 19.332C20.481 18.1829 21.1273 16.625 21.129 15Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON OBST\u00C9TRICOS -->\r\n<div *ngIf=\"icon == 'obstetrics'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.9042 22.6873L12.6076 22.0925C12.4811 21.8588 12.3933 21.6169 12.3442 21.3668C12.2944 21.1172 12.2695 20.8597 12.2695 20.5943C12.2695 20.2652 12.3135 19.9431 12.4013 19.628C12.4891 19.3129 12.6288 19.0204 12.8204 18.7505C12.9555 18.5391 13.0623 18.3093 13.1409 18.0611C13.2201 17.8128 13.2598 17.5591 13.2598 17.3001C13.2598 17.0206 13.2106 16.7513 13.1124 16.4923C13.0141 16.2325 12.9073 15.9728 12.7918 15.7131C12.6623 15.4355 12.5505 15.1558 12.4565 14.8738C12.3626 14.5924 12.3156 14.3031 12.3156 14.0058V11.1126C12.3156 10.604 12.1636 10.1584 11.8596 9.77583C11.5557 9.39325 11.1703 9.20228 10.7036 9.20292C10.3106 9.20292 9.96183 9.31718 9.65724 9.54571C9.35204 9.77487 9.17304 10.0728 9.12023 10.4395C9.62991 10.5604 10.0536 10.8364 10.3914 11.2673C10.7291 11.6983 10.8983 12.1973 10.8989 12.7645C10.8989 13.4259 10.6748 13.9893 10.2265 14.4546C9.77822 14.9199 9.23475 15.1523 8.59611 15.1516C7.95746 15.151 7.41431 14.9187 6.96664 14.4546C6.51897 13.9905 6.29483 13.4272 6.29422 12.7645C6.29422 12.177 6.4766 11.6642 6.84137 11.2262C7.20613 10.7883 7.65902 10.5225 8.20002 10.4289C8.26512 9.80193 8.53869 9.28154 9.02075 8.86777C9.5028 8.454 10.0641 8.24711 10.7046 8.24711C10.7647 8.24711 10.8222 8.25125 10.8768 8.25953C10.9315 8.2678 10.9886 8.27544 11.0481 8.28244C11.6413 7.91642 12.2748 7.65988 12.9484 7.51283C13.6221 7.36579 14.3086 7.29258 15.008 7.29322C15.7167 7.29322 16.4078 7.36642 17.0815 7.51283C17.7551 7.65924 18.3886 7.91578 18.9818 8.28244C19.0297 8.2748 19.084 8.26717 19.1448 8.25953C19.2056 8.25189 19.2596 8.24775 19.3069 8.24711C19.9505 8.24711 20.5136 8.454 20.9963 8.86777C21.4789 9.28154 21.7525 9.80193 21.817 10.4289C22.358 10.534 22.8081 10.8026 23.1674 11.2348C23.526 11.6671 23.7053 12.177 23.7053 12.7645C23.7053 13.4259 23.4812 13.9893 23.0329 14.4546C22.5846 14.9199 22.0411 15.1523 21.4025 15.1516C20.7638 15.151 20.2207 14.9187 19.773 14.4546C19.3254 13.9905 19.1012 13.4272 19.1006 12.7645C19.1006 12.1967 19.2695 11.6944 19.6072 11.2578C19.945 10.8211 20.3748 10.5486 20.8968 10.4404C20.8311 10.0731 20.649 9.77487 20.3506 9.54571C20.0515 9.31655 19.7036 9.20196 19.3069 9.20196C18.8402 9.20196 18.4558 9.39325 18.1537 9.77583C17.8516 10.1584 17.7005 10.604 17.7005 11.1126V14.0058C17.7005 14.3031 17.6526 14.5927 17.5568 14.8747C17.4616 15.1561 17.3508 15.4355 17.2243 15.7131C17.1051 15.9728 16.9974 16.2325 16.901 16.4923C16.8045 16.752 16.7563 17.0212 16.7563 17.3001C16.7563 17.5598 16.7932 17.8166 16.8669 18.0706C16.9406 18.3246 17.056 18.5576 17.2132 18.7696C17.3895 19.0509 17.5224 19.3431 17.6121 19.6461C17.7017 19.9491 17.7465 20.2652 17.7465 20.5943C17.7465 20.8597 17.718 21.1175 17.6609 21.3677C17.6038 21.6173 17.5196 21.8592 17.4085 22.0934L17.1128 22.7064L16.2691 22.2691L16.5657 21.6742C16.6541 21.51 16.7195 21.3381 16.7619 21.1586C16.8042 20.9791 16.8254 20.791 16.8254 20.5943C16.8254 20.3543 16.7886 20.1251 16.7149 19.9068C16.6412 19.6885 16.5469 19.4758 16.4321 19.269C16.2295 18.987 16.079 18.6795 15.9808 18.3466C15.8837 18.0136 15.8352 17.6728 15.8352 17.3239C15.8352 16.9948 15.8853 16.6823 15.9854 16.3863C16.0855 16.0903 16.2021 15.8019 16.3354 15.5212C16.4508 15.2735 16.5537 15.024 16.644 14.7726C16.7342 14.5211 16.7794 14.2655 16.7794 14.0058V11.1126C16.7794 10.632 16.8782 10.1839 17.076 9.76819C17.2737 9.35251 17.5451 9.02595 17.8902 8.78851C17.4321 8.58799 16.9624 8.44795 16.4809 8.36838C15.9995 8.28754 15.5085 8.24711 15.008 8.24711C14.5076 8.24711 14.0135 8.28722 13.526 8.36742C13.0384 8.44763 12.5717 8.58799 12.1259 8.78851C12.471 9.02595 12.7424 9.35251 12.9401 9.76819C13.1379 10.1839 13.2367 10.6317 13.2367 11.1117V14.0058C13.2367 14.2776 13.2809 14.5402 13.3694 14.7936C13.4578 15.0469 13.5616 15.2952 13.6807 15.5384C13.8109 15.8204 13.9266 16.1094 14.028 16.4054C14.1299 16.7007 14.1809 17.0069 14.1809 17.3239C14.1809 17.6728 14.1321 18.0127 14.0344 18.3437C13.9368 18.6747 13.7925 18.9831 13.6015 19.269C13.4701 19.4771 13.3688 19.69 13.2975 19.9078C13.2263 20.1255 13.1907 20.3543 13.1907 20.5943C13.1907 20.7904 13.2149 20.9781 13.2634 21.1577C13.312 21.3378 13.3746 21.5097 13.4513 21.6733L13.7286 22.2691L12.9042 22.6873ZM8.59611 14.1968C8.975 14.1968 9.29985 14.0564 9.57066 13.7757C9.84208 13.4943 9.97779 13.1573 9.97779 12.7645C9.97779 12.3718 9.84208 12.0347 9.57066 11.7533C9.29923 11.472 8.97407 11.3316 8.59519 11.3322C8.2163 11.3329 7.89145 11.4732 7.62064 11.7533C7.34983 12.0347 7.21442 12.3718 7.21442 12.7645C7.21442 13.1573 7.34952 13.4943 7.61972 13.7757C7.88991 14.0571 8.21538 14.1974 8.59611 14.1968ZM21.4025 14.1968C21.782 14.1968 22.1071 14.0564 22.378 13.7757C22.6488 13.4943 22.7842 13.1573 22.7842 12.7645C22.7842 12.3718 22.6488 12.0347 22.378 11.7533C22.1071 11.472 21.782 11.3316 21.4025 11.3322C21.023 11.3329 20.6981 11.4732 20.4279 11.7533C20.1565 12.0347 20.0208 12.3718 20.0208 12.7645C20.0208 13.1573 20.1565 13.4943 20.4279 13.7757C20.6994 14.0571 21.0242 14.1974 21.4025 14.1968Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M13.2366 11.1113C13.2366 10.6913 13.1609 10.2959 13.0095 9.92515L12.9405 9.76732C12.7427 9.35172 12.4709 9.02521 12.1259 8.78781C12.4601 8.6375 12.8061 8.52136 13.1638 8.43866L13.526 8.36692C14.0135 8.28674 14.5073 8.24642 15.0077 8.2464C15.5081 8.2464 15.9993 8.28706 16.4807 8.36788C16.9621 8.44745 17.4323 8.58729 17.8904 8.78781C17.5454 9.0252 17.2735 9.35176 17.0758 9.76732C16.8781 10.183 16.7797 10.6316 16.7797 11.1122V14.0049L16.7711 14.199C16.7541 14.3924 16.7113 14.5833 16.6436 14.772C16.5533 15.0234 16.4504 15.2734 16.335 15.521C16.2018 15.8016 16.0852 16.0899 15.9852 16.3857C15.8851 16.6816 15.8348 16.9942 15.8347 17.3231C15.8347 17.6718 15.8835 18.0129 15.9804 18.3457C16.0787 18.6786 16.2291 18.9868 16.4318 19.2688C16.5465 19.4755 16.6409 19.6877 16.7145 19.9058C16.7882 20.1241 16.8257 20.3537 16.8257 20.5936L16.8219 20.74C16.8139 20.8842 16.7932 21.0234 16.7615 21.158C16.7191 21.3374 16.6543 21.5094 16.566 21.6736L16.2689 22.2685L17.1132 22.7057L17.4084 22.0925C17.4917 21.9169 17.5605 21.7372 17.6135 21.553L17.6604 21.3675C17.7032 21.1799 17.7302 20.9878 17.7409 20.7916L17.7467 20.5936C17.7467 20.3468 17.7214 20.1074 17.671 19.8752L17.6125 19.6457C17.5452 19.4184 17.4534 19.1969 17.3375 18.9818L17.2129 18.7695C17.095 18.6105 17.0011 18.4393 16.9301 18.2567L16.8669 18.0702C16.8116 17.8796 16.7772 17.6873 16.7634 17.4934L16.7567 17.2992C16.7567 17.0901 16.7839 16.8864 16.8381 16.688L16.9014 16.4919C16.9495 16.3622 17 16.2323 17.0538 16.1026L17.2244 15.7123C17.3508 15.4349 17.4618 15.1556 17.5569 14.8744C17.6288 14.6629 17.6731 14.4469 17.6911 14.2268L17.7007 14.0049V11.1122C17.7007 10.667 17.8161 10.27 18.0476 9.92132L18.154 9.77497C18.4561 9.39265 18.8404 9.20105 19.3069 9.20104C19.7036 9.20104 20.0515 9.31623 20.3505 9.5454C20.6489 9.77453 20.8311 10.0726 20.8968 10.4398C20.3748 10.548 19.9446 10.8209 19.6069 11.2576L19.488 11.4241C19.2295 11.8205 19.1008 12.2674 19.1008 12.7642L19.1114 13.0081C19.1609 13.5661 19.381 14.0485 19.7727 14.4544C20.1643 14.8604 20.6293 15.089 21.1671 15.1403L21.4028 15.1508C21.9615 15.1513 22.4475 14.9741 22.8605 14.618L23.033 14.4544C23.4253 14.0472 23.6463 13.5646 23.6952 13.0072L23.7048 12.7642C23.7048 12.2502 23.5682 11.7953 23.2937 11.4002L23.1672 11.2347C22.8079 10.8024 22.3579 10.5333 21.8168 10.4283C21.7604 9.87975 21.5436 9.41323 21.1671 9.0279L20.9965 8.8672C20.5138 8.45343 19.9504 8.2464 19.3069 8.2464C19.2597 8.24703 19.2056 8.2512 19.1449 8.25883L18.982 8.28179L18.7577 8.14978C18.3053 7.8954 17.8304 7.70251 17.3327 7.57202L17.0816 7.51272C16.4079 7.36631 15.7163 7.29271 15.0077 7.29271C14.3084 7.2921 13.6217 7.3657 12.9481 7.51272L12.698 7.57298C12.1173 7.7256 11.5668 7.96148 11.0477 8.28179L10.8771 8.25883L10.7046 8.2464C10.0641 8.2464 9.50281 8.45346 9.02076 8.8672L8.85018 9.0279C8.47404 9.41322 8.25739 9.87975 8.2004 10.4283C7.6594 10.5219 7.20621 10.7881 6.84144 11.2261L6.71302 11.3935C6.43377 11.793 6.29422 12.2501 6.29422 12.7642L6.30476 13.0081C6.35424 13.5661 6.57534 14.0485 6.96699 14.4544C7.35871 14.8604 7.82349 15.0891 8.36141 15.1403L8.59621 15.1508C9.15489 15.1513 9.64088 14.9741 10.0539 14.618L10.2264 14.4544C10.6187 14.0472 10.8396 13.5646 10.8886 13.0072L10.8992 12.7642C10.8986 12.2679 10.7687 11.8237 10.5101 11.4317L10.3912 11.2672C10.0535 10.8363 9.63005 10.5598 9.12043 10.4388C9.16667 10.118 9.30938 9.84989 9.54882 9.63436L9.65712 9.5454C9.9617 9.31687 10.3106 9.20199 10.7037 9.20199L10.8752 9.21156C11.2655 9.25299 11.5936 9.44053 11.8594 9.77497C12.1634 10.1575 12.3156 10.6036 12.3156 11.1122V14.0049L12.3242 14.2268C12.3419 14.4468 12.386 14.6624 12.4565 14.8734C12.5504 15.1553 12.6624 15.4349 12.7919 15.7123C12.9074 15.972 13.0138 16.2322 13.112 16.4919C13.2102 16.7509 13.2596 17.0199 13.2596 17.2992C13.2596 17.5583 13.22 17.8124 13.1408 18.0607C13.0622 18.3089 12.9558 18.539 12.8207 18.7503C12.6291 19.0202 12.4887 19.3124 12.4009 19.6275L12.3434 19.8647C12.294 20.1037 12.2696 20.3467 12.2696 20.5936L12.2744 20.7916C12.2837 20.9876 12.3071 21.1794 12.3444 21.3665C12.3935 21.6165 12.4815 21.8581 12.6079 22.0916L12.9041 22.6866L13.7283 22.2685L13.4513 21.6726C13.4129 21.5908 13.3781 21.507 13.3468 21.421L13.2634 21.157C13.215 20.9775 13.1906 20.7896 13.1906 20.5936C13.1906 20.4136 13.2109 20.2398 13.251 20.0723L13.2979 19.9068C13.3692 19.6893 13.4705 19.4767 13.6017 19.2688C13.7927 18.983 13.9363 18.6739 14.034 18.3428C14.1316 18.0119 14.1806 17.6719 14.1806 17.3231C14.1806 17.0063 14.1301 16.7001 14.0282 16.4049C13.9775 16.2568 13.9232 16.1104 13.8653 15.9658L13.6803 15.5382C13.6207 15.4166 13.5655 15.2932 13.5136 15.169L13.3698 14.7931C13.2814 14.5397 13.2366 14.2767 13.2366 14.0049V11.1113ZM9.68299 12.7642C9.68299 12.447 9.57638 12.1831 9.35811 11.9569C9.14027 11.7311 8.89099 11.6254 8.59525 11.6259C8.29906 11.6265 8.04945 11.7316 7.83239 11.9559C7.61467 12.1821 7.50847 12.4468 7.50847 12.7642C7.50851 13.0817 7.6153 13.3454 7.83239 13.5715C8.04846 13.7965 8.29739 13.9029 8.59525 13.9025H8.59621C8.8922 13.9025 9.14099 13.7965 9.35811 13.5715C9.57634 13.3453 9.68295 13.0813 9.68299 12.7642ZM22.4896 12.7642C22.4896 12.4469 22.3833 12.183 22.1657 11.9569C21.9486 11.7314 21.6994 11.6254 21.4028 11.6259C21.1056 11.6264 20.8564 11.7325 20.64 11.9569C20.4218 12.1831 20.3151 12.447 20.3151 12.7642C20.3151 13.0813 20.4217 13.3453 20.64 13.5715C20.8579 13.7974 21.1069 13.903 21.4019 13.9025L21.4028 14.1962L21.2629 14.1895C20.9894 14.1635 20.7461 14.0583 20.5326 13.8738L20.4282 13.7753C20.1907 13.5291 20.0573 13.2401 20.0276 12.9086L20.0209 12.7642C20.0209 12.4207 20.1247 12.1195 20.3323 11.8612L20.4282 11.7531C20.6984 11.473 21.0233 11.3319 21.4028 11.3313L21.5418 11.338C21.8621 11.3682 22.1404 11.5069 22.3775 11.7531C22.6483 12.0345 22.7838 12.3714 22.7838 12.7642L22.7781 12.9086C22.7485 13.2402 22.6145 13.5291 22.3775 13.7753L22.274 13.8738C22.0252 14.0887 21.7348 14.1961 21.4028 14.1962V13.9025C21.6995 13.9024 21.9487 13.7964 22.1657 13.5715L22.2424 13.4854C22.4086 13.279 22.4896 13.0419 22.4896 12.7642ZM9.97146 12.9086C9.94178 13.2401 9.80834 13.5291 9.57087 13.7753L9.4664 13.8738C9.21766 14.0887 8.92767 14.1961 8.59621 14.1962L8.45629 14.1895C8.18102 14.1636 7.93716 14.0584 7.7241 13.8738L7.61964 13.7753C7.38321 13.5291 7.25051 13.2401 7.22096 12.9086L7.21425 12.7642C7.21425 12.3715 7.3499 12.0345 7.62059 11.7531C7.8914 11.473 8.21636 11.3319 8.59525 11.3313L8.73517 11.338C9.05477 11.3683 9.33347 11.507 9.57087 11.7531C9.84212 12.0344 9.97817 12.3716 9.97817 12.7642L9.97146 12.9086ZM13.5308 14.0049C13.5308 14.2442 13.5703 14.4746 13.6477 14.6964C13.69 14.8174 13.7352 14.9375 13.7848 15.0561L13.9448 15.4091L13.9477 15.4148C14.082 15.7058 14.2016 16.004 14.3061 16.3092L14.3799 16.556C14.4434 16.8054 14.4748 17.0613 14.4748 17.3231C14.4748 17.6997 14.4223 18.0678 14.3167 18.4261C14.2115 18.7827 14.0552 19.1151 13.85 19.4237L13.8509 19.4247C13.7315 19.6139 13.641 19.8056 13.5778 19.9986C13.5167 20.1854 13.4848 20.3832 13.4848 20.5936C13.4848 20.7652 13.5067 20.9273 13.5481 21.0805C13.5702 21.1625 13.5954 21.2427 13.6238 21.3206L13.7177 21.5483L13.7187 21.5492L13.9956 22.1451C14.0622 22.2885 14.0034 22.4589 13.8624 22.5306L13.0373 22.9487C12.9674 22.984 12.8864 22.9903 12.8121 22.9659C12.7375 22.9413 12.6755 22.8878 12.6405 22.8176L12.3482 22.2312C12.2085 21.9731 12.11 21.7038 12.0549 21.4239L12.0204 21.2202C11.9903 21.0155 11.9754 20.8065 11.9754 20.5936C11.9754 20.2383 12.0223 19.8898 12.1172 19.5491C12.2132 19.2049 12.3661 18.885 12.5734 18.5906C12.6937 18.4021 12.789 18.1958 12.86 17.9717L12.906 17.8062C12.9454 17.6399 12.9654 17.4708 12.9654 17.2992C12.9654 17.0552 12.9224 16.8215 12.837 16.5962V16.5952C12.7414 16.3425 12.6369 16.0897 12.5245 15.8367C12.3904 15.5494 12.2752 15.259 12.1776 14.9662C12.0736 14.6548 12.0214 14.3336 12.0214 14.0049V11.1122C12.0214 10.667 11.8903 10.286 11.6294 9.95767C11.4096 9.68095 11.1502 9.53515 10.8397 9.50331L10.7037 9.49661C10.3724 9.49661 10.0862 9.59094 9.83442 9.77975C9.66189 9.9093 9.54358 10.0618 9.47407 10.2408C9.92572 10.4045 10.3105 10.6866 10.6231 11.0855C11.0028 11.5699 11.1926 12.1333 11.1934 12.7633V12.7642C11.1933 13.4994 10.9415 14.1367 10.4391 14.6582C9.93618 15.1803 9.31602 15.4461 8.59621 15.4454C7.8767 15.4447 7.25666 15.179 6.75423 14.6582C6.31497 14.2028 6.06708 13.658 6.0115 13.0359L6 12.7642C6 12.1104 6.20506 11.5301 6.61527 11.0376C6.97513 10.6057 7.41819 10.3186 7.93877 10.1844C8.048 9.57578 8.34609 9.05891 8.82909 8.64432C9.36493 8.18448 9.99436 7.95273 10.7046 7.95273C10.7783 7.95274 10.8507 7.95737 10.9212 7.96804C10.9424 7.97125 10.9642 7.97362 10.9864 7.97665C11.5809 7.62307 12.2143 7.37138 12.8858 7.22479C13.5802 7.07326 14.2877 6.99939 15.0077 7C15.7367 7 16.4492 7.07384 17.1439 7.22479C17.8148 7.37062 18.4474 7.62215 19.0414 7.97569C19.0629 7.97277 19.0856 7.96996 19.1085 7.96708C19.177 7.95849 19.2423 7.95355 19.3031 7.95273H19.3069L19.5704 7.96326C20.1763 8.01384 20.7185 8.24171 21.1882 8.64432C21.6727 9.05972 21.9702 9.5779 22.0785 10.1882C22.5977 10.3307 23.0386 10.6192 23.3943 11.0472C23.7987 11.5347 24 12.1118 24 12.7642C24 13.4994 23.7472 14.1367 23.2448 14.6582C22.7418 15.1801 22.1217 15.4461 21.4019 15.4454C20.6825 15.4446 20.0632 15.1789 19.5609 14.6582C19.1216 14.2028 18.8737 13.658 18.8181 13.0359L18.8066 12.7642C18.8066 12.1335 18.9953 11.5675 19.374 11.0778C19.6858 10.6747 20.0737 10.3932 20.5317 10.237C20.4564 10.0581 20.3381 9.90588 20.1713 9.77784C19.9265 9.59032 19.6423 9.49566 19.3069 9.49566C18.9351 9.49567 18.6342 9.64205 18.3849 9.95767C18.1258 10.286 17.9949 10.6666 17.9949 11.1122V14.0049C17.9949 14.3343 17.9419 14.6567 17.8358 14.9691C17.7374 15.2598 17.6231 15.5486 17.4927 15.8347H17.4917C17.3756 16.088 17.2712 16.3416 17.1774 16.5943C17.0933 16.8209 17.0509 17.0552 17.0509 17.2992C17.0509 17.5307 17.0836 17.7602 17.1496 17.988C17.1976 18.1534 17.2661 18.3083 17.3547 18.4528L17.4496 18.5944L17.463 18.6135C17.6526 18.9163 17.7967 19.2327 17.8943 19.5624C17.9922 19.8935 18.0409 20.2376 18.0409 20.5936C18.0409 20.8086 18.024 21.0199 17.9891 21.2269L17.9479 21.4325C17.886 21.7031 17.795 21.9655 17.6748 22.2188L17.6738 22.2207L17.3777 22.8329C17.3432 22.9045 17.2816 22.9599 17.2062 22.985C17.1306 23.0101 17.0478 23.0034 16.9771 22.9668L16.1337 22.5297C15.9912 22.4558 15.9338 22.281 16.0053 22.1375L16.3024 21.5425L16.3063 21.5349L16.3599 21.4268C16.4095 21.3183 16.4476 21.2065 16.4749 21.091C16.5117 20.935 16.5315 20.7691 16.5315 20.5936C16.5314 20.3844 16.4986 20.1873 16.4356 20.0005C16.3683 19.8009 16.2822 19.6056 16.1769 19.4151C15.9635 19.1129 15.8035 18.7841 15.6986 18.4289L15.6977 18.428C15.5929 18.0683 15.5405 17.6995 15.5405 17.3231C15.5405 16.964 15.5955 16.6197 15.7063 16.292C15.8099 15.9858 15.9307 15.6872 16.0686 15.3966C16.1803 15.157 16.2795 14.9153 16.3666 14.6725C16.4457 14.4521 16.4845 14.2297 16.4845 14.0049V11.1122C16.4845 10.5901 16.5931 10.0988 16.8104 9.64201C16.9475 9.35359 17.1179 9.09959 17.324 8.88442C17.0313 8.78421 16.7345 8.70759 16.4328 8.65771H16.4318C15.967 8.57968 15.4921 8.54006 15.0077 8.54006C14.5232 8.54008 14.0453 8.57922 13.574 8.65676C13.2701 8.70674 12.9757 8.78342 12.6894 8.8825C12.8965 9.09818 13.0682 9.35255 13.2059 9.64201C13.4231 10.0987 13.5308 10.5897 13.5308 11.1113V14.0049Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"15\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M12.9042 22.6873L12.6076 22.0925C12.4811 21.8588 12.3933 21.6169 12.3442 21.3668C12.2944 21.1172 12.2695 20.8597 12.2695 20.5943C12.2695 20.2652 12.3135 19.9431 12.4013 19.628C12.4891 19.3129 12.6288 19.0204 12.8204 18.7505C12.9555 18.5391 13.0623 18.3093 13.1409 18.0611C13.2201 17.8128 13.2598 17.5591 13.2598 17.3001C13.2598 17.0206 13.2106 16.7513 13.1124 16.4923C13.0141 16.2325 12.9073 15.9728 12.7918 15.7131C12.6623 15.4355 12.5505 15.1558 12.4565 14.8738C12.3626 14.5924 12.3156 14.3031 12.3156 14.0058V11.1126C12.3156 10.604 12.1636 10.1584 11.8596 9.77583C11.5557 9.39325 11.1703 9.20228 10.7036 9.20292C10.3106 9.20292 9.96183 9.31718 9.65724 9.54571C9.35204 9.77487 9.17304 10.0728 9.12023 10.4395C9.62991 10.5604 10.0536 10.8364 10.3914 11.2673C10.7291 11.6983 10.8983 12.1973 10.8989 12.7645C10.8989 13.4259 10.6748 13.9893 10.2265 14.4546C9.77822 14.9199 9.23475 15.1523 8.59611 15.1516C7.95746 15.151 7.41431 14.9187 6.96664 14.4546C6.51897 13.9905 6.29483 13.4272 6.29422 12.7645C6.29422 12.177 6.4766 11.6642 6.84137 11.2262C7.20613 10.7883 7.65902 10.5225 8.20002 10.4289C8.26512 9.80193 8.53869 9.28154 9.02075 8.86777C9.5028 8.454 10.0641 8.24711 10.7046 8.24711C10.7647 8.24711 10.8222 8.25125 10.8768 8.25953C10.9315 8.2678 10.9886 8.27544 11.0481 8.28244C11.6413 7.91642 12.2748 7.65988 12.9484 7.51283C13.6221 7.36579 14.3086 7.29258 15.008 7.29322C15.7167 7.29322 16.4078 7.36642 17.0815 7.51283C17.7551 7.65924 18.3886 7.91578 18.9818 8.28244C19.0297 8.2748 19.084 8.26717 19.1448 8.25953C19.2056 8.25189 19.2596 8.24775 19.3069 8.24711C19.9505 8.24711 20.5136 8.454 20.9963 8.86777C21.4789 9.28154 21.7525 9.80193 21.817 10.4289C22.358 10.534 22.8081 10.8026 23.1674 11.2348C23.526 11.6671 23.7053 12.177 23.7053 12.7645C23.7053 13.4259 23.4812 13.9893 23.0329 14.4546C22.5846 14.9199 22.0411 15.1523 21.4025 15.1516C20.7638 15.151 20.2207 14.9187 19.773 14.4546C19.3254 13.9905 19.1012 13.4272 19.1006 12.7645C19.1006 12.1967 19.2695 11.6944 19.6072 11.2578C19.945 10.8211 20.3748 10.5486 20.8968 10.4404C20.8311 10.0731 20.649 9.77487 20.3506 9.54571C20.0515 9.31655 19.7036 9.20196 19.3069 9.20196C18.8402 9.20196 18.4558 9.39325 18.1537 9.77583C17.8516 10.1584 17.7005 10.604 17.7005 11.1126V14.0058C17.7005 14.3031 17.6526 14.5927 17.5568 14.8747C17.4616 15.1561 17.3508 15.4355 17.2243 15.7131C17.1051 15.9728 16.9974 16.2325 16.901 16.4923C16.8045 16.752 16.7563 17.0212 16.7563 17.3001C16.7563 17.5598 16.7932 17.8166 16.8669 18.0706C16.9406 18.3246 17.056 18.5576 17.2132 18.7696C17.3895 19.0509 17.5224 19.3431 17.6121 19.6461C17.7017 19.9491 17.7465 20.2652 17.7465 20.5943C17.7465 20.8597 17.718 21.1175 17.6609 21.3677C17.6038 21.6173 17.5196 21.8592 17.4085 22.0934L17.1128 22.7064L16.2691 22.2691L16.5657 21.6742C16.6541 21.51 16.7195 21.3381 16.7619 21.1586C16.8042 20.9791 16.8254 20.791 16.8254 20.5943C16.8254 20.3543 16.7886 20.1251 16.7149 19.9068C16.6412 19.6885 16.5469 19.4758 16.4321 19.269C16.2295 18.987 16.079 18.6795 15.9808 18.3466C15.8837 18.0136 15.8352 17.6728 15.8352 17.3239C15.8352 16.9948 15.8853 16.6823 15.9854 16.3863C16.0855 16.0903 16.2021 15.8019 16.3354 15.5212C16.4508 15.2735 16.5537 15.024 16.644 14.7726C16.7342 14.5211 16.7794 14.2655 16.7794 14.0058V11.1126C16.7794 10.632 16.8782 10.1839 17.076 9.76819C17.2737 9.35251 17.5451 9.02595 17.8902 8.78851C17.4321 8.58799 16.9624 8.44795 16.4809 8.36838C15.9995 8.28754 15.5085 8.24711 15.008 8.24711C14.5076 8.24711 14.0135 8.28722 13.526 8.36742C13.0384 8.44763 12.5717 8.58799 12.1259 8.78851C12.471 9.02595 12.7424 9.35251 12.9401 9.76819C13.1379 10.1839 13.2367 10.6317 13.2367 11.1117V14.0058C13.2367 14.2776 13.2809 14.5402 13.3694 14.7936C13.4578 15.0469 13.5616 15.2952 13.6807 15.5384C13.8109 15.8204 13.9266 16.1094 14.028 16.4054C14.1299 16.7007 14.1809 17.0069 14.1809 17.3239C14.1809 17.6728 14.1321 18.0127 14.0344 18.3437C13.9368 18.6747 13.7925 18.9831 13.6015 19.269C13.4701 19.4771 13.3688 19.69 13.2975 19.9078C13.2263 20.1255 13.1907 20.3543 13.1907 20.5943C13.1907 20.7904 13.2149 20.9781 13.2634 21.1577C13.312 21.3378 13.3746 21.5097 13.4513 21.6733L13.7286 22.2691L12.9042 22.6873ZM8.59611 14.1968C8.975 14.1968 9.29985 14.0564 9.57066 13.7757C9.84208 13.4943 9.97779 13.1573 9.97779 12.7645C9.97779 12.3718 9.84208 12.0347 9.57066 11.7533C9.29923 11.472 8.97407 11.3316 8.59519 11.3322C8.2163 11.3329 7.89145 11.4732 7.62064 11.7533C7.34983 12.0347 7.21442 12.3718 7.21442 12.7645C7.21442 13.1573 7.34952 13.4943 7.61972 13.7757C7.88991 14.0571 8.21538 14.1974 8.59611 14.1968ZM21.4025 14.1968C21.782 14.1968 22.1071 14.0564 22.378 13.7757C22.6488 13.4943 22.7842 13.1573 22.7842 12.7645C22.7842 12.3718 22.6488 12.0347 22.378 11.7533C22.1071 11.472 21.782 11.3316 21.4025 11.3322C21.023 11.3329 20.6981 11.4732 20.4279 11.7533C20.1565 12.0347 20.0208 12.3718 20.0208 12.7645C20.0208 13.1573 20.1565 13.4943 20.4279 13.7757C20.6994 14.0571 21.0242 14.1974 21.4025 14.1968Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M13.2366 11.1113C13.2366 10.6913 13.1609 10.2959 13.0095 9.92515L12.9405 9.76732C12.7427 9.35172 12.4709 9.02521 12.1259 8.78781C12.4601 8.6375 12.8061 8.52136 13.1638 8.43866L13.526 8.36692C14.0135 8.28674 14.5073 8.24642 15.0077 8.2464C15.5081 8.2464 15.9993 8.28706 16.4807 8.36788C16.9621 8.44745 17.4323 8.58729 17.8904 8.78781C17.5454 9.0252 17.2735 9.35176 17.0758 9.76732C16.8781 10.183 16.7797 10.6316 16.7797 11.1122V14.0049L16.7711 14.199C16.7541 14.3924 16.7113 14.5833 16.6436 14.772C16.5533 15.0234 16.4504 15.2734 16.335 15.521C16.2018 15.8016 16.0852 16.0899 15.9852 16.3857C15.8851 16.6816 15.8348 16.9942 15.8347 17.3231C15.8347 17.6718 15.8835 18.0129 15.9804 18.3457C16.0787 18.6786 16.2291 18.9868 16.4318 19.2688C16.5465 19.4755 16.6409 19.6877 16.7145 19.9058C16.7882 20.1241 16.8257 20.3537 16.8257 20.5936L16.8219 20.74C16.8139 20.8842 16.7932 21.0234 16.7615 21.158C16.7191 21.3374 16.6543 21.5094 16.566 21.6736L16.2689 22.2685L17.1132 22.7057L17.4084 22.0925C17.4917 21.9169 17.5605 21.7372 17.6135 21.553L17.6604 21.3675C17.7032 21.1799 17.7302 20.9878 17.7409 20.7916L17.7467 20.5936C17.7467 20.3468 17.7214 20.1074 17.671 19.8752L17.6125 19.6457C17.5452 19.4184 17.4534 19.1969 17.3375 18.9818L17.2129 18.7695C17.095 18.6105 17.0011 18.4393 16.9301 18.2567L16.8669 18.0702C16.8116 17.8796 16.7772 17.6873 16.7634 17.4934L16.7567 17.2992C16.7567 17.0901 16.7839 16.8864 16.8381 16.688L16.9014 16.4919C16.9495 16.3622 17 16.2323 17.0538 16.1026L17.2244 15.7123C17.3508 15.4349 17.4618 15.1556 17.5569 14.8744C17.6288 14.6629 17.6731 14.4469 17.6911 14.2268L17.7007 14.0049V11.1122C17.7007 10.667 17.8161 10.27 18.0476 9.92132L18.154 9.77497C18.4561 9.39265 18.8404 9.20105 19.3069 9.20104C19.7036 9.20104 20.0515 9.31623 20.3505 9.5454C20.6489 9.77453 20.8311 10.0726 20.8968 10.4398C20.3748 10.548 19.9446 10.8209 19.6069 11.2576L19.488 11.4241C19.2295 11.8205 19.1008 12.2674 19.1008 12.7642L19.1114 13.0081C19.1609 13.5661 19.381 14.0485 19.7727 14.4544C20.1643 14.8604 20.6293 15.089 21.1671 15.1403L21.4028 15.1508C21.9615 15.1513 22.4475 14.9741 22.8605 14.618L23.033 14.4544C23.4253 14.0472 23.6463 13.5646 23.6952 13.0072L23.7048 12.7642C23.7048 12.2502 23.5682 11.7953 23.2937 11.4002L23.1672 11.2347C22.8079 10.8024 22.3579 10.5333 21.8168 10.4283C21.7604 9.87975 21.5436 9.41323 21.1671 9.0279L20.9965 8.8672C20.5138 8.45343 19.9504 8.2464 19.3069 8.2464C19.2597 8.24703 19.2056 8.2512 19.1449 8.25883L18.982 8.28179L18.7577 8.14978C18.3053 7.8954 17.8304 7.70251 17.3327 7.57202L17.0816 7.51272C16.4079 7.36631 15.7163 7.29271 15.0077 7.29271C14.3084 7.2921 13.6217 7.3657 12.9481 7.51272L12.698 7.57298C12.1173 7.7256 11.5668 7.96148 11.0477 8.28179L10.8771 8.25883L10.7046 8.2464C10.0641 8.2464 9.50281 8.45346 9.02076 8.8672L8.85018 9.0279C8.47404 9.41322 8.25739 9.87975 8.2004 10.4283C7.6594 10.5219 7.20621 10.7881 6.84144 11.2261L6.71302 11.3935C6.43377 11.793 6.29422 12.2501 6.29422 12.7642L6.30476 13.0081C6.35424 13.5661 6.57534 14.0485 6.96699 14.4544C7.35871 14.8604 7.82349 15.0891 8.36141 15.1403L8.59621 15.1508C9.15489 15.1513 9.64088 14.9741 10.0539 14.618L10.2264 14.4544C10.6187 14.0472 10.8396 13.5646 10.8886 13.0072L10.8992 12.7642C10.8986 12.2679 10.7687 11.8237 10.5101 11.4317L10.3912 11.2672C10.0535 10.8363 9.63005 10.5598 9.12043 10.4388C9.16667 10.118 9.30938 9.84989 9.54882 9.63436L9.65712 9.5454C9.9617 9.31687 10.3106 9.20199 10.7037 9.20199L10.8752 9.21156C11.2655 9.25299 11.5936 9.44053 11.8594 9.77497C12.1634 10.1575 12.3156 10.6036 12.3156 11.1122V14.0049L12.3242 14.2268C12.3419 14.4468 12.386 14.6624 12.4565 14.8734C12.5504 15.1553 12.6624 15.4349 12.7919 15.7123C12.9074 15.972 13.0138 16.2322 13.112 16.4919C13.2102 16.7509 13.2596 17.0199 13.2596 17.2992C13.2596 17.5583 13.22 17.8124 13.1408 18.0607C13.0622 18.3089 12.9558 18.539 12.8207 18.7503C12.6291 19.0202 12.4887 19.3124 12.4009 19.6275L12.3434 19.8647C12.294 20.1037 12.2696 20.3467 12.2696 20.5936L12.2744 20.7916C12.2837 20.9876 12.3071 21.1794 12.3444 21.3665C12.3935 21.6165 12.4815 21.8581 12.6079 22.0916L12.9041 22.6866L13.7283 22.2685L13.4513 21.6726C13.4129 21.5908 13.3781 21.507 13.3468 21.421L13.2634 21.157C13.215 20.9775 13.1906 20.7896 13.1906 20.5936C13.1906 20.4136 13.2109 20.2398 13.251 20.0723L13.2979 19.9068C13.3692 19.6893 13.4705 19.4767 13.6017 19.2688C13.7927 18.983 13.9363 18.6739 14.034 18.3428C14.1316 18.0119 14.1806 17.6719 14.1806 17.3231C14.1806 17.0063 14.1301 16.7001 14.0282 16.4049C13.9775 16.2568 13.9232 16.1104 13.8653 15.9658L13.6803 15.5382C13.6207 15.4166 13.5655 15.2932 13.5136 15.169L13.3698 14.7931C13.2814 14.5397 13.2366 14.2767 13.2366 14.0049V11.1113ZM9.68299 12.7642C9.68299 12.447 9.57638 12.1831 9.35811 11.9569C9.14027 11.7311 8.89099 11.6254 8.59525 11.6259C8.29906 11.6265 8.04945 11.7316 7.83239 11.9559C7.61467 12.1821 7.50847 12.4468 7.50847 12.7642C7.50851 13.0817 7.6153 13.3454 7.83239 13.5715C8.04846 13.7965 8.29739 13.9029 8.59525 13.9025H8.59621C8.8922 13.9025 9.14099 13.7965 9.35811 13.5715C9.57634 13.3453 9.68295 13.0813 9.68299 12.7642ZM22.4896 12.7642C22.4896 12.4469 22.3833 12.183 22.1657 11.9569C21.9486 11.7314 21.6994 11.6254 21.4028 11.6259C21.1056 11.6264 20.8564 11.7325 20.64 11.9569C20.4218 12.1831 20.3151 12.447 20.3151 12.7642C20.3151 13.0813 20.4217 13.3453 20.64 13.5715C20.8579 13.7974 21.1069 13.903 21.4019 13.9025L21.4028 14.1962L21.2629 14.1895C20.9894 14.1635 20.7461 14.0583 20.5326 13.8738L20.4282 13.7753C20.1907 13.5291 20.0573 13.2401 20.0276 12.9086L20.0209 12.7642C20.0209 12.4207 20.1247 12.1195 20.3323 11.8612L20.4282 11.7531C20.6984 11.473 21.0233 11.3319 21.4028 11.3313L21.5418 11.338C21.8621 11.3682 22.1404 11.5069 22.3775 11.7531C22.6483 12.0345 22.7838 12.3714 22.7838 12.7642L22.7781 12.9086C22.7485 13.2402 22.6145 13.5291 22.3775 13.7753L22.274 13.8738C22.0252 14.0887 21.7348 14.1961 21.4028 14.1962V13.9025C21.6995 13.9024 21.9487 13.7964 22.1657 13.5715L22.2424 13.4854C22.4086 13.279 22.4896 13.0419 22.4896 12.7642ZM9.97146 12.9086C9.94178 13.2401 9.80834 13.5291 9.57087 13.7753L9.4664 13.8738C9.21766 14.0887 8.92767 14.1961 8.59621 14.1962L8.45629 14.1895C8.18102 14.1636 7.93716 14.0584 7.7241 13.8738L7.61964 13.7753C7.38321 13.5291 7.25051 13.2401 7.22096 12.9086L7.21425 12.7642C7.21425 12.3715 7.3499 12.0345 7.62059 11.7531C7.8914 11.473 8.21636 11.3319 8.59525 11.3313L8.73517 11.338C9.05477 11.3683 9.33347 11.507 9.57087 11.7531C9.84212 12.0344 9.97817 12.3716 9.97817 12.7642L9.97146 12.9086ZM13.5308 14.0049C13.5308 14.2442 13.5703 14.4746 13.6477 14.6964C13.69 14.8174 13.7352 14.9375 13.7848 15.0561L13.9448 15.4091L13.9477 15.4148C14.082 15.7058 14.2016 16.004 14.3061 16.3092L14.3799 16.556C14.4434 16.8054 14.4748 17.0613 14.4748 17.3231C14.4748 17.6997 14.4223 18.0678 14.3167 18.4261C14.2115 18.7827 14.0552 19.1151 13.85 19.4237L13.8509 19.4247C13.7315 19.6139 13.641 19.8056 13.5778 19.9986C13.5167 20.1854 13.4848 20.3832 13.4848 20.5936C13.4848 20.7652 13.5067 20.9273 13.5481 21.0805C13.5702 21.1625 13.5954 21.2427 13.6238 21.3206L13.7177 21.5483L13.7187 21.5492L13.9956 22.1451C14.0622 22.2885 14.0034 22.4589 13.8624 22.5306L13.0373 22.9487C12.9674 22.984 12.8864 22.9903 12.8121 22.9659C12.7375 22.9413 12.6755 22.8878 12.6405 22.8176L12.3482 22.2312C12.2085 21.9731 12.11 21.7038 12.0549 21.4239L12.0204 21.2202C11.9903 21.0155 11.9754 20.8065 11.9754 20.5936C11.9754 20.2383 12.0223 19.8898 12.1172 19.5491C12.2132 19.2049 12.3661 18.885 12.5734 18.5906C12.6937 18.4021 12.789 18.1958 12.86 17.9717L12.906 17.8062C12.9454 17.6399 12.9654 17.4708 12.9654 17.2992C12.9654 17.0552 12.9224 16.8215 12.837 16.5962V16.5952C12.7414 16.3425 12.6369 16.0897 12.5245 15.8367C12.3904 15.5494 12.2752 15.259 12.1776 14.9662C12.0736 14.6548 12.0214 14.3336 12.0214 14.0049V11.1122C12.0214 10.667 11.8903 10.286 11.6294 9.95767C11.4096 9.68095 11.1502 9.53515 10.8397 9.50331L10.7037 9.49661C10.3724 9.49661 10.0862 9.59094 9.83442 9.77975C9.66189 9.9093 9.54358 10.0618 9.47407 10.2408C9.92572 10.4045 10.3105 10.6866 10.6231 11.0855C11.0028 11.5699 11.1926 12.1333 11.1934 12.7633V12.7642C11.1933 13.4994 10.9415 14.1367 10.4391 14.6582C9.93618 15.1803 9.31602 15.4461 8.59621 15.4454C7.8767 15.4447 7.25666 15.179 6.75423 14.6582C6.31497 14.2028 6.06708 13.658 6.0115 13.0359L6 12.7642C6 12.1104 6.20506 11.5301 6.61527 11.0376C6.97513 10.6057 7.41819 10.3186 7.93877 10.1844C8.048 9.57578 8.34609 9.05891 8.82909 8.64432C9.36493 8.18448 9.99436 7.95273 10.7046 7.95273C10.7783 7.95274 10.8507 7.95737 10.9212 7.96804C10.9424 7.97125 10.9642 7.97362 10.9864 7.97665C11.5809 7.62307 12.2143 7.37138 12.8858 7.22479C13.5802 7.07326 14.2877 6.99939 15.0077 7C15.7367 7 16.4492 7.07384 17.1439 7.22479C17.8148 7.37062 18.4474 7.62215 19.0414 7.97569C19.0629 7.97277 19.0856 7.96996 19.1085 7.96708C19.177 7.95849 19.2423 7.95355 19.3031 7.95273H19.3069L19.5704 7.96326C20.1763 8.01384 20.7185 8.24171 21.1882 8.64432C21.6727 9.05972 21.9702 9.5779 22.0785 10.1882C22.5977 10.3307 23.0386 10.6192 23.3943 11.0472C23.7987 11.5347 24 12.1118 24 12.7642C24 13.4994 23.7472 14.1367 23.2448 14.6582C22.7418 15.1801 22.1217 15.4461 21.4019 15.4454C20.6825 15.4446 20.0632 15.1789 19.5609 14.6582C19.1216 14.2028 18.8737 13.658 18.8181 13.0359L18.8066 12.7642C18.8066 12.1335 18.9953 11.5675 19.374 11.0778C19.6858 10.6747 20.0737 10.3932 20.5317 10.237C20.4564 10.0581 20.3381 9.90588 20.1713 9.77784C19.9265 9.59032 19.6423 9.49566 19.3069 9.49566C18.9351 9.49567 18.6342 9.64205 18.3849 9.95767C18.1258 10.286 17.9949 10.6666 17.9949 11.1122V14.0049C17.9949 14.3343 17.9419 14.6567 17.8358 14.9691C17.7374 15.2598 17.6231 15.5486 17.4927 15.8347H17.4917C17.3756 16.088 17.2712 16.3416 17.1774 16.5943C17.0933 16.8209 17.0509 17.0552 17.0509 17.2992C17.0509 17.5307 17.0836 17.7602 17.1496 17.988C17.1976 18.1534 17.2661 18.3083 17.3547 18.4528L17.4496 18.5944L17.463 18.6135C17.6526 18.9163 17.7967 19.2327 17.8943 19.5624C17.9922 19.8935 18.0409 20.2376 18.0409 20.5936C18.0409 20.8086 18.024 21.0199 17.9891 21.2269L17.9479 21.4325C17.886 21.7031 17.795 21.9655 17.6748 22.2188L17.6738 22.2207L17.3777 22.8329C17.3432 22.9045 17.2816 22.9599 17.2062 22.985C17.1306 23.0101 17.0478 23.0034 16.9771 22.9668L16.1337 22.5297C15.9912 22.4558 15.9338 22.281 16.0053 22.1375L16.3024 21.5425L16.3063 21.5349L16.3599 21.4268C16.4095 21.3183 16.4476 21.2065 16.4749 21.091C16.5117 20.935 16.5315 20.7691 16.5315 20.5936C16.5314 20.3844 16.4986 20.1873 16.4356 20.0005C16.3683 19.8009 16.2822 19.6056 16.1769 19.4151C15.9635 19.1129 15.8035 18.7841 15.6986 18.4289L15.6977 18.428C15.5929 18.0683 15.5405 17.6995 15.5405 17.3231C15.5405 16.964 15.5955 16.6197 15.7063 16.292C15.8099 15.9858 15.9307 15.6872 16.0686 15.3966C16.1803 15.157 16.2795 14.9153 16.3666 14.6725C16.4457 14.4521 16.4845 14.2297 16.4845 14.0049V11.1122C16.4845 10.5901 16.5931 10.0988 16.8104 9.64201C16.9475 9.35359 17.1179 9.09959 17.324 8.88442C17.0313 8.78421 16.7345 8.70759 16.4328 8.65771H16.4318C15.967 8.57968 15.4921 8.54006 15.0077 8.54006C14.5232 8.54008 14.0453 8.57922 13.574 8.65676C13.2701 8.70674 12.9757 8.78342 12.6894 8.8825C12.8965 9.09818 13.0682 9.35255 13.2059 9.64201C13.4231 10.0987 13.5308 10.5897 13.5308 11.1113V14.0049Z\"/>\r\n </svg>\r\n</div>\r\n\r\n<!-- ICON CIGARRO -->\r\n<div *ngIf=\"icon == 'cigarette'\" 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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M22.7143 16.9095H7.28571C6.94472 16.9095 6.6177 17.0436 6.37658 17.2823C6.13546 17.5209 6 17.8446 6 18.1821V20.7274C6 21.0649 6.13546 21.3886 6.37658 21.6273C6.6177 21.8659 6.94472 22 7.28571 22H22.7143C23.0553 22 23.3823 21.8659 23.6234 21.6273C23.8645 21.3886 24 21.0649 24 20.7274V18.1821C24 17.8446 23.8645 17.5209 23.6234 17.2823C23.3823 17.0436 23.0553 16.9095 22.7143 16.9095ZM7.28571 18.1821H11.1429V20.7274H7.28571V18.1821ZM22.7143 20.7274H12.4286V18.1821H22.7143V20.7274ZM20.8661 11.5073C21.5089 10.3754 21.4623 9.78049 21.3771 9.52596C21.3398 9.40456 21.2658 9.2974 21.165 9.21894C21.0875 9.18525 21.0174 9.13674 20.9589 9.07617C20.9004 9.01561 20.8545 8.9442 20.8239 8.86604C20.7933 8.78788 20.7787 8.70452 20.7807 8.62073C20.7828 8.53695 20.8016 8.45439 20.836 8.37781C20.8704 8.30122 20.9197 8.23212 20.9812 8.17447C21.0427 8.11681 21.115 8.07175 21.1941 8.04185C21.2732 8.01196 21.3575 7.99783 21.4422 8.00027C21.5268 8.00271 21.6101 8.02168 21.6873 8.05609C21.9035 8.16502 22.0953 8.31575 22.2516 8.49937C22.4078 8.68298 22.5253 8.89575 22.597 9.12509C22.867 9.93161 22.6621 10.9425 21.9862 12.1309C21.3434 13.2627 21.39 13.8584 21.4752 14.1122C21.5125 14.2336 21.5865 14.3407 21.6873 14.4192C21.7649 14.4529 21.8349 14.5014 21.8934 14.5619C21.952 14.6225 21.9978 14.6939 22.0284 14.7721C22.059 14.8502 22.0736 14.9336 22.0716 15.0174C22.0695 15.1012 22.0507 15.1837 22.0163 15.2603C21.9819 15.3369 21.9326 15.406 21.8711 15.4637C21.8097 15.5213 21.7373 15.5664 21.6582 15.5963C21.5791 15.6262 21.4948 15.6403 21.4102 15.6379C21.3255 15.6354 21.2422 15.6164 21.165 15.582C20.9489 15.4731 20.757 15.3224 20.6008 15.1388C20.4445 14.9551 20.3271 14.7424 20.2554 14.513C19.9878 13.7065 20.1927 12.694 20.8661 11.5073ZM17.6518 11.5073C18.2946 10.3754 18.248 9.78049 18.1629 9.52596C18.1255 9.40456 18.0515 9.2974 17.9507 9.21894C17.8732 9.18525 17.8031 9.13674 17.7446 9.07617C17.6861 9.01561 17.6402 8.9442 17.6096 8.86604C17.5791 8.78788 17.5644 8.70452 17.5665 8.62073C17.5685 8.53695 17.5873 8.45439 17.6217 8.37781C17.6561 8.30122 17.7055 8.23212 17.7669 8.17447C17.8284 8.11681 17.9007 8.07175 17.9798 8.04185C18.0589 8.01196 18.1432 7.99783 18.2279 8.00027C18.3125 8.00271 18.3958 8.02168 18.473 8.05609C18.6892 8.16502 18.881 8.31575 19.0373 8.49937C19.1935 8.68298 19.311 8.89575 19.3827 9.12509C19.6527 9.93161 19.4478 10.9425 18.772 12.1309C18.1291 13.2627 18.1757 13.8584 18.2609 14.1122C18.2982 14.2336 18.3723 14.3407 18.473 14.4192C18.5506 14.4529 18.6206 14.5014 18.6791 14.5619C18.7377 14.6225 18.7835 14.6939 18.8141 14.7721C18.8447 14.8502 18.8594 14.9336 18.8573 15.0174C18.8552 15.1012 18.8364 15.1837 18.802 15.2603C18.7676 15.3369 18.7183 15.406 18.6568 15.4637C18.5954 15.5213 18.523 15.5664 18.4439 15.5963C18.3648 15.6262 18.2805 15.6403 18.1959 15.6379C18.1112 15.6354 18.0279 15.6164 17.9507 15.582C17.7346 15.4731 17.5427 15.3224 17.3865 15.1388C17.2302 14.9551 17.1128 14.7424 17.0411 14.513C16.7735 13.7065 16.9784 12.694 17.6518 11.5073Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M22.7143 16.9095H7.28571C6.94472 16.9095 6.6177 17.0436 6.37658 17.2823C6.13546 17.5209 6 17.8446 6 18.1821V20.7274C6 21.0649 6.13546 21.3886 6.37658 21.6273C6.6177 21.8659 6.94472 22 7.28571 22H22.7143C23.0553 22 23.3823 21.8659 23.6234 21.6273C23.8645 21.3886 24 21.0649 24 20.7274V18.1821C24 17.8446 23.8645 17.5209 23.6234 17.2823C23.3823 17.0436 23.0553 16.9095 22.7143 16.9095ZM7.28571 18.1821H11.1429V20.7274H7.28571V18.1821ZM22.7143 20.7274H12.4286V18.1821H22.7143V20.7274ZM20.8661 11.5073C21.5089 10.3754 21.4623 9.78049 21.3771 9.52596C21.3398 9.40456 21.2658 9.2974 21.165 9.21894C21.0875 9.18525 21.0174 9.13674 20.9589 9.07617C20.9004 9.01561 20.8545 8.9442 20.8239 8.86604C20.7933 8.78788 20.7787 8.70452 20.7807 8.62073C20.7828 8.53695 20.8016 8.45439 20.836 8.37781C20.8704 8.30122 20.9197 8.23212 20.9812 8.17447C21.0427 8.11681 21.115 8.07175 21.1941 8.04185C21.2732 8.01196 21.3575 7.99783 21.4422 8.00027C21.5268 8.00271 21.6101 8.02168 21.6873 8.05609C21.9035 8.16502 22.0953 8.31575 22.2516 8.49937C22.4078 8.68298 22.5253 8.89575 22.597 9.12509C22.867 9.93161 22.6621 10.9425 21.9862 12.1309C21.3434 13.2627 21.39 13.8584 21.4752 14.1122C21.5125 14.2336 21.5865 14.3407 21.6873 14.4192C21.7649 14.4529 21.8349 14.5014 21.8934 14.5619C21.952 14.6225 21.9978 14.6939 22.0284 14.7721C22.059 14.8502 22.0736 14.9336 22.0716 15.0174C22.0695 15.1012 22.0507 15.1837 22.0163 15.2603C21.9819 15.3369 21.9326 15.406 21.8711 15.4637C21.8097 15.5213 21.7373 15.5664 21.6582 15.5963C21.5791 15.6262 21.4948 15.6403 21.4102 15.6379C21.3255 15.6354 21.2422 15.6164 21.165 15.582C20.9489 15.4731 20.757 15.3224 20.6008 15.1388C20.4445 14.9551 20.3271 14.7424 20.2554 14.513C19.9878 13.7065 20.1927 12.694 20.8661 11.5073ZM17.6518 11.5073C18.2946 10.3754 18.248 9.78049 18.1629 9.52596C18.1255 9.40456 18.0515 9.2974 17.9507 9.21894C17.8732 9.18525 17.8031 9.13674 17.7446 9.07617C17.6861 9.01561 17.6402 8.9442 17.6096 8.86604C17.5791 8.78788 17.5644 8.70452 17.5665 8.62073C17.5685 8.53695 17.5873 8.45439 17.6217 8.37781C17.6561 8.30122 17.7055 8.23212 17.7669 8.17447C17.8284 8.11681 17.9007 8.07175 17.9798 8.04185C18.0589 8.01196 18.1432 7.99783 18.2279 8.00027C18.3125 8.00271 18.3958 8.02168 18.473 8.05609C18.6892 8.16502 18.881 8.31575 19.0373 8.49937C19.1935 8.68298 19.311 8.89575 19.3827 9.12509C19.6527 9.93161 19.4478 10.9425 18.772 12.1309C18.1291 13.2627 18.1757 13.8584 18.2609 14.1122C18.2982 14.2336 18.3723 14.3407 18.473 14.4192C18.5506 14.4529 18.6206 14.5014 18.6791 14.5619C18.7377 14.6225 18.7835 14.6939 18.8141 14.7721C18.8447 14.8502 18.8594 14.9336 18.8573 15.0174C18.8552 15.1012 18.8364 15.1837 18.802 15.2603C18.7676 15.3369 18.7183 15.406 18.6568 15.4637C18.5954 15.5213 18.523 15.5664 18.4439 15.5963C18.3648 15.6262 18.2805 15.6403 18.1959 15.6379C18.1112 15.6354 18.0279 15.6164 17.9507 15.582C17.7346 15.4731 17.5427 15.3224 17.3865 15.1388C17.2302 14.9551 17.1128 14.7424 17.0411 14.513C16.7735 13.7065 16.9784 12.694 17.6518 11.5073Z\"/>\r\n </svg>\r\n</div>\r\n\r\n\r\n<!-- CHECKOUT ARCHIVO -->\r\n<div *ngIf=\"icon == 'close-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 <rect [attr.stroke]=\"borderColor\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <path [attr.fill]=\"color\" d=\"M8.77778 12.0907V9.18133C8.77787 8.6028 9.01217 8.04831 9.42885 7.63922C9.84553 7.23012 10.4103 7.00009 10.9995 7H17.6667C17.8631 7 18.0513 7.07674 18.1902 7.21307L21.8941 10.8495C22.033 10.9859 22.1111 11.1707 22.1111 11.3636V20.8187C22.111 21.397 21.8774 21.9517 21.4609 22.3608C21.0442 22.7699 20.4787 23 19.8893 23H9.51837C9.10925 23 8.77778 22.6746 8.77778 22.2729C8.77778 21.8712 9.10925 21.5458 9.51837 21.5458H19.8893C20.0857 21.5457 20.274 21.469 20.4129 21.3327C20.5517 21.1964 20.6298 21.0114 20.6299 20.8187V11.6645L17.3601 8.45422H10.9995C10.8032 8.45432 10.6148 8.53099 10.476 8.6673C10.3371 8.8036 10.2591 8.98857 10.259 9.18133V12.0907C10.259 12.4923 9.92749 12.8178 9.51837 12.8178C9.10925 12.8178 8.77778 12.4923 8.77778 12.0907Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M11.8508 14.6746C12.143 14.3973 12.6166 14.3973 12.9089 14.6746C13.2012 14.9523 13.2012 15.403 12.9089 15.6807L11.5666 16.955L12.9089 18.2302C13.2012 18.508 13.2012 18.9586 12.9089 19.2363C12.6166 19.5138 12.1431 19.5138 11.8508 19.2363L10.5085 17.9611L9.16623 19.2363C8.87396 19.5138 8.4004 19.5138 8.10813 19.2363C7.81581 18.9586 7.81581 18.508 8.10813 18.2302L9.44949 16.955L8.10813 15.6807C7.81581 15.403 7.81581 14.9523 8.10813 14.6746C8.40038 14.3973 8.87398 14.3973 9.16623 14.6746L10.5085 15.9498L11.8508 14.6746ZM16.1225 10.5556V7.71095C16.1225 7.31827 16.4575 7.00009 16.8708 7C17.2842 7 17.6192 7.31821 17.6192 7.71095V10.5556C17.6192 10.7441 17.6983 10.9249 17.8385 11.0582C17.9789 11.1916 18.1699 11.2666 18.3685 11.2666H21.3618C21.7752 11.2666 22.111 11.5849 22.1111 11.9775C22.1111 12.3703 21.7752 12.6885 21.3618 12.6885H18.3685C17.773 12.6885 17.2015 12.4643 16.7804 12.0643C16.3593 11.6643 16.1225 11.1214 16.1225 10.5556Z\"/>\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.stroke]=\"borderColorHover\" x=\"0.5\" y=\"0.5\" width=\"29\" height=\"29\" rx=\"14.5\"/>\r\n <rect [attr.fill]=\"bgColorHover\" width=\"30\" height=\"30\" rx=\"15\"/>\r\n <path [attr.fill]=\"color\" d=\"M8.77778 12.0907V9.18133C8.77787 8.6028 9.01217 8.04831 9.42885 7.63922C9.84553 7.23012 10.4103 7.00009 10.9995 7H17.6667C17.8631 7 18.0513 7.07674 18.1902 7.21307L21.8941 10.8495C22.033 10.9859 22.1111 11.1707 22.1111 11.3636V20.8187C22.111 21.397 21.8774 21.9517 21.4609 22.3608C21.0442 22.7699 20.4787 23 19.8893 23H9.51837C9.10925 23 8.77778 22.6746 8.77778 22.2729C8.77778 21.8712 9.10925 21.5458 9.51837 21.5458H19.8893C20.0857 21.5457 20.274 21.469 20.4129 21.3327C20.5517 21.1964 20.6298 21.0114 20.6299 20.8187V11.6645L17.3601 8.45422H10.9995C10.8032 8.45432 10.6148 8.53099 10.476 8.6673C10.3371 8.8036 10.2591 8.98857 10.259 9.18133V12.0907C10.259 12.4923 9.92749 12.8178 9.51837 12.8178C9.10925 12.8178 8.77778 12.4923 8.77778 12.0907Z\"/>\r\n <path [attr.fill]=\"color\" d=\"M11.8508 14.6746C12.143 14.3973 12.6166 14.3973 12.9089 14.6746C13.2012 14.9523 13.2012 15.403 12.9089 15.6807L11.5666 16.955L12.9089 18.2302C13.2012 18.508 13.2012 18.9586 12.9089 19.2363C12.6166 19.5138 12.1431 19.5138 11.8508 19.2363L10.5085 17.9611L9.16623 19.2363C8.87396 19.5138 8.4004 19.5138 8.10813 19.2363C7.81581 18.9586 7.81581 18.508 8.10813 18.2302L9.44949 16.955L8.10813 15.6807C7.81581 15.403 7.81581 14.9523 8.10813 14.6746C8.40038 14.3973 8.87398 14.3973 9.16623 14.6746L10.5085 15.9498L11.8508 14.6746ZM16.1225 10.5556V7.71095C16.1225 7.31827 16.4575 7.00009 16.8708 7C17.2842 7 17.6192 7.31821 17.6192 7.71095V10.5556C17.6192 10.7441 17.6983 10.9249 17.8385 11.0582C17.9789 11.1916 18.1699 11.2666 18.3685 11.2666H21.3618C21.7752 11.2666 22.111 11.5849 22.1111 11.9775C22.1111 12.3703 21.7752 12.6885 21.3618 12.6885H18.3685C17.773 12.6885 17.2015 12.4643 16.7804 12.0643C16.3593 11.6643 16.1225 11.1214 16.1225 10.5556Z\"/>\r\n </svg>\r\n</div>", styles: [".d-inline-flex{display:inline-flex}button:disabled{svg path {fill: #ABBED1 !important;}}\n"], directives: [{ type: i1__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
2096
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: LibeyNgIconsComponent, decorators: [{
2097
+ type: i0.Component,
2098
+ args: [{
2099
+ selector: 'lib-libey-ng-icons',
2100
+ templateUrl: './libey-ng-icons.component.html',
2101
+ styleUrls: ['../icons.component.css']
2102
+ }]
2103
+ }], ctorParameters: function () { return []; }, propDecorators: { color: [{
2104
+ type: i0.Input
2105
+ }], bgColorHover: [{
2106
+ type: i0.Input
2107
+ }], borderColor: [{
2108
+ type: i0.Input
2109
+ }], borderColorHover: [{
2110
+ type: i0.Input
2111
+ }], icon: [{
2112
+ type: i0.Input
2113
+ }], width: [{
2114
+ type: i0.Input
2115
+ }], height: [{
2116
+ type: i0.Input
2117
+ }], activeHover: [{
2118
+ type: i0.Input
2119
+ }] } });
2120
+
2121
+ var IconsModule = /** @class */ (function () {
2122
+ function IconsModule() {
2123
+ }
2124
+ return IconsModule;
2125
+ }());
2126
+ IconsModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: IconsModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
2127
+ 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] });
2128
+ IconsModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: IconsModule, imports: [[
2129
+ i1$1.CommonModule
2130
+ ]] });
2131
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: IconsModule, decorators: [{
2132
+ type: i0.NgModule,
2133
+ args: [{
2134
+ declarations: [
2135
+ LibeyNgIconsComponent
2136
+ ],
2137
+ imports: [
2138
+ i1$1.CommonModule
2139
+ ],
2140
+ exports: [
2141
+ LibeyNgIconsComponent
2142
+ ]
2143
+ }]
2144
+ }] });
2145
+
2071
2146
  var LibeyNgComponentLibraryModule = /** @class */ (function () {
2072
2147
  function LibeyNgComponentLibraryModule() {
2073
2148
  }
@@ -2078,18 +2153,22 @@
2078
2153
  i4.FormsModule,
2079
2154
  LibeyNgTableModule,
2080
2155
  LibeyNgSignatureModule,
2081
- i1.SignaturePadModule], exports: [LibeyNgTableModule,
2156
+ i1.SignaturePadModule,
2157
+ IconsModule], exports: [LibeyNgTableModule,
2082
2158
  LibeyNgSignatureModule,
2083
- i1.SignaturePadModule] });
2159
+ i1.SignaturePadModule,
2160
+ IconsModule] });
2084
2161
  LibeyNgComponentLibraryModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: LibeyNgComponentLibraryModule, providers: [i1$1.DatePipe], imports: [[
2085
2162
  i1$1.CommonModule,
2086
2163
  i4.FormsModule,
2087
2164
  LibeyNgTableModule,
2088
2165
  LibeyNgSignatureModule,
2089
- i1.SignaturePadModule
2166
+ i1.SignaturePadModule,
2167
+ IconsModule
2090
2168
  ], LibeyNgTableModule,
2091
2169
  LibeyNgSignatureModule,
2092
- i1.SignaturePadModule] });
2170
+ i1.SignaturePadModule,
2171
+ IconsModule] });
2093
2172
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: LibeyNgComponentLibraryModule, decorators: [{
2094
2173
  type: i0.NgModule,
2095
2174
  args: [{
@@ -2099,12 +2178,14 @@
2099
2178
  i4.FormsModule,
2100
2179
  LibeyNgTableModule,
2101
2180
  LibeyNgSignatureModule,
2102
- i1.SignaturePadModule
2181
+ i1.SignaturePadModule,
2182
+ IconsModule
2103
2183
  ],
2104
2184
  exports: [
2105
2185
  LibeyNgTableModule,
2106
2186
  LibeyNgSignatureModule,
2107
- i1.SignaturePadModule
2187
+ i1.SignaturePadModule,
2188
+ IconsModule
2108
2189
  ],
2109
2190
  providers: [i1$1.DatePipe]
2110
2191
  }]
@@ -2134,10 +2215,12 @@
2134
2215
  enumerable: true,
2135
2216
  get: function () { return ngBootstrap.NgbModule; }
2136
2217
  });
2218
+ exports.IconsModule = IconsModule;
2137
2219
  exports.LibeyColumnDirective = LibeyColumnDirective;
2138
2220
  exports.LibeyNgComponentLibraryComponent = LibeyNgComponentLibraryComponent;
2139
2221
  exports.LibeyNgComponentLibraryModule = LibeyNgComponentLibraryModule;
2140
2222
  exports.LibeyNgComponentLibraryService = LibeyNgComponentLibraryService;
2223
+ exports.LibeyNgIconsComponent = LibeyNgIconsComponent;
2141
2224
  exports.LibeyNgSignatureComponent = LibeyNgSignatureComponent;
2142
2225
  exports.LibeyNgSignatureModule = LibeyNgSignatureModule;
2143
2226
  exports.LibeyNgTableComponent = LibeyNgTableComponent;