ca-components 0.0.37 → 0.0.39

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.
@@ -14,6 +14,7 @@ import { CaAppTooltipV2Component } from '../../../ca-app-tooltip-v2/ca-app-toolt
14
14
  import { CaDropdownComponent } from '../../../ca-dropdown/ca-dropdown.component';
15
15
  //pipes
16
16
  import { FormatCurrencyPipe } from '../../../../pipes/format-currency.pipe';
17
+ import { DateFromStringPipe } from '../../../../pipes/date-from-string.pipe';
17
18
  //helper
18
19
  import { PayrollPeriodContentHelper } from '../../utils/helpers/payroll-period-content.helper';
19
20
  import * as i0 from "@angular/core";
@@ -130,13 +131,13 @@ export class CaPeriodContentPaymentComponent {
130
131
  return index;
131
132
  }
132
133
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CaPeriodContentPaymentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
133
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CaPeriodContentPaymentComponent, isStandalone: true, selector: "app-ca-period-content-payment", inputs: { isOpen: "isOpen", title: "title", componentData: "componentData" }, outputs: { sumPaymentTypeEmitter: "sumPaymentTypeEmitter", reorderedDataEmiter: "reorderedDataEmiter" }, providers: [FormatCurrencyPipe], ngImport: i0, template: "<ng-container *ngIf=\"componentData?.length; else emptyComponentData\"\n ><div\n class=\"wrapper d-flex flex-column align-items-center justify-content-start\"\n >\n <div class=\"container d-flex flex-column\">\n <ng-container *ngIf=\"title !== 'Credit' && title !== 'Payment'\">\n <div class=\"divider d-flex justify-content-center\"></div>\n </ng-container>\n <div class=\"text-value d-flex justify-content-between\">\n <div\n class=\"payment-count d-flex align-items-center justify-content-start\"\n >\n <span class=\"text ca-font-extra-bold\">{{ title }}</span>\n <span\n class=\"round ca-font-bold d-flex align-items-center justify-content-center\"\n >\n {{ componentData?.length }}\n </span>\n </div>\n <span class=\"value d-flex align-items-center\">\n <ng-container *ngIf=\"isOpen; else notOpen\">\n <svg-icon\n class=\"d-flex icon\"\n [src]=\"getSvgPath('plus')\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n </ng-container>\n <ng-template #notOpen>\n <span\n class=\"total-money-closed ca-font-semi-bold\"\n [ngStyle]=\"{ color: getColor(title) }\"\n >{{ sum | formatCurrency }}</span\n >\n </ng-template>\n </span>\n </div>\n </div>\n\n <div\n [ngClass]=\"{ 'disabled-drag': title === 'Bonus' }\"\n cdkDropList\n class=\"component-data-container d-flex justify-content-center flex-column\"\n (cdkDropListDropped)=\"onDrop($event)\"\n >\n <ng-container\n *ngFor=\"let data of componentData; let i = index; trackBy: identity\"\n >\n <div\n cdkDrag\n cdkDragLockAxis=\"y\"\n cdkDragBoundary=\".component-data-container\"\n class=\"d-flex justify-content-between align-items-center information\"\n [ngClass]=\"{\n clicked: clickedStates[i],\n 'drag-disabled': title === 'Bonus',\n }\"\n (mouseenter)=\"onMouseEnter(i)\"\n (mouseleave)=\"onMouseLeave(i)\"\n >\n <ng-template cdkDragPreview>\n <div class=\"d-flex justify-content-between align-items-center\">\n <div class=\"d-flex align-items-center\">\n <div class=\"icon-holder mx-2\">\n <svg-icon\n [src]=\"getSvgPath('dragging')\"\n alt=\"Dragging Image\"\n ></svg-icon>\n </div>\n <div class=\"date-location d-flex flex-column\">\n <span class=\"ca-font-semi-bold location\">{{\n data.description\n }}</span>\n <span class=\"date ca-font-medium\">{{ data.date }}</span>\n </div>\n </div>\n <span\n class=\"money d-flex justify-content-end ca-font-regular mx-2\"\n >{{ data.amount ? data.amount : (0 | formatCurrency) }}\n </span>\n </div>\n </ng-template>\n <span\n class=\"number d-flex justify-content-center align-items-center ca-font-medium\"\n >\n <ng-container\n *ngIf=\"!hoverStates[i] && !clickedStates[i]; else hoveredState\"\n >{{ data!.id }}\n </ng-container>\n <ng-template #hoveredState>\n <div\n class=\"icon-holder d-flex align-items-center justify-content-center\"\n ngbTooltip\n [mainTooltip]=\"'More'\"\n tooltipBackground=\"#424242\"\n position=\"bottom\"\n [ngStyle]=\"{\n backgroundColor: clickedStates[i] ? '#424242' : 'transparent',\n color: hoverStates[i] ? 'desiredColor' : 'initialColor',\n }\"\n >\n <app-ca-dropdown\n [itemList]=\"dropdownOptions\"\n [icon]=\"currentIcons[i]\"\n (onClick)=\"dropDownClickEvent(i)\"\n [isPopupShown]=\"isDropdownEnabled(i)\"\n ></app-ca-dropdown>\n </div>\n </ng-template>\n </span>\n <div class=\"date-location d-flex flex-column\">\n <span class=\"ca-font-semi-bold location\">{{\n data.description\n }}</span>\n <span class=\"date ca-font-medium\">{{ data.date }}</span>\n </div>\n <span class=\"money d-flex justify-content-end ca-font-regular\"\n >{{ data.amount ? data.amount : (0 | formatCurrency) }}\n </span>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"isOpen\">\n <div\n class=\"total-money-title d-flex justify-content-between align-items-center\"\n >\n <div class=\"icon-total d-flex align-items-center\">\n <span\n class=\"dolar-icon d-flex align-items-center\"\n [ngStyle]=\"{ color: getColor(title) }\"\n >\n <svg-icon\n class=\"d-flex align-items-center\"\n [src]=\"getSvgPath('dolarSign')\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n </span>\n <span class=\"total-title ca-font-bold\">Total</span>\n </div>\n <span\n class=\"total-money d-flex justify-content-end align-items-center ca-font-semi-bold\"\n [ngStyle]=\"{ color: getColor(title) }\"\n >{{ sum | formatCurrency }}</span\n >\n </div>\n </ng-container>\n </div>\n </div>\n</ng-container>\n\n<ng-template #emptyComponentData>\n <div class=\"container-empty d-flex flex-column\">\n <div class=\"divider d-flex justify-content-center\"></div>\n <div class=\"text-value d-flex justify-content-between\">\n <div\n class=\"payment-count d-flex align-items-center justify-content-start\"\n >\n <span\n class=\"text ca-font-extra-bold\"\n [ngStyle]=\"{ color: isOpen ? '#424242' : '#aaaaaa' }\"\n >{{ title }}</span\n >\n </div>\n <span class=\"value d-flex align-items-center\">\n <ng-container *ngIf=\"isOpen; else notOpen\">\n <svg-icon\n class=\"d-flex icon\"\n [src]=\"getSvgPath('plus')\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n </ng-container>\n <ng-template #notOpen>\n <span class=\"total-money-closed ca-font-semi-bold\">$0.00</span>\n </ng-template>\n </span>\n </div>\n </div>\n</ng-template>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.ta-input-dropdown .arrow{display:none!important}.ta-input-dropdown .popover-body{margin-top:-2px!important}.ta-input-dropdown .popover-body .dropdown-options-divider{content:\"\";height:1px;border-radius:1px;background-color:#424242;position:absolute;z-index:99999;top:0;left:0}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-1{width:-7px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-2{width:-6px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-3{width:-5px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-4{width:-4px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-5{width:-3px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-6{width:-2px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-7{width:-1px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-8{width:0px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-9{width:1px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-10{width:2px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-11{width:3px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-12{width:4px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-13{width:5px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-14{width:6px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-15{width:7px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-16{width:8px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-17{width:9px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-18{width:10px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-19{width:11px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-20{width:12px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-21{width:13px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-22{width:14px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-23{width:15px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-24{width:16px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-25{width:17px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-26{width:18px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-27{width:19px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-28{width:20px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-29{width:21px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-30{width:22px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-31{width:23px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-32{width:24px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-33{width:25px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-34{width:26px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-35{width:27px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-36{width:28px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-37{width:29px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-38{width:30px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-39{width:31px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-40{width:32px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-41{width:33px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-42{width:34px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-43{width:35px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-44{width:36px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-45{width:37px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-46{width:38px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-47{width:39px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-48{width:40px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-49{width:41px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-50{width:42px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-51{width:43px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-52{width:44px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-53{width:45px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-54{width:46px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-55{width:47px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-56{width:48px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-57{width:49px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-58{width:50px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-59{width:51px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-60{width:52px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-61{width:53px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-62{width:54px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-63{width:55px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-64{width:56px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-65{width:57px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-66{width:58px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-67{width:59px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-68{width:60px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-69{width:61px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-70{width:62px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-71{width:63px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-72{width:64px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-73{width:65px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-74{width:66px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-75{width:67px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-76{width:68px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-77{width:69px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-78{width:70px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-79{width:71px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-80{width:72px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-81{width:73px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-82{width:74px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-83{width:75px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-84{width:76px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-85{width:77px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-86{width:78px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-87{width:79px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-88{width:80px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-89{width:81px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-90{width:82px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-91{width:83px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-92{width:84px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-93{width:85px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-94{width:86px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-95{width:87px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-96{width:88px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-97{width:89px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-98{width:90px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-99{width:91px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-100{width:92px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-101{width:93px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-102{width:94px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-103{width:95px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-104{width:96px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-105{width:97px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-106{width:98px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-107{width:99px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-108{width:100px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-109{width:101px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-110{width:102px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-111{width:103px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-112{width:104px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-113{width:105px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-114{width:106px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-115{width:107px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-116{width:108px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-117{width:109px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-118{width:110px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-119{width:111px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-120{width:112px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-121{width:113px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-122{width:114px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-123{width:115px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-124{width:116px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-125{width:117px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-126{width:118px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-127{width:119px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-128{width:120px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-129{width:121px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-130{width:122px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-131{width:123px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-132{width:124px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-133{width:125px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-134{width:126px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-135{width:127px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-136{width:128px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-137{width:129px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-138{width:130px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-139{width:131px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-140{width:132px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-141{width:133px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-142{width:134px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-143{width:135px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-144{width:136px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-145{width:137px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-146{width:138px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-147{width:139px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-148{width:140px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-149{width:141px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-150{width:142px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-151{width:143px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-152{width:144px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-153{width:145px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-154{width:146px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-155{width:147px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-156{width:148px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-157{width:149px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-158{width:150px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-159{width:151px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-160{width:152px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-161{width:153px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-162{width:154px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-163{width:155px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-164{width:156px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-165{width:157px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-166{width:158px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-167{width:159px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-168{width:160px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-169{width:161px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-170{width:162px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-171{width:163px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-172{width:164px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-173{width:165px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-174{width:166px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-175{width:167px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-176{width:168px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-177{width:169px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-178{width:170px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-179{width:171px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-180{width:172px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-181{width:173px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-182{width:174px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-183{width:175px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-184{width:176px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-185{width:177px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-186{width:178px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-187{width:179px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-188{width:180px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-189{width:181px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-190{width:182px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-191{width:183px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-192{width:184px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-193{width:185px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-194{width:186px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-195{width:187px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-196{width:188px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-197{width:189px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-198{width:190px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-199{width:191px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-200{width:192px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-201{width:193px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-202{width:194px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-203{width:195px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-204{width:196px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-205{width:197px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-206{width:198px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-207{width:199px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-208{width:200px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-209{width:201px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-210{width:202px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-211{width:203px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-212{width:204px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-213{width:205px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-214{width:206px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-215{width:207px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-216{width:208px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-217{width:209px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-218{width:210px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-219{width:211px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-220{width:212px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-221{width:213px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-222{width:214px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-223{width:215px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-224{width:216px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-225{width:217px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-226{width:218px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-227{width:219px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-228{width:220px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-229{width:221px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-230{width:222px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-231{width:223px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-232{width:224px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-233{width:225px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-234{width:226px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-235{width:227px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-236{width:228px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-237{width:229px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-238{width:230px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-239{width:231px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-240{width:232px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-241{width:233px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-242{width:234px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-243{width:235px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-244{width:236px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-245{width:237px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-246{width:238px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-247{width:239px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-248{width:240px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-249{width:241px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-250{width:242px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-251{width:243px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-252{width:244px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-253{width:245px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-254{width:246px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-255{width:247px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-256{width:248px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-257{width:249px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-258{width:250px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-259{width:251px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-260{width:252px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-261{width:253px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-262{width:254px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-263{width:255px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-264{width:256px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-265{width:257px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-266{width:258px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-267{width:259px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-268{width:260px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-269{width:261px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-270{width:262px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-271{width:263px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-272{width:264px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-273{width:265px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-274{width:266px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-275{width:267px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-276{width:268px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-277{width:269px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-278{width:270px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-279{width:271px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-280{width:272px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-281{width:273px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-282{width:274px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-283{width:275px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-284{width:276px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-285{width:277px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-286{width:278px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-287{width:279px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-288{width:280px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-289{width:281px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-290{width:282px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-291{width:283px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-292{width:284px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-293{width:285px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-294{width:286px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-295{width:287px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-296{width:288px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-297{width:289px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-298{width:290px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-299{width:291px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-300{width:292px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-301{width:293px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-302{width:294px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-303{width:295px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-304{width:296px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-305{width:297px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-306{width:298px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-307{width:299px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-308{width:300px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-309{width:301px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-310{width:302px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-311{width:303px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-312{width:304px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-313{width:305px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-314{width:306px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-315{width:307px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-316{width:308px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-317{width:309px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-318{width:310px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-319{width:311px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-320{width:312px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-321{width:313px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-322{width:314px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-323{width:315px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-324{width:316px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-325{width:317px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-326{width:318px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-327{width:319px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-328{width:320px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-329{width:321px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-330{width:322px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-331{width:323px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-332{width:324px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-333{width:325px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-334{width:326px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-335{width:327px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-336{width:328px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-337{width:329px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-338{width:330px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-339{width:331px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-340{width:332px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-341{width:333px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-342{width:334px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-343{width:335px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-344{width:336px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-345{width:337px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-346{width:338px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-347{width:339px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-348{width:340px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-349{width:341px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-350{width:342px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-351{width:343px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-352{width:344px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-353{width:345px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-354{width:346px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-355{width:347px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-356{width:348px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-357{width:349px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-358{width:350px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-359{width:351px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-360{width:352px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-361{width:353px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-362{width:354px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-363{width:355px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-364{width:356px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-365{width:357px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-366{width:358px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-367{width:359px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-368{width:360px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-369{width:361px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-370{width:362px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-371{width:363px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-372{width:364px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-373{width:365px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-374{width:366px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-375{width:367px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-376{width:368px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-377{width:369px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-378{width:370px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-379{width:371px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-380{width:372px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-381{width:373px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-382{width:374px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-383{width:375px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-384{width:376px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-385{width:377px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-386{width:378px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-387{width:379px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-388{width:380px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-389{width:381px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-390{width:382px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-391{width:383px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-392{width:384px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-393{width:385px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-394{width:386px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-395{width:387px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-396{width:388px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-397{width:389px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-398{width:390px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-399{width:391px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-400{width:392px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-401{width:393px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-402{width:394px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-403{width:395px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-404{width:396px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-405{width:397px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-406{width:398px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-407{width:399px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-408{width:400px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-409{width:401px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-410{width:402px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-411{width:403px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-412{width:404px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-413{width:405px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-414{width:406px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-415{width:407px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-416{width:408px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-417{width:409px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-418{width:410px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-419{width:411px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-420{width:412px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-421{width:413px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-422{width:414px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-423{width:415px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-424{width:416px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-425{width:417px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-426{width:418px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-427{width:419px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-428{width:420px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-429{width:421px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-430{width:422px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-431{width:423px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-432{width:424px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-433{width:425px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-434{width:426px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-435{width:427px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-436{width:428px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-437{width:429px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-438{width:430px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-439{width:431px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-440{width:432px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-441{width:433px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-442{width:434px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-443{width:435px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-444{width:436px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-445{width:437px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-446{width:438px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-447{width:439px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-448{width:440px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-449{width:441px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-450{width:442px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-451{width:443px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-452{width:444px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-453{width:445px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-454{width:446px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-455{width:447px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-456{width:448px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-457{width:449px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-458{width:450px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-459{width:451px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-460{width:452px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-461{width:453px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-462{width:454px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-463{width:455px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-464{width:456px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-465{width:457px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-466{width:458px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-467{width:459px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-468{width:460px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-469{width:461px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-470{width:462px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-471{width:463px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-472{width:464px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-473{width:465px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-474{width:466px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-475{width:467px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-476{width:468px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-477{width:469px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-478{width:470px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-479{width:471px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-480{width:472px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-481{width:473px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-482{width:474px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-483{width:475px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-484{width:476px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-485{width:477px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-486{width:478px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-487{width:479px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-488{width:480px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-489{width:481px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-490{width:482px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-491{width:483px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-492{width:484px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-493{width:485px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-494{width:486px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-495{width:487px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-496{width:488px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-497{width:489px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-498{width:490px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-499{width:491px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-500{width:492px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-501{width:493px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-502{width:494px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-503{width:495px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-504{width:496px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-505{width:497px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-506{width:498px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-507{width:499px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-508{width:500px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-509{width:501px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-510{width:502px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-511{width:503px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-512{width:504px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-513{width:505px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-514{width:506px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-515{width:507px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-516{width:508px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-517{width:509px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-518{width:510px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-519{width:511px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-520{width:512px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-521{width:513px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-522{width:514px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-523{width:515px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-524{width:516px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-525{width:517px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-526{width:518px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-527{width:519px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-528{width:520px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-529{width:521px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-530{width:522px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-531{width:523px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-532{width:524px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-533{width:525px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-534{width:526px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-535{width:527px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-536{width:528px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-537{width:529px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-538{width:530px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-539{width:531px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-540{width:532px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-541{width:533px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-542{width:534px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-543{width:535px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-544{width:536px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-545{width:537px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-546{width:538px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-547{width:539px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-548{width:540px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-549{width:541px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-550{width:542px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-551{width:543px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-552{width:544px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-553{width:545px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-554{width:546px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-555{width:547px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-556{width:548px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-557{width:549px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-558{width:550px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-559{width:551px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-560{width:552px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-561{width:553px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-562{width:554px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-563{width:555px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-564{width:556px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-565{width:557px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-566{width:558px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-567{width:559px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-568{width:560px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-569{width:561px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-570{width:562px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-571{width:563px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-572{width:564px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-573{width:565px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-574{width:566px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-575{width:567px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-576{width:568px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-577{width:569px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-578{width:570px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-579{width:571px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-580{width:572px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-581{width:573px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-582{width:574px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-583{width:575px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-584{width:576px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-585{width:577px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-586{width:578px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-587{width:579px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-588{width:580px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-589{width:581px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-590{width:582px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-591{width:583px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-592{width:584px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-593{width:585px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-594{width:586px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-595{width:587px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-596{width:588px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-597{width:589px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-598{width:590px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-599{width:591px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-600{width:592px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-601{width:593px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-602{width:594px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-603{width:595px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-604{width:596px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-605{width:597px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-606{width:598px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-607{width:599px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-608{width:600px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-609{width:601px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-610{width:602px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-611{width:603px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-612{width:604px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-613{width:605px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-614{width:606px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-615{width:607px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-616{width:608px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-617{width:609px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-618{width:610px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-619{width:611px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-620{width:612px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-621{width:613px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-622{width:614px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-623{width:615px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-624{width:616px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-625{width:617px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-626{width:618px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-627{width:619px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-628{width:620px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-629{width:621px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-630{width:622px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-631{width:623px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-632{width:624px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-633{width:625px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-634{width:626px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-635{width:627px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-636{width:628px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-637{width:629px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-638{width:630px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-639{width:631px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-640{width:632px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-641{width:633px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-642{width:634px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-643{width:635px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-644{width:636px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-645{width:637px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-646{width:638px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-647{width:639px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-648{width:640px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-649{width:641px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-650{width:642px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-651{width:643px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-652{width:644px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-653{width:645px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-654{width:646px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-655{width:647px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-656{width:648px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-657{width:649px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-658{width:650px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-659{width:651px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-660{width:652px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-661{width:653px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-662{width:654px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-663{width:655px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-664{width:656px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-665{width:657px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-666{width:658px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-667{width:659px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-668{width:660px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-669{width:661px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-670{width:662px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-671{width:663px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-672{width:664px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-673{width:665px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-674{width:666px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-675{width:667px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-676{width:668px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-677{width:669px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-678{width:670px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-679{width:671px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-680{width:672px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-681{width:673px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-682{width:674px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-683{width:675px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-684{width:676px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-685{width:677px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-686{width:678px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-687{width:679px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-688{width:680px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-689{width:681px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-690{width:682px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-691{width:683px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-692{width:684px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-693{width:685px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-694{width:686px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-695{width:687px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-696{width:688px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-697{width:689px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-698{width:690px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-699{width:691px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-700{width:692px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-701{width:693px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-702{width:694px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-703{width:695px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-704{width:696px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-705{width:697px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-706{width:698px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-707{width:699px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-708{width:700px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-709{width:701px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-710{width:702px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-711{width:703px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-712{width:704px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-713{width:705px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-714{width:706px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-715{width:707px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-716{width:708px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-717{width:709px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-718{width:710px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-719{width:711px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-720{width:712px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-721{width:713px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-722{width:714px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-723{width:715px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-724{width:716px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-725{width:717px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-726{width:718px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-727{width:719px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-728{width:720px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-729{width:721px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-730{width:722px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-731{width:723px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-732{width:724px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-733{width:725px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-734{width:726px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-735{width:727px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-736{width:728px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-737{width:729px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-738{width:730px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-739{width:731px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-740{width:732px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-741{width:733px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-742{width:734px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-743{width:735px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-744{width:736px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-745{width:737px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-746{width:738px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-747{width:739px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-748{width:740px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-749{width:741px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-750{width:742px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-751{width:743px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-752{width:744px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-753{width:745px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-754{width:746px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-755{width:747px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-756{width:748px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-757{width:749px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-758{width:750px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-759{width:751px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-760{width:752px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-761{width:753px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-762{width:754px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-763{width:755px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-764{width:756px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-765{width:757px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-766{width:758px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-767{width:759px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-768{width:760px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-769{width:761px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-770{width:762px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-771{width:763px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-772{width:764px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-773{width:765px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-774{width:766px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-775{width:767px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-776{width:768px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-777{width:769px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-778{width:770px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-779{width:771px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-780{width:772px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-781{width:773px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-782{width:774px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-783{width:775px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-784{width:776px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-785{width:777px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-786{width:778px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-787{width:779px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-788{width:780px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-789{width:781px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-790{width:782px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-791{width:783px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-792{width:784px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-793{width:785px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-794{width:786px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-795{width:787px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-796{width:788px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-797{width:789px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-798{width:790px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-799{width:791px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-800{width:792px}.ta-input-dropdown .popover-body .dropdown-options-divider.dispatch_dropdown{top:-4px}.ta-input-dropdown .popover-body .dropdown-options{position:relative;top:0;left:0;z-index:1000;max-height:190px;width:100%;background-color:#2f2f2f;border-radius:3px;padding:4px;overflow:hidden}.ta-input-dropdown .popover-body .dropdown-options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important;padding-right:0}.ta-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar{width:3px}.ta-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-input-dropdown .popover-body .dropdown-options-fuel-franchise{padding:4px;max-height:300px}.ta-input-dropdown .popover-body .dropdown-options.no-result-container{padding:6px 10px!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9856,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9857,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9858,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option{padding:3px 4px;height:26px;font-size:14px;font-weight:400;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#dadada;font-size:14px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#dadada;font-size:14px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#dadada;border-radius:2px;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:hover{background:#424242;color:#dadada;border-radius:2px;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.disabled{color:#6c6c6c;pointer-events:none;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result{line-height:14px;font-size:11px;font-weight:700;color:#919191;height:auto!important;-webkit-user-select:none;user-select:none;pointer-events:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result:hover{background-color:transparent!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result div{padding-top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new{padding:4.5px 6px 4.5px 4px;font-size:11px;font-weight:700;color:#92b1f5;position:relative;transition:background .2s ease-in-out,color .2s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new:hover{color:#dadada;background:#3b73ed66}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .details-template-text,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .svgtext-template-text{color:#919191;font-size:11px;font-weight:700;line-height:14px;pointer-events:none;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .labels-template-counter,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632:hover,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active:after,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{display:inline-block;position:absolute;right:6px;top:28%;transform:translateY(-50%);width:14px;height:10px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{right:35px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active{position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template{display:flex;align-items:center}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous svg{margin-right:5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo{position:absolute;right:25px;text-align:right;display:none;margin-right:0}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text{position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text{top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1{flex:1}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text{font-size:11px;font-weight:400;line-height:14px;color:#919191;text-align:right}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .colors{height:18px;width:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-vertical-divider{width:1px;height:15px;background-color:#aaa3;content:\"\";margin:0 6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text{margin-right:28px;font-size:14px;font-weight:400;line-height:18px;color:#fff}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.lable-text-wrap{text-overflow:ellipsis;overflow:hidden;width:80px;white-space:nowrap}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.add-new{font-size:11px;font-weight:700;color:#6f9ee0;transition:all .3s ease-in-out;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result{line-height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;height:12px;-webkit-user-select:none;user-select:none;pointer-events:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter{width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;text-align:center;font-size:11px;font-weight:500;padding:0 4.5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result{height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;-webkit-user-select:none;user-select:none;pointer-events:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container p{font-size:11px;line-height:18px;color:#919191;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header{display:flex;align-items:center;justify-content:space-between;padding:0 2px;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow{width:18px;height:18px;line-height:15px;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg{transform:rotate(0);transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow.rotate svg{transform:rotate(180deg);transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store{height:26px;border-radius:2px;display:flex;align-items:center;justify-content:space-between;padding:3px 26px 4px 4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-name{font-size:14px;font-weight:400;height:19px;-webkit-user-select:none;user-select:none;color:#fff}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-address{font-size:11px;font-weight:500;line-height:14px;-webkit-user-select:none;user-select:none;color:#ccc}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-address{color:#fff!important;font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .helper-hover-container{content:\"\";width:105%;height:26px;background-color:#1d1d1d;position:absolute;top:0;left:0;border-radius:2px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.ta-input-dropdown .popover-body .dropdown-options .load-dispatcher-template{display:flex;align-items:center;gap:6px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-trailer{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:116px;max-width:-moz-fit-content;max-width:fit-content;line-height:18px;font-size:14px;font-weight:400}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container.trailerContainer{width:max-content!important;padding:0!important;margin:0!important}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate{width:130px;text-align:right;font-size:11px;font-weight:400;color:#919191;padding-bottom:1px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;column-gap:29px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status{height:14px;display:flex;align-items:center;justify-content:flex-end;grid-gap:4px;gap:4px;text-align:center}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter{max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template{display:grid;grid-template-columns:405px 166px;align-items:center;padding-right:25px}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2),.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(3){text-align:right}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter{max-width:max-content;height:18px;border-radius:30px;text-align:right;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;justify-self:flex-end}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ta-input-dropdown .popover-body .dropdown-options.w-col-1{width:1px}.ta-input-dropdown .popover-body .dropdown-options.w-col-2{width:2px}.ta-input-dropdown .popover-body .dropdown-options.w-col-3{width:3px}.ta-input-dropdown .popover-body .dropdown-options.w-col-4{width:4px}.ta-input-dropdown .popover-body .dropdown-options.w-col-5{width:5px}.ta-input-dropdown .popover-body .dropdown-options.w-col-6{width:6px}.ta-input-dropdown .popover-body .dropdown-options.w-col-7{width:7px}.ta-input-dropdown .popover-body .dropdown-options.w-col-8{width:8px}.ta-input-dropdown .popover-body .dropdown-options.w-col-9{width:9px}.ta-input-dropdown .popover-body .dropdown-options.w-col-10{width:10px}.ta-input-dropdown .popover-body .dropdown-options.w-col-11{width:11px}.ta-input-dropdown .popover-body .dropdown-options.w-col-12{width:12px}.ta-input-dropdown .popover-body .dropdown-options.w-col-13{width:13px}.ta-input-dropdown .popover-body .dropdown-options.w-col-14{width:14px}.ta-input-dropdown .popover-body .dropdown-options.w-col-15{width:15px}.ta-input-dropdown .popover-body .dropdown-options.w-col-16{width:16px}.ta-input-dropdown .popover-body .dropdown-options.w-col-17{width:17px}.ta-input-dropdown .popover-body .dropdown-options.w-col-18{width:18px}.ta-input-dropdown .popover-body .dropdown-options.w-col-19{width:19px}.ta-input-dropdown .popover-body .dropdown-options.w-col-20{width:20px}.ta-input-dropdown .popover-body .dropdown-options.w-col-21{width:21px}.ta-input-dropdown .popover-body .dropdown-options.w-col-22{width:22px}.ta-input-dropdown .popover-body .dropdown-options.w-col-23{width:23px}.ta-input-dropdown .popover-body .dropdown-options.w-col-24{width:24px}.ta-input-dropdown .popover-body .dropdown-options.w-col-25{width:25px}.ta-input-dropdown .popover-body .dropdown-options.w-col-26{width:26px}.ta-input-dropdown .popover-body .dropdown-options.w-col-27{width:27px}.ta-input-dropdown .popover-body .dropdown-options.w-col-28{width:28px}.ta-input-dropdown .popover-body .dropdown-options.w-col-29{width:29px}.ta-input-dropdown .popover-body .dropdown-options.w-col-30{width:30px}.ta-input-dropdown .popover-body .dropdown-options.w-col-31{width:31px}.ta-input-dropdown .popover-body .dropdown-options.w-col-32{width:32px}.ta-input-dropdown .popover-body .dropdown-options.w-col-33{width:33px}.ta-input-dropdown .popover-body .dropdown-options.w-col-34{width:34px}.ta-input-dropdown .popover-body .dropdown-options.w-col-35{width:35px}.ta-input-dropdown .popover-body .dropdown-options.w-col-36{width:36px}.ta-input-dropdown .popover-body .dropdown-options.w-col-37{width:37px}.ta-input-dropdown .popover-body .dropdown-options.w-col-38{width:38px}.ta-input-dropdown .popover-body .dropdown-options.w-col-39{width:39px}.ta-input-dropdown .popover-body .dropdown-options.w-col-40{width:40px}.ta-input-dropdown .popover-body .dropdown-options.w-col-41{width:41px}.ta-input-dropdown .popover-body .dropdown-options.w-col-42{width:42px}.ta-input-dropdown .popover-body .dropdown-options.w-col-43{width:43px}.ta-input-dropdown .popover-body .dropdown-options.w-col-44{width:44px}.ta-input-dropdown .popover-body .dropdown-options.w-col-45{width:45px}.ta-input-dropdown .popover-body .dropdown-options.w-col-46{width:46px}.ta-input-dropdown .popover-body .dropdown-options.w-col-47{width:47px}.ta-input-dropdown .popover-body .dropdown-options.w-col-48{width:48px}.ta-input-dropdown .popover-body .dropdown-options.w-col-49{width:49px}.ta-input-dropdown .popover-body .dropdown-options.w-col-50{width:50px}.ta-input-dropdown .popover-body .dropdown-options.w-col-51{width:51px}.ta-input-dropdown .popover-body .dropdown-options.w-col-52{width:52px}.ta-input-dropdown .popover-body .dropdown-options.w-col-53{width:53px}.ta-input-dropdown .popover-body .dropdown-options.w-col-54{width:54px}.ta-input-dropdown .popover-body .dropdown-options.w-col-55{width:55px}.ta-input-dropdown .popover-body .dropdown-options.w-col-56{width:56px}.ta-input-dropdown .popover-body .dropdown-options.w-col-57{width:57px}.ta-input-dropdown .popover-body .dropdown-options.w-col-58{width:58px}.ta-input-dropdown .popover-body .dropdown-options.w-col-59{width:59px}.ta-input-dropdown .popover-body .dropdown-options.w-col-60{width:60px}.ta-input-dropdown .popover-body .dropdown-options.w-col-61{width:61px}.ta-input-dropdown .popover-body .dropdown-options.w-col-62{width:62px}.ta-input-dropdown .popover-body .dropdown-options.w-col-63{width:63px}.ta-input-dropdown .popover-body .dropdown-options.w-col-64{width:64px}.ta-input-dropdown .popover-body .dropdown-options.w-col-65{width:65px}.ta-input-dropdown .popover-body .dropdown-options.w-col-66{width:66px}.ta-input-dropdown .popover-body .dropdown-options.w-col-67{width:67px}.ta-input-dropdown .popover-body .dropdown-options.w-col-68{width:68px}.ta-input-dropdown .popover-body .dropdown-options.w-col-69{width:69px}.ta-input-dropdown .popover-body .dropdown-options.w-col-70{width:70px}.ta-input-dropdown .popover-body .dropdown-options.w-col-71{width:71px}.ta-input-dropdown .popover-body .dropdown-options.w-col-72{width:72px}.ta-input-dropdown .popover-body .dropdown-options.w-col-73{width:73px}.ta-input-dropdown .popover-body .dropdown-options.w-col-74{width:74px}.ta-input-dropdown .popover-body .dropdown-options.w-col-75{width:75px}.ta-input-dropdown .popover-body .dropdown-options.w-col-76{width:76px}.ta-input-dropdown .popover-body .dropdown-options.w-col-77{width:77px}.ta-input-dropdown .popover-body .dropdown-options.w-col-78{width:78px}.ta-input-dropdown .popover-body .dropdown-options.w-col-79{width:79px}.ta-input-dropdown .popover-body .dropdown-options.w-col-80{width:80px}.ta-input-dropdown .popover-body .dropdown-options.w-col-81{width:81px}.ta-input-dropdown .popover-body .dropdown-options.w-col-82{width:82px}.ta-input-dropdown .popover-body .dropdown-options.w-col-83{width:83px}.ta-input-dropdown .popover-body .dropdown-options.w-col-84{width:84px}.ta-input-dropdown .popover-body .dropdown-options.w-col-85{width:85px}.ta-input-dropdown .popover-body .dropdown-options.w-col-86{width:86px}.ta-input-dropdown .popover-body .dropdown-options.w-col-87{width:87px}.ta-input-dropdown .popover-body .dropdown-options.w-col-88{width:88px}.ta-input-dropdown .popover-body .dropdown-options.w-col-89{width:89px}.ta-input-dropdown .popover-body .dropdown-options.w-col-90{width:90px}.ta-input-dropdown .popover-body .dropdown-options.w-col-91{width:91px}.ta-input-dropdown .popover-body .dropdown-options.w-col-92{width:92px}.ta-input-dropdown .popover-body .dropdown-options.w-col-93{width:93px}.ta-input-dropdown .popover-body .dropdown-options.w-col-94{width:94px}.ta-input-dropdown .popover-body .dropdown-options.w-col-95{width:95px}.ta-input-dropdown .popover-body .dropdown-options.w-col-96{width:96px}.ta-input-dropdown .popover-body .dropdown-options.w-col-97{width:97px}.ta-input-dropdown .popover-body .dropdown-options.w-col-98{width:98px}.ta-input-dropdown .popover-body .dropdown-options.w-col-99{width:99px}.ta-input-dropdown .popover-body .dropdown-options.w-col-100{width:100px}.ta-input-dropdown .popover-body .dropdown-options.w-col-101{width:101px}.ta-input-dropdown .popover-body .dropdown-options.w-col-102{width:102px}.ta-input-dropdown .popover-body .dropdown-options.w-col-103{width:103px}.ta-input-dropdown .popover-body .dropdown-options.w-col-104{width:104px}.ta-input-dropdown .popover-body .dropdown-options.w-col-105{width:105px}.ta-input-dropdown .popover-body .dropdown-options.w-col-106{width:106px}.ta-input-dropdown .popover-body .dropdown-options.w-col-107{width:107px}.ta-input-dropdown .popover-body .dropdown-options.w-col-108{width:108px}.ta-input-dropdown .popover-body .dropdown-options.w-col-109{width:109px}.ta-input-dropdown .popover-body .dropdown-options.w-col-110{width:110px}.ta-input-dropdown .popover-body .dropdown-options.w-col-111{width:111px}.ta-input-dropdown .popover-body .dropdown-options.w-col-112{width:112px}.ta-input-dropdown .popover-body .dropdown-options.w-col-113{width:113px}.ta-input-dropdown .popover-body .dropdown-options.w-col-114{width:114px}.ta-input-dropdown .popover-body .dropdown-options.w-col-115{width:115px}.ta-input-dropdown .popover-body .dropdown-options.w-col-116{width:116px}.ta-input-dropdown .popover-body .dropdown-options.w-col-117{width:117px}.ta-input-dropdown .popover-body .dropdown-options.w-col-118{width:118px}.ta-input-dropdown .popover-body .dropdown-options.w-col-119{width:119px}.ta-input-dropdown .popover-body .dropdown-options.w-col-120{width:120px}.ta-input-dropdown .popover-body .dropdown-options.w-col-121{width:121px}.ta-input-dropdown .popover-body .dropdown-options.w-col-122{width:122px}.ta-input-dropdown .popover-body .dropdown-options.w-col-123{width:123px}.ta-input-dropdown .popover-body .dropdown-options.w-col-124{width:124px}.ta-input-dropdown .popover-body .dropdown-options.w-col-125{width:125px}.ta-input-dropdown .popover-body .dropdown-options.w-col-126{width:126px}.ta-input-dropdown .popover-body .dropdown-options.w-col-127{width:127px}.ta-input-dropdown .popover-body .dropdown-options.w-col-128{width:128px}.ta-input-dropdown .popover-body .dropdown-options.w-col-129{width:129px}.ta-input-dropdown .popover-body .dropdown-options.w-col-130{width:130px}.ta-input-dropdown .popover-body .dropdown-options.w-col-131{width:131px}.ta-input-dropdown .popover-body .dropdown-options.w-col-132{width:132px}.ta-input-dropdown .popover-body .dropdown-options.w-col-133{width:133px}.ta-input-dropdown .popover-body .dropdown-options.w-col-134{width:134px}.ta-input-dropdown .popover-body .dropdown-options.w-col-135{width:135px}.ta-input-dropdown .popover-body .dropdown-options.w-col-136{width:136px}.ta-input-dropdown .popover-body .dropdown-options.w-col-137{width:137px}.ta-input-dropdown .popover-body .dropdown-options.w-col-138{width:138px}.ta-input-dropdown .popover-body .dropdown-options.w-col-139{width:139px}.ta-input-dropdown .popover-body .dropdown-options.w-col-140{width:140px}.ta-input-dropdown .popover-body .dropdown-options.w-col-141{width:141px}.ta-input-dropdown .popover-body .dropdown-options.w-col-142{width:142px}.ta-input-dropdown .popover-body .dropdown-options.w-col-143{width:143px}.ta-input-dropdown .popover-body .dropdown-options.w-col-144{width:144px}.ta-input-dropdown .popover-body .dropdown-options.w-col-145{width:145px}.ta-input-dropdown .popover-body .dropdown-options.w-col-146{width:146px}.ta-input-dropdown .popover-body .dropdown-options.w-col-147{width:147px}.ta-input-dropdown .popover-body .dropdown-options.w-col-148{width:148px}.ta-input-dropdown .popover-body .dropdown-options.w-col-149{width:149px}.ta-input-dropdown .popover-body .dropdown-options.w-col-150{width:150px}.ta-input-dropdown .popover-body .dropdown-options.w-col-151{width:151px}.ta-input-dropdown .popover-body .dropdown-options.w-col-152{width:152px}.ta-input-dropdown .popover-body .dropdown-options.w-col-153{width:153px}.ta-input-dropdown .popover-body .dropdown-options.w-col-154{width:154px}.ta-input-dropdown .popover-body .dropdown-options.w-col-155{width:155px}.ta-input-dropdown .popover-body .dropdown-options.w-col-156{width:156px}.ta-input-dropdown .popover-body .dropdown-options.w-col-157{width:157px}.ta-input-dropdown .popover-body .dropdown-options.w-col-158{width:158px}.ta-input-dropdown .popover-body .dropdown-options.w-col-159{width:159px}.ta-input-dropdown .popover-body .dropdown-options.w-col-160{width:160px}.ta-input-dropdown .popover-body .dropdown-options.w-col-161{width:161px}.ta-input-dropdown .popover-body .dropdown-options.w-col-162{width:162px}.ta-input-dropdown .popover-body .dropdown-options.w-col-163{width:163px}.ta-input-dropdown .popover-body .dropdown-options.w-col-164{width:164px}.ta-input-dropdown .popover-body .dropdown-options.w-col-165{width:165px}.ta-input-dropdown .popover-body .dropdown-options.w-col-166{width:166px}.ta-input-dropdown .popover-body .dropdown-options.w-col-167{width:167px}.ta-input-dropdown .popover-body .dropdown-options.w-col-168{width:168px}.ta-input-dropdown .popover-body .dropdown-options.w-col-169{width:169px}.ta-input-dropdown .popover-body .dropdown-options.w-col-170{width:170px}.ta-input-dropdown .popover-body .dropdown-options.w-col-171{width:171px}.ta-input-dropdown .popover-body .dropdown-options.w-col-172{width:172px}.ta-input-dropdown .popover-body .dropdown-options.w-col-173{width:173px}.ta-input-dropdown .popover-body .dropdown-options.w-col-174{width:174px}.ta-input-dropdown .popover-body .dropdown-options.w-col-175{width:175px}.ta-input-dropdown .popover-body .dropdown-options.w-col-176{width:176px}.ta-input-dropdown .popover-body .dropdown-options.w-col-177{width:177px}.ta-input-dropdown .popover-body .dropdown-options.w-col-178{width:178px}.ta-input-dropdown .popover-body .dropdown-options.w-col-179{width:179px}.ta-input-dropdown .popover-body .dropdown-options.w-col-180{width:180px}.ta-input-dropdown .popover-body .dropdown-options.w-col-181{width:181px}.ta-input-dropdown .popover-body .dropdown-options.w-col-182{width:182px}.ta-input-dropdown .popover-body .dropdown-options.w-col-183{width:183px}.ta-input-dropdown .popover-body .dropdown-options.w-col-184{width:184px}.ta-input-dropdown .popover-body .dropdown-options.w-col-185{width:185px}.ta-input-dropdown .popover-body .dropdown-options.w-col-186{width:186px}.ta-input-dropdown .popover-body .dropdown-options.w-col-187{width:187px}.ta-input-dropdown .popover-body .dropdown-options.w-col-188{width:188px}.ta-input-dropdown .popover-body .dropdown-options.w-col-189{width:189px}.ta-input-dropdown .popover-body .dropdown-options.w-col-190{width:190px}.ta-input-dropdown .popover-body .dropdown-options.w-col-191{width:191px}.ta-input-dropdown .popover-body .dropdown-options.w-col-192{width:192px}.ta-input-dropdown .popover-body .dropdown-options.w-col-193{width:193px}.ta-input-dropdown .popover-body .dropdown-options.w-col-194{width:194px}.ta-input-dropdown .popover-body .dropdown-options.w-col-195{width:195px}.ta-input-dropdown .popover-body .dropdown-options.w-col-196{width:196px}.ta-input-dropdown .popover-body .dropdown-options.w-col-197{width:197px}.ta-input-dropdown .popover-body .dropdown-options.w-col-198{width:198px}.ta-input-dropdown .popover-body .dropdown-options.w-col-199{width:199px}.ta-input-dropdown .popover-body .dropdown-options.w-col-200{width:200px}.ta-input-dropdown .popover-body .dropdown-options.w-col-201{width:201px}.ta-input-dropdown .popover-body .dropdown-options.w-col-202{width:202px}.ta-input-dropdown .popover-body .dropdown-options.w-col-203{width:203px}.ta-input-dropdown .popover-body .dropdown-options.w-col-204{width:204px}.ta-input-dropdown .popover-body .dropdown-options.w-col-205{width:205px}.ta-input-dropdown .popover-body .dropdown-options.w-col-206{width:206px}.ta-input-dropdown .popover-body .dropdown-options.w-col-207{width:207px}.ta-input-dropdown .popover-body .dropdown-options.w-col-208{width:208px}.ta-input-dropdown .popover-body .dropdown-options.w-col-209{width:209px}.ta-input-dropdown .popover-body .dropdown-options.w-col-210{width:210px}.ta-input-dropdown .popover-body .dropdown-options.w-col-211{width:211px}.ta-input-dropdown .popover-body .dropdown-options.w-col-212{width:212px}.ta-input-dropdown .popover-body .dropdown-options.w-col-213{width:213px}.ta-input-dropdown .popover-body .dropdown-options.w-col-214{width:214px}.ta-input-dropdown .popover-body .dropdown-options.w-col-215{width:215px}.ta-input-dropdown .popover-body .dropdown-options.w-col-216{width:216px}.ta-input-dropdown .popover-body .dropdown-options.w-col-217{width:217px}.ta-input-dropdown .popover-body .dropdown-options.w-col-218{width:218px}.ta-input-dropdown .popover-body .dropdown-options.w-col-219{width:219px}.ta-input-dropdown .popover-body .dropdown-options.w-col-220{width:220px}.ta-input-dropdown .popover-body .dropdown-options.w-col-221{width:221px}.ta-input-dropdown .popover-body .dropdown-options.w-col-222{width:222px}.ta-input-dropdown .popover-body .dropdown-options.w-col-223{width:223px}.ta-input-dropdown .popover-body .dropdown-options.w-col-224{width:224px}.ta-input-dropdown .popover-body .dropdown-options.w-col-225{width:225px}.ta-input-dropdown .popover-body .dropdown-options.w-col-226{width:226px}.ta-input-dropdown .popover-body .dropdown-options.w-col-227{width:227px}.ta-input-dropdown .popover-body .dropdown-options.w-col-228{width:228px}.ta-input-dropdown .popover-body .dropdown-options.w-col-229{width:229px}.ta-input-dropdown .popover-body .dropdown-options.w-col-230{width:230px}.ta-input-dropdown .popover-body .dropdown-options.w-col-231{width:231px}.ta-input-dropdown .popover-body .dropdown-options.w-col-232{width:232px}.ta-input-dropdown .popover-body .dropdown-options.w-col-233{width:233px}.ta-input-dropdown .popover-body .dropdown-options.w-col-234{width:234px}.ta-input-dropdown .popover-body .dropdown-options.w-col-235{width:235px}.ta-input-dropdown .popover-body .dropdown-options.w-col-236{width:236px}.ta-input-dropdown .popover-body .dropdown-options.w-col-237{width:237px}.ta-input-dropdown .popover-body .dropdown-options.w-col-238{width:238px}.ta-input-dropdown .popover-body .dropdown-options.w-col-239{width:239px}.ta-input-dropdown .popover-body .dropdown-options.w-col-240{width:240px}.ta-input-dropdown .popover-body .dropdown-options.w-col-241{width:241px}.ta-input-dropdown .popover-body .dropdown-options.w-col-242{width:242px}.ta-input-dropdown .popover-body .dropdown-options.w-col-243{width:243px}.ta-input-dropdown .popover-body .dropdown-options.w-col-244{width:244px}.ta-input-dropdown .popover-body .dropdown-options.w-col-245{width:245px}.ta-input-dropdown .popover-body .dropdown-options.w-col-246{width:246px}.ta-input-dropdown .popover-body .dropdown-options.w-col-247{width:247px}.ta-input-dropdown .popover-body .dropdown-options.w-col-248{width:248px}.ta-input-dropdown .popover-body .dropdown-options.w-col-249{width:249px}.ta-input-dropdown .popover-body .dropdown-options.w-col-250{width:250px}.ta-input-dropdown .popover-body .dropdown-options.w-col-251{width:251px}.ta-input-dropdown .popover-body .dropdown-options.w-col-252{width:252px}.ta-input-dropdown .popover-body .dropdown-options.w-col-253{width:253px}.ta-input-dropdown .popover-body .dropdown-options.w-col-254{width:254px}.ta-input-dropdown .popover-body .dropdown-options.w-col-255{width:255px}.ta-input-dropdown .popover-body .dropdown-options.w-col-256{width:256px}.ta-input-dropdown .popover-body .dropdown-options.w-col-257{width:257px}.ta-input-dropdown .popover-body .dropdown-options.w-col-258{width:258px}.ta-input-dropdown .popover-body .dropdown-options.w-col-259{width:259px}.ta-input-dropdown .popover-body .dropdown-options.w-col-260{width:260px}.ta-input-dropdown .popover-body .dropdown-options.w-col-261{width:261px}.ta-input-dropdown .popover-body .dropdown-options.w-col-262{width:262px}.ta-input-dropdown .popover-body .dropdown-options.w-col-263{width:263px}.ta-input-dropdown .popover-body .dropdown-options.w-col-264{width:264px}.ta-input-dropdown .popover-body .dropdown-options.w-col-265{width:265px}.ta-input-dropdown .popover-body .dropdown-options.w-col-266{width:266px}.ta-input-dropdown .popover-body .dropdown-options.w-col-267{width:267px}.ta-input-dropdown .popover-body .dropdown-options.w-col-268{width:268px}.ta-input-dropdown .popover-body .dropdown-options.w-col-269{width:269px}.ta-input-dropdown .popover-body .dropdown-options.w-col-270{width:270px}.ta-input-dropdown .popover-body .dropdown-options.w-col-271{width:271px}.ta-input-dropdown .popover-body .dropdown-options.w-col-272{width:272px}.ta-input-dropdown .popover-body .dropdown-options.w-col-273{width:273px}.ta-input-dropdown .popover-body .dropdown-options.w-col-274{width:274px}.ta-input-dropdown .popover-body .dropdown-options.w-col-275{width:275px}.ta-input-dropdown .popover-body .dropdown-options.w-col-276{width:276px}.ta-input-dropdown .popover-body .dropdown-options.w-col-277{width:277px}.ta-input-dropdown .popover-body .dropdown-options.w-col-278{width:278px}.ta-input-dropdown .popover-body .dropdown-options.w-col-279{width:279px}.ta-input-dropdown .popover-body .dropdown-options.w-col-280{width:280px}.ta-input-dropdown .popover-body .dropdown-options.w-col-281{width:281px}.ta-input-dropdown .popover-body .dropdown-options.w-col-282{width:282px}.ta-input-dropdown .popover-body .dropdown-options.w-col-283{width:283px}.ta-input-dropdown .popover-body .dropdown-options.w-col-284{width:284px}.ta-input-dropdown .popover-body .dropdown-options.w-col-285{width:285px}.ta-input-dropdown .popover-body .dropdown-options.w-col-286{width:286px}.ta-input-dropdown .popover-body .dropdown-options.w-col-287{width:287px}.ta-input-dropdown .popover-body .dropdown-options.w-col-288{width:288px}.ta-input-dropdown .popover-body .dropdown-options.w-col-289{width:289px}.ta-input-dropdown .popover-body .dropdown-options.w-col-290{width:290px}.ta-input-dropdown .popover-body .dropdown-options.w-col-291{width:291px}.ta-input-dropdown .popover-body .dropdown-options.w-col-292{width:292px}.ta-input-dropdown .popover-body .dropdown-options.w-col-293{width:293px}.ta-input-dropdown .popover-body .dropdown-options.w-col-294{width:294px}.ta-input-dropdown .popover-body .dropdown-options.w-col-295{width:295px}.ta-input-dropdown .popover-body .dropdown-options.w-col-296{width:296px}.ta-input-dropdown .popover-body .dropdown-options.w-col-297{width:297px}.ta-input-dropdown .popover-body .dropdown-options.w-col-298{width:298px}.ta-input-dropdown .popover-body .dropdown-options.w-col-299{width:299px}.ta-input-dropdown .popover-body .dropdown-options.w-col-300{width:300px}.ta-input-dropdown .popover-body .dropdown-options.w-col-301{width:301px}.ta-input-dropdown .popover-body .dropdown-options.w-col-302{width:302px}.ta-input-dropdown .popover-body .dropdown-options.w-col-303{width:303px}.ta-input-dropdown .popover-body .dropdown-options.w-col-304{width:304px}.ta-input-dropdown .popover-body .dropdown-options.w-col-305{width:305px}.ta-input-dropdown .popover-body .dropdown-options.w-col-306{width:306px}.ta-input-dropdown .popover-body .dropdown-options.w-col-307{width:307px}.ta-input-dropdown .popover-body .dropdown-options.w-col-308{width:308px}.ta-input-dropdown .popover-body .dropdown-options.w-col-309{width:309px}.ta-input-dropdown .popover-body .dropdown-options.w-col-310{width:310px}.ta-input-dropdown .popover-body .dropdown-options.w-col-311{width:311px}.ta-input-dropdown .popover-body .dropdown-options.w-col-312{width:312px}.ta-input-dropdown .popover-body .dropdown-options.w-col-313{width:313px}.ta-input-dropdown .popover-body .dropdown-options.w-col-314{width:314px}.ta-input-dropdown .popover-body .dropdown-options.w-col-315{width:315px}.ta-input-dropdown .popover-body .dropdown-options.w-col-316{width:316px}.ta-input-dropdown .popover-body .dropdown-options.w-col-317{width:317px}.ta-input-dropdown .popover-body .dropdown-options.w-col-318{width:318px}.ta-input-dropdown .popover-body .dropdown-options.w-col-319{width:319px}.ta-input-dropdown .popover-body .dropdown-options.w-col-320{width:320px}.ta-input-dropdown .popover-body .dropdown-options.w-col-321{width:321px}.ta-input-dropdown .popover-body .dropdown-options.w-col-322{width:322px}.ta-input-dropdown .popover-body .dropdown-options.w-col-323{width:323px}.ta-input-dropdown .popover-body .dropdown-options.w-col-324{width:324px}.ta-input-dropdown .popover-body .dropdown-options.w-col-325{width:325px}.ta-input-dropdown .popover-body .dropdown-options.w-col-326{width:326px}.ta-input-dropdown .popover-body .dropdown-options.w-col-327{width:327px}.ta-input-dropdown .popover-body .dropdown-options.w-col-328{width:328px}.ta-input-dropdown .popover-body .dropdown-options.w-col-329{width:329px}.ta-input-dropdown .popover-body .dropdown-options.w-col-330{width:330px}.ta-input-dropdown .popover-body .dropdown-options.w-col-331{width:331px}.ta-input-dropdown .popover-body .dropdown-options.w-col-332{width:332px}.ta-input-dropdown .popover-body .dropdown-options.w-col-333{width:333px}.ta-input-dropdown .popover-body .dropdown-options.w-col-334{width:334px}.ta-input-dropdown .popover-body .dropdown-options.w-col-335{width:335px}.ta-input-dropdown .popover-body .dropdown-options.w-col-336{width:336px}.ta-input-dropdown .popover-body .dropdown-options.w-col-337{width:337px}.ta-input-dropdown .popover-body .dropdown-options.w-col-338{width:338px}.ta-input-dropdown .popover-body .dropdown-options.w-col-339{width:339px}.ta-input-dropdown .popover-body .dropdown-options.w-col-340{width:340px}.ta-input-dropdown .popover-body .dropdown-options.w-col-341{width:341px}.ta-input-dropdown .popover-body .dropdown-options.w-col-342{width:342px}.ta-input-dropdown .popover-body .dropdown-options.w-col-343{width:343px}.ta-input-dropdown .popover-body .dropdown-options.w-col-344{width:344px}.ta-input-dropdown .popover-body .dropdown-options.w-col-345{width:345px}.ta-input-dropdown .popover-body .dropdown-options.w-col-346{width:346px}.ta-input-dropdown .popover-body .dropdown-options.w-col-347{width:347px}.ta-input-dropdown .popover-body .dropdown-options.w-col-348{width:348px}.ta-input-dropdown .popover-body .dropdown-options.w-col-349{width:349px}.ta-input-dropdown .popover-body .dropdown-options.w-col-350{width:350px}.ta-input-dropdown .popover-body .dropdown-options.w-col-351{width:351px}.ta-input-dropdown .popover-body .dropdown-options.w-col-352{width:352px}.ta-input-dropdown .popover-body .dropdown-options.w-col-353{width:353px}.ta-input-dropdown .popover-body .dropdown-options.w-col-354{width:354px}.ta-input-dropdown .popover-body .dropdown-options.w-col-355{width:355px}.ta-input-dropdown .popover-body .dropdown-options.w-col-356{width:356px}.ta-input-dropdown .popover-body .dropdown-options.w-col-357{width:357px}.ta-input-dropdown .popover-body .dropdown-options.w-col-358{width:358px}.ta-input-dropdown .popover-body .dropdown-options.w-col-359{width:359px}.ta-input-dropdown .popover-body .dropdown-options.w-col-360{width:360px}.ta-input-dropdown .popover-body .dropdown-options.w-col-361{width:361px}.ta-input-dropdown .popover-body .dropdown-options.w-col-362{width:362px}.ta-input-dropdown .popover-body .dropdown-options.w-col-363{width:363px}.ta-input-dropdown .popover-body .dropdown-options.w-col-364{width:364px}.ta-input-dropdown .popover-body .dropdown-options.w-col-365{width:365px}.ta-input-dropdown .popover-body .dropdown-options.w-col-366{width:366px}.ta-input-dropdown .popover-body .dropdown-options.w-col-367{width:367px}.ta-input-dropdown .popover-body .dropdown-options.w-col-368{width:368px}.ta-input-dropdown .popover-body .dropdown-options.w-col-369{width:369px}.ta-input-dropdown .popover-body .dropdown-options.w-col-370{width:370px}.ta-input-dropdown .popover-body .dropdown-options.w-col-371{width:371px}.ta-input-dropdown .popover-body .dropdown-options.w-col-372{width:372px}.ta-input-dropdown .popover-body .dropdown-options.w-col-373{width:373px}.ta-input-dropdown .popover-body .dropdown-options.w-col-374{width:374px}.ta-input-dropdown .popover-body .dropdown-options.w-col-375{width:375px}.ta-input-dropdown .popover-body .dropdown-options.w-col-376{width:376px}.ta-input-dropdown .popover-body .dropdown-options.w-col-377{width:377px}.ta-input-dropdown .popover-body .dropdown-options.w-col-378{width:378px}.ta-input-dropdown .popover-body .dropdown-options.w-col-379{width:379px}.ta-input-dropdown .popover-body .dropdown-options.w-col-380{width:380px}.ta-input-dropdown .popover-body .dropdown-options.w-col-381{width:381px}.ta-input-dropdown .popover-body .dropdown-options.w-col-382{width:382px}.ta-input-dropdown .popover-body .dropdown-options.w-col-383{width:383px}.ta-input-dropdown .popover-body .dropdown-options.w-col-384{width:384px}.ta-input-dropdown .popover-body .dropdown-options.w-col-385{width:385px}.ta-input-dropdown .popover-body .dropdown-options.w-col-386{width:386px}.ta-input-dropdown .popover-body .dropdown-options.w-col-387{width:387px}.ta-input-dropdown .popover-body .dropdown-options.w-col-388{width:388px}.ta-input-dropdown .popover-body .dropdown-options.w-col-389{width:389px}.ta-input-dropdown .popover-body .dropdown-options.w-col-390{width:390px}.ta-input-dropdown .popover-body .dropdown-options.w-col-391{width:391px}.ta-input-dropdown .popover-body .dropdown-options.w-col-392{width:392px}.ta-input-dropdown .popover-body .dropdown-options.w-col-393{width:393px}.ta-input-dropdown .popover-body .dropdown-options.w-col-394{width:394px}.ta-input-dropdown .popover-body .dropdown-options.w-col-395{width:395px}.ta-input-dropdown .popover-body .dropdown-options.w-col-396{width:396px}.ta-input-dropdown .popover-body .dropdown-options.w-col-397{width:397px}.ta-input-dropdown .popover-body .dropdown-options.w-col-398{width:398px}.ta-input-dropdown .popover-body .dropdown-options.w-col-399{width:399px}.ta-input-dropdown .popover-body .dropdown-options.w-col-400{width:400px}.ta-input-dropdown .popover-body .dropdown-options.w-col-401{width:401px}.ta-input-dropdown .popover-body .dropdown-options.w-col-402{width:402px}.ta-input-dropdown .popover-body .dropdown-options.w-col-403{width:403px}.ta-input-dropdown .popover-body .dropdown-options.w-col-404{width:404px}.ta-input-dropdown .popover-body .dropdown-options.w-col-405{width:405px}.ta-input-dropdown .popover-body .dropdown-options.w-col-406{width:406px}.ta-input-dropdown .popover-body .dropdown-options.w-col-407{width:407px}.ta-input-dropdown .popover-body .dropdown-options.w-col-408{width:408px}.ta-input-dropdown .popover-body .dropdown-options.w-col-409{width:409px}.ta-input-dropdown .popover-body .dropdown-options.w-col-410{width:410px}.ta-input-dropdown .popover-body .dropdown-options.w-col-411{width:411px}.ta-input-dropdown .popover-body .dropdown-options.w-col-412{width:412px}.ta-input-dropdown .popover-body .dropdown-options.w-col-413{width:413px}.ta-input-dropdown .popover-body .dropdown-options.w-col-414{width:414px}.ta-input-dropdown .popover-body .dropdown-options.w-col-415{width:415px}.ta-input-dropdown .popover-body .dropdown-options.w-col-416{width:416px}.ta-input-dropdown .popover-body .dropdown-options.w-col-417{width:417px}.ta-input-dropdown .popover-body .dropdown-options.w-col-418{width:418px}.ta-input-dropdown .popover-body .dropdown-options.w-col-419{width:419px}.ta-input-dropdown .popover-body .dropdown-options.w-col-420{width:420px}.ta-input-dropdown .popover-body .dropdown-options.w-col-421{width:421px}.ta-input-dropdown .popover-body .dropdown-options.w-col-422{width:422px}.ta-input-dropdown .popover-body .dropdown-options.w-col-423{width:423px}.ta-input-dropdown .popover-body .dropdown-options.w-col-424{width:424px}.ta-input-dropdown .popover-body .dropdown-options.w-col-425{width:425px}.ta-input-dropdown .popover-body .dropdown-options.w-col-426{width:426px}.ta-input-dropdown .popover-body .dropdown-options.w-col-427{width:427px}.ta-input-dropdown .popover-body .dropdown-options.w-col-428{width:428px}.ta-input-dropdown .popover-body .dropdown-options.w-col-429{width:429px}.ta-input-dropdown .popover-body .dropdown-options.w-col-430{width:430px}.ta-input-dropdown .popover-body .dropdown-options.w-col-431{width:431px}.ta-input-dropdown .popover-body .dropdown-options.w-col-432{width:432px}.ta-input-dropdown .popover-body .dropdown-options.w-col-433{width:433px}.ta-input-dropdown .popover-body .dropdown-options.w-col-434{width:434px}.ta-input-dropdown .popover-body .dropdown-options.w-col-435{width:435px}.ta-input-dropdown .popover-body .dropdown-options.w-col-436{width:436px}.ta-input-dropdown .popover-body .dropdown-options.w-col-437{width:437px}.ta-input-dropdown .popover-body .dropdown-options.w-col-438{width:438px}.ta-input-dropdown .popover-body .dropdown-options.w-col-439{width:439px}.ta-input-dropdown .popover-body .dropdown-options.w-col-440{width:440px}.ta-input-dropdown .popover-body .dropdown-options.w-col-441{width:441px}.ta-input-dropdown .popover-body .dropdown-options.w-col-442{width:442px}.ta-input-dropdown .popover-body .dropdown-options.w-col-443{width:443px}.ta-input-dropdown .popover-body .dropdown-options.w-col-444{width:444px}.ta-input-dropdown .popover-body .dropdown-options.w-col-445{width:445px}.ta-input-dropdown .popover-body .dropdown-options.w-col-446{width:446px}.ta-input-dropdown .popover-body .dropdown-options.w-col-447{width:447px}.ta-input-dropdown .popover-body .dropdown-options.w-col-448{width:448px}.ta-input-dropdown .popover-body .dropdown-options.w-col-449{width:449px}.ta-input-dropdown .popover-body .dropdown-options.w-col-450{width:450px}.ta-input-dropdown .popover-body .dropdown-options.w-col-451{width:451px}.ta-input-dropdown .popover-body .dropdown-options.w-col-452{width:452px}.ta-input-dropdown .popover-body .dropdown-options.w-col-453{width:453px}.ta-input-dropdown .popover-body .dropdown-options.w-col-454{width:454px}.ta-input-dropdown .popover-body .dropdown-options.w-col-455{width:455px}.ta-input-dropdown .popover-body .dropdown-options.w-col-456{width:456px}.ta-input-dropdown .popover-body .dropdown-options.w-col-457{width:457px}.ta-input-dropdown .popover-body .dropdown-options.w-col-458{width:458px}.ta-input-dropdown .popover-body .dropdown-options.w-col-459{width:459px}.ta-input-dropdown .popover-body .dropdown-options.w-col-460{width:460px}.ta-input-dropdown .popover-body .dropdown-options.w-col-461{width:461px}.ta-input-dropdown .popover-body .dropdown-options.w-col-462{width:462px}.ta-input-dropdown .popover-body .dropdown-options.w-col-463{width:463px}.ta-input-dropdown .popover-body .dropdown-options.w-col-464{width:464px}.ta-input-dropdown .popover-body .dropdown-options.w-col-465{width:465px}.ta-input-dropdown .popover-body .dropdown-options.w-col-466{width:466px}.ta-input-dropdown .popover-body .dropdown-options.w-col-467{width:467px}.ta-input-dropdown .popover-body .dropdown-options.w-col-468{width:468px}.ta-input-dropdown .popover-body .dropdown-options.w-col-469{width:469px}.ta-input-dropdown .popover-body .dropdown-options.w-col-470{width:470px}.ta-input-dropdown .popover-body .dropdown-options.w-col-471{width:471px}.ta-input-dropdown .popover-body .dropdown-options.w-col-472{width:472px}.ta-input-dropdown .popover-body .dropdown-options.w-col-473{width:473px}.ta-input-dropdown .popover-body .dropdown-options.w-col-474{width:474px}.ta-input-dropdown .popover-body .dropdown-options.w-col-475{width:475px}.ta-input-dropdown .popover-body .dropdown-options.w-col-476{width:476px}.ta-input-dropdown .popover-body .dropdown-options.w-col-477{width:477px}.ta-input-dropdown .popover-body .dropdown-options.w-col-478{width:478px}.ta-input-dropdown .popover-body .dropdown-options.w-col-479{width:479px}.ta-input-dropdown .popover-body .dropdown-options.w-col-480{width:480px}.ta-input-dropdown .popover-body .dropdown-options.w-col-481{width:481px}.ta-input-dropdown .popover-body .dropdown-options.w-col-482{width:482px}.ta-input-dropdown .popover-body .dropdown-options.w-col-483{width:483px}.ta-input-dropdown .popover-body .dropdown-options.w-col-484{width:484px}.ta-input-dropdown .popover-body .dropdown-options.w-col-485{width:485px}.ta-input-dropdown .popover-body .dropdown-options.w-col-486{width:486px}.ta-input-dropdown .popover-body .dropdown-options.w-col-487{width:487px}.ta-input-dropdown .popover-body .dropdown-options.w-col-488{width:488px}.ta-input-dropdown .popover-body .dropdown-options.w-col-489{width:489px}.ta-input-dropdown .popover-body .dropdown-options.w-col-490{width:490px}.ta-input-dropdown .popover-body .dropdown-options.w-col-491{width:491px}.ta-input-dropdown .popover-body .dropdown-options.w-col-492{width:492px}.ta-input-dropdown .popover-body .dropdown-options.w-col-493{width:493px}.ta-input-dropdown .popover-body .dropdown-options.w-col-494{width:494px}.ta-input-dropdown .popover-body .dropdown-options.w-col-495{width:495px}.ta-input-dropdown .popover-body .dropdown-options.w-col-496{width:496px}.ta-input-dropdown .popover-body .dropdown-options.w-col-497{width:497px}.ta-input-dropdown .popover-body .dropdown-options.w-col-498{width:498px}.ta-input-dropdown .popover-body .dropdown-options.w-col-499{width:499px}.ta-input-dropdown .popover-body .dropdown-options.w-col-500{width:500px}.ta-input-dropdown .popover-body .dropdown-options.w-col-501{width:501px}.ta-input-dropdown .popover-body .dropdown-options.w-col-502{width:502px}.ta-input-dropdown .popover-body .dropdown-options.w-col-503{width:503px}.ta-input-dropdown .popover-body .dropdown-options.w-col-504{width:504px}.ta-input-dropdown .popover-body .dropdown-options.w-col-505{width:505px}.ta-input-dropdown .popover-body .dropdown-options.w-col-506{width:506px}.ta-input-dropdown .popover-body .dropdown-options.w-col-507{width:507px}.ta-input-dropdown .popover-body .dropdown-options.w-col-508{width:508px}.ta-input-dropdown .popover-body .dropdown-options.w-col-509{width:509px}.ta-input-dropdown .popover-body .dropdown-options.w-col-510{width:510px}.ta-input-dropdown .popover-body .dropdown-options.w-col-511{width:511px}.ta-input-dropdown .popover-body .dropdown-options.w-col-512{width:512px}.ta-input-dropdown .popover-body .dropdown-options.w-col-513{width:513px}.ta-input-dropdown .popover-body .dropdown-options.w-col-514{width:514px}.ta-input-dropdown .popover-body .dropdown-options.w-col-515{width:515px}.ta-input-dropdown .popover-body .dropdown-options.w-col-516{width:516px}.ta-input-dropdown .popover-body .dropdown-options.w-col-517{width:517px}.ta-input-dropdown .popover-body .dropdown-options.w-col-518{width:518px}.ta-input-dropdown .popover-body .dropdown-options.w-col-519{width:519px}.ta-input-dropdown .popover-body .dropdown-options.w-col-520{width:520px}.ta-input-dropdown .popover-body .dropdown-options.w-col-521{width:521px}.ta-input-dropdown .popover-body .dropdown-options.w-col-522{width:522px}.ta-input-dropdown .popover-body .dropdown-options.w-col-523{width:523px}.ta-input-dropdown .popover-body .dropdown-options.w-col-524{width:524px}.ta-input-dropdown .popover-body .dropdown-options.w-col-525{width:525px}.ta-input-dropdown .popover-body .dropdown-options.w-col-526{width:526px}.ta-input-dropdown .popover-body .dropdown-options.w-col-527{width:527px}.ta-input-dropdown .popover-body .dropdown-options.w-col-528{width:528px}.ta-input-dropdown .popover-body .dropdown-options.w-col-529{width:529px}.ta-input-dropdown .popover-body .dropdown-options.w-col-530{width:530px}.ta-input-dropdown .popover-body .dropdown-options.w-col-531{width:531px}.ta-input-dropdown .popover-body .dropdown-options.w-col-532{width:532px}.ta-input-dropdown .popover-body .dropdown-options.w-col-533{width:533px}.ta-input-dropdown .popover-body .dropdown-options.w-col-534{width:534px}.ta-input-dropdown .popover-body .dropdown-options.w-col-535{width:535px}.ta-input-dropdown .popover-body .dropdown-options.w-col-536{width:536px}.ta-input-dropdown .popover-body .dropdown-options.w-col-537{width:537px}.ta-input-dropdown .popover-body .dropdown-options.w-col-538{width:538px}.ta-input-dropdown .popover-body .dropdown-options.w-col-539{width:539px}.ta-input-dropdown .popover-body .dropdown-options.w-col-540{width:540px}.ta-input-dropdown .popover-body .dropdown-options.w-col-541{width:541px}.ta-input-dropdown .popover-body .dropdown-options.w-col-542{width:542px}.ta-input-dropdown .popover-body .dropdown-options.w-col-543{width:543px}.ta-input-dropdown .popover-body .dropdown-options.w-col-544{width:544px}.ta-input-dropdown .popover-body .dropdown-options.w-col-545{width:545px}.ta-input-dropdown .popover-body .dropdown-options.w-col-546{width:546px}.ta-input-dropdown .popover-body .dropdown-options.w-col-547{width:547px}.ta-input-dropdown .popover-body .dropdown-options.w-col-548{width:548px}.ta-input-dropdown .popover-body .dropdown-options.w-col-549{width:549px}.ta-input-dropdown .popover-body .dropdown-options.w-col-550{width:550px}.ta-input-dropdown .popover-body .dropdown-options.w-col-551{width:551px}.ta-input-dropdown .popover-body .dropdown-options.w-col-552{width:552px}.ta-input-dropdown .popover-body .dropdown-options.w-col-553{width:553px}.ta-input-dropdown .popover-body .dropdown-options.w-col-554{width:554px}.ta-input-dropdown .popover-body .dropdown-options.w-col-555{width:555px}.ta-input-dropdown .popover-body .dropdown-options.w-col-556{width:556px}.ta-input-dropdown .popover-body .dropdown-options.w-col-557{width:557px}.ta-input-dropdown .popover-body .dropdown-options.w-col-558{width:558px}.ta-input-dropdown .popover-body .dropdown-options.w-col-559{width:559px}.ta-input-dropdown .popover-body .dropdown-options.w-col-560{width:560px}.ta-input-dropdown .popover-body .dropdown-options.w-col-561{width:561px}.ta-input-dropdown .popover-body .dropdown-options.w-col-562{width:562px}.ta-input-dropdown .popover-body .dropdown-options.w-col-563{width:563px}.ta-input-dropdown .popover-body .dropdown-options.w-col-564{width:564px}.ta-input-dropdown .popover-body .dropdown-options.w-col-565{width:565px}.ta-input-dropdown .popover-body .dropdown-options.w-col-566{width:566px}.ta-input-dropdown .popover-body .dropdown-options.w-col-567{width:567px}.ta-input-dropdown .popover-body .dropdown-options.w-col-568{width:568px}.ta-input-dropdown .popover-body .dropdown-options.w-col-569{width:569px}.ta-input-dropdown .popover-body .dropdown-options.w-col-570{width:570px}.ta-input-dropdown .popover-body .dropdown-options.w-col-571{width:571px}.ta-input-dropdown .popover-body .dropdown-options.w-col-572{width:572px}.ta-input-dropdown .popover-body .dropdown-options.w-col-573{width:573px}.ta-input-dropdown .popover-body .dropdown-options.w-col-574{width:574px}.ta-input-dropdown .popover-body .dropdown-options.w-col-575{width:575px}.ta-input-dropdown .popover-body .dropdown-options.w-col-576{width:576px}.ta-input-dropdown .popover-body .dropdown-options.w-col-577{width:577px}.ta-input-dropdown .popover-body .dropdown-options.w-col-578{width:578px}.ta-input-dropdown .popover-body .dropdown-options.w-col-579{width:579px}.ta-input-dropdown .popover-body .dropdown-options.w-col-580{width:580px}.ta-input-dropdown .popover-body .dropdown-options.w-col-581{width:581px}.ta-input-dropdown .popover-body .dropdown-options.w-col-582{width:582px}.ta-input-dropdown .popover-body .dropdown-options.w-col-583{width:583px}.ta-input-dropdown .popover-body .dropdown-options.w-col-584{width:584px}.ta-input-dropdown .popover-body .dropdown-options.w-col-585{width:585px}.ta-input-dropdown .popover-body .dropdown-options.w-col-586{width:586px}.ta-input-dropdown .popover-body .dropdown-options.w-col-587{width:587px}.ta-input-dropdown .popover-body .dropdown-options.w-col-588{width:588px}.ta-input-dropdown .popover-body .dropdown-options.w-col-589{width:589px}.ta-input-dropdown .popover-body .dropdown-options.w-col-590{width:590px}.ta-input-dropdown .popover-body .dropdown-options.w-col-591{width:591px}.ta-input-dropdown .popover-body .dropdown-options.w-col-592{width:592px}.ta-input-dropdown .popover-body .dropdown-options.w-col-593{width:593px}.ta-input-dropdown .popover-body .dropdown-options.w-col-594{width:594px}.ta-input-dropdown .popover-body .dropdown-options.w-col-595{width:595px}.ta-input-dropdown .popover-body .dropdown-options.w-col-596{width:596px}.ta-input-dropdown .popover-body .dropdown-options.w-col-597{width:597px}.ta-input-dropdown .popover-body .dropdown-options.w-col-598{width:598px}.ta-input-dropdown .popover-body .dropdown-options.w-col-599{width:599px}.ta-input-dropdown .popover-body .dropdown-options.w-col-600{width:600px}.ta-input-dropdown .popover-body .dropdown-options.w-col-601{width:601px}.ta-input-dropdown .popover-body .dropdown-options.w-col-602{width:602px}.ta-input-dropdown .popover-body .dropdown-options.w-col-603{width:603px}.ta-input-dropdown .popover-body .dropdown-options.w-col-604{width:604px}.ta-input-dropdown .popover-body .dropdown-options.w-col-605{width:605px}.ta-input-dropdown .popover-body .dropdown-options.w-col-606{width:606px}.ta-input-dropdown .popover-body .dropdown-options.w-col-607{width:607px}.ta-input-dropdown .popover-body .dropdown-options.w-col-608{width:608px}.ta-input-dropdown .popover-body .dropdown-options.w-col-609{width:609px}.ta-input-dropdown .popover-body .dropdown-options.w-col-610{width:610px}.ta-input-dropdown .popover-body .dropdown-options.w-col-611{width:611px}.ta-input-dropdown .popover-body .dropdown-options.w-col-612{width:612px}.ta-input-dropdown .popover-body .dropdown-options.w-col-613{width:613px}.ta-input-dropdown .popover-body .dropdown-options.w-col-614{width:614px}.ta-input-dropdown .popover-body .dropdown-options.w-col-615{width:615px}.ta-input-dropdown .popover-body .dropdown-options.w-col-616{width:616px}.ta-input-dropdown .popover-body .dropdown-options.w-col-617{width:617px}.ta-input-dropdown .popover-body .dropdown-options.w-col-618{width:618px}.ta-input-dropdown .popover-body .dropdown-options.w-col-619{width:619px}.ta-input-dropdown .popover-body .dropdown-options.w-col-620{width:620px}.ta-input-dropdown .popover-body .dropdown-options.w-col-621{width:621px}.ta-input-dropdown .popover-body .dropdown-options.w-col-622{width:622px}.ta-input-dropdown .popover-body .dropdown-options.w-col-623{width:623px}.ta-input-dropdown .popover-body .dropdown-options.w-col-624{width:624px}.ta-input-dropdown .popover-body .dropdown-options.w-col-625{width:625px}.ta-input-dropdown .popover-body .dropdown-options.w-col-626{width:626px}.ta-input-dropdown .popover-body .dropdown-options.w-col-627{width:627px}.ta-input-dropdown .popover-body .dropdown-options.w-col-628{width:628px}.ta-input-dropdown .popover-body .dropdown-options.w-col-629{width:629px}.ta-input-dropdown .popover-body .dropdown-options.w-col-630{width:630px}.ta-input-dropdown .popover-body .dropdown-options.w-col-631{width:631px}.ta-input-dropdown .popover-body .dropdown-options.w-col-632{width:632px}.ta-input-dropdown .popover-body .dropdown-options.w-col-633{width:633px}.ta-input-dropdown .popover-body .dropdown-options.w-col-634{width:634px}.ta-input-dropdown .popover-body .dropdown-options.w-col-635{width:635px}.ta-input-dropdown .popover-body .dropdown-options.w-col-636{width:636px}.ta-input-dropdown .popover-body .dropdown-options.w-col-637{width:637px}.ta-input-dropdown .popover-body .dropdown-options.w-col-638{width:638px}.ta-input-dropdown .popover-body .dropdown-options.w-col-639{width:639px}.ta-input-dropdown .popover-body .dropdown-options.w-col-640{width:640px}.ta-input-dropdown .popover-body .dropdown-options.w-col-641{width:641px}.ta-input-dropdown .popover-body .dropdown-options.w-col-642{width:642px}.ta-input-dropdown .popover-body .dropdown-options.w-col-643{width:643px}.ta-input-dropdown .popover-body .dropdown-options.w-col-644{width:644px}.ta-input-dropdown .popover-body .dropdown-options.w-col-645{width:645px}.ta-input-dropdown .popover-body .dropdown-options.w-col-646{width:646px}.ta-input-dropdown .popover-body .dropdown-options.w-col-647{width:647px}.ta-input-dropdown .popover-body .dropdown-options.w-col-648{width:648px}.ta-input-dropdown .popover-body .dropdown-options.w-col-649{width:649px}.ta-input-dropdown .popover-body .dropdown-options.w-col-650{width:650px}.ta-input-dropdown .popover-body .dropdown-options.w-col-651{width:651px}.ta-input-dropdown .popover-body .dropdown-options.w-col-652{width:652px}.ta-input-dropdown .popover-body .dropdown-options.w-col-653{width:653px}.ta-input-dropdown .popover-body .dropdown-options.w-col-654{width:654px}.ta-input-dropdown .popover-body .dropdown-options.w-col-655{width:655px}.ta-input-dropdown .popover-body .dropdown-options.w-col-656{width:656px}.ta-input-dropdown .popover-body .dropdown-options.w-col-657{width:657px}.ta-input-dropdown .popover-body .dropdown-options.w-col-658{width:658px}.ta-input-dropdown .popover-body .dropdown-options.w-col-659{width:659px}.ta-input-dropdown .popover-body .dropdown-options.w-col-660{width:660px}.ta-input-dropdown .popover-body .dropdown-options.w-col-661{width:661px}.ta-input-dropdown .popover-body .dropdown-options.w-col-662{width:662px}.ta-input-dropdown .popover-body .dropdown-options.w-col-663{width:663px}.ta-input-dropdown .popover-body .dropdown-options.w-col-664{width:664px}.ta-input-dropdown .popover-body .dropdown-options.w-col-665{width:665px}.ta-input-dropdown .popover-body .dropdown-options.w-col-666{width:666px}.ta-input-dropdown .popover-body .dropdown-options.w-col-667{width:667px}.ta-input-dropdown .popover-body .dropdown-options.w-col-668{width:668px}.ta-input-dropdown .popover-body .dropdown-options.w-col-669{width:669px}.ta-input-dropdown .popover-body .dropdown-options.w-col-670{width:670px}.ta-input-dropdown .popover-body .dropdown-options.w-col-671{width:671px}.ta-input-dropdown .popover-body .dropdown-options.w-col-672{width:672px}.ta-input-dropdown .popover-body .dropdown-options.w-col-673{width:673px}.ta-input-dropdown .popover-body .dropdown-options.w-col-674{width:674px}.ta-input-dropdown .popover-body .dropdown-options.w-col-675{width:675px}.ta-input-dropdown .popover-body .dropdown-options.w-col-676{width:676px}.ta-input-dropdown .popover-body .dropdown-options.w-col-677{width:677px}.ta-input-dropdown .popover-body .dropdown-options.w-col-678{width:678px}.ta-input-dropdown .popover-body .dropdown-options.w-col-679{width:679px}.ta-input-dropdown .popover-body .dropdown-options.w-col-680{width:680px}.ta-input-dropdown .popover-body .dropdown-options.w-col-681{width:681px}.ta-input-dropdown .popover-body .dropdown-options.w-col-682{width:682px}.ta-input-dropdown .popover-body .dropdown-options.w-col-683{width:683px}.ta-input-dropdown .popover-body .dropdown-options.w-col-684{width:684px}.ta-input-dropdown .popover-body .dropdown-options.w-col-685{width:685px}.ta-input-dropdown .popover-body .dropdown-options.w-col-686{width:686px}.ta-input-dropdown .popover-body .dropdown-options.w-col-687{width:687px}.ta-input-dropdown .popover-body .dropdown-options.w-col-688{width:688px}.ta-input-dropdown .popover-body .dropdown-options.w-col-689{width:689px}.ta-input-dropdown .popover-body .dropdown-options.w-col-690{width:690px}.ta-input-dropdown .popover-body .dropdown-options.w-col-691{width:691px}.ta-input-dropdown .popover-body .dropdown-options.w-col-692{width:692px}.ta-input-dropdown .popover-body .dropdown-options.w-col-693{width:693px}.ta-input-dropdown .popover-body .dropdown-options.w-col-694{width:694px}.ta-input-dropdown .popover-body .dropdown-options.w-col-695{width:695px}.ta-input-dropdown .popover-body .dropdown-options.w-col-696{width:696px}.ta-input-dropdown .popover-body .dropdown-options.w-col-697{width:697px}.ta-input-dropdown .popover-body .dropdown-options.w-col-698{width:698px}.ta-input-dropdown .popover-body .dropdown-options.w-col-699{width:699px}.ta-input-dropdown .popover-body .dropdown-options.w-col-700{width:700px}.ta-input-dropdown .popover-body .dropdown-options.w-col-701{width:701px}.ta-input-dropdown .popover-body .dropdown-options.w-col-702{width:702px}.ta-input-dropdown .popover-body .dropdown-options.w-col-703{width:703px}.ta-input-dropdown .popover-body .dropdown-options.w-col-704{width:704px}.ta-input-dropdown .popover-body .dropdown-options.w-col-705{width:705px}.ta-input-dropdown .popover-body .dropdown-options.w-col-706{width:706px}.ta-input-dropdown .popover-body .dropdown-options.w-col-707{width:707px}.ta-input-dropdown .popover-body .dropdown-options.w-col-708{width:708px}.ta-input-dropdown .popover-body .dropdown-options.w-col-709{width:709px}.ta-input-dropdown .popover-body .dropdown-options.w-col-710{width:710px}.ta-input-dropdown .popover-body .dropdown-options.w-col-711{width:711px}.ta-input-dropdown .popover-body .dropdown-options.w-col-712{width:712px}.ta-input-dropdown .popover-body .dropdown-options.w-col-713{width:713px}.ta-input-dropdown .popover-body .dropdown-options.w-col-714{width:714px}.ta-input-dropdown .popover-body .dropdown-options.w-col-715{width:715px}.ta-input-dropdown .popover-body .dropdown-options.w-col-716{width:716px}.ta-input-dropdown .popover-body .dropdown-options.w-col-717{width:717px}.ta-input-dropdown .popover-body .dropdown-options.w-col-718{width:718px}.ta-input-dropdown .popover-body .dropdown-options.w-col-719{width:719px}.ta-input-dropdown .popover-body .dropdown-options.w-col-720{width:720px}.ta-input-dropdown .popover-body .dropdown-options.w-col-721{width:721px}.ta-input-dropdown .popover-body .dropdown-options.w-col-722{width:722px}.ta-input-dropdown .popover-body .dropdown-options.w-col-723{width:723px}.ta-input-dropdown .popover-body .dropdown-options.w-col-724{width:724px}.ta-input-dropdown .popover-body .dropdown-options.w-col-725{width:725px}.ta-input-dropdown .popover-body .dropdown-options.w-col-726{width:726px}.ta-input-dropdown .popover-body .dropdown-options.w-col-727{width:727px}.ta-input-dropdown .popover-body .dropdown-options.w-col-728{width:728px}.ta-input-dropdown .popover-body .dropdown-options.w-col-729{width:729px}.ta-input-dropdown .popover-body .dropdown-options.w-col-730{width:730px}.ta-input-dropdown .popover-body .dropdown-options.w-col-731{width:731px}.ta-input-dropdown .popover-body .dropdown-options.w-col-732{width:732px}.ta-input-dropdown .popover-body .dropdown-options.w-col-733{width:733px}.ta-input-dropdown .popover-body .dropdown-options.w-col-734{width:734px}.ta-input-dropdown .popover-body .dropdown-options.w-col-735{width:735px}.ta-input-dropdown .popover-body .dropdown-options.w-col-736{width:736px}.ta-input-dropdown .popover-body .dropdown-options.w-col-737{width:737px}.ta-input-dropdown .popover-body .dropdown-options.w-col-738{width:738px}.ta-input-dropdown .popover-body .dropdown-options.w-col-739{width:739px}.ta-input-dropdown .popover-body .dropdown-options.w-col-740{width:740px}.ta-input-dropdown .popover-body .dropdown-options.w-col-741{width:741px}.ta-input-dropdown .popover-body .dropdown-options.w-col-742{width:742px}.ta-input-dropdown .popover-body .dropdown-options.w-col-743{width:743px}.ta-input-dropdown .popover-body .dropdown-options.w-col-744{width:744px}.ta-input-dropdown .popover-body .dropdown-options.w-col-745{width:745px}.ta-input-dropdown .popover-body .dropdown-options.w-col-746{width:746px}.ta-input-dropdown .popover-body .dropdown-options.w-col-747{width:747px}.ta-input-dropdown .popover-body .dropdown-options.w-col-748{width:748px}.ta-input-dropdown .popover-body .dropdown-options.w-col-749{width:749px}.ta-input-dropdown .popover-body .dropdown-options.w-col-750{width:750px}.ta-input-dropdown .popover-body .dropdown-options.w-col-751{width:751px}.ta-input-dropdown .popover-body .dropdown-options.w-col-752{width:752px}.ta-input-dropdown .popover-body .dropdown-options.w-col-753{width:753px}.ta-input-dropdown .popover-body .dropdown-options.w-col-754{width:754px}.ta-input-dropdown .popover-body .dropdown-options.w-col-755{width:755px}.ta-input-dropdown .popover-body .dropdown-options.w-col-756{width:756px}.ta-input-dropdown .popover-body .dropdown-options.w-col-757{width:757px}.ta-input-dropdown .popover-body .dropdown-options.w-col-758{width:758px}.ta-input-dropdown .popover-body .dropdown-options.w-col-759{width:759px}.ta-input-dropdown .popover-body .dropdown-options.w-col-760{width:760px}.ta-input-dropdown .popover-body .dropdown-options.w-col-761{width:761px}.ta-input-dropdown .popover-body .dropdown-options.w-col-762{width:762px}.ta-input-dropdown .popover-body .dropdown-options.w-col-763{width:763px}.ta-input-dropdown .popover-body .dropdown-options.w-col-764{width:764px}.ta-input-dropdown .popover-body .dropdown-options.w-col-765{width:765px}.ta-input-dropdown .popover-body .dropdown-options.w-col-766{width:766px}.ta-input-dropdown .popover-body .dropdown-options.w-col-767{width:767px}.ta-input-dropdown .popover-body .dropdown-options.w-col-768{width:768px}.ta-input-dropdown .popover-body .dropdown-options.w-col-769{width:769px}.ta-input-dropdown .popover-body .dropdown-options.w-col-770{width:770px}.ta-input-dropdown .popover-body .dropdown-options.w-col-771{width:771px}.ta-input-dropdown .popover-body .dropdown-options.w-col-772{width:772px}.ta-input-dropdown .popover-body .dropdown-options.w-col-773{width:773px}.ta-input-dropdown .popover-body .dropdown-options.w-col-774{width:774px}.ta-input-dropdown .popover-body .dropdown-options.w-col-775{width:775px}.ta-input-dropdown .popover-body .dropdown-options.w-col-776{width:776px}.ta-input-dropdown .popover-body .dropdown-options.w-col-777{width:777px}.ta-input-dropdown .popover-body .dropdown-options.w-col-778{width:778px}.ta-input-dropdown .popover-body .dropdown-options.w-col-779{width:779px}.ta-input-dropdown .popover-body .dropdown-options.w-col-780{width:780px}.ta-input-dropdown .popover-body .dropdown-options.w-col-781{width:781px}.ta-input-dropdown .popover-body .dropdown-options.w-col-782{width:782px}.ta-input-dropdown .popover-body .dropdown-options.w-col-783{width:783px}.ta-input-dropdown .popover-body .dropdown-options.w-col-784{width:784px}.ta-input-dropdown .popover-body .dropdown-options.w-col-785{width:785px}.ta-input-dropdown .popover-body .dropdown-options.w-col-786{width:786px}.ta-input-dropdown .popover-body .dropdown-options.w-col-787{width:787px}.ta-input-dropdown .popover-body .dropdown-options.w-col-788{width:788px}.ta-input-dropdown .popover-body .dropdown-options.w-col-789{width:789px}.ta-input-dropdown .popover-body .dropdown-options.w-col-790{width:790px}.ta-input-dropdown .popover-body .dropdown-options.w-col-791{width:791px}.ta-input-dropdown .popover-body .dropdown-options.w-col-792{width:792px}.ta-input-dropdown .popover-body .dropdown-options.w-col-793{width:793px}.ta-input-dropdown .popover-body .dropdown-options.w-col-794{width:794px}.ta-input-dropdown .popover-body .dropdown-options.w-col-795{width:795px}.ta-input-dropdown .popover-body .dropdown-options.w-col-796{width:796px}.ta-input-dropdown .popover-body .dropdown-options.w-col-797{width:797px}.ta-input-dropdown .popover-body .dropdown-options.w-col-798{width:798px}.ta-input-dropdown .popover-body .dropdown-options.w-col-799{width:799px}.ta-input-dropdown .popover-body .dropdown-options.w-col-800{width:800px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header{font-size:11px;color:#ccc;font-weight:700;text-transform:uppercase;line-height:14px;padding:8px 6px 0;margin-bottom:8px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#ccc;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:11px;width:14px;height:10px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header{margin:0 0 4px;padding:8px 0 0 4px;color:#ccc;font-size:11px;text-transform:capitalize}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new{font-size:11px;line-height:14px;font-weight:700;color:#6f9ee0;padding:4px;margin:0;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options{display:grid;grid-template-columns:141px 135px;grid-column-gap:10px;column-gap:10px;align-items:center;padding:3px 4px;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#fff;display:block;width:100%}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:-26px;width:14px;height:10px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text{color:#919191;font-size:11px;font-weight:400;position:relative;text-align:right}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400;color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{font-weight:500;color:#6f9ee0!important}.ta-input-dropdown .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:0!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template{top:-6px}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ta-dropdown-popover{z-index:999999}.ta-dropdown-popover .arrow{display:none!important}.ta-dropdown-popover .popover-body{z-index:99999999}.ta-dropdown-popover .popover-body .options{position:relative;top:3px;z-index:1000;max-height:198px;width:100%;background-color:#2f2f2f;border-radius:2px;padding:2px;overflow:hidden}.ta-dropdown-popover .popover-body .options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar{width:3px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-dropdown-popover .popover-body .options .option{position:relative;padding:3px;height:26px;font-size:14px;line-height:18px;font-weight:400;border-radius:2px;white-space:nowrap;text-overflow:ellipsis;color:#fff;display:flex;gap:4px}.ta-dropdown-popover .popover-body .options .option::-moz-selection{color:#fff;background-color:#fff3}.ta-dropdown-popover .popover-body .options .option:nth-last-child(1){margin-bottom:0}.ta-dropdown-popover .popover-body .options .option:hover{background-color:#1d1d1d;border-radius:2px;cursor:pointer}.ta-dropdown-popover .popover-body .options .option.add-option{color:#6f9ee0;font-weight:600}.ta-dropdown-popover .popover-body .options .option.add-option:after{content:\"\";height:2px;width:100%;background-color:#aaa3;border-radius:1px;position:absolute;bottom:0;left:0}.selected-item-container{height:52px;padding:6px;background:#e9effd;position:relative;border-radius:2px;transition:background .3s ease-in-out}.selected-item-container:hover{background:#bed0f9}.selected-item-container:hover .selected-item-additional .selected-item-info svg-icon svg path{fill:#3b73ed}.selected-item-container:hover .clear-selected-item{display:flex;align-items:center}.selected-item-container .selected-item-label{position:absolute;top:-16px;font-size:11px;font-weight:600;color:#424242;-webkit-user-select:none;user-select:none}.selected-item-container .selected-item-label span{color:#df3c3c}.selected-item-container .selected-item-name{font-size:14px;line-height:18px;color:#424242}.selected-item-container .selected-item-name::selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name .selected-item-star{position:relative;bottom:2px}.selected-item-container .selected-item-name .selected-item-star svg{margin-left:6px}.selected-item-container .selected-item-name .selected-item-star svg path{fill:#6692f1}.selected-item-container .selected-item-additional{gap:22px}.selected-item-container .selected-item-additional .selected-item-info svg-icon{width:14px}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg{width:100%;height:100%}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg path{fill:#6692f1;transition:fill .3s ease-in-out}.selected-item-container .selected-item-additional .selected-item-info .hide-svg-on-copy{display:none}.selected-item-container .clear-selected-item{position:absolute;right:4px;top:0;display:none;gap:6px}.selected-item-container .clear-selected-item .clear-x{cursor:pointer;transition:transform .3s ease-in-out}.selected-item-container .clear-selected-item .clear-x:hover{transform:scale(1.2)}.selected-item-container .clear-selected-item .clear-x svg path{fill:#bed0f9}.selected-item-container .clear-selected-item .clear-x svg rect{fill:#6692f1}.selected-item-container .clear-selected-item .clear-x:hover svg rect{fill:#0b49d1}.selected-item-container.non-editable{background-color:#f7f7f7}.selected-item-container.non-editable .selected-item-label,.selected-item-container.non-editable .selected-item-name{color:#919191}.selected-item-container.non-editable .selected-item-additional .selected-item-info svg-icon svg path{fill:#ccc}.selected-item-container.non-editable .selected-item-additional .selected-item-info p{color:#919191}.dropdown-trailer-hover:hover .ic_truck_semi-truck svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_truck_semi-wSleeper svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_truck_box-truck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_truck_cargo-van svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_truck_tow-truck svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_truck_car-hauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_truck_spotter svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_reefer svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_trailer_dryvan svg path{fill:#8785e8}.dropdown-trailer-hover:hover .ic_trailer_side-kit svg path{fill:#ff906d}.dropdown-trailer-hover:hover .ic_trailer_conestoga svg path{fill:#daad4f}.dropdown-trailer-hover:hover .ic_trailer_dumper svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_trailer_container svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_trailer_tanker svg path{fill:#77bf56}.dropdown-trailer-hover:hover .ic_trailer_carhauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_trailer_flatbed svg path{fill:#ed9292}.dropdown-trailer-hover:hover .ic_trailer_low-boy svg path{fill:#df3c3c}.dropdown-trailer-hover:hover .ic_trailer_chassis svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_step-deck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_trailer_tanker_pneumatic svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_carhauler_stinger svg path{fill:#df3d85}.hide-after-arrow .dropdown-option.active:after{display:none!important}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-main-tooltip{pointer-events:none}.app-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.tooltip-arrow{display:none!important}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}p{margin-bottom:0!important}.desc::selection{color:#6c6c6c;background:#6c6c6c33}.details-container-items{display:grid;grid-template-columns:440px repeat(4,335px);column-gap:12px;row-gap:12px;padding-bottom:12px}.details-component{display:grid;grid-auto-flow:column;column-gap:12px;row-gap:12px}.details-component .truck-wrapper{background-color:#dadada;border-radius:3px;margin-bottom:8px;width:440px;height:226px}.details-component .truck-wrapper p{margin:0}.details-component .truck-wrapper .truck-card-top{display:flex;align-items:center;justify-content:space-between}.details-component .truck-wrapper .truck-card-top .truck-card-name{color:#6c6c6c;font-size:18px;font-weight:500;position:relative;top:1px}.details-component .truck-wrapper .truck-card-top .truck-card-name::selection{color:#6c6c6c;background:#b7b7b733}.details-component .truck-wrapper .details-page-row-5{margin-top:8px}.details-component .truck-wrapper .details-page-row-7{height:236px;width:100%;margin:22px 0}.details-component .truck-wrapper .show-details{font-size:12px;font-weight:700;color:#778fbb;text-decoration:none;-webkit-user-select:none;user-select:none}.details-component .truck-wrapper .show-details:hover{transition:all .3s ease-in-out;cursor:pointer;text-decoration:underline;color:#5673aa}.details-component .details-cards{border-radius:3px;overflow:hidden;width:440px;background-color:#dadada;padding:1px 8px 0}.details-component .details-cards.trailer-details-card{padding:0 8px}.assign-to{position:relative;left:-3px;display:grid;grid-template-columns:204px 204px;column-gap:12px;padding:0}.assign-to .assign-to-vehicle svg{width:55px;height:20px;display:flex;align-items:center}.assign-to .assign-to-vehicle svg:hover path{fill:#6c6c6c!important}.assign-to .assign-to-vehicle svg path{fill:#aaa}.assign-to .first .assign-to-vehicle svg{display:flex;align-items:center}.assign-to .first:hover .open-modal-icon{display:block;position:relative;bottom:4px;height:18px;width:18px}.assign-to .first:hover .open-modal-icon svg{cursor:pointer}.assign-to .first:hover .open-modal-icon svg:hover path{fill:#6c6c6c}.assign-to .second .icon-text-wrapper-cmp{position:relative;top:1px}.assign-to .second .assign-to-vehicle svg{display:flex}.assign-to .second:hover .open-modal-icon2{display:block;height:18px;width:18px;position:relative;bottom:4px}.assign-to .second:hover .open-modal-icon2 svg{cursor:pointer}.assign-to .second:hover .open-modal-icon2 svg:hover path{fill:#6c6c6c}.assign-to .assign-to-item{background-color:#f7f7f7;border-radius:2px;display:flex;align-items:center}.assign-to .assign-to-item .icon-text-wrapper-cmp{display:flex;align-items:center;padding-left:6px;margin:7px 0}.assign-to .assign-to-item .semi-tooltip{width:40px;height:20px}.assign-to .assign-to-item .semi-tooltip.typeDetails{width:auto}.assign-to .assign-to-item svg{fill:#aaa;object-fit:fill;height:20px;width:55px}.assign-to .assign-to-item .open-modal-icon,.assign-to .assign-to-item .open-modal-icon2{display:none}.assign-to .assign-to-item .assign-to-vehicle{margin-right:6px;position:relative;bottom:0}.assign-to .assign-to-item .assign-to-vehicle.backImage{margin-right:0}.assign-to .assign-to-item .assign-to-value{font-size:14px;font-weight:500;color:#424242;line-height:18px;padding:4px 6px}.assign-to .assign-to-item .assign-to-value::selection{color:#424242;background:#42424233}.assign-to .assign-to-item .assign-to-value.inactive-assignTo-value{color:#aaa;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.assign-to .assign-to-item p{margin:0!important}.card-container .card-body-cdl{display:grid;padding:0 4px}.card-container .card-body-cdl .card-item-name{font-size:11px;color:#2f2f2f;font-weight:700;height:15px;margin-bottom:2px}.card-container .card-body-cdl .card-item-name::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap;height:18px}.card-container .card-body-cdl .card-item-value::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value:hover{color:#2f2f2f}.card-container .card-body-cdl .card-row-issued{display:grid;grid-template-columns:32px 32px 32px;column-gap:49px;margin-top:12px}.card-container .card-body-cdl .card-row-endor{display:grid;grid-template-columns:repeat(auto-fit,minmax(20%,1fr));gap:6px;margin-bottom:4px}.card-container .card-body-cdl .card-row-progress{margin-top:8px}.card-container .card-body-cdl .endorsement{margin-top:12px}.perfomance{display:flex!important;flex-direction:column}.perfomance .common-template-item-name{font-size:14px!important;font-weight:600!important}.perfomance .common-template-item-value{font-size:18px!important;font-weight:600!important}.card-pdf{padding:0 5px;margin-bottom:12px}.card-pdf.extended{margin-bottom:30px}.card-pdf.disabled{height:0!important;margin:0!important;padding:0!important}.status-container{padding-top:12px;display:flex;flex-direction:column;margin-bottom:-12px!important}.status-container .status-header{display:flex;justify-content:space-between;align-items:center}.status-container .status-header .status-item{height:18px}.status-container .status-header .status-item .p-status{font-size:14px;font-weight:700;color:#2f2f2f}.status-container .status-header .status-item .p-status::selection{color:#2f2f2f;background:#91919133}.status-container .status-header .status-item .p-status .note-textarea{color:#6c6c6c!important;font-weight:500!important}.status-container .status-header .status-item .p-status .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea span::selection,.status-container .status-header .status-item .p-status .note-textarea div::selection,.status-container .status-header .status-item .p-status .note-textarea b::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#dadada\"]::selection{color:#dadada!important;background:#dadada33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\" $ta-blue-13\"]::selection{color:#6692f1!important;background:#6692f133!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#56b4ac\"]::selection{color:#56b4ac!important;background:#56b4ac33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#e66767\"]::selection{color:#e66767!important;background:#e6676733!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#fab15c\"]::selection{color:#fab15c!important;background:#fab15c33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#b370f0\"]::selection{color:#b370f0!important;background:#b370f033!important}.status-container .status-items .item-wrapper{display:grid;grid-template-columns:119px 137px 78px;grid-column-gap:45px;align-content:center;justify-content:center}.status-container .status-items .item-wrapper .svg-text{display:flex;align-items:center}.status-container .status-items .item-wrapper .svg-text .employment{margin-left:6px;position:relative;bottom:-2px}.status-container .status-items .item-wrapper .duration{text-align:right}.status-container .status-items .item-wrapper p{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap}.status-container .status-items .item-wrapper p::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p span::selection{color:#6c6c6c;background:#6c6c6c33}.charts-template{display:grid;grid-template-columns:215px 1fr;grid-row-gap:12px;row-gap:12px;margin-bottom:12px}.charts-template .charts-template-item{display:flex;flex-direction:column}.charts-template .charts-template-item .icon-name-item{display:flex;align-items:baseline;height:18px}.charts-template .charts-template-item .icon-name-item .charts-template-item-name{margin-right:4px}.charts-template .charts-template-item .charts-template-item-name{font-size:11px;color:#424242;font-weight:700;line-height:14px}.charts-template .charts-template-item .charts-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value{font-size:18px;font-weight:500;color:#424242;width:220px}.charts-template .charts-template-item .charts-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.second-progress{margin-bottom:16px}.truck-details-wrapper{padding:0 12px}.truck-details-wrapper .truck svg{width:132px;height:48px}.truck-details-wrapper .details-header-avatar{display:flex;align-items:center;height:48px;margin-top:14px}.truck-details-wrapper .details-header-avatar .model-name{flex-direction:column;margin-left:12px;margin-top:12px}.truck-details-wrapper .details-header-avatar .model-name p{font-size:18px;font-weight:500;color:#2f2f2f}.truck-details-wrapper .details-header-avatar .model-name p::selection{color:#6c6c6c;background:#6c6c6c33}.truck-details-wrapper .details-header-avatar .model-name .svg-wrapper{height:14px;display:flex;align-items:flex-end;margin-bottom:2px}.truck-details-wrapper .details-header-avatar .model-name svg path{fill:#424242;object-fit:fill}.truck-details-wrapper .details-header-avatar .model-name svg rect{fill:#aaa}.truck-details-wrapper .details-header-data{margin-top:14px}.truck-details-wrapper .details-header-data .details-header-data-item{display:flex;height:18px;align-items:center}.truck-details-wrapper .details-header-data .details-header-data-item p{font-size:18px;color:#2f2f2f;font-weight:400}.truck-details-wrapper .details-header-data .details-header-data-item .header-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .details-header-data .second{margin-top:14px;margin-bottom:14px}.truck-details-wrapper .details-header-data .second p{font-size:14px!important;color:#2f2f2f;font-weight:400;position:relative;bottom:-1px}.truck-details-wrapper .details-header-data .second .date{margin-left:8px!important;position:relative}.truck-details-wrapper .color-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .vin-text{margin-left:6px!important;margin-right:37px;position:relative;bottom:-1px!important}.common-template{display:grid;grid-template-columns:202px 1fr;row-gap:12px}.common-template .common-item-wrapper{display:flex;align-items:center;height:40px}.common-template .common-template-item{display:flex;flex-direction:column}.common-template .common-template-item::selection{color:#6c6c6c;background:#6c6c6c33}.common-template .common-template-item .icon-name-item{display:flex;align-items:center;height:18px}.common-template .common-template-item .icon-name-item .common-template-item-name{margin-left:6px}.common-template .common-template-item .common-template-item-name{font-size:11px;font-weight:600;color:#424242}.common-template .common-template-item .common-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value{font-size:14px;font-weight:500;color:#424242;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.common-template .common-template-item .common-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.divider{margin:0;height:2px;width:100%;border-radius:1px;background-color:#f3f3f3}.card_files_holder.active{min-height:448px}.note-cards .note-body{padding-left:0!important;padding-right:2px!important}.note-cards .note-body .note-textarea{color:#6c6c6c!important;font-weight:400!important;padding-bottom:12px!important}.note-cards .note-body .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.vin-text::selection{color:#6c6c6c;background:#6c6c6c33}.no-data-driver-details{font-size:14px;font-weight:400;color:#919191}.no-data-driver-details::selection{color:#919191;background:#b7b7b733}.owner-items{display:flex;align-items:center;height:18px}.owner-items .card-icon{display:none;cursor:pointer;margin-left:6px}.owner-items .information-value{font-size:14px;font-weight:400;color:#6c6c6c;margin-left:6px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.owner-items .information-value::selection{color:#6c6c6c;background:#6c6c6c33}.owner-items:hover .card-icon{display:flex}.copied .vin-text,.copied .information-value{animation-duration:1.5s;animation-name:change}.copied .card-icon svg path{animation-duration:1.5s;animation-name:changeSVG}.copied .card-icon svg path:hover{animation-duration:1.5s;animation-name:changeSVG}.hide-show{font-size:14px;color:#6d82c7;font-weight:600;margin-left:6px;cursor:pointer}.hide-show::selection{color:#6d82c7;background:#536bc233}.hide-show:hover{color:#536bc2}.bind-height{max-height:-moz-fit-content!important;max-height:fit-content!important}.card-width{width:335px}.icons-details{margin-right:6px}.date-details-svg{margin-left:29px}.note-details-holder{padding-right:6px;padding-left:3px}.note-details-holder .note-container .note-header.active .note-label{color:#6c6c6c!important}.note-details-holder .note-container .note-header .note_upper_hold svg path{fill:#919191}.note-details-holder .note-container .note-header .note_upper_hold .rotate svg path{fill:#aaa}.boldSanVin{font-weight:800}@media (max-width: 1910px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,320px)}.card-width{width:320px}.repair-details-container,.repair-details-cmp{grid-template-columns:440px 712px 320px 260px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 145px!important}.repair-container{width:712px!important}.repaired-vehicle-container{width:320px!important}.likes-count-container{width:260px}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 50px 46px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 79px 52px 66px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 325px!important}.counter-text{padding:0 0 0 8px!important}.reason-span{display:none}app-shipper-details .load,app-broker-details .load{width:712px!important}app-shipper-details .contact,app-broker-details .contact{width:320px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:320px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:260px!important}app-shipper-details .review-container,app-broker-details .review-container{width:260px!important}}@media (max-width: 1870px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,300px)}.card-width{width:300px}}@media (max-width: 1850px){.repair-details-container,.repair-details-cmp{grid-template-columns:430px 702px 310px 250px!important}.repair-general-holder{width:430px}.repair-container{width:702px!important}.repaired-vehicle-container{width:310px!important}.likes-count-container{width:250px}.repair-component{height:max-content}.repair-component .repair-cards{width:430px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 37px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 40px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:430px!important}app-shipper-details .load,app-broker-details .load{width:702px!important}app-shipper-details .contact,app-broker-details .contact{width:310px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:310px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:250px!important}app-shipper-details .review-container,app-broker-details .review-container{width:250px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:407px!important}}@media (max-width: 1820px){.repair-details-container,.repair-details-cmp{grid-template-columns:420px 692px 300px 240px!important}.repair-general-holder{width:420px}.repair-container{width:692px!important}.repaired-vehicle-container{width:300px!important}.likes-count-container{width:240px}.repair-component .repair-cards{width:420px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 100px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 99px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 27px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 29px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:420px!important}app-shipper-details .load,app-broker-details .load{width:692px!important}app-shipper-details .contact,app-broker-details .contact{width:300px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:300px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:240px!important}app-shipper-details .review-container,app-broker-details .review-container{width:240px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:396px!important}}@media (max-width: 1780px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,280px)}.card-width{width:280px}.request-header-container{width:26px!important;height:26px!important}.request-header-container p{display:none}.request-header-container svg-icon{display:flex!important;transition:background .2s ease-in}.request-header-container svg-icon:hover{background:#e9effd!important}.request-header-container svg-icon:hover svg path{fill:#0b49d1}.repair-details-container{grid-template-columns:475px 760px 410px 0px!important}.repair-general-holder{width:475px}.repair-container{width:760px!important}.repaired-vehicle-container{width:410px!important;max-width:410px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:475px!important}.repair-component .repair-cards{width:475px!important}.repair-details-cmp{grid-template-columns:475px 760px 410px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:-moz-fit-content;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:410px!important;max-width:410px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:410px!important;max-width:410px!important}.purchase-template{display:grid;grid-template-columns:repeat(2,50%)!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:475px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:475px!important;max-width:475px!important}app-shipper-details .load,app-broker-details .load{width:760px!important}app-shipper-details .contact,app-broker-details .contact{width:410px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:410px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:410px!important}app-shipper-details .review-container,app-broker-details .review-container{width:410px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:450px!important}}@media (max-width: 1760px){.repair-details-container{grid-template-columns:455px 740px 390px 0px!important}.repair-general-holder{width:455px}.repair-container{width:740px!important}.repaired-vehicle-container{width:390px!important;max-width:390px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:455px!important}.repair-component .repair-cards{width:455px!important}.repair-details-cmp{grid-template-columns:455px 740px 390px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:-moz-fit-content;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:390px!important;max-width:390px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:390px!important;max-width:390px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:455px!important;max-width:455px!important}app-shipper-details .load,app-broker-details .load{width:740px!important}app-shipper-details .contact,app-broker-details .contact{width:390px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:390px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:390px!important}app-shipper-details .review-container,app-broker-details .review-container{width:390px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:430px!important}}@media (max-width: 1700px){.details-container-items{display:grid;grid-template-columns:420px repeat(4,270px)}.card-width{width:270px}.cards-item-wrapper-1,.details-component .details-cards{width:420px}.repair-details-container{grid-template-columns:400px 740px 390px 0px!important}.repair-general-holder{width:400px}.details-header-wrapper-reapirShop{max-width:400px!important}.repair-component .repair-cards{width:400px!important}.repair-details-cmp{grid-template-columns:400px 740px 390px 0px!important}.longText{display:none!important}.shortText{display:block!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 105px 92px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:400px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:377px!important}.details-container-items{display:grid;grid-template-columns:400px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:400px}.assign-to{grid-template-columns:185px 185px}}@media (max-width: 1640px){.repair-details-container{grid-template-columns:400px 720px 370px 0px!important}.repair-container{width:720px!important}.repaired-vehicle-container{width:370px!important;max-width:370px!important}.repair-details-cmp{grid-template-columns:400px 720px 370px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:370px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:370px!important;max-width:370px!important}app-shipper-details .load,app-broker-details .load{width:720px!important}app-shipper-details .contact,app-broker-details .contact{width:370px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:370px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:370px!important}app-shipper-details .review-container,app-broker-details .review-container{width:370px!important}}@media (max-width: 1610px){.details-container-items{display:grid;grid-template-columns:380px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:380px}.assign-to{grid-template-columns:175px 175px}.repair-details-container{grid-template-columns:380px 710px 350px 0px!important}.repair-container{width:710px!important}.repaired-vehicle-container{width:350px!important;max-width:350px!important}.repair-details-cmp{grid-template-columns:380px 710px 350px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:350px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:350px!important;max-width:350px!important}.repair-component .repair-cards{width:380px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 86px 92px!important}app-shipper-details-card .hours-template{grid-template-columns:150px 150px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:380px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:356px!important}}@media (max-width: 1590px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,260px)}.details-component .details-cards,.cards-item-wrapper-1{width:360px}.card-width{width:260px}.reason-span{display:none}.assign-to{grid-template-columns:162px 162px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 710px 350px 0px!important}.repair-component .repair-cards{width:360px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 91px 70px!important}app-shipper-details-card .hours-template{grid-template-columns:140px 140px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:336px!important}}@media (max-width: 1440px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,250px)}.card-width{width:250px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-container{width:700px!important}.repaired-vehicle-container{width:272!important;max-width:272px!important}.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{width:272px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:272px!important;max-width:272px!important}.repair-component .repair-cards{width:360px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:35px 40px 25px 35px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:45px 68px 27px 66px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:700px!important}app-shipper-details .contact,app-broker-details .contact{width:272px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:272px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:272px!important}app-shipper-details .review-container,app-broker-details .review-container{width:272px!important}}@media (max-width: 1500px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,237px)}.card-width{width:237px}}.datetime-dropdown-holder{position:relative;top:16px}.picker_input_holder{display:flex;min-width:146px;max-width:260px;border-radius:3px;background-color:#f9f9f9}.picker_input_holder input{width:100%;padding-left:6px;border:none;outline:none;background-color:transparent;caret-color:transparent;-webkit-appearance:none}.picker_input_holder input:focus{outline:none;border:none}.picker_input_holder input::placeholder{color:#919191!important}.picker_input_holder .toggle_picker{display:flex;justify-content:center;align-items:center;width:26px;height:26px;min-width:26px;background-color:#eee;border-radius:3px;cursor:pointer}.picker_input_holder .toggle_picker:after{display:none}.picker_input_holder .toggle_picker svg-icon{display:flex}.picker_input_holder .toggle_picker svg-icon svg{width:12px;height:10px}.picker_input_holder .toggle_picker svg-icon svg path{fill:#919191}.picker_input_holder:hover{opacity:1}.picker_input_holder.active{background-color:#6c6c6c;border-left:3px solid #6c6c6c}.picker_input_holder.active .toggle_picker{background-color:#919191}.picker_input_holder.active .toggle_picker svg-icon{display:flex}.picker_input_holder.active .toggle_picker svg-icon svg{transform:rotate(180deg)}.picker_input_holder.active .toggle_picker svg-icon svg path{fill:#dadada}.picker_input_holder.active input::placeholder{color:#dadada!important}.pickers_holder{position:absolute;top:3px!important;width:auto!important;padding:0;background-color:#dadada;box-shadow:0 0 4px #00000026;z-index:999;border-radius:3px;overflow:hidden}.pickers_holder .time_picker{width:167px}.pickers_holder .date_picker{display:flex}.pickers_holder .date_picker .month-years-size{position:relative;width:48px;background-color:#f9f9f9}.pickers_holder .date_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:24px;transform:translateY(-50%);background-color:#dadada}.pickers_holder .date_picker .month-years-size .month-year-item{display:flex;align-items:center;justify-content:center;height:24px;font-size:14px;color:#919191;font-weight:400;text-align:center;text-transform:uppercase}.pickers_holder .date_picker .month-years-size .month-year-item .left-year-show{color:#919191;font-size:14px;font-weight:700}.pickers_holder .date_picker .month-years-size .month-year-item:hover{color:#6c6c6c;cursor:pointer;background-color:#f1f1f1;border-radius:2px}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 2px 0}.pickers_holder .date_picker .full-calendars-list{flex:1;max-height:290px;min-width:264px;overflow:hidden}.pickers_holder .date_picker .full-calendars-list .full_list{height:100%}.pickers_holder .date_picker .full-calendars-list .full_list .selfScroll{width:100%;height:100%}.pickers_holder .time_picker .time_picker_head{height:36px;display:flex;padding:0 12px;align-items:center;justify-content:space-between}.pickers_holder .time_picker .time_picker_head .selected_time{font-size:14px;font-weight:800;color:#6c6c6c}.pickers_holder .time_picker .time_picker_head .sel_now{color:#536bc2;font-size:14px;font-weight:700}.pickers_holder .time_picker .time_picker_head .sel_now:hover{cursor:pointer;color:#5673aa}.pickers_holder .time_picker .time_picker_body .picker_body_head{height:22px;display:flex;align-items:center;background-color:#f7f7f7;margin:0 4px 2px;border-radius:2px}.pickers_holder .time_picker .time_picker_body .picker_body_head div{flex:0 0 33%;text-align:center;font-size:10px;font-weight:700;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body_head div.active{color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body{position:relative;height:155px;display:flex;justify-content:center}.pickers_holder .time_picker .time_picker_body .picker_body:after{content:\"\";position:absolute;width:100%;height:31px;top:-1px;left:0;pointer-events:none;background:linear-gradient(to bottom,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body:before{content:\"\";position:absolute;pointer-events:none;width:100%;height:31px;bottom:-1px;left:0;background:linear-gradient(to top,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line{position:absolute;width:calc(100% - 8px);height:22px;top:50%;left:4px;border-radius:2px;transform:translateY(-50%);background-color:#9191911a}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line span{position:absolute;left:30%;font-size:14px;font-weight:400;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers{position:relative;height:22px;flex:0 0 33.3%;height:100%;padding:67px 0;margin:0 7px;overflow:auto;text-align:center;-ms-overflow-style:none;scrollbar-width:none;z-index:10}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:first-child{flex:0 0 28px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(2){flex:0 0 36px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(3){flex:0 0 38px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers::-webkit-scrollbar{display:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{height:22px;display:flex;align-items:center;justify-content:center;font-size:14px;color:#919191;font-weight:400;-webkit-user-select:none;user-select:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item:hover{color:#5673aa;cursor:pointer}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:hover{box-shadow:inset 0 0 4px #00000026}.pickers_holder .time_picker .picker_buttons{display:flex;padding:6px;justify-content:space-between}.pickers_holder .time_picker .picker_buttons .pick_button{display:flex;align-items:center;justify-content:center;height:32px;padding:0 12px;text-align:center;border-radius:2px;font-size:12px;font-weight:700;color:#919191b3}.pickers_holder .time_picker .picker_buttons .pick_button:hover{background-color:#f3f3f3;color:#919191;cursor:pointer}.pickers_holder .time_picker .picker_buttons .pick_button.set_button{width:57px;text-align:center;background-color:#6d82c7;color:#dadada}.pickers_holder .time_picker .picker_buttons .pick_button.set_button:hover{background-color:#536bc2}.pickers_holder.dark_picker{background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size{width:40px;background-color:#424242}.pickers_holder.dark_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:26px;transform:translateY(-50%);background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .month-year-item{height:22px;color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item .left-year-show{color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year{color:#dadada}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year .left-year-show{color:#dadada;font-weight:700}.pickers_holder.dark_picker .month-years-size .month-year-item:hover{color:#dadada;background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 4px 0}.pickers_holder.dark_picker .date_picker{margin:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list{min-width:184px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view{width:182px;padding-top:6px;background-color:#2f2f2f}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head{padding:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name{padding:0 4px;color:#dadada;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name .year_hold{margin-right:0;color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today{padding:0 4px;color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today:hover{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator{margin:12px 10px;color:#919191;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.current_year{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.full_calendar{margin-bottom:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px 4px;padding:0}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days .cal_day{width:22px;height:22px;margin:0;font-size:9px;color:#aaa;text-align:center}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;row-gap:12px;justify-content:unset;margin:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item{margin:0;height:22px;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item:hover:not(.current_month){background-color:#424242;color:#dadada;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item.current_month{color:#dadada;background-color:#3b73ed66;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list.current_year .month_list_item{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px;padding:0;height:auto}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day{width:22px;height:22px;margin:0;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#dadada;background-color:#3b73ed66;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#3b73ed66;color:#dadada;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.day_in_current_month{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.weekend_day_in_current_month{color:#ccc}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#424242;border-radius:2px;cursor:pointer;color:#dadada}.pickers_holder.dark_picker .time_picker{width:156px;margin:4px}.pickers_holder.dark_picker .time_picker .time_picker_head{height:18px;padding:0 4px;margin-bottom:4px}.pickers_holder.dark_picker .time_picker .time_picker_head .selected_time{color:#dadada;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_head .sel_now{color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;margin:0 0 4px;padding:2px;background:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head div{color:#aaa;font-size:9px;text-align:center;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body{height:176px;display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;padding:0 2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:before{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:after{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line{left:0;width:100%;background-color:#3b73ed33}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line{left:33.3%;width:1px;height:12px;margin-top:5px;background-color:#92b1f5;opacity:.4;border-radius:2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line.line_2{left:66.6%}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers{margin:0;padding:77px 0}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{color:#aaa;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item.active_item{color:#dadada}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons{display:grid;grid-template-columns:repeat(2,1fr);column-gap:4px;margin-top:6px;padding:4px 0 0;border-top:1px solid #424242}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button{height:18px;background-color:#424242;color:#dadada;font-size:11px;text-transform:uppercase;border-radius:1px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button.set_button{width:auto;background-color:#3b73ed}.calendar_view{width:260px;padding-top:12px;background-color:#dadada}.calendar_view .calendar_view_head{display:flex;justify-content:space-between;margin-bottom:12px;padding:0 12px}.calendar_view .calendar_view_head .month_name{font-size:12px;font-weight:700;color:#6c6c6c}.calendar_view .calendar_view_head .month_name .year_hold{margin-right:5px;text-transform:uppercase;color:#6c6c6c;cursor:pointer}.calendar_view .calendar_view_head .month_name .year_hold:hover{color:#919191}.calendar_view .calendar_view_head .today{font-size:12px;font-weight:700;color:#5673aab3;cursor:pointer}.calendar_view .calendar_view_head .today:hover{color:#3551b7}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport{height:230px;min-height:230px}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view .calendar_indicator{margin:12px;height:18px;font-size:12px;color:#6c6c6c66;font-weight:700}.calendar_view .calendars_list_view .calendar_month_days{padding:0 3px}.calendar_view .calendars_list_view .calendar_month_days.hideVisibility{visibility:hidden}.calendar_view .calendars_list_view .calendar_month_days .cal_day{width:24px;margin:0 6px;font-size:12px;font-weight:700;color:#b7b7b7}.calendar_view .calendars_list_view .calendar_days{height:140px;display:flex;flex-wrap:wrap;padding:0 3px}.calendar_view .calendars_list_view .calendar_days .calendar_day{display:flex;align-items:center;justify-content:center;flex:0 0 24px;width:24px;height:24px;margin:0 6px;font-size:14px;font-weight:400;color:#6c6c6c}.calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#dadada;background-color:#919191;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#919191;color:#dadada;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#f7f7f7;border-radius:2px;cursor:pointer;color:#3c3c3c}.calendar_view .month_list{display:flex;flex-wrap:wrap;justify-content:space-around;height:140px}.calendar_view .month_list .month_list_item{flex:0 0 50px;height:24px;margin:0 10px;display:flex;align-items:center;justify-content:center;border-radius:3px;font-size:12px;color:#6c6c6c;font-weight:400}.calendar_view .month_list .month_list_item:hover:not(.current_month){background-color:#f7f7f7;color:#3c3c3c;border-radius:2px;cursor:pointer}.calendar_view .month_list .month_list_item.current_month{color:#3c3c3c;background-color:#f7f7f7;border-radius:2px;cursor:pointer}.dropdown{z-index:999!important}input[type=date]::-webkit-inner-spin-button,input[type=date]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}.wrapper{width:320px;font-family:Montserrat,sans-serif;padding-left:6px;padding-right:6px}.wrapper .container{height:34px;gap:4px;padding:0 6px}.wrapper .container .divider{width:auto;height:8px;border-top:solid 2px #dadada}.wrapper .container .text-value{width:auto;height:26px;gap:4px}.wrapper .container .text-value .payment-count{gap:4px;color:#424242}.wrapper .container .text-value .payment-count .text{height:26px;width:auto}.wrapper .container .text-value .payment-count .round{width:18px;height:18px;border-radius:20px;background-color:#6c6c6c;color:#dadada;font-size:11px}.wrapper .container .text-value .value{height:26px;width:auto}.wrapper .container .text-value .value .icon:hover svg{border-radius:2px;background-color:#e9effd}.wrapper .container .text-value .value .icon:hover svg path{fill:#0b49d1}.wrapper .container .text-value .value .total-money-closed{height:26px;width:auto}.wrapper .component-data-container .information{width:308px;gap:4px}.wrapper .component-data-container .information:hover{background-color:#eee;border-radius:2px;opacity:.6;transition:.3s}.wrapper .component-data-container .information.clicked{background-color:#eee}.wrapper .component-data-container .information.clicked:hover{background-color:#eee;opacity:1}.wrapper .component-data-container .information .number{border-radius:2px;width:26px;height:26px;gap:2px;color:#919191}.wrapper .component-data-container .information .number:hover{background-color:#91919133}.wrapper .component-data-container .information .number .icon-holder{position:relative;height:26px;width:26px;border-radius:2px;opacity:1}.wrapper .component-data-container .information .number .dropdown-menu{background-color:red}.wrapper .component-data-container .information .number .icon-holder:hover,.wrapper .component-data-container .information .number .svg-icon:hover{border-radius:2px}.wrapper .component-data-container .information .number .icon-holder:hover svg path,.wrapper .component-data-container .information .number .svg-icon:hover svg path{fill:#424242}.wrapper .component-data-container .information .date-location{width:199px;padding-bottom:2px}.wrapper .component-data-container .information .date-location .location,.wrapper .component-data-container .information .date-location .date{font-size:11px;height:14px}.wrapper .component-data-container .information .money{height:26px;width:83px;margin-right:6px}.wrapper .component-data-container .total-money-title{height:26px;width:auto;padding-left:2px}.wrapper .component-data-container .total-money-title .total-money{width:83px;margin-right:4px}.wrapper .component-data-container .total-money-title .icon-total .dolar-icon{height:26px;width:26px;padding:2px}.wrapper .component-data-container .total-money-title .icon-total .dolar-icon svg path{fill:currentColor}.container-empty{height:34px;gap:4px;padding:0 6px;color:#aaa;width:308px}.container-empty .divider{width:auto;height:8px;border-top:solid 2px #dadada}.container-empty .text-value{width:auto;height:26px;gap:4px}.container-empty .text-value .payment-count{gap:4px}.container-empty .text-value .payment-count .text{height:26px;width:auto}.container-empty .text-value .payment-count .round{width:18px;height:18px;border-radius:20px;background-color:#6c6c6c;color:#dadada;font-size:11px}.container-empty .text-value .value{height:26px;width:auto}.container-empty .text-value .value .icon:hover svg{background-color:#e9effd}.container-empty .text-value .value .icon:hover svg path{fill:#0b49d1}.container-empty .text-value .value .total-money-closed{height:26px;width:auto}.cdk-drag{transition:transform .25s cubic-bezier(.25,.1,.25,1);cursor:grab}.cdk-drag-preview{background-color:#424242;color:#dadada;font-size:12px;box-shadow:0 2px 10px #0003;font-family:Montserrat,sans-serif;width:308px}.cdk-drag-preview .location{color:#fff}.cdk-drag-preview .date{color:#919191}.cdk-drag-preview .money{color:#fff}.cdk-drop-list.cdk-drop-list-dragging{cursor:grabbing}.disabled-drag{pointer-events:none}.drag-disabled{cursor:not-allowed}\n"], dependencies: [{ kind: "ngmodule", type:
134
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CaPeriodContentPaymentComponent, isStandalone: true, selector: "app-ca-period-content-payment", inputs: { isOpen: "isOpen", title: "title", componentData: "componentData" }, outputs: { sumPaymentTypeEmitter: "sumPaymentTypeEmitter", reorderedDataEmiter: "reorderedDataEmiter" }, providers: [FormatCurrencyPipe], ngImport: i0, template: "<ng-container *ngIf=\"componentData?.length; else emptyComponentData\"\n ><div\n class=\"wrapper d-flex flex-column align-items-center justify-content-start\"\n >\n <ng-container *ngIf=\"title !== 'Credit' && title !== 'Payment'\">\n <div class=\"divider-custom d-flex justify-content-center\"></div>\n </ng-container>\n <div class=\"container d-flex flex-column justify-content-center\">\n <div class=\"text-value d-flex justify-content-between\">\n <div\n class=\"payment-count d-flex align-items-center justify-content-start\"\n >\n <span class=\"text ca-font-extra-bold\">{{ title }}</span>\n <span\n class=\"round ca-font-bold d-flex align-items-center justify-content-center\"\n >\n {{ componentData?.length }}\n </span>\n </div>\n <span class=\"value d-flex align-items-center\">\n <ng-container *ngIf=\"isOpen; else notOpen\">\n <svg-icon\n class=\"d-flex icon\"\n [src]=\"getSvgPath('plus')\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n </ng-container>\n <ng-template #notOpen>\n <span\n class=\"total-money-closed ca-font-semi-bold\"\n [ngStyle]=\"{ color: getColor(title) }\"\n >{{ sum | formatCurrency }}</span\n >\n </ng-template>\n </span>\n </div>\n </div>\n\n <div\n [ngClass]=\"{ 'disabled-drag': title === 'Bonus' }\"\n cdkDropList\n class=\"component-data-container d-flex justify-content-center flex-column\"\n (cdkDropListDropped)=\"onDrop($event)\"\n >\n <ng-container\n *ngFor=\"let data of componentData; let i = index; trackBy: identity\"\n >\n <div\n cdkDrag\n cdkDragLockAxis=\"y\"\n cdkDragBoundary=\".component-data-container\"\n class=\"d-flex justify-content-between align-items-center information\"\n [ngClass]=\"{\n clicked: clickedStates[i],\n 'drag-disabled': title === 'Bonus',\n }\"\n (mouseenter)=\"onMouseEnter(i)\"\n (mouseleave)=\"onMouseLeave(i)\"\n >\n <ng-template cdkDragPreview>\n <div class=\"d-flex justify-content-between align-items-center\">\n <div class=\"d-flex align-items-center\">\n <div class=\"icon-holder mx-2\">\n <svg-icon\n [src]=\"getSvgPath('dragging')\"\n alt=\"Dragging Image\"\n ></svg-icon>\n </div>\n\n <div\n class=\"date-location d-flex flex-column d-flex align-items-center\"\n >\n <span class=\"ca-font-semi-bold location\">{{\n data.description\n }}</span>\n <span class=\"date ca-font-medium d-flex align-items-center\">{{\n data.date | dateFromStringPipe\n }}</span>\n </div>\n </div>\n\n <span\n class=\"money d-flex justify-content-end align-items-center ca-font-regular mx-2\"\n >{{ data.amount ? data.amount : (0 | formatCurrency) }}\n </span>\n </div>\n </ng-template>\n <span\n class=\"number d-flex justify-content-center align-items-center ca-font-medium\"\n >\n <ng-container\n *ngIf=\"!hoverStates[i] && !clickedStates[i]; else hoveredState\"\n >{{ data!.id }}\n </ng-container>\n <ng-template #hoveredState>\n <div\n class=\"icon-holder d-flex align-items-center justify-content-center\"\n ngbTooltip\n [mainTooltip]=\"'More'\"\n tooltipBackground=\"#424242\"\n position=\"bottom\"\n [ngStyle]=\"{\n backgroundColor: clickedStates[i] ? '#424242' : 'transparent',\n color: hoverStates[i] ? 'desiredColor' : 'initialColor',\n }\"\n >\n <app-ca-dropdown\n [itemList]=\"dropdownOptions\"\n [icon]=\"currentIcons[i]\"\n (onClick)=\"dropDownClickEvent(i)\"\n [isPopupShown]=\"isDropdownEnabled(i)\"\n ></app-ca-dropdown>\n </div>\n </ng-template>\n </span>\n <div class=\"date-location d-flex flex-column\">\n <span\n class=\"ca-font-semi-bold location d-flex align-items-center\"\n >{{ data.description }}</span\n >\n\n <span class=\"date ca-font-medium d-flex align-items-center\">{{\n data.date | dateFromStringPipe\n }}</span>\n </div>\n\n <ng-container *ngIf=\"title === 'Deduction'\">\n <span\n class=\"recurring d-flex align-items-center justify-content-center\"\n >\n <svg-icon\n class=\"d-flex align-items-center\"\n [src]=\"getSvgPath('infinityIcon')\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n </span>\n </ng-container>\n <span\n class=\"money d-flex justify-content-end align-items-center ca-font-regular\"\n >{{ data.amount ? (data.amount | currency) : '$0.00' }}\n </span>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"isOpen\">\n <div\n class=\"total-money-title d-flex justify-content-between align-items-center\"\n >\n <div class=\"icon-total d-flex align-items-center\">\n <span\n class=\"dolar-icon d-flex align-items-center\"\n [ngStyle]=\"{ color: getColor(title) }\"\n >\n <svg-icon\n class=\"d-flex align-items-center\"\n [src]=\"getSvgPath('dolarSign')\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n </span>\n <span class=\"total-title ca-font-bold\">Total</span>\n </div>\n <span\n class=\"total-money d-flex justify-content-end align-items-center ca-font-semi-bold\"\n [ngStyle]=\"{ color: getColor(title) }\"\n >{{ sum | formatCurrency }}</span\n >\n </div>\n </ng-container>\n </div>\n </div>\n</ng-container>\n\n<ng-template #emptyComponentData>\n <div class=\"container-empty d-flex flex-column\">\n <div class=\"divider-custom d-flex justify-content-center\"></div>\n <div class=\"text-value d-flex justify-content-between\">\n <div\n class=\"payment-count d-flex align-items-center justify-content-start\"\n >\n <span\n class=\"text ca-font-extra-bold\"\n [ngStyle]=\"{ color: isOpen ? '#424242' : '#aaaaaa' }\"\n >{{ title }}</span\n >\n </div>\n <span class=\"value d-flex align-items-center\">\n <ng-container *ngIf=\"isOpen; else notOpen\">\n <svg-icon\n class=\"d-flex icon\"\n [src]=\"getSvgPath('plus')\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n </ng-container>\n <ng-template #notOpen>\n <span class=\"total-money-closed ca-font-semi-bold\">$0.00</span>\n </ng-template>\n </span>\n </div>\n </div>\n</ng-template>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.ta-input-dropdown .arrow{display:none!important}.ta-input-dropdown .popover-body{margin-top:-2px!important}.ta-input-dropdown .popover-body .dropdown-options-divider{content:\"\";height:1px;border-radius:1px;background-color:#424242;position:absolute;z-index:99999;top:0;left:0}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-1{width:-7px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-2{width:-6px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-3{width:-5px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-4{width:-4px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-5{width:-3px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-6{width:-2px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-7{width:-1px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-8{width:0px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-9{width:1px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-10{width:2px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-11{width:3px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-12{width:4px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-13{width:5px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-14{width:6px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-15{width:7px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-16{width:8px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-17{width:9px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-18{width:10px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-19{width:11px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-20{width:12px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-21{width:13px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-22{width:14px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-23{width:15px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-24{width:16px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-25{width:17px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-26{width:18px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-27{width:19px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-28{width:20px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-29{width:21px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-30{width:22px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-31{width:23px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-32{width:24px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-33{width:25px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-34{width:26px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-35{width:27px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-36{width:28px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-37{width:29px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-38{width:30px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-39{width:31px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-40{width:32px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-41{width:33px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-42{width:34px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-43{width:35px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-44{width:36px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-45{width:37px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-46{width:38px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-47{width:39px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-48{width:40px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-49{width:41px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-50{width:42px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-51{width:43px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-52{width:44px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-53{width:45px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-54{width:46px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-55{width:47px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-56{width:48px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-57{width:49px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-58{width:50px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-59{width:51px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-60{width:52px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-61{width:53px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-62{width:54px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-63{width:55px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-64{width:56px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-65{width:57px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-66{width:58px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-67{width:59px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-68{width:60px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-69{width:61px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-70{width:62px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-71{width:63px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-72{width:64px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-73{width:65px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-74{width:66px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-75{width:67px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-76{width:68px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-77{width:69px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-78{width:70px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-79{width:71px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-80{width:72px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-81{width:73px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-82{width:74px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-83{width:75px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-84{width:76px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-85{width:77px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-86{width:78px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-87{width:79px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-88{width:80px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-89{width:81px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-90{width:82px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-91{width:83px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-92{width:84px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-93{width:85px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-94{width:86px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-95{width:87px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-96{width:88px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-97{width:89px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-98{width:90px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-99{width:91px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-100{width:92px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-101{width:93px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-102{width:94px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-103{width:95px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-104{width:96px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-105{width:97px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-106{width:98px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-107{width:99px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-108{width:100px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-109{width:101px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-110{width:102px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-111{width:103px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-112{width:104px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-113{width:105px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-114{width:106px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-115{width:107px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-116{width:108px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-117{width:109px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-118{width:110px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-119{width:111px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-120{width:112px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-121{width:113px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-122{width:114px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-123{width:115px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-124{width:116px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-125{width:117px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-126{width:118px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-127{width:119px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-128{width:120px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-129{width:121px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-130{width:122px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-131{width:123px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-132{width:124px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-133{width:125px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-134{width:126px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-135{width:127px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-136{width:128px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-137{width:129px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-138{width:130px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-139{width:131px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-140{width:132px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-141{width:133px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-142{width:134px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-143{width:135px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-144{width:136px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-145{width:137px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-146{width:138px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-147{width:139px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-148{width:140px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-149{width:141px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-150{width:142px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-151{width:143px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-152{width:144px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-153{width:145px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-154{width:146px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-155{width:147px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-156{width:148px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-157{width:149px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-158{width:150px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-159{width:151px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-160{width:152px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-161{width:153px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-162{width:154px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-163{width:155px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-164{width:156px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-165{width:157px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-166{width:158px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-167{width:159px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-168{width:160px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-169{width:161px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-170{width:162px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-171{width:163px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-172{width:164px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-173{width:165px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-174{width:166px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-175{width:167px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-176{width:168px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-177{width:169px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-178{width:170px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-179{width:171px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-180{width:172px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-181{width:173px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-182{width:174px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-183{width:175px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-184{width:176px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-185{width:177px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-186{width:178px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-187{width:179px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-188{width:180px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-189{width:181px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-190{width:182px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-191{width:183px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-192{width:184px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-193{width:185px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-194{width:186px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-195{width:187px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-196{width:188px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-197{width:189px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-198{width:190px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-199{width:191px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-200{width:192px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-201{width:193px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-202{width:194px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-203{width:195px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-204{width:196px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-205{width:197px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-206{width:198px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-207{width:199px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-208{width:200px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-209{width:201px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-210{width:202px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-211{width:203px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-212{width:204px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-213{width:205px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-214{width:206px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-215{width:207px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-216{width:208px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-217{width:209px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-218{width:210px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-219{width:211px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-220{width:212px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-221{width:213px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-222{width:214px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-223{width:215px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-224{width:216px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-225{width:217px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-226{width:218px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-227{width:219px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-228{width:220px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-229{width:221px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-230{width:222px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-231{width:223px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-232{width:224px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-233{width:225px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-234{width:226px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-235{width:227px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-236{width:228px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-237{width:229px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-238{width:230px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-239{width:231px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-240{width:232px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-241{width:233px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-242{width:234px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-243{width:235px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-244{width:236px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-245{width:237px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-246{width:238px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-247{width:239px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-248{width:240px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-249{width:241px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-250{width:242px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-251{width:243px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-252{width:244px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-253{width:245px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-254{width:246px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-255{width:247px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-256{width:248px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-257{width:249px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-258{width:250px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-259{width:251px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-260{width:252px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-261{width:253px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-262{width:254px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-263{width:255px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-264{width:256px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-265{width:257px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-266{width:258px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-267{width:259px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-268{width:260px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-269{width:261px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-270{width:262px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-271{width:263px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-272{width:264px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-273{width:265px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-274{width:266px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-275{width:267px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-276{width:268px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-277{width:269px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-278{width:270px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-279{width:271px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-280{width:272px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-281{width:273px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-282{width:274px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-283{width:275px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-284{width:276px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-285{width:277px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-286{width:278px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-287{width:279px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-288{width:280px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-289{width:281px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-290{width:282px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-291{width:283px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-292{width:284px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-293{width:285px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-294{width:286px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-295{width:287px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-296{width:288px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-297{width:289px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-298{width:290px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-299{width:291px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-300{width:292px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-301{width:293px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-302{width:294px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-303{width:295px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-304{width:296px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-305{width:297px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-306{width:298px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-307{width:299px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-308{width:300px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-309{width:301px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-310{width:302px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-311{width:303px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-312{width:304px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-313{width:305px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-314{width:306px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-315{width:307px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-316{width:308px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-317{width:309px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-318{width:310px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-319{width:311px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-320{width:312px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-321{width:313px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-322{width:314px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-323{width:315px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-324{width:316px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-325{width:317px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-326{width:318px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-327{width:319px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-328{width:320px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-329{width:321px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-330{width:322px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-331{width:323px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-332{width:324px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-333{width:325px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-334{width:326px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-335{width:327px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-336{width:328px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-337{width:329px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-338{width:330px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-339{width:331px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-340{width:332px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-341{width:333px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-342{width:334px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-343{width:335px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-344{width:336px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-345{width:337px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-346{width:338px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-347{width:339px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-348{width:340px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-349{width:341px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-350{width:342px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-351{width:343px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-352{width:344px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-353{width:345px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-354{width:346px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-355{width:347px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-356{width:348px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-357{width:349px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-358{width:350px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-359{width:351px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-360{width:352px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-361{width:353px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-362{width:354px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-363{width:355px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-364{width:356px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-365{width:357px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-366{width:358px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-367{width:359px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-368{width:360px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-369{width:361px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-370{width:362px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-371{width:363px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-372{width:364px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-373{width:365px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-374{width:366px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-375{width:367px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-376{width:368px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-377{width:369px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-378{width:370px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-379{width:371px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-380{width:372px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-381{width:373px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-382{width:374px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-383{width:375px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-384{width:376px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-385{width:377px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-386{width:378px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-387{width:379px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-388{width:380px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-389{width:381px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-390{width:382px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-391{width:383px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-392{width:384px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-393{width:385px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-394{width:386px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-395{width:387px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-396{width:388px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-397{width:389px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-398{width:390px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-399{width:391px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-400{width:392px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-401{width:393px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-402{width:394px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-403{width:395px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-404{width:396px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-405{width:397px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-406{width:398px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-407{width:399px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-408{width:400px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-409{width:401px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-410{width:402px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-411{width:403px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-412{width:404px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-413{width:405px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-414{width:406px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-415{width:407px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-416{width:408px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-417{width:409px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-418{width:410px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-419{width:411px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-420{width:412px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-421{width:413px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-422{width:414px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-423{width:415px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-424{width:416px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-425{width:417px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-426{width:418px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-427{width:419px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-428{width:420px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-429{width:421px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-430{width:422px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-431{width:423px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-432{width:424px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-433{width:425px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-434{width:426px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-435{width:427px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-436{width:428px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-437{width:429px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-438{width:430px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-439{width:431px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-440{width:432px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-441{width:433px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-442{width:434px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-443{width:435px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-444{width:436px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-445{width:437px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-446{width:438px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-447{width:439px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-448{width:440px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-449{width:441px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-450{width:442px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-451{width:443px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-452{width:444px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-453{width:445px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-454{width:446px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-455{width:447px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-456{width:448px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-457{width:449px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-458{width:450px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-459{width:451px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-460{width:452px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-461{width:453px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-462{width:454px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-463{width:455px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-464{width:456px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-465{width:457px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-466{width:458px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-467{width:459px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-468{width:460px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-469{width:461px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-470{width:462px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-471{width:463px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-472{width:464px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-473{width:465px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-474{width:466px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-475{width:467px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-476{width:468px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-477{width:469px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-478{width:470px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-479{width:471px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-480{width:472px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-481{width:473px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-482{width:474px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-483{width:475px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-484{width:476px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-485{width:477px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-486{width:478px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-487{width:479px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-488{width:480px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-489{width:481px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-490{width:482px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-491{width:483px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-492{width:484px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-493{width:485px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-494{width:486px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-495{width:487px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-496{width:488px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-497{width:489px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-498{width:490px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-499{width:491px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-500{width:492px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-501{width:493px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-502{width:494px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-503{width:495px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-504{width:496px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-505{width:497px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-506{width:498px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-507{width:499px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-508{width:500px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-509{width:501px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-510{width:502px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-511{width:503px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-512{width:504px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-513{width:505px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-514{width:506px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-515{width:507px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-516{width:508px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-517{width:509px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-518{width:510px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-519{width:511px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-520{width:512px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-521{width:513px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-522{width:514px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-523{width:515px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-524{width:516px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-525{width:517px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-526{width:518px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-527{width:519px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-528{width:520px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-529{width:521px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-530{width:522px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-531{width:523px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-532{width:524px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-533{width:525px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-534{width:526px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-535{width:527px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-536{width:528px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-537{width:529px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-538{width:530px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-539{width:531px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-540{width:532px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-541{width:533px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-542{width:534px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-543{width:535px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-544{width:536px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-545{width:537px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-546{width:538px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-547{width:539px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-548{width:540px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-549{width:541px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-550{width:542px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-551{width:543px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-552{width:544px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-553{width:545px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-554{width:546px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-555{width:547px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-556{width:548px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-557{width:549px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-558{width:550px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-559{width:551px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-560{width:552px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-561{width:553px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-562{width:554px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-563{width:555px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-564{width:556px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-565{width:557px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-566{width:558px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-567{width:559px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-568{width:560px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-569{width:561px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-570{width:562px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-571{width:563px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-572{width:564px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-573{width:565px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-574{width:566px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-575{width:567px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-576{width:568px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-577{width:569px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-578{width:570px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-579{width:571px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-580{width:572px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-581{width:573px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-582{width:574px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-583{width:575px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-584{width:576px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-585{width:577px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-586{width:578px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-587{width:579px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-588{width:580px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-589{width:581px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-590{width:582px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-591{width:583px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-592{width:584px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-593{width:585px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-594{width:586px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-595{width:587px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-596{width:588px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-597{width:589px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-598{width:590px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-599{width:591px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-600{width:592px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-601{width:593px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-602{width:594px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-603{width:595px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-604{width:596px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-605{width:597px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-606{width:598px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-607{width:599px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-608{width:600px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-609{width:601px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-610{width:602px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-611{width:603px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-612{width:604px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-613{width:605px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-614{width:606px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-615{width:607px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-616{width:608px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-617{width:609px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-618{width:610px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-619{width:611px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-620{width:612px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-621{width:613px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-622{width:614px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-623{width:615px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-624{width:616px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-625{width:617px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-626{width:618px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-627{width:619px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-628{width:620px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-629{width:621px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-630{width:622px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-631{width:623px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-632{width:624px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-633{width:625px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-634{width:626px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-635{width:627px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-636{width:628px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-637{width:629px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-638{width:630px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-639{width:631px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-640{width:632px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-641{width:633px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-642{width:634px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-643{width:635px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-644{width:636px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-645{width:637px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-646{width:638px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-647{width:639px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-648{width:640px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-649{width:641px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-650{width:642px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-651{width:643px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-652{width:644px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-653{width:645px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-654{width:646px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-655{width:647px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-656{width:648px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-657{width:649px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-658{width:650px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-659{width:651px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-660{width:652px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-661{width:653px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-662{width:654px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-663{width:655px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-664{width:656px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-665{width:657px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-666{width:658px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-667{width:659px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-668{width:660px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-669{width:661px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-670{width:662px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-671{width:663px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-672{width:664px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-673{width:665px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-674{width:666px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-675{width:667px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-676{width:668px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-677{width:669px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-678{width:670px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-679{width:671px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-680{width:672px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-681{width:673px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-682{width:674px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-683{width:675px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-684{width:676px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-685{width:677px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-686{width:678px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-687{width:679px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-688{width:680px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-689{width:681px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-690{width:682px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-691{width:683px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-692{width:684px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-693{width:685px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-694{width:686px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-695{width:687px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-696{width:688px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-697{width:689px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-698{width:690px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-699{width:691px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-700{width:692px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-701{width:693px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-702{width:694px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-703{width:695px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-704{width:696px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-705{width:697px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-706{width:698px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-707{width:699px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-708{width:700px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-709{width:701px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-710{width:702px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-711{width:703px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-712{width:704px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-713{width:705px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-714{width:706px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-715{width:707px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-716{width:708px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-717{width:709px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-718{width:710px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-719{width:711px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-720{width:712px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-721{width:713px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-722{width:714px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-723{width:715px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-724{width:716px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-725{width:717px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-726{width:718px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-727{width:719px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-728{width:720px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-729{width:721px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-730{width:722px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-731{width:723px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-732{width:724px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-733{width:725px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-734{width:726px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-735{width:727px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-736{width:728px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-737{width:729px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-738{width:730px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-739{width:731px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-740{width:732px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-741{width:733px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-742{width:734px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-743{width:735px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-744{width:736px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-745{width:737px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-746{width:738px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-747{width:739px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-748{width:740px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-749{width:741px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-750{width:742px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-751{width:743px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-752{width:744px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-753{width:745px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-754{width:746px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-755{width:747px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-756{width:748px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-757{width:749px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-758{width:750px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-759{width:751px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-760{width:752px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-761{width:753px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-762{width:754px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-763{width:755px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-764{width:756px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-765{width:757px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-766{width:758px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-767{width:759px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-768{width:760px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-769{width:761px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-770{width:762px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-771{width:763px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-772{width:764px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-773{width:765px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-774{width:766px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-775{width:767px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-776{width:768px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-777{width:769px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-778{width:770px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-779{width:771px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-780{width:772px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-781{width:773px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-782{width:774px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-783{width:775px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-784{width:776px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-785{width:777px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-786{width:778px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-787{width:779px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-788{width:780px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-789{width:781px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-790{width:782px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-791{width:783px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-792{width:784px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-793{width:785px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-794{width:786px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-795{width:787px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-796{width:788px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-797{width:789px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-798{width:790px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-799{width:791px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-800{width:792px}.ta-input-dropdown .popover-body .dropdown-options-divider.dispatch_dropdown{top:-4px}.ta-input-dropdown .popover-body .dropdown-options{position:relative;top:0;left:0;z-index:1000;max-height:190px;width:100%;background-color:#2f2f2f;border-radius:3px;padding:4px;overflow:hidden}.ta-input-dropdown .popover-body .dropdown-options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important;padding-right:0}.ta-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar{width:3px}.ta-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-input-dropdown .popover-body .dropdown-options-fuel-franchise{padding:4px;max-height:300px}.ta-input-dropdown .popover-body .dropdown-options.no-result-container{padding:6px 10px!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9856,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9857,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9858,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option{padding:3px 4px;height:26px;font-size:14px;font-weight:400;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#dadada;font-size:14px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#dadada;font-size:14px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#dadada;border-radius:2px;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:hover{background:#424242;color:#dadada;border-radius:2px;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.disabled{color:#6c6c6c;pointer-events:none;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result{line-height:14px;font-size:11px;font-weight:700;color:#919191;height:auto!important;-webkit-user-select:none;user-select:none;pointer-events:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result:hover{background-color:transparent!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result div{padding-top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new{padding:4.5px 6px 4.5px 4px;font-size:11px;font-weight:700;color:#92b1f5;position:relative;transition:background .2s ease-in-out,color .2s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new:hover{color:#dadada;background:#3b73ed66}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .details-template-text,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .svgtext-template-text{color:#919191;font-size:11px;font-weight:700;line-height:14px;pointer-events:none;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .labels-template-counter,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632:hover,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active:after,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{display:inline-block;position:absolute;right:6px;top:28%;transform:translateY(-50%);width:14px;height:10px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{right:35px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active{position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template{display:flex;align-items:center}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous svg{margin-right:5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo{position:absolute;right:25px;text-align:right;display:none;margin-right:0}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text{position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text{top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1{flex:1}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text{font-size:11px;font-weight:400;line-height:14px;color:#919191;text-align:right}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .colors{height:18px;width:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-vertical-divider{width:1px;height:15px;background-color:#aaa3;content:\"\";margin:0 6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text{margin-right:28px;font-size:14px;font-weight:400;line-height:18px;color:#fff}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.lable-text-wrap{text-overflow:ellipsis;overflow:hidden;width:80px;white-space:nowrap}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.add-new{font-size:11px;font-weight:700;color:#6f9ee0;transition:all .3s ease-in-out;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result{line-height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;height:12px;-webkit-user-select:none;user-select:none;pointer-events:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter{width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;text-align:center;font-size:11px;font-weight:500;padding:0 4.5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result{height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;-webkit-user-select:none;user-select:none;pointer-events:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container p{font-size:11px;line-height:18px;color:#919191;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header{display:flex;align-items:center;justify-content:space-between;padding:0 2px;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow{width:18px;height:18px;line-height:15px;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg{transform:rotate(0);transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow.rotate svg{transform:rotate(180deg);transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store{height:26px;border-radius:2px;display:flex;align-items:center;justify-content:space-between;padding:3px 26px 4px 4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-name{font-size:14px;font-weight:400;height:19px;-webkit-user-select:none;user-select:none;color:#fff}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-address{font-size:11px;font-weight:500;line-height:14px;-webkit-user-select:none;user-select:none;color:#ccc}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-address{color:#fff!important;font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .helper-hover-container{content:\"\";width:105%;height:26px;background-color:#1d1d1d;position:absolute;top:0;left:0;border-radius:2px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.ta-input-dropdown .popover-body .dropdown-options .load-dispatcher-template{display:flex;align-items:center;gap:6px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-trailer{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:116px;max-width:-moz-fit-content;max-width:fit-content;line-height:18px;font-size:14px;font-weight:400}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container.trailerContainer{width:max-content!important;padding:0!important;margin:0!important}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate{width:130px;text-align:right;font-size:11px;font-weight:400;color:#919191;padding-bottom:1px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;column-gap:29px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status{height:14px;display:flex;align-items:center;justify-content:flex-end;grid-gap:4px;gap:4px;text-align:center}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter{max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template{display:grid;grid-template-columns:405px 166px;align-items:center;padding-right:25px}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2),.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(3){text-align:right}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter{max-width:max-content;height:18px;border-radius:30px;text-align:right;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;justify-self:flex-end}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ta-input-dropdown .popover-body .dropdown-options.w-col-1{width:1px}.ta-input-dropdown .popover-body .dropdown-options.w-col-2{width:2px}.ta-input-dropdown .popover-body .dropdown-options.w-col-3{width:3px}.ta-input-dropdown .popover-body .dropdown-options.w-col-4{width:4px}.ta-input-dropdown .popover-body .dropdown-options.w-col-5{width:5px}.ta-input-dropdown .popover-body .dropdown-options.w-col-6{width:6px}.ta-input-dropdown .popover-body .dropdown-options.w-col-7{width:7px}.ta-input-dropdown .popover-body .dropdown-options.w-col-8{width:8px}.ta-input-dropdown .popover-body .dropdown-options.w-col-9{width:9px}.ta-input-dropdown .popover-body .dropdown-options.w-col-10{width:10px}.ta-input-dropdown .popover-body .dropdown-options.w-col-11{width:11px}.ta-input-dropdown .popover-body .dropdown-options.w-col-12{width:12px}.ta-input-dropdown .popover-body .dropdown-options.w-col-13{width:13px}.ta-input-dropdown .popover-body .dropdown-options.w-col-14{width:14px}.ta-input-dropdown .popover-body .dropdown-options.w-col-15{width:15px}.ta-input-dropdown .popover-body .dropdown-options.w-col-16{width:16px}.ta-input-dropdown .popover-body .dropdown-options.w-col-17{width:17px}.ta-input-dropdown .popover-body .dropdown-options.w-col-18{width:18px}.ta-input-dropdown .popover-body .dropdown-options.w-col-19{width:19px}.ta-input-dropdown .popover-body .dropdown-options.w-col-20{width:20px}.ta-input-dropdown .popover-body .dropdown-options.w-col-21{width:21px}.ta-input-dropdown .popover-body .dropdown-options.w-col-22{width:22px}.ta-input-dropdown .popover-body .dropdown-options.w-col-23{width:23px}.ta-input-dropdown .popover-body .dropdown-options.w-col-24{width:24px}.ta-input-dropdown .popover-body .dropdown-options.w-col-25{width:25px}.ta-input-dropdown .popover-body .dropdown-options.w-col-26{width:26px}.ta-input-dropdown .popover-body .dropdown-options.w-col-27{width:27px}.ta-input-dropdown .popover-body .dropdown-options.w-col-28{width:28px}.ta-input-dropdown .popover-body .dropdown-options.w-col-29{width:29px}.ta-input-dropdown .popover-body .dropdown-options.w-col-30{width:30px}.ta-input-dropdown .popover-body .dropdown-options.w-col-31{width:31px}.ta-input-dropdown .popover-body .dropdown-options.w-col-32{width:32px}.ta-input-dropdown .popover-body .dropdown-options.w-col-33{width:33px}.ta-input-dropdown .popover-body .dropdown-options.w-col-34{width:34px}.ta-input-dropdown .popover-body .dropdown-options.w-col-35{width:35px}.ta-input-dropdown .popover-body .dropdown-options.w-col-36{width:36px}.ta-input-dropdown .popover-body .dropdown-options.w-col-37{width:37px}.ta-input-dropdown .popover-body .dropdown-options.w-col-38{width:38px}.ta-input-dropdown .popover-body .dropdown-options.w-col-39{width:39px}.ta-input-dropdown .popover-body .dropdown-options.w-col-40{width:40px}.ta-input-dropdown .popover-body .dropdown-options.w-col-41{width:41px}.ta-input-dropdown .popover-body .dropdown-options.w-col-42{width:42px}.ta-input-dropdown .popover-body .dropdown-options.w-col-43{width:43px}.ta-input-dropdown .popover-body .dropdown-options.w-col-44{width:44px}.ta-input-dropdown .popover-body .dropdown-options.w-col-45{width:45px}.ta-input-dropdown .popover-body .dropdown-options.w-col-46{width:46px}.ta-input-dropdown .popover-body .dropdown-options.w-col-47{width:47px}.ta-input-dropdown .popover-body .dropdown-options.w-col-48{width:48px}.ta-input-dropdown .popover-body .dropdown-options.w-col-49{width:49px}.ta-input-dropdown .popover-body .dropdown-options.w-col-50{width:50px}.ta-input-dropdown .popover-body .dropdown-options.w-col-51{width:51px}.ta-input-dropdown .popover-body .dropdown-options.w-col-52{width:52px}.ta-input-dropdown .popover-body .dropdown-options.w-col-53{width:53px}.ta-input-dropdown .popover-body .dropdown-options.w-col-54{width:54px}.ta-input-dropdown .popover-body .dropdown-options.w-col-55{width:55px}.ta-input-dropdown .popover-body .dropdown-options.w-col-56{width:56px}.ta-input-dropdown .popover-body .dropdown-options.w-col-57{width:57px}.ta-input-dropdown .popover-body .dropdown-options.w-col-58{width:58px}.ta-input-dropdown .popover-body .dropdown-options.w-col-59{width:59px}.ta-input-dropdown .popover-body .dropdown-options.w-col-60{width:60px}.ta-input-dropdown .popover-body .dropdown-options.w-col-61{width:61px}.ta-input-dropdown .popover-body .dropdown-options.w-col-62{width:62px}.ta-input-dropdown .popover-body .dropdown-options.w-col-63{width:63px}.ta-input-dropdown .popover-body .dropdown-options.w-col-64{width:64px}.ta-input-dropdown .popover-body .dropdown-options.w-col-65{width:65px}.ta-input-dropdown .popover-body .dropdown-options.w-col-66{width:66px}.ta-input-dropdown .popover-body .dropdown-options.w-col-67{width:67px}.ta-input-dropdown .popover-body .dropdown-options.w-col-68{width:68px}.ta-input-dropdown .popover-body .dropdown-options.w-col-69{width:69px}.ta-input-dropdown .popover-body .dropdown-options.w-col-70{width:70px}.ta-input-dropdown .popover-body .dropdown-options.w-col-71{width:71px}.ta-input-dropdown .popover-body .dropdown-options.w-col-72{width:72px}.ta-input-dropdown .popover-body .dropdown-options.w-col-73{width:73px}.ta-input-dropdown .popover-body .dropdown-options.w-col-74{width:74px}.ta-input-dropdown .popover-body .dropdown-options.w-col-75{width:75px}.ta-input-dropdown .popover-body .dropdown-options.w-col-76{width:76px}.ta-input-dropdown .popover-body .dropdown-options.w-col-77{width:77px}.ta-input-dropdown .popover-body .dropdown-options.w-col-78{width:78px}.ta-input-dropdown .popover-body .dropdown-options.w-col-79{width:79px}.ta-input-dropdown .popover-body .dropdown-options.w-col-80{width:80px}.ta-input-dropdown .popover-body .dropdown-options.w-col-81{width:81px}.ta-input-dropdown .popover-body .dropdown-options.w-col-82{width:82px}.ta-input-dropdown .popover-body .dropdown-options.w-col-83{width:83px}.ta-input-dropdown .popover-body .dropdown-options.w-col-84{width:84px}.ta-input-dropdown .popover-body .dropdown-options.w-col-85{width:85px}.ta-input-dropdown .popover-body .dropdown-options.w-col-86{width:86px}.ta-input-dropdown .popover-body .dropdown-options.w-col-87{width:87px}.ta-input-dropdown .popover-body .dropdown-options.w-col-88{width:88px}.ta-input-dropdown .popover-body .dropdown-options.w-col-89{width:89px}.ta-input-dropdown .popover-body .dropdown-options.w-col-90{width:90px}.ta-input-dropdown .popover-body .dropdown-options.w-col-91{width:91px}.ta-input-dropdown .popover-body .dropdown-options.w-col-92{width:92px}.ta-input-dropdown .popover-body .dropdown-options.w-col-93{width:93px}.ta-input-dropdown .popover-body .dropdown-options.w-col-94{width:94px}.ta-input-dropdown .popover-body .dropdown-options.w-col-95{width:95px}.ta-input-dropdown .popover-body .dropdown-options.w-col-96{width:96px}.ta-input-dropdown .popover-body .dropdown-options.w-col-97{width:97px}.ta-input-dropdown .popover-body .dropdown-options.w-col-98{width:98px}.ta-input-dropdown .popover-body .dropdown-options.w-col-99{width:99px}.ta-input-dropdown .popover-body .dropdown-options.w-col-100{width:100px}.ta-input-dropdown .popover-body .dropdown-options.w-col-101{width:101px}.ta-input-dropdown .popover-body .dropdown-options.w-col-102{width:102px}.ta-input-dropdown .popover-body .dropdown-options.w-col-103{width:103px}.ta-input-dropdown .popover-body .dropdown-options.w-col-104{width:104px}.ta-input-dropdown .popover-body .dropdown-options.w-col-105{width:105px}.ta-input-dropdown .popover-body .dropdown-options.w-col-106{width:106px}.ta-input-dropdown .popover-body .dropdown-options.w-col-107{width:107px}.ta-input-dropdown .popover-body .dropdown-options.w-col-108{width:108px}.ta-input-dropdown .popover-body .dropdown-options.w-col-109{width:109px}.ta-input-dropdown .popover-body .dropdown-options.w-col-110{width:110px}.ta-input-dropdown .popover-body .dropdown-options.w-col-111{width:111px}.ta-input-dropdown .popover-body .dropdown-options.w-col-112{width:112px}.ta-input-dropdown .popover-body .dropdown-options.w-col-113{width:113px}.ta-input-dropdown .popover-body .dropdown-options.w-col-114{width:114px}.ta-input-dropdown .popover-body .dropdown-options.w-col-115{width:115px}.ta-input-dropdown .popover-body .dropdown-options.w-col-116{width:116px}.ta-input-dropdown .popover-body .dropdown-options.w-col-117{width:117px}.ta-input-dropdown .popover-body .dropdown-options.w-col-118{width:118px}.ta-input-dropdown .popover-body .dropdown-options.w-col-119{width:119px}.ta-input-dropdown .popover-body .dropdown-options.w-col-120{width:120px}.ta-input-dropdown .popover-body .dropdown-options.w-col-121{width:121px}.ta-input-dropdown .popover-body .dropdown-options.w-col-122{width:122px}.ta-input-dropdown .popover-body .dropdown-options.w-col-123{width:123px}.ta-input-dropdown .popover-body .dropdown-options.w-col-124{width:124px}.ta-input-dropdown .popover-body .dropdown-options.w-col-125{width:125px}.ta-input-dropdown .popover-body .dropdown-options.w-col-126{width:126px}.ta-input-dropdown .popover-body .dropdown-options.w-col-127{width:127px}.ta-input-dropdown .popover-body .dropdown-options.w-col-128{width:128px}.ta-input-dropdown .popover-body .dropdown-options.w-col-129{width:129px}.ta-input-dropdown .popover-body .dropdown-options.w-col-130{width:130px}.ta-input-dropdown .popover-body .dropdown-options.w-col-131{width:131px}.ta-input-dropdown .popover-body .dropdown-options.w-col-132{width:132px}.ta-input-dropdown .popover-body .dropdown-options.w-col-133{width:133px}.ta-input-dropdown .popover-body .dropdown-options.w-col-134{width:134px}.ta-input-dropdown .popover-body .dropdown-options.w-col-135{width:135px}.ta-input-dropdown .popover-body .dropdown-options.w-col-136{width:136px}.ta-input-dropdown .popover-body .dropdown-options.w-col-137{width:137px}.ta-input-dropdown .popover-body .dropdown-options.w-col-138{width:138px}.ta-input-dropdown .popover-body .dropdown-options.w-col-139{width:139px}.ta-input-dropdown .popover-body .dropdown-options.w-col-140{width:140px}.ta-input-dropdown .popover-body .dropdown-options.w-col-141{width:141px}.ta-input-dropdown .popover-body .dropdown-options.w-col-142{width:142px}.ta-input-dropdown .popover-body .dropdown-options.w-col-143{width:143px}.ta-input-dropdown .popover-body .dropdown-options.w-col-144{width:144px}.ta-input-dropdown .popover-body .dropdown-options.w-col-145{width:145px}.ta-input-dropdown .popover-body .dropdown-options.w-col-146{width:146px}.ta-input-dropdown .popover-body .dropdown-options.w-col-147{width:147px}.ta-input-dropdown .popover-body .dropdown-options.w-col-148{width:148px}.ta-input-dropdown .popover-body .dropdown-options.w-col-149{width:149px}.ta-input-dropdown .popover-body .dropdown-options.w-col-150{width:150px}.ta-input-dropdown .popover-body .dropdown-options.w-col-151{width:151px}.ta-input-dropdown .popover-body .dropdown-options.w-col-152{width:152px}.ta-input-dropdown .popover-body .dropdown-options.w-col-153{width:153px}.ta-input-dropdown .popover-body .dropdown-options.w-col-154{width:154px}.ta-input-dropdown .popover-body .dropdown-options.w-col-155{width:155px}.ta-input-dropdown .popover-body .dropdown-options.w-col-156{width:156px}.ta-input-dropdown .popover-body .dropdown-options.w-col-157{width:157px}.ta-input-dropdown .popover-body .dropdown-options.w-col-158{width:158px}.ta-input-dropdown .popover-body .dropdown-options.w-col-159{width:159px}.ta-input-dropdown .popover-body .dropdown-options.w-col-160{width:160px}.ta-input-dropdown .popover-body .dropdown-options.w-col-161{width:161px}.ta-input-dropdown .popover-body .dropdown-options.w-col-162{width:162px}.ta-input-dropdown .popover-body .dropdown-options.w-col-163{width:163px}.ta-input-dropdown .popover-body .dropdown-options.w-col-164{width:164px}.ta-input-dropdown .popover-body .dropdown-options.w-col-165{width:165px}.ta-input-dropdown .popover-body .dropdown-options.w-col-166{width:166px}.ta-input-dropdown .popover-body .dropdown-options.w-col-167{width:167px}.ta-input-dropdown .popover-body .dropdown-options.w-col-168{width:168px}.ta-input-dropdown .popover-body .dropdown-options.w-col-169{width:169px}.ta-input-dropdown .popover-body .dropdown-options.w-col-170{width:170px}.ta-input-dropdown .popover-body .dropdown-options.w-col-171{width:171px}.ta-input-dropdown .popover-body .dropdown-options.w-col-172{width:172px}.ta-input-dropdown .popover-body .dropdown-options.w-col-173{width:173px}.ta-input-dropdown .popover-body .dropdown-options.w-col-174{width:174px}.ta-input-dropdown .popover-body .dropdown-options.w-col-175{width:175px}.ta-input-dropdown .popover-body .dropdown-options.w-col-176{width:176px}.ta-input-dropdown .popover-body .dropdown-options.w-col-177{width:177px}.ta-input-dropdown .popover-body .dropdown-options.w-col-178{width:178px}.ta-input-dropdown .popover-body .dropdown-options.w-col-179{width:179px}.ta-input-dropdown .popover-body .dropdown-options.w-col-180{width:180px}.ta-input-dropdown .popover-body .dropdown-options.w-col-181{width:181px}.ta-input-dropdown .popover-body .dropdown-options.w-col-182{width:182px}.ta-input-dropdown .popover-body .dropdown-options.w-col-183{width:183px}.ta-input-dropdown .popover-body .dropdown-options.w-col-184{width:184px}.ta-input-dropdown .popover-body .dropdown-options.w-col-185{width:185px}.ta-input-dropdown .popover-body .dropdown-options.w-col-186{width:186px}.ta-input-dropdown .popover-body .dropdown-options.w-col-187{width:187px}.ta-input-dropdown .popover-body .dropdown-options.w-col-188{width:188px}.ta-input-dropdown .popover-body .dropdown-options.w-col-189{width:189px}.ta-input-dropdown .popover-body .dropdown-options.w-col-190{width:190px}.ta-input-dropdown .popover-body .dropdown-options.w-col-191{width:191px}.ta-input-dropdown .popover-body .dropdown-options.w-col-192{width:192px}.ta-input-dropdown .popover-body .dropdown-options.w-col-193{width:193px}.ta-input-dropdown .popover-body .dropdown-options.w-col-194{width:194px}.ta-input-dropdown .popover-body .dropdown-options.w-col-195{width:195px}.ta-input-dropdown .popover-body .dropdown-options.w-col-196{width:196px}.ta-input-dropdown .popover-body .dropdown-options.w-col-197{width:197px}.ta-input-dropdown .popover-body .dropdown-options.w-col-198{width:198px}.ta-input-dropdown .popover-body .dropdown-options.w-col-199{width:199px}.ta-input-dropdown .popover-body .dropdown-options.w-col-200{width:200px}.ta-input-dropdown .popover-body .dropdown-options.w-col-201{width:201px}.ta-input-dropdown .popover-body .dropdown-options.w-col-202{width:202px}.ta-input-dropdown .popover-body .dropdown-options.w-col-203{width:203px}.ta-input-dropdown .popover-body .dropdown-options.w-col-204{width:204px}.ta-input-dropdown .popover-body .dropdown-options.w-col-205{width:205px}.ta-input-dropdown .popover-body .dropdown-options.w-col-206{width:206px}.ta-input-dropdown .popover-body .dropdown-options.w-col-207{width:207px}.ta-input-dropdown .popover-body .dropdown-options.w-col-208{width:208px}.ta-input-dropdown .popover-body .dropdown-options.w-col-209{width:209px}.ta-input-dropdown .popover-body .dropdown-options.w-col-210{width:210px}.ta-input-dropdown .popover-body .dropdown-options.w-col-211{width:211px}.ta-input-dropdown .popover-body .dropdown-options.w-col-212{width:212px}.ta-input-dropdown .popover-body .dropdown-options.w-col-213{width:213px}.ta-input-dropdown .popover-body .dropdown-options.w-col-214{width:214px}.ta-input-dropdown .popover-body .dropdown-options.w-col-215{width:215px}.ta-input-dropdown .popover-body .dropdown-options.w-col-216{width:216px}.ta-input-dropdown .popover-body .dropdown-options.w-col-217{width:217px}.ta-input-dropdown .popover-body .dropdown-options.w-col-218{width:218px}.ta-input-dropdown .popover-body .dropdown-options.w-col-219{width:219px}.ta-input-dropdown .popover-body .dropdown-options.w-col-220{width:220px}.ta-input-dropdown .popover-body .dropdown-options.w-col-221{width:221px}.ta-input-dropdown .popover-body .dropdown-options.w-col-222{width:222px}.ta-input-dropdown .popover-body .dropdown-options.w-col-223{width:223px}.ta-input-dropdown .popover-body .dropdown-options.w-col-224{width:224px}.ta-input-dropdown .popover-body .dropdown-options.w-col-225{width:225px}.ta-input-dropdown .popover-body .dropdown-options.w-col-226{width:226px}.ta-input-dropdown .popover-body .dropdown-options.w-col-227{width:227px}.ta-input-dropdown .popover-body .dropdown-options.w-col-228{width:228px}.ta-input-dropdown .popover-body .dropdown-options.w-col-229{width:229px}.ta-input-dropdown .popover-body .dropdown-options.w-col-230{width:230px}.ta-input-dropdown .popover-body .dropdown-options.w-col-231{width:231px}.ta-input-dropdown .popover-body .dropdown-options.w-col-232{width:232px}.ta-input-dropdown .popover-body .dropdown-options.w-col-233{width:233px}.ta-input-dropdown .popover-body .dropdown-options.w-col-234{width:234px}.ta-input-dropdown .popover-body .dropdown-options.w-col-235{width:235px}.ta-input-dropdown .popover-body .dropdown-options.w-col-236{width:236px}.ta-input-dropdown .popover-body .dropdown-options.w-col-237{width:237px}.ta-input-dropdown .popover-body .dropdown-options.w-col-238{width:238px}.ta-input-dropdown .popover-body .dropdown-options.w-col-239{width:239px}.ta-input-dropdown .popover-body .dropdown-options.w-col-240{width:240px}.ta-input-dropdown .popover-body .dropdown-options.w-col-241{width:241px}.ta-input-dropdown .popover-body .dropdown-options.w-col-242{width:242px}.ta-input-dropdown .popover-body .dropdown-options.w-col-243{width:243px}.ta-input-dropdown .popover-body .dropdown-options.w-col-244{width:244px}.ta-input-dropdown .popover-body .dropdown-options.w-col-245{width:245px}.ta-input-dropdown .popover-body .dropdown-options.w-col-246{width:246px}.ta-input-dropdown .popover-body .dropdown-options.w-col-247{width:247px}.ta-input-dropdown .popover-body .dropdown-options.w-col-248{width:248px}.ta-input-dropdown .popover-body .dropdown-options.w-col-249{width:249px}.ta-input-dropdown .popover-body .dropdown-options.w-col-250{width:250px}.ta-input-dropdown .popover-body .dropdown-options.w-col-251{width:251px}.ta-input-dropdown .popover-body .dropdown-options.w-col-252{width:252px}.ta-input-dropdown .popover-body .dropdown-options.w-col-253{width:253px}.ta-input-dropdown .popover-body .dropdown-options.w-col-254{width:254px}.ta-input-dropdown .popover-body .dropdown-options.w-col-255{width:255px}.ta-input-dropdown .popover-body .dropdown-options.w-col-256{width:256px}.ta-input-dropdown .popover-body .dropdown-options.w-col-257{width:257px}.ta-input-dropdown .popover-body .dropdown-options.w-col-258{width:258px}.ta-input-dropdown .popover-body .dropdown-options.w-col-259{width:259px}.ta-input-dropdown .popover-body .dropdown-options.w-col-260{width:260px}.ta-input-dropdown .popover-body .dropdown-options.w-col-261{width:261px}.ta-input-dropdown .popover-body .dropdown-options.w-col-262{width:262px}.ta-input-dropdown .popover-body .dropdown-options.w-col-263{width:263px}.ta-input-dropdown .popover-body .dropdown-options.w-col-264{width:264px}.ta-input-dropdown .popover-body .dropdown-options.w-col-265{width:265px}.ta-input-dropdown .popover-body .dropdown-options.w-col-266{width:266px}.ta-input-dropdown .popover-body .dropdown-options.w-col-267{width:267px}.ta-input-dropdown .popover-body .dropdown-options.w-col-268{width:268px}.ta-input-dropdown .popover-body .dropdown-options.w-col-269{width:269px}.ta-input-dropdown .popover-body .dropdown-options.w-col-270{width:270px}.ta-input-dropdown .popover-body .dropdown-options.w-col-271{width:271px}.ta-input-dropdown .popover-body .dropdown-options.w-col-272{width:272px}.ta-input-dropdown .popover-body .dropdown-options.w-col-273{width:273px}.ta-input-dropdown .popover-body .dropdown-options.w-col-274{width:274px}.ta-input-dropdown .popover-body .dropdown-options.w-col-275{width:275px}.ta-input-dropdown .popover-body .dropdown-options.w-col-276{width:276px}.ta-input-dropdown .popover-body .dropdown-options.w-col-277{width:277px}.ta-input-dropdown .popover-body .dropdown-options.w-col-278{width:278px}.ta-input-dropdown .popover-body .dropdown-options.w-col-279{width:279px}.ta-input-dropdown .popover-body .dropdown-options.w-col-280{width:280px}.ta-input-dropdown .popover-body .dropdown-options.w-col-281{width:281px}.ta-input-dropdown .popover-body .dropdown-options.w-col-282{width:282px}.ta-input-dropdown .popover-body .dropdown-options.w-col-283{width:283px}.ta-input-dropdown .popover-body .dropdown-options.w-col-284{width:284px}.ta-input-dropdown .popover-body .dropdown-options.w-col-285{width:285px}.ta-input-dropdown .popover-body .dropdown-options.w-col-286{width:286px}.ta-input-dropdown .popover-body .dropdown-options.w-col-287{width:287px}.ta-input-dropdown .popover-body .dropdown-options.w-col-288{width:288px}.ta-input-dropdown .popover-body .dropdown-options.w-col-289{width:289px}.ta-input-dropdown .popover-body .dropdown-options.w-col-290{width:290px}.ta-input-dropdown .popover-body .dropdown-options.w-col-291{width:291px}.ta-input-dropdown .popover-body .dropdown-options.w-col-292{width:292px}.ta-input-dropdown .popover-body .dropdown-options.w-col-293{width:293px}.ta-input-dropdown .popover-body .dropdown-options.w-col-294{width:294px}.ta-input-dropdown .popover-body .dropdown-options.w-col-295{width:295px}.ta-input-dropdown .popover-body .dropdown-options.w-col-296{width:296px}.ta-input-dropdown .popover-body .dropdown-options.w-col-297{width:297px}.ta-input-dropdown .popover-body .dropdown-options.w-col-298{width:298px}.ta-input-dropdown .popover-body .dropdown-options.w-col-299{width:299px}.ta-input-dropdown .popover-body .dropdown-options.w-col-300{width:300px}.ta-input-dropdown .popover-body .dropdown-options.w-col-301{width:301px}.ta-input-dropdown .popover-body .dropdown-options.w-col-302{width:302px}.ta-input-dropdown .popover-body .dropdown-options.w-col-303{width:303px}.ta-input-dropdown .popover-body .dropdown-options.w-col-304{width:304px}.ta-input-dropdown .popover-body .dropdown-options.w-col-305{width:305px}.ta-input-dropdown .popover-body .dropdown-options.w-col-306{width:306px}.ta-input-dropdown .popover-body .dropdown-options.w-col-307{width:307px}.ta-input-dropdown .popover-body .dropdown-options.w-col-308{width:308px}.ta-input-dropdown .popover-body .dropdown-options.w-col-309{width:309px}.ta-input-dropdown .popover-body .dropdown-options.w-col-310{width:310px}.ta-input-dropdown .popover-body .dropdown-options.w-col-311{width:311px}.ta-input-dropdown .popover-body .dropdown-options.w-col-312{width:312px}.ta-input-dropdown .popover-body .dropdown-options.w-col-313{width:313px}.ta-input-dropdown .popover-body .dropdown-options.w-col-314{width:314px}.ta-input-dropdown .popover-body .dropdown-options.w-col-315{width:315px}.ta-input-dropdown .popover-body .dropdown-options.w-col-316{width:316px}.ta-input-dropdown .popover-body .dropdown-options.w-col-317{width:317px}.ta-input-dropdown .popover-body .dropdown-options.w-col-318{width:318px}.ta-input-dropdown .popover-body .dropdown-options.w-col-319{width:319px}.ta-input-dropdown .popover-body .dropdown-options.w-col-320{width:320px}.ta-input-dropdown .popover-body .dropdown-options.w-col-321{width:321px}.ta-input-dropdown .popover-body .dropdown-options.w-col-322{width:322px}.ta-input-dropdown .popover-body .dropdown-options.w-col-323{width:323px}.ta-input-dropdown .popover-body .dropdown-options.w-col-324{width:324px}.ta-input-dropdown .popover-body .dropdown-options.w-col-325{width:325px}.ta-input-dropdown .popover-body .dropdown-options.w-col-326{width:326px}.ta-input-dropdown .popover-body .dropdown-options.w-col-327{width:327px}.ta-input-dropdown .popover-body .dropdown-options.w-col-328{width:328px}.ta-input-dropdown .popover-body .dropdown-options.w-col-329{width:329px}.ta-input-dropdown .popover-body .dropdown-options.w-col-330{width:330px}.ta-input-dropdown .popover-body .dropdown-options.w-col-331{width:331px}.ta-input-dropdown .popover-body .dropdown-options.w-col-332{width:332px}.ta-input-dropdown .popover-body .dropdown-options.w-col-333{width:333px}.ta-input-dropdown .popover-body .dropdown-options.w-col-334{width:334px}.ta-input-dropdown .popover-body .dropdown-options.w-col-335{width:335px}.ta-input-dropdown .popover-body .dropdown-options.w-col-336{width:336px}.ta-input-dropdown .popover-body .dropdown-options.w-col-337{width:337px}.ta-input-dropdown .popover-body .dropdown-options.w-col-338{width:338px}.ta-input-dropdown .popover-body .dropdown-options.w-col-339{width:339px}.ta-input-dropdown .popover-body .dropdown-options.w-col-340{width:340px}.ta-input-dropdown .popover-body .dropdown-options.w-col-341{width:341px}.ta-input-dropdown .popover-body .dropdown-options.w-col-342{width:342px}.ta-input-dropdown .popover-body .dropdown-options.w-col-343{width:343px}.ta-input-dropdown .popover-body .dropdown-options.w-col-344{width:344px}.ta-input-dropdown .popover-body .dropdown-options.w-col-345{width:345px}.ta-input-dropdown .popover-body .dropdown-options.w-col-346{width:346px}.ta-input-dropdown .popover-body .dropdown-options.w-col-347{width:347px}.ta-input-dropdown .popover-body .dropdown-options.w-col-348{width:348px}.ta-input-dropdown .popover-body .dropdown-options.w-col-349{width:349px}.ta-input-dropdown .popover-body .dropdown-options.w-col-350{width:350px}.ta-input-dropdown .popover-body .dropdown-options.w-col-351{width:351px}.ta-input-dropdown .popover-body .dropdown-options.w-col-352{width:352px}.ta-input-dropdown .popover-body .dropdown-options.w-col-353{width:353px}.ta-input-dropdown .popover-body .dropdown-options.w-col-354{width:354px}.ta-input-dropdown .popover-body .dropdown-options.w-col-355{width:355px}.ta-input-dropdown .popover-body .dropdown-options.w-col-356{width:356px}.ta-input-dropdown .popover-body .dropdown-options.w-col-357{width:357px}.ta-input-dropdown .popover-body .dropdown-options.w-col-358{width:358px}.ta-input-dropdown .popover-body .dropdown-options.w-col-359{width:359px}.ta-input-dropdown .popover-body .dropdown-options.w-col-360{width:360px}.ta-input-dropdown .popover-body .dropdown-options.w-col-361{width:361px}.ta-input-dropdown .popover-body .dropdown-options.w-col-362{width:362px}.ta-input-dropdown .popover-body .dropdown-options.w-col-363{width:363px}.ta-input-dropdown .popover-body .dropdown-options.w-col-364{width:364px}.ta-input-dropdown .popover-body .dropdown-options.w-col-365{width:365px}.ta-input-dropdown .popover-body .dropdown-options.w-col-366{width:366px}.ta-input-dropdown .popover-body .dropdown-options.w-col-367{width:367px}.ta-input-dropdown .popover-body .dropdown-options.w-col-368{width:368px}.ta-input-dropdown .popover-body .dropdown-options.w-col-369{width:369px}.ta-input-dropdown .popover-body .dropdown-options.w-col-370{width:370px}.ta-input-dropdown .popover-body .dropdown-options.w-col-371{width:371px}.ta-input-dropdown .popover-body .dropdown-options.w-col-372{width:372px}.ta-input-dropdown .popover-body .dropdown-options.w-col-373{width:373px}.ta-input-dropdown .popover-body .dropdown-options.w-col-374{width:374px}.ta-input-dropdown .popover-body .dropdown-options.w-col-375{width:375px}.ta-input-dropdown .popover-body .dropdown-options.w-col-376{width:376px}.ta-input-dropdown .popover-body .dropdown-options.w-col-377{width:377px}.ta-input-dropdown .popover-body .dropdown-options.w-col-378{width:378px}.ta-input-dropdown .popover-body .dropdown-options.w-col-379{width:379px}.ta-input-dropdown .popover-body .dropdown-options.w-col-380{width:380px}.ta-input-dropdown .popover-body .dropdown-options.w-col-381{width:381px}.ta-input-dropdown .popover-body .dropdown-options.w-col-382{width:382px}.ta-input-dropdown .popover-body .dropdown-options.w-col-383{width:383px}.ta-input-dropdown .popover-body .dropdown-options.w-col-384{width:384px}.ta-input-dropdown .popover-body .dropdown-options.w-col-385{width:385px}.ta-input-dropdown .popover-body .dropdown-options.w-col-386{width:386px}.ta-input-dropdown .popover-body .dropdown-options.w-col-387{width:387px}.ta-input-dropdown .popover-body .dropdown-options.w-col-388{width:388px}.ta-input-dropdown .popover-body .dropdown-options.w-col-389{width:389px}.ta-input-dropdown .popover-body .dropdown-options.w-col-390{width:390px}.ta-input-dropdown .popover-body .dropdown-options.w-col-391{width:391px}.ta-input-dropdown .popover-body .dropdown-options.w-col-392{width:392px}.ta-input-dropdown .popover-body .dropdown-options.w-col-393{width:393px}.ta-input-dropdown .popover-body .dropdown-options.w-col-394{width:394px}.ta-input-dropdown .popover-body .dropdown-options.w-col-395{width:395px}.ta-input-dropdown .popover-body .dropdown-options.w-col-396{width:396px}.ta-input-dropdown .popover-body .dropdown-options.w-col-397{width:397px}.ta-input-dropdown .popover-body .dropdown-options.w-col-398{width:398px}.ta-input-dropdown .popover-body .dropdown-options.w-col-399{width:399px}.ta-input-dropdown .popover-body .dropdown-options.w-col-400{width:400px}.ta-input-dropdown .popover-body .dropdown-options.w-col-401{width:401px}.ta-input-dropdown .popover-body .dropdown-options.w-col-402{width:402px}.ta-input-dropdown .popover-body .dropdown-options.w-col-403{width:403px}.ta-input-dropdown .popover-body .dropdown-options.w-col-404{width:404px}.ta-input-dropdown .popover-body .dropdown-options.w-col-405{width:405px}.ta-input-dropdown .popover-body .dropdown-options.w-col-406{width:406px}.ta-input-dropdown .popover-body .dropdown-options.w-col-407{width:407px}.ta-input-dropdown .popover-body .dropdown-options.w-col-408{width:408px}.ta-input-dropdown .popover-body .dropdown-options.w-col-409{width:409px}.ta-input-dropdown .popover-body .dropdown-options.w-col-410{width:410px}.ta-input-dropdown .popover-body .dropdown-options.w-col-411{width:411px}.ta-input-dropdown .popover-body .dropdown-options.w-col-412{width:412px}.ta-input-dropdown .popover-body .dropdown-options.w-col-413{width:413px}.ta-input-dropdown .popover-body .dropdown-options.w-col-414{width:414px}.ta-input-dropdown .popover-body .dropdown-options.w-col-415{width:415px}.ta-input-dropdown .popover-body .dropdown-options.w-col-416{width:416px}.ta-input-dropdown .popover-body .dropdown-options.w-col-417{width:417px}.ta-input-dropdown .popover-body .dropdown-options.w-col-418{width:418px}.ta-input-dropdown .popover-body .dropdown-options.w-col-419{width:419px}.ta-input-dropdown .popover-body .dropdown-options.w-col-420{width:420px}.ta-input-dropdown .popover-body .dropdown-options.w-col-421{width:421px}.ta-input-dropdown .popover-body .dropdown-options.w-col-422{width:422px}.ta-input-dropdown .popover-body .dropdown-options.w-col-423{width:423px}.ta-input-dropdown .popover-body .dropdown-options.w-col-424{width:424px}.ta-input-dropdown .popover-body .dropdown-options.w-col-425{width:425px}.ta-input-dropdown .popover-body .dropdown-options.w-col-426{width:426px}.ta-input-dropdown .popover-body .dropdown-options.w-col-427{width:427px}.ta-input-dropdown .popover-body .dropdown-options.w-col-428{width:428px}.ta-input-dropdown .popover-body .dropdown-options.w-col-429{width:429px}.ta-input-dropdown .popover-body .dropdown-options.w-col-430{width:430px}.ta-input-dropdown .popover-body .dropdown-options.w-col-431{width:431px}.ta-input-dropdown .popover-body .dropdown-options.w-col-432{width:432px}.ta-input-dropdown .popover-body .dropdown-options.w-col-433{width:433px}.ta-input-dropdown .popover-body .dropdown-options.w-col-434{width:434px}.ta-input-dropdown .popover-body .dropdown-options.w-col-435{width:435px}.ta-input-dropdown .popover-body .dropdown-options.w-col-436{width:436px}.ta-input-dropdown .popover-body .dropdown-options.w-col-437{width:437px}.ta-input-dropdown .popover-body .dropdown-options.w-col-438{width:438px}.ta-input-dropdown .popover-body .dropdown-options.w-col-439{width:439px}.ta-input-dropdown .popover-body .dropdown-options.w-col-440{width:440px}.ta-input-dropdown .popover-body .dropdown-options.w-col-441{width:441px}.ta-input-dropdown .popover-body .dropdown-options.w-col-442{width:442px}.ta-input-dropdown .popover-body .dropdown-options.w-col-443{width:443px}.ta-input-dropdown .popover-body .dropdown-options.w-col-444{width:444px}.ta-input-dropdown .popover-body .dropdown-options.w-col-445{width:445px}.ta-input-dropdown .popover-body .dropdown-options.w-col-446{width:446px}.ta-input-dropdown .popover-body .dropdown-options.w-col-447{width:447px}.ta-input-dropdown .popover-body .dropdown-options.w-col-448{width:448px}.ta-input-dropdown .popover-body .dropdown-options.w-col-449{width:449px}.ta-input-dropdown .popover-body .dropdown-options.w-col-450{width:450px}.ta-input-dropdown .popover-body .dropdown-options.w-col-451{width:451px}.ta-input-dropdown .popover-body .dropdown-options.w-col-452{width:452px}.ta-input-dropdown .popover-body .dropdown-options.w-col-453{width:453px}.ta-input-dropdown .popover-body .dropdown-options.w-col-454{width:454px}.ta-input-dropdown .popover-body .dropdown-options.w-col-455{width:455px}.ta-input-dropdown .popover-body .dropdown-options.w-col-456{width:456px}.ta-input-dropdown .popover-body .dropdown-options.w-col-457{width:457px}.ta-input-dropdown .popover-body .dropdown-options.w-col-458{width:458px}.ta-input-dropdown .popover-body .dropdown-options.w-col-459{width:459px}.ta-input-dropdown .popover-body .dropdown-options.w-col-460{width:460px}.ta-input-dropdown .popover-body .dropdown-options.w-col-461{width:461px}.ta-input-dropdown .popover-body .dropdown-options.w-col-462{width:462px}.ta-input-dropdown .popover-body .dropdown-options.w-col-463{width:463px}.ta-input-dropdown .popover-body .dropdown-options.w-col-464{width:464px}.ta-input-dropdown .popover-body .dropdown-options.w-col-465{width:465px}.ta-input-dropdown .popover-body .dropdown-options.w-col-466{width:466px}.ta-input-dropdown .popover-body .dropdown-options.w-col-467{width:467px}.ta-input-dropdown .popover-body .dropdown-options.w-col-468{width:468px}.ta-input-dropdown .popover-body .dropdown-options.w-col-469{width:469px}.ta-input-dropdown .popover-body .dropdown-options.w-col-470{width:470px}.ta-input-dropdown .popover-body .dropdown-options.w-col-471{width:471px}.ta-input-dropdown .popover-body .dropdown-options.w-col-472{width:472px}.ta-input-dropdown .popover-body .dropdown-options.w-col-473{width:473px}.ta-input-dropdown .popover-body .dropdown-options.w-col-474{width:474px}.ta-input-dropdown .popover-body .dropdown-options.w-col-475{width:475px}.ta-input-dropdown .popover-body .dropdown-options.w-col-476{width:476px}.ta-input-dropdown .popover-body .dropdown-options.w-col-477{width:477px}.ta-input-dropdown .popover-body .dropdown-options.w-col-478{width:478px}.ta-input-dropdown .popover-body .dropdown-options.w-col-479{width:479px}.ta-input-dropdown .popover-body .dropdown-options.w-col-480{width:480px}.ta-input-dropdown .popover-body .dropdown-options.w-col-481{width:481px}.ta-input-dropdown .popover-body .dropdown-options.w-col-482{width:482px}.ta-input-dropdown .popover-body .dropdown-options.w-col-483{width:483px}.ta-input-dropdown .popover-body .dropdown-options.w-col-484{width:484px}.ta-input-dropdown .popover-body .dropdown-options.w-col-485{width:485px}.ta-input-dropdown .popover-body .dropdown-options.w-col-486{width:486px}.ta-input-dropdown .popover-body .dropdown-options.w-col-487{width:487px}.ta-input-dropdown .popover-body .dropdown-options.w-col-488{width:488px}.ta-input-dropdown .popover-body .dropdown-options.w-col-489{width:489px}.ta-input-dropdown .popover-body .dropdown-options.w-col-490{width:490px}.ta-input-dropdown .popover-body .dropdown-options.w-col-491{width:491px}.ta-input-dropdown .popover-body .dropdown-options.w-col-492{width:492px}.ta-input-dropdown .popover-body .dropdown-options.w-col-493{width:493px}.ta-input-dropdown .popover-body .dropdown-options.w-col-494{width:494px}.ta-input-dropdown .popover-body .dropdown-options.w-col-495{width:495px}.ta-input-dropdown .popover-body .dropdown-options.w-col-496{width:496px}.ta-input-dropdown .popover-body .dropdown-options.w-col-497{width:497px}.ta-input-dropdown .popover-body .dropdown-options.w-col-498{width:498px}.ta-input-dropdown .popover-body .dropdown-options.w-col-499{width:499px}.ta-input-dropdown .popover-body .dropdown-options.w-col-500{width:500px}.ta-input-dropdown .popover-body .dropdown-options.w-col-501{width:501px}.ta-input-dropdown .popover-body .dropdown-options.w-col-502{width:502px}.ta-input-dropdown .popover-body .dropdown-options.w-col-503{width:503px}.ta-input-dropdown .popover-body .dropdown-options.w-col-504{width:504px}.ta-input-dropdown .popover-body .dropdown-options.w-col-505{width:505px}.ta-input-dropdown .popover-body .dropdown-options.w-col-506{width:506px}.ta-input-dropdown .popover-body .dropdown-options.w-col-507{width:507px}.ta-input-dropdown .popover-body .dropdown-options.w-col-508{width:508px}.ta-input-dropdown .popover-body .dropdown-options.w-col-509{width:509px}.ta-input-dropdown .popover-body .dropdown-options.w-col-510{width:510px}.ta-input-dropdown .popover-body .dropdown-options.w-col-511{width:511px}.ta-input-dropdown .popover-body .dropdown-options.w-col-512{width:512px}.ta-input-dropdown .popover-body .dropdown-options.w-col-513{width:513px}.ta-input-dropdown .popover-body .dropdown-options.w-col-514{width:514px}.ta-input-dropdown .popover-body .dropdown-options.w-col-515{width:515px}.ta-input-dropdown .popover-body .dropdown-options.w-col-516{width:516px}.ta-input-dropdown .popover-body .dropdown-options.w-col-517{width:517px}.ta-input-dropdown .popover-body .dropdown-options.w-col-518{width:518px}.ta-input-dropdown .popover-body .dropdown-options.w-col-519{width:519px}.ta-input-dropdown .popover-body .dropdown-options.w-col-520{width:520px}.ta-input-dropdown .popover-body .dropdown-options.w-col-521{width:521px}.ta-input-dropdown .popover-body .dropdown-options.w-col-522{width:522px}.ta-input-dropdown .popover-body .dropdown-options.w-col-523{width:523px}.ta-input-dropdown .popover-body .dropdown-options.w-col-524{width:524px}.ta-input-dropdown .popover-body .dropdown-options.w-col-525{width:525px}.ta-input-dropdown .popover-body .dropdown-options.w-col-526{width:526px}.ta-input-dropdown .popover-body .dropdown-options.w-col-527{width:527px}.ta-input-dropdown .popover-body .dropdown-options.w-col-528{width:528px}.ta-input-dropdown .popover-body .dropdown-options.w-col-529{width:529px}.ta-input-dropdown .popover-body .dropdown-options.w-col-530{width:530px}.ta-input-dropdown .popover-body .dropdown-options.w-col-531{width:531px}.ta-input-dropdown .popover-body .dropdown-options.w-col-532{width:532px}.ta-input-dropdown .popover-body .dropdown-options.w-col-533{width:533px}.ta-input-dropdown .popover-body .dropdown-options.w-col-534{width:534px}.ta-input-dropdown .popover-body .dropdown-options.w-col-535{width:535px}.ta-input-dropdown .popover-body .dropdown-options.w-col-536{width:536px}.ta-input-dropdown .popover-body .dropdown-options.w-col-537{width:537px}.ta-input-dropdown .popover-body .dropdown-options.w-col-538{width:538px}.ta-input-dropdown .popover-body .dropdown-options.w-col-539{width:539px}.ta-input-dropdown .popover-body .dropdown-options.w-col-540{width:540px}.ta-input-dropdown .popover-body .dropdown-options.w-col-541{width:541px}.ta-input-dropdown .popover-body .dropdown-options.w-col-542{width:542px}.ta-input-dropdown .popover-body .dropdown-options.w-col-543{width:543px}.ta-input-dropdown .popover-body .dropdown-options.w-col-544{width:544px}.ta-input-dropdown .popover-body .dropdown-options.w-col-545{width:545px}.ta-input-dropdown .popover-body .dropdown-options.w-col-546{width:546px}.ta-input-dropdown .popover-body .dropdown-options.w-col-547{width:547px}.ta-input-dropdown .popover-body .dropdown-options.w-col-548{width:548px}.ta-input-dropdown .popover-body .dropdown-options.w-col-549{width:549px}.ta-input-dropdown .popover-body .dropdown-options.w-col-550{width:550px}.ta-input-dropdown .popover-body .dropdown-options.w-col-551{width:551px}.ta-input-dropdown .popover-body .dropdown-options.w-col-552{width:552px}.ta-input-dropdown .popover-body .dropdown-options.w-col-553{width:553px}.ta-input-dropdown .popover-body .dropdown-options.w-col-554{width:554px}.ta-input-dropdown .popover-body .dropdown-options.w-col-555{width:555px}.ta-input-dropdown .popover-body .dropdown-options.w-col-556{width:556px}.ta-input-dropdown .popover-body .dropdown-options.w-col-557{width:557px}.ta-input-dropdown .popover-body .dropdown-options.w-col-558{width:558px}.ta-input-dropdown .popover-body .dropdown-options.w-col-559{width:559px}.ta-input-dropdown .popover-body .dropdown-options.w-col-560{width:560px}.ta-input-dropdown .popover-body .dropdown-options.w-col-561{width:561px}.ta-input-dropdown .popover-body .dropdown-options.w-col-562{width:562px}.ta-input-dropdown .popover-body .dropdown-options.w-col-563{width:563px}.ta-input-dropdown .popover-body .dropdown-options.w-col-564{width:564px}.ta-input-dropdown .popover-body .dropdown-options.w-col-565{width:565px}.ta-input-dropdown .popover-body .dropdown-options.w-col-566{width:566px}.ta-input-dropdown .popover-body .dropdown-options.w-col-567{width:567px}.ta-input-dropdown .popover-body .dropdown-options.w-col-568{width:568px}.ta-input-dropdown .popover-body .dropdown-options.w-col-569{width:569px}.ta-input-dropdown .popover-body .dropdown-options.w-col-570{width:570px}.ta-input-dropdown .popover-body .dropdown-options.w-col-571{width:571px}.ta-input-dropdown .popover-body .dropdown-options.w-col-572{width:572px}.ta-input-dropdown .popover-body .dropdown-options.w-col-573{width:573px}.ta-input-dropdown .popover-body .dropdown-options.w-col-574{width:574px}.ta-input-dropdown .popover-body .dropdown-options.w-col-575{width:575px}.ta-input-dropdown .popover-body .dropdown-options.w-col-576{width:576px}.ta-input-dropdown .popover-body .dropdown-options.w-col-577{width:577px}.ta-input-dropdown .popover-body .dropdown-options.w-col-578{width:578px}.ta-input-dropdown .popover-body .dropdown-options.w-col-579{width:579px}.ta-input-dropdown .popover-body .dropdown-options.w-col-580{width:580px}.ta-input-dropdown .popover-body .dropdown-options.w-col-581{width:581px}.ta-input-dropdown .popover-body .dropdown-options.w-col-582{width:582px}.ta-input-dropdown .popover-body .dropdown-options.w-col-583{width:583px}.ta-input-dropdown .popover-body .dropdown-options.w-col-584{width:584px}.ta-input-dropdown .popover-body .dropdown-options.w-col-585{width:585px}.ta-input-dropdown .popover-body .dropdown-options.w-col-586{width:586px}.ta-input-dropdown .popover-body .dropdown-options.w-col-587{width:587px}.ta-input-dropdown .popover-body .dropdown-options.w-col-588{width:588px}.ta-input-dropdown .popover-body .dropdown-options.w-col-589{width:589px}.ta-input-dropdown .popover-body .dropdown-options.w-col-590{width:590px}.ta-input-dropdown .popover-body .dropdown-options.w-col-591{width:591px}.ta-input-dropdown .popover-body .dropdown-options.w-col-592{width:592px}.ta-input-dropdown .popover-body .dropdown-options.w-col-593{width:593px}.ta-input-dropdown .popover-body .dropdown-options.w-col-594{width:594px}.ta-input-dropdown .popover-body .dropdown-options.w-col-595{width:595px}.ta-input-dropdown .popover-body .dropdown-options.w-col-596{width:596px}.ta-input-dropdown .popover-body .dropdown-options.w-col-597{width:597px}.ta-input-dropdown .popover-body .dropdown-options.w-col-598{width:598px}.ta-input-dropdown .popover-body .dropdown-options.w-col-599{width:599px}.ta-input-dropdown .popover-body .dropdown-options.w-col-600{width:600px}.ta-input-dropdown .popover-body .dropdown-options.w-col-601{width:601px}.ta-input-dropdown .popover-body .dropdown-options.w-col-602{width:602px}.ta-input-dropdown .popover-body .dropdown-options.w-col-603{width:603px}.ta-input-dropdown .popover-body .dropdown-options.w-col-604{width:604px}.ta-input-dropdown .popover-body .dropdown-options.w-col-605{width:605px}.ta-input-dropdown .popover-body .dropdown-options.w-col-606{width:606px}.ta-input-dropdown .popover-body .dropdown-options.w-col-607{width:607px}.ta-input-dropdown .popover-body .dropdown-options.w-col-608{width:608px}.ta-input-dropdown .popover-body .dropdown-options.w-col-609{width:609px}.ta-input-dropdown .popover-body .dropdown-options.w-col-610{width:610px}.ta-input-dropdown .popover-body .dropdown-options.w-col-611{width:611px}.ta-input-dropdown .popover-body .dropdown-options.w-col-612{width:612px}.ta-input-dropdown .popover-body .dropdown-options.w-col-613{width:613px}.ta-input-dropdown .popover-body .dropdown-options.w-col-614{width:614px}.ta-input-dropdown .popover-body .dropdown-options.w-col-615{width:615px}.ta-input-dropdown .popover-body .dropdown-options.w-col-616{width:616px}.ta-input-dropdown .popover-body .dropdown-options.w-col-617{width:617px}.ta-input-dropdown .popover-body .dropdown-options.w-col-618{width:618px}.ta-input-dropdown .popover-body .dropdown-options.w-col-619{width:619px}.ta-input-dropdown .popover-body .dropdown-options.w-col-620{width:620px}.ta-input-dropdown .popover-body .dropdown-options.w-col-621{width:621px}.ta-input-dropdown .popover-body .dropdown-options.w-col-622{width:622px}.ta-input-dropdown .popover-body .dropdown-options.w-col-623{width:623px}.ta-input-dropdown .popover-body .dropdown-options.w-col-624{width:624px}.ta-input-dropdown .popover-body .dropdown-options.w-col-625{width:625px}.ta-input-dropdown .popover-body .dropdown-options.w-col-626{width:626px}.ta-input-dropdown .popover-body .dropdown-options.w-col-627{width:627px}.ta-input-dropdown .popover-body .dropdown-options.w-col-628{width:628px}.ta-input-dropdown .popover-body .dropdown-options.w-col-629{width:629px}.ta-input-dropdown .popover-body .dropdown-options.w-col-630{width:630px}.ta-input-dropdown .popover-body .dropdown-options.w-col-631{width:631px}.ta-input-dropdown .popover-body .dropdown-options.w-col-632{width:632px}.ta-input-dropdown .popover-body .dropdown-options.w-col-633{width:633px}.ta-input-dropdown .popover-body .dropdown-options.w-col-634{width:634px}.ta-input-dropdown .popover-body .dropdown-options.w-col-635{width:635px}.ta-input-dropdown .popover-body .dropdown-options.w-col-636{width:636px}.ta-input-dropdown .popover-body .dropdown-options.w-col-637{width:637px}.ta-input-dropdown .popover-body .dropdown-options.w-col-638{width:638px}.ta-input-dropdown .popover-body .dropdown-options.w-col-639{width:639px}.ta-input-dropdown .popover-body .dropdown-options.w-col-640{width:640px}.ta-input-dropdown .popover-body .dropdown-options.w-col-641{width:641px}.ta-input-dropdown .popover-body .dropdown-options.w-col-642{width:642px}.ta-input-dropdown .popover-body .dropdown-options.w-col-643{width:643px}.ta-input-dropdown .popover-body .dropdown-options.w-col-644{width:644px}.ta-input-dropdown .popover-body .dropdown-options.w-col-645{width:645px}.ta-input-dropdown .popover-body .dropdown-options.w-col-646{width:646px}.ta-input-dropdown .popover-body .dropdown-options.w-col-647{width:647px}.ta-input-dropdown .popover-body .dropdown-options.w-col-648{width:648px}.ta-input-dropdown .popover-body .dropdown-options.w-col-649{width:649px}.ta-input-dropdown .popover-body .dropdown-options.w-col-650{width:650px}.ta-input-dropdown .popover-body .dropdown-options.w-col-651{width:651px}.ta-input-dropdown .popover-body .dropdown-options.w-col-652{width:652px}.ta-input-dropdown .popover-body .dropdown-options.w-col-653{width:653px}.ta-input-dropdown .popover-body .dropdown-options.w-col-654{width:654px}.ta-input-dropdown .popover-body .dropdown-options.w-col-655{width:655px}.ta-input-dropdown .popover-body .dropdown-options.w-col-656{width:656px}.ta-input-dropdown .popover-body .dropdown-options.w-col-657{width:657px}.ta-input-dropdown .popover-body .dropdown-options.w-col-658{width:658px}.ta-input-dropdown .popover-body .dropdown-options.w-col-659{width:659px}.ta-input-dropdown .popover-body .dropdown-options.w-col-660{width:660px}.ta-input-dropdown .popover-body .dropdown-options.w-col-661{width:661px}.ta-input-dropdown .popover-body .dropdown-options.w-col-662{width:662px}.ta-input-dropdown .popover-body .dropdown-options.w-col-663{width:663px}.ta-input-dropdown .popover-body .dropdown-options.w-col-664{width:664px}.ta-input-dropdown .popover-body .dropdown-options.w-col-665{width:665px}.ta-input-dropdown .popover-body .dropdown-options.w-col-666{width:666px}.ta-input-dropdown .popover-body .dropdown-options.w-col-667{width:667px}.ta-input-dropdown .popover-body .dropdown-options.w-col-668{width:668px}.ta-input-dropdown .popover-body .dropdown-options.w-col-669{width:669px}.ta-input-dropdown .popover-body .dropdown-options.w-col-670{width:670px}.ta-input-dropdown .popover-body .dropdown-options.w-col-671{width:671px}.ta-input-dropdown .popover-body .dropdown-options.w-col-672{width:672px}.ta-input-dropdown .popover-body .dropdown-options.w-col-673{width:673px}.ta-input-dropdown .popover-body .dropdown-options.w-col-674{width:674px}.ta-input-dropdown .popover-body .dropdown-options.w-col-675{width:675px}.ta-input-dropdown .popover-body .dropdown-options.w-col-676{width:676px}.ta-input-dropdown .popover-body .dropdown-options.w-col-677{width:677px}.ta-input-dropdown .popover-body .dropdown-options.w-col-678{width:678px}.ta-input-dropdown .popover-body .dropdown-options.w-col-679{width:679px}.ta-input-dropdown .popover-body .dropdown-options.w-col-680{width:680px}.ta-input-dropdown .popover-body .dropdown-options.w-col-681{width:681px}.ta-input-dropdown .popover-body .dropdown-options.w-col-682{width:682px}.ta-input-dropdown .popover-body .dropdown-options.w-col-683{width:683px}.ta-input-dropdown .popover-body .dropdown-options.w-col-684{width:684px}.ta-input-dropdown .popover-body .dropdown-options.w-col-685{width:685px}.ta-input-dropdown .popover-body .dropdown-options.w-col-686{width:686px}.ta-input-dropdown .popover-body .dropdown-options.w-col-687{width:687px}.ta-input-dropdown .popover-body .dropdown-options.w-col-688{width:688px}.ta-input-dropdown .popover-body .dropdown-options.w-col-689{width:689px}.ta-input-dropdown .popover-body .dropdown-options.w-col-690{width:690px}.ta-input-dropdown .popover-body .dropdown-options.w-col-691{width:691px}.ta-input-dropdown .popover-body .dropdown-options.w-col-692{width:692px}.ta-input-dropdown .popover-body .dropdown-options.w-col-693{width:693px}.ta-input-dropdown .popover-body .dropdown-options.w-col-694{width:694px}.ta-input-dropdown .popover-body .dropdown-options.w-col-695{width:695px}.ta-input-dropdown .popover-body .dropdown-options.w-col-696{width:696px}.ta-input-dropdown .popover-body .dropdown-options.w-col-697{width:697px}.ta-input-dropdown .popover-body .dropdown-options.w-col-698{width:698px}.ta-input-dropdown .popover-body .dropdown-options.w-col-699{width:699px}.ta-input-dropdown .popover-body .dropdown-options.w-col-700{width:700px}.ta-input-dropdown .popover-body .dropdown-options.w-col-701{width:701px}.ta-input-dropdown .popover-body .dropdown-options.w-col-702{width:702px}.ta-input-dropdown .popover-body .dropdown-options.w-col-703{width:703px}.ta-input-dropdown .popover-body .dropdown-options.w-col-704{width:704px}.ta-input-dropdown .popover-body .dropdown-options.w-col-705{width:705px}.ta-input-dropdown .popover-body .dropdown-options.w-col-706{width:706px}.ta-input-dropdown .popover-body .dropdown-options.w-col-707{width:707px}.ta-input-dropdown .popover-body .dropdown-options.w-col-708{width:708px}.ta-input-dropdown .popover-body .dropdown-options.w-col-709{width:709px}.ta-input-dropdown .popover-body .dropdown-options.w-col-710{width:710px}.ta-input-dropdown .popover-body .dropdown-options.w-col-711{width:711px}.ta-input-dropdown .popover-body .dropdown-options.w-col-712{width:712px}.ta-input-dropdown .popover-body .dropdown-options.w-col-713{width:713px}.ta-input-dropdown .popover-body .dropdown-options.w-col-714{width:714px}.ta-input-dropdown .popover-body .dropdown-options.w-col-715{width:715px}.ta-input-dropdown .popover-body .dropdown-options.w-col-716{width:716px}.ta-input-dropdown .popover-body .dropdown-options.w-col-717{width:717px}.ta-input-dropdown .popover-body .dropdown-options.w-col-718{width:718px}.ta-input-dropdown .popover-body .dropdown-options.w-col-719{width:719px}.ta-input-dropdown .popover-body .dropdown-options.w-col-720{width:720px}.ta-input-dropdown .popover-body .dropdown-options.w-col-721{width:721px}.ta-input-dropdown .popover-body .dropdown-options.w-col-722{width:722px}.ta-input-dropdown .popover-body .dropdown-options.w-col-723{width:723px}.ta-input-dropdown .popover-body .dropdown-options.w-col-724{width:724px}.ta-input-dropdown .popover-body .dropdown-options.w-col-725{width:725px}.ta-input-dropdown .popover-body .dropdown-options.w-col-726{width:726px}.ta-input-dropdown .popover-body .dropdown-options.w-col-727{width:727px}.ta-input-dropdown .popover-body .dropdown-options.w-col-728{width:728px}.ta-input-dropdown .popover-body .dropdown-options.w-col-729{width:729px}.ta-input-dropdown .popover-body .dropdown-options.w-col-730{width:730px}.ta-input-dropdown .popover-body .dropdown-options.w-col-731{width:731px}.ta-input-dropdown .popover-body .dropdown-options.w-col-732{width:732px}.ta-input-dropdown .popover-body .dropdown-options.w-col-733{width:733px}.ta-input-dropdown .popover-body .dropdown-options.w-col-734{width:734px}.ta-input-dropdown .popover-body .dropdown-options.w-col-735{width:735px}.ta-input-dropdown .popover-body .dropdown-options.w-col-736{width:736px}.ta-input-dropdown .popover-body .dropdown-options.w-col-737{width:737px}.ta-input-dropdown .popover-body .dropdown-options.w-col-738{width:738px}.ta-input-dropdown .popover-body .dropdown-options.w-col-739{width:739px}.ta-input-dropdown .popover-body .dropdown-options.w-col-740{width:740px}.ta-input-dropdown .popover-body .dropdown-options.w-col-741{width:741px}.ta-input-dropdown .popover-body .dropdown-options.w-col-742{width:742px}.ta-input-dropdown .popover-body .dropdown-options.w-col-743{width:743px}.ta-input-dropdown .popover-body .dropdown-options.w-col-744{width:744px}.ta-input-dropdown .popover-body .dropdown-options.w-col-745{width:745px}.ta-input-dropdown .popover-body .dropdown-options.w-col-746{width:746px}.ta-input-dropdown .popover-body .dropdown-options.w-col-747{width:747px}.ta-input-dropdown .popover-body .dropdown-options.w-col-748{width:748px}.ta-input-dropdown .popover-body .dropdown-options.w-col-749{width:749px}.ta-input-dropdown .popover-body .dropdown-options.w-col-750{width:750px}.ta-input-dropdown .popover-body .dropdown-options.w-col-751{width:751px}.ta-input-dropdown .popover-body .dropdown-options.w-col-752{width:752px}.ta-input-dropdown .popover-body .dropdown-options.w-col-753{width:753px}.ta-input-dropdown .popover-body .dropdown-options.w-col-754{width:754px}.ta-input-dropdown .popover-body .dropdown-options.w-col-755{width:755px}.ta-input-dropdown .popover-body .dropdown-options.w-col-756{width:756px}.ta-input-dropdown .popover-body .dropdown-options.w-col-757{width:757px}.ta-input-dropdown .popover-body .dropdown-options.w-col-758{width:758px}.ta-input-dropdown .popover-body .dropdown-options.w-col-759{width:759px}.ta-input-dropdown .popover-body .dropdown-options.w-col-760{width:760px}.ta-input-dropdown .popover-body .dropdown-options.w-col-761{width:761px}.ta-input-dropdown .popover-body .dropdown-options.w-col-762{width:762px}.ta-input-dropdown .popover-body .dropdown-options.w-col-763{width:763px}.ta-input-dropdown .popover-body .dropdown-options.w-col-764{width:764px}.ta-input-dropdown .popover-body .dropdown-options.w-col-765{width:765px}.ta-input-dropdown .popover-body .dropdown-options.w-col-766{width:766px}.ta-input-dropdown .popover-body .dropdown-options.w-col-767{width:767px}.ta-input-dropdown .popover-body .dropdown-options.w-col-768{width:768px}.ta-input-dropdown .popover-body .dropdown-options.w-col-769{width:769px}.ta-input-dropdown .popover-body .dropdown-options.w-col-770{width:770px}.ta-input-dropdown .popover-body .dropdown-options.w-col-771{width:771px}.ta-input-dropdown .popover-body .dropdown-options.w-col-772{width:772px}.ta-input-dropdown .popover-body .dropdown-options.w-col-773{width:773px}.ta-input-dropdown .popover-body .dropdown-options.w-col-774{width:774px}.ta-input-dropdown .popover-body .dropdown-options.w-col-775{width:775px}.ta-input-dropdown .popover-body .dropdown-options.w-col-776{width:776px}.ta-input-dropdown .popover-body .dropdown-options.w-col-777{width:777px}.ta-input-dropdown .popover-body .dropdown-options.w-col-778{width:778px}.ta-input-dropdown .popover-body .dropdown-options.w-col-779{width:779px}.ta-input-dropdown .popover-body .dropdown-options.w-col-780{width:780px}.ta-input-dropdown .popover-body .dropdown-options.w-col-781{width:781px}.ta-input-dropdown .popover-body .dropdown-options.w-col-782{width:782px}.ta-input-dropdown .popover-body .dropdown-options.w-col-783{width:783px}.ta-input-dropdown .popover-body .dropdown-options.w-col-784{width:784px}.ta-input-dropdown .popover-body .dropdown-options.w-col-785{width:785px}.ta-input-dropdown .popover-body .dropdown-options.w-col-786{width:786px}.ta-input-dropdown .popover-body .dropdown-options.w-col-787{width:787px}.ta-input-dropdown .popover-body .dropdown-options.w-col-788{width:788px}.ta-input-dropdown .popover-body .dropdown-options.w-col-789{width:789px}.ta-input-dropdown .popover-body .dropdown-options.w-col-790{width:790px}.ta-input-dropdown .popover-body .dropdown-options.w-col-791{width:791px}.ta-input-dropdown .popover-body .dropdown-options.w-col-792{width:792px}.ta-input-dropdown .popover-body .dropdown-options.w-col-793{width:793px}.ta-input-dropdown .popover-body .dropdown-options.w-col-794{width:794px}.ta-input-dropdown .popover-body .dropdown-options.w-col-795{width:795px}.ta-input-dropdown .popover-body .dropdown-options.w-col-796{width:796px}.ta-input-dropdown .popover-body .dropdown-options.w-col-797{width:797px}.ta-input-dropdown .popover-body .dropdown-options.w-col-798{width:798px}.ta-input-dropdown .popover-body .dropdown-options.w-col-799{width:799px}.ta-input-dropdown .popover-body .dropdown-options.w-col-800{width:800px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header{font-size:11px;color:#ccc;font-weight:700;text-transform:uppercase;line-height:14px;padding:8px 6px 0;margin-bottom:8px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#ccc;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:11px;width:14px;height:10px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header{margin:0 0 4px;padding:8px 0 0 4px;color:#ccc;font-size:11px;text-transform:capitalize}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new{font-size:11px;line-height:14px;font-weight:700;color:#6f9ee0;padding:4px;margin:0;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options{display:grid;grid-template-columns:141px 135px;grid-column-gap:10px;column-gap:10px;align-items:center;padding:3px 4px;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#fff;display:block;width:100%}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:-26px;width:14px;height:10px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text{color:#919191;font-size:11px;font-weight:400;position:relative;text-align:right}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400;color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{font-weight:500;color:#6f9ee0!important}.ta-input-dropdown .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:0!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template{top:-6px}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ta-dropdown-popover{z-index:999999}.ta-dropdown-popover .arrow{display:none!important}.ta-dropdown-popover .popover-body{z-index:99999999}.ta-dropdown-popover .popover-body .options{position:relative;top:3px;z-index:1000;max-height:198px;width:100%;background-color:#2f2f2f;border-radius:2px;padding:2px;overflow:hidden}.ta-dropdown-popover .popover-body .options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar{width:3px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-dropdown-popover .popover-body .options .option{position:relative;padding:3px;height:26px;font-size:14px;line-height:18px;font-weight:400;border-radius:2px;white-space:nowrap;text-overflow:ellipsis;color:#fff;display:flex;gap:4px}.ta-dropdown-popover .popover-body .options .option::-moz-selection{color:#fff;background-color:#fff3}.ta-dropdown-popover .popover-body .options .option:nth-last-child(1){margin-bottom:0}.ta-dropdown-popover .popover-body .options .option:hover{background-color:#1d1d1d;border-radius:2px;cursor:pointer}.ta-dropdown-popover .popover-body .options .option.add-option{color:#6f9ee0;font-weight:600}.ta-dropdown-popover .popover-body .options .option.add-option:after{content:\"\";height:2px;width:100%;background-color:#aaa3;border-radius:1px;position:absolute;bottom:0;left:0}.selected-item-container{height:52px;padding:6px;background:#e9effd;position:relative;border-radius:2px;transition:background .3s ease-in-out}.selected-item-container:hover{background:#bed0f9}.selected-item-container:hover .selected-item-additional .selected-item-info svg-icon svg path{fill:#3b73ed}.selected-item-container:hover .clear-selected-item{display:flex;align-items:center}.selected-item-container .selected-item-label{position:absolute;top:-16px;font-size:11px;font-weight:600;color:#424242;-webkit-user-select:none;user-select:none}.selected-item-container .selected-item-label span{color:#df3c3c}.selected-item-container .selected-item-name{font-size:14px;line-height:18px;color:#424242}.selected-item-container .selected-item-name::selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name .selected-item-star{position:relative;bottom:2px}.selected-item-container .selected-item-name .selected-item-star svg{margin-left:6px}.selected-item-container .selected-item-name .selected-item-star svg path{fill:#6692f1}.selected-item-container .selected-item-additional{gap:22px}.selected-item-container .selected-item-additional .selected-item-info svg-icon{width:14px}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg{width:100%;height:100%}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg path{fill:#6692f1;transition:fill .3s ease-in-out}.selected-item-container .selected-item-additional .selected-item-info .hide-svg-on-copy{display:none}.selected-item-container .clear-selected-item{position:absolute;right:4px;top:0;display:none;gap:6px}.selected-item-container .clear-selected-item .clear-x{cursor:pointer;transition:transform .3s ease-in-out}.selected-item-container .clear-selected-item .clear-x:hover{transform:scale(1.2)}.selected-item-container .clear-selected-item .clear-x svg path{fill:#bed0f9}.selected-item-container .clear-selected-item .clear-x svg rect{fill:#6692f1}.selected-item-container .clear-selected-item .clear-x:hover svg rect{fill:#0b49d1}.selected-item-container.non-editable{background-color:#f7f7f7}.selected-item-container.non-editable .selected-item-label,.selected-item-container.non-editable .selected-item-name{color:#919191}.selected-item-container.non-editable .selected-item-additional .selected-item-info svg-icon svg path{fill:#ccc}.selected-item-container.non-editable .selected-item-additional .selected-item-info p{color:#919191}.dropdown-trailer-hover:hover .ic_truck_semi-truck svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_truck_semi-wSleeper svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_truck_box-truck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_truck_cargo-van svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_truck_tow-truck svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_truck_car-hauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_truck_spotter svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_reefer svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_trailer_dryvan svg path{fill:#8785e8}.dropdown-trailer-hover:hover .ic_trailer_side-kit svg path{fill:#ff906d}.dropdown-trailer-hover:hover .ic_trailer_conestoga svg path{fill:#daad4f}.dropdown-trailer-hover:hover .ic_trailer_dumper svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_trailer_container svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_trailer_tanker svg path{fill:#77bf56}.dropdown-trailer-hover:hover .ic_trailer_carhauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_trailer_flatbed svg path{fill:#ed9292}.dropdown-trailer-hover:hover .ic_trailer_low-boy svg path{fill:#df3c3c}.dropdown-trailer-hover:hover .ic_trailer_chassis svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_step-deck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_trailer_tanker_pneumatic svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_carhauler_stinger svg path{fill:#df3d85}.hide-after-arrow .dropdown-option.active:after{display:none!important}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-main-tooltip{pointer-events:none}.app-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.tooltip-arrow{display:none!important}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}p{margin-bottom:0!important}.desc::selection{color:#6c6c6c;background:#6c6c6c33}.details-container-items{display:grid;grid-template-columns:440px repeat(4,335px);column-gap:12px;row-gap:12px;padding-bottom:12px}.details-component{display:grid;grid-auto-flow:column;column-gap:12px;row-gap:12px}.details-component .truck-wrapper{background-color:#dadada;border-radius:3px;margin-bottom:8px;width:440px;height:226px}.details-component .truck-wrapper p{margin:0}.details-component .truck-wrapper .truck-card-top{display:flex;align-items:center;justify-content:space-between}.details-component .truck-wrapper .truck-card-top .truck-card-name{color:#6c6c6c;font-size:18px;font-weight:500;position:relative;top:1px}.details-component .truck-wrapper .truck-card-top .truck-card-name::selection{color:#6c6c6c;background:#b7b7b733}.details-component .truck-wrapper .details-page-row-5{margin-top:8px}.details-component .truck-wrapper .details-page-row-7{height:236px;width:100%;margin:22px 0}.details-component .truck-wrapper .show-details{font-size:12px;font-weight:700;color:#778fbb;text-decoration:none;-webkit-user-select:none;user-select:none}.details-component .truck-wrapper .show-details:hover{transition:all .3s ease-in-out;cursor:pointer;text-decoration:underline;color:#5673aa}.details-component .details-cards{border-radius:3px;overflow:hidden;width:440px;background-color:#dadada;padding:1px 8px 0}.details-component .details-cards.trailer-details-card{padding:0 8px}.assign-to{position:relative;left:-3px;display:grid;grid-template-columns:204px 204px;column-gap:12px;padding:0}.assign-to .assign-to-vehicle svg{width:55px;height:20px;display:flex;align-items:center}.assign-to .assign-to-vehicle svg:hover path{fill:#6c6c6c!important}.assign-to .assign-to-vehicle svg path{fill:#aaa}.assign-to .first .assign-to-vehicle svg{display:flex;align-items:center}.assign-to .first:hover .open-modal-icon{display:block;position:relative;bottom:4px;height:18px;width:18px}.assign-to .first:hover .open-modal-icon svg{cursor:pointer}.assign-to .first:hover .open-modal-icon svg:hover path{fill:#6c6c6c}.assign-to .second .icon-text-wrapper-cmp{position:relative;top:1px}.assign-to .second .assign-to-vehicle svg{display:flex}.assign-to .second:hover .open-modal-icon2{display:block;height:18px;width:18px;position:relative;bottom:4px}.assign-to .second:hover .open-modal-icon2 svg{cursor:pointer}.assign-to .second:hover .open-modal-icon2 svg:hover path{fill:#6c6c6c}.assign-to .assign-to-item{background-color:#f7f7f7;border-radius:2px;display:flex;align-items:center}.assign-to .assign-to-item .icon-text-wrapper-cmp{display:flex;align-items:center;padding-left:6px;margin:7px 0}.assign-to .assign-to-item .semi-tooltip{width:40px;height:20px}.assign-to .assign-to-item .semi-tooltip.typeDetails{width:auto}.assign-to .assign-to-item svg{fill:#aaa;object-fit:fill;height:20px;width:55px}.assign-to .assign-to-item .open-modal-icon,.assign-to .assign-to-item .open-modal-icon2{display:none}.assign-to .assign-to-item .assign-to-vehicle{margin-right:6px;position:relative;bottom:0}.assign-to .assign-to-item .assign-to-vehicle.backImage{margin-right:0}.assign-to .assign-to-item .assign-to-value{font-size:14px;font-weight:500;color:#424242;line-height:18px;padding:4px 6px}.assign-to .assign-to-item .assign-to-value::selection{color:#424242;background:#42424233}.assign-to .assign-to-item .assign-to-value.inactive-assignTo-value{color:#aaa;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.assign-to .assign-to-item p{margin:0!important}.card-container .card-body-cdl{display:grid;padding:0 4px}.card-container .card-body-cdl .card-item-name{font-size:11px;color:#2f2f2f;font-weight:700;height:15px;margin-bottom:2px}.card-container .card-body-cdl .card-item-name::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap;height:18px}.card-container .card-body-cdl .card-item-value::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value:hover{color:#2f2f2f}.card-container .card-body-cdl .card-row-issued{display:grid;grid-template-columns:32px 32px 32px;column-gap:49px;margin-top:12px}.card-container .card-body-cdl .card-row-endor{display:grid;grid-template-columns:repeat(auto-fit,minmax(20%,1fr));gap:6px;margin-bottom:4px}.card-container .card-body-cdl .card-row-progress{margin-top:8px}.card-container .card-body-cdl .endorsement{margin-top:12px}.perfomance{display:flex!important;flex-direction:column}.perfomance .common-template-item-name{font-size:14px!important;font-weight:600!important}.perfomance .common-template-item-value{font-size:18px!important;font-weight:600!important}.card-pdf{padding:0 5px;margin-bottom:12px}.card-pdf.extended{margin-bottom:30px}.card-pdf.disabled{height:0!important;margin:0!important;padding:0!important}.status-container{padding-top:12px;display:flex;flex-direction:column;margin-bottom:-12px!important}.status-container .status-header{display:flex;justify-content:space-between;align-items:center}.status-container .status-header .status-item{height:18px}.status-container .status-header .status-item .p-status{font-size:14px;font-weight:700;color:#2f2f2f}.status-container .status-header .status-item .p-status::selection{color:#2f2f2f;background:#91919133}.status-container .status-header .status-item .p-status .note-textarea{color:#6c6c6c!important;font-weight:500!important}.status-container .status-header .status-item .p-status .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea span::selection,.status-container .status-header .status-item .p-status .note-textarea div::selection,.status-container .status-header .status-item .p-status .note-textarea b::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#dadada\"]::selection{color:#dadada!important;background:#dadada33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\" $ta-blue-13\"]::selection{color:#6692f1!important;background:#6692f133!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#56b4ac\"]::selection{color:#56b4ac!important;background:#56b4ac33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#e66767\"]::selection{color:#e66767!important;background:#e6676733!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#fab15c\"]::selection{color:#fab15c!important;background:#fab15c33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#b370f0\"]::selection{color:#b370f0!important;background:#b370f033!important}.status-container .status-items .item-wrapper{display:grid;grid-template-columns:119px 137px 78px;grid-column-gap:45px;align-content:center;justify-content:center}.status-container .status-items .item-wrapper .svg-text{display:flex;align-items:center}.status-container .status-items .item-wrapper .svg-text .employment{margin-left:6px;position:relative;bottom:-2px}.status-container .status-items .item-wrapper .duration{text-align:right}.status-container .status-items .item-wrapper p{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap}.status-container .status-items .item-wrapper p::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p span::selection{color:#6c6c6c;background:#6c6c6c33}.charts-template{display:grid;grid-template-columns:215px 1fr;grid-row-gap:12px;row-gap:12px;margin-bottom:12px}.charts-template .charts-template-item{display:flex;flex-direction:column}.charts-template .charts-template-item .icon-name-item{display:flex;align-items:baseline;height:18px}.charts-template .charts-template-item .icon-name-item .charts-template-item-name{margin-right:4px}.charts-template .charts-template-item .charts-template-item-name{font-size:11px;color:#424242;font-weight:700;line-height:14px}.charts-template .charts-template-item .charts-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value{font-size:18px;font-weight:500;color:#424242;width:220px}.charts-template .charts-template-item .charts-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.second-progress{margin-bottom:16px}.truck-details-wrapper{padding:0 12px}.truck-details-wrapper .truck svg{width:132px;height:48px}.truck-details-wrapper .details-header-avatar{display:flex;align-items:center;height:48px;margin-top:14px}.truck-details-wrapper .details-header-avatar .model-name{flex-direction:column;margin-left:12px;margin-top:12px}.truck-details-wrapper .details-header-avatar .model-name p{font-size:18px;font-weight:500;color:#2f2f2f}.truck-details-wrapper .details-header-avatar .model-name p::selection{color:#6c6c6c;background:#6c6c6c33}.truck-details-wrapper .details-header-avatar .model-name .svg-wrapper{height:14px;display:flex;align-items:flex-end;margin-bottom:2px}.truck-details-wrapper .details-header-avatar .model-name svg path{fill:#424242;object-fit:fill}.truck-details-wrapper .details-header-avatar .model-name svg rect{fill:#aaa}.truck-details-wrapper .details-header-data{margin-top:14px}.truck-details-wrapper .details-header-data .details-header-data-item{display:flex;height:18px;align-items:center}.truck-details-wrapper .details-header-data .details-header-data-item p{font-size:18px;color:#2f2f2f;font-weight:400}.truck-details-wrapper .details-header-data .details-header-data-item .header-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .details-header-data .second{margin-top:14px;margin-bottom:14px}.truck-details-wrapper .details-header-data .second p{font-size:14px!important;color:#2f2f2f;font-weight:400;position:relative;bottom:-1px}.truck-details-wrapper .details-header-data .second .date{margin-left:8px!important;position:relative}.truck-details-wrapper .color-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .vin-text{margin-left:6px!important;margin-right:37px;position:relative;bottom:-1px!important}.common-template{display:grid;grid-template-columns:202px 1fr;row-gap:12px}.common-template .common-item-wrapper{display:flex;align-items:center;height:40px}.common-template .common-template-item{display:flex;flex-direction:column}.common-template .common-template-item::selection{color:#6c6c6c;background:#6c6c6c33}.common-template .common-template-item .icon-name-item{display:flex;align-items:center;height:18px}.common-template .common-template-item .icon-name-item .common-template-item-name{margin-left:6px}.common-template .common-template-item .common-template-item-name{font-size:11px;font-weight:600;color:#424242}.common-template .common-template-item .common-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value{font-size:14px;font-weight:500;color:#424242;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.common-template .common-template-item .common-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.divider{margin:0;height:2px;width:100%;border-radius:1px;background-color:#f3f3f3}.card_files_holder.active{min-height:448px}.note-cards .note-body{padding-left:0!important;padding-right:2px!important}.note-cards .note-body .note-textarea{color:#6c6c6c!important;font-weight:400!important;padding-bottom:12px!important}.note-cards .note-body .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.vin-text::selection{color:#6c6c6c;background:#6c6c6c33}.no-data-driver-details{font-size:14px;font-weight:400;color:#919191}.no-data-driver-details::selection{color:#919191;background:#b7b7b733}.owner-items{display:flex;align-items:center;height:18px}.owner-items .card-icon{display:none;cursor:pointer;margin-left:6px}.owner-items .information-value{font-size:14px;font-weight:400;color:#6c6c6c;margin-left:6px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.owner-items .information-value::selection{color:#6c6c6c;background:#6c6c6c33}.owner-items:hover .card-icon{display:flex}.copied .vin-text,.copied .information-value{animation-duration:1.5s;animation-name:change}.copied .card-icon svg path{animation-duration:1.5s;animation-name:changeSVG}.copied .card-icon svg path:hover{animation-duration:1.5s;animation-name:changeSVG}.hide-show{font-size:14px;color:#6d82c7;font-weight:600;margin-left:6px;cursor:pointer}.hide-show::selection{color:#6d82c7;background:#536bc233}.hide-show:hover{color:#536bc2}.bind-height{max-height:-moz-fit-content!important;max-height:fit-content!important}.card-width{width:335px}.icons-details{margin-right:6px}.date-details-svg{margin-left:29px}.note-details-holder{padding-right:6px;padding-left:3px}.note-details-holder .note-container .note-header.active .note-label{color:#6c6c6c!important}.note-details-holder .note-container .note-header .note_upper_hold svg path{fill:#919191}.note-details-holder .note-container .note-header .note_upper_hold .rotate svg path{fill:#aaa}.boldSanVin{font-weight:800}@media (max-width: 1910px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,320px)}.card-width{width:320px}.repair-details-container,.repair-details-cmp{grid-template-columns:440px 712px 320px 260px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 145px!important}.repair-container{width:712px!important}.repaired-vehicle-container{width:320px!important}.likes-count-container{width:260px}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 50px 46px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 79px 52px 66px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 325px!important}.counter-text{padding:0 0 0 8px!important}.reason-span{display:none}app-shipper-details .load,app-broker-details .load{width:712px!important}app-shipper-details .contact,app-broker-details .contact{width:320px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:320px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:260px!important}app-shipper-details .review-container,app-broker-details .review-container{width:260px!important}}@media (max-width: 1870px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,300px)}.card-width{width:300px}}@media (max-width: 1850px){.repair-details-container,.repair-details-cmp{grid-template-columns:430px 702px 310px 250px!important}.repair-general-holder{width:430px}.repair-container{width:702px!important}.repaired-vehicle-container{width:310px!important}.likes-count-container{width:250px}.repair-component{height:max-content}.repair-component .repair-cards{width:430px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 37px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 40px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:430px!important}app-shipper-details .load,app-broker-details .load{width:702px!important}app-shipper-details .contact,app-broker-details .contact{width:310px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:310px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:250px!important}app-shipper-details .review-container,app-broker-details .review-container{width:250px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:407px!important}}@media (max-width: 1820px){.repair-details-container,.repair-details-cmp{grid-template-columns:420px 692px 300px 240px!important}.repair-general-holder{width:420px}.repair-container{width:692px!important}.repaired-vehicle-container{width:300px!important}.likes-count-container{width:240px}.repair-component .repair-cards{width:420px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 100px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 99px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 27px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 29px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:420px!important}app-shipper-details .load,app-broker-details .load{width:692px!important}app-shipper-details .contact,app-broker-details .contact{width:300px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:300px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:240px!important}app-shipper-details .review-container,app-broker-details .review-container{width:240px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:396px!important}}@media (max-width: 1780px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,280px)}.card-width{width:280px}.request-header-container{width:26px!important;height:26px!important}.request-header-container p{display:none}.request-header-container svg-icon{display:flex!important;transition:background .2s ease-in}.request-header-container svg-icon:hover{background:#e9effd!important}.request-header-container svg-icon:hover svg path{fill:#0b49d1}.repair-details-container{grid-template-columns:475px 760px 410px 0px!important}.repair-general-holder{width:475px}.repair-container{width:760px!important}.repaired-vehicle-container{width:410px!important;max-width:410px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:475px!important}.repair-component .repair-cards{width:475px!important}.repair-details-cmp{grid-template-columns:475px 760px 410px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:-moz-fit-content;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:410px!important;max-width:410px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:410px!important;max-width:410px!important}.purchase-template{display:grid;grid-template-columns:repeat(2,50%)!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:475px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:475px!important;max-width:475px!important}app-shipper-details .load,app-broker-details .load{width:760px!important}app-shipper-details .contact,app-broker-details .contact{width:410px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:410px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:410px!important}app-shipper-details .review-container,app-broker-details .review-container{width:410px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:450px!important}}@media (max-width: 1760px){.repair-details-container{grid-template-columns:455px 740px 390px 0px!important}.repair-general-holder{width:455px}.repair-container{width:740px!important}.repaired-vehicle-container{width:390px!important;max-width:390px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:455px!important}.repair-component .repair-cards{width:455px!important}.repair-details-cmp{grid-template-columns:455px 740px 390px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:-moz-fit-content;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:390px!important;max-width:390px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:390px!important;max-width:390px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:455px!important;max-width:455px!important}app-shipper-details .load,app-broker-details .load{width:740px!important}app-shipper-details .contact,app-broker-details .contact{width:390px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:390px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:390px!important}app-shipper-details .review-container,app-broker-details .review-container{width:390px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:430px!important}}@media (max-width: 1700px){.details-container-items{display:grid;grid-template-columns:420px repeat(4,270px)}.card-width{width:270px}.cards-item-wrapper-1,.details-component .details-cards{width:420px}.repair-details-container{grid-template-columns:400px 740px 390px 0px!important}.repair-general-holder{width:400px}.details-header-wrapper-reapirShop{max-width:400px!important}.repair-component .repair-cards{width:400px!important}.repair-details-cmp{grid-template-columns:400px 740px 390px 0px!important}.longText{display:none!important}.shortText{display:block!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 105px 92px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:400px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:377px!important}.details-container-items{display:grid;grid-template-columns:400px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:400px}.assign-to{grid-template-columns:185px 185px}}@media (max-width: 1640px){.repair-details-container{grid-template-columns:400px 720px 370px 0px!important}.repair-container{width:720px!important}.repaired-vehicle-container{width:370px!important;max-width:370px!important}.repair-details-cmp{grid-template-columns:400px 720px 370px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:370px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:370px!important;max-width:370px!important}app-shipper-details .load,app-broker-details .load{width:720px!important}app-shipper-details .contact,app-broker-details .contact{width:370px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:370px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:370px!important}app-shipper-details .review-container,app-broker-details .review-container{width:370px!important}}@media (max-width: 1610px){.details-container-items{display:grid;grid-template-columns:380px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:380px}.assign-to{grid-template-columns:175px 175px}.repair-details-container{grid-template-columns:380px 710px 350px 0px!important}.repair-container{width:710px!important}.repaired-vehicle-container{width:350px!important;max-width:350px!important}.repair-details-cmp{grid-template-columns:380px 710px 350px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:350px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:350px!important;max-width:350px!important}.repair-component .repair-cards{width:380px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 86px 92px!important}app-shipper-details-card .hours-template{grid-template-columns:150px 150px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:380px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:356px!important}}@media (max-width: 1590px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,260px)}.details-component .details-cards,.cards-item-wrapper-1{width:360px}.card-width{width:260px}.reason-span{display:none}.assign-to{grid-template-columns:162px 162px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 710px 350px 0px!important}.repair-component .repair-cards{width:360px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 91px 70px!important}app-shipper-details-card .hours-template{grid-template-columns:140px 140px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:336px!important}}@media (max-width: 1440px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,250px)}.card-width{width:250px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-container{width:700px!important}.repaired-vehicle-container{width:272!important;max-width:272px!important}.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{width:272px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:272px!important;max-width:272px!important}.repair-component .repair-cards{width:360px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:35px 40px 25px 35px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:45px 68px 27px 66px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:700px!important}app-shipper-details .contact,app-broker-details .contact{width:272px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:272px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:272px!important}app-shipper-details .review-container,app-broker-details .review-container{width:272px!important}}@media (max-width: 1500px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,237px)}.card-width{width:237px}}.datetime-dropdown-holder{position:relative;top:16px}.picker_input_holder{display:flex;min-width:146px;max-width:260px;border-radius:3px;background-color:#f9f9f9}.picker_input_holder input{width:100%;padding-left:6px;border:none;outline:none;background-color:transparent;caret-color:transparent;-webkit-appearance:none}.picker_input_holder input:focus{outline:none;border:none}.picker_input_holder input::placeholder{color:#919191!important}.picker_input_holder .toggle_picker{display:flex;justify-content:center;align-items:center;width:26px;height:26px;min-width:26px;background-color:#eee;border-radius:3px;cursor:pointer}.picker_input_holder .toggle_picker:after{display:none}.picker_input_holder .toggle_picker svg-icon{display:flex}.picker_input_holder .toggle_picker svg-icon svg{width:12px;height:10px}.picker_input_holder .toggle_picker svg-icon svg path{fill:#919191}.picker_input_holder:hover{opacity:1}.picker_input_holder.active{background-color:#6c6c6c;border-left:3px solid #6c6c6c}.picker_input_holder.active .toggle_picker{background-color:#919191}.picker_input_holder.active .toggle_picker svg-icon{display:flex}.picker_input_holder.active .toggle_picker svg-icon svg{transform:rotate(180deg)}.picker_input_holder.active .toggle_picker svg-icon svg path{fill:#dadada}.picker_input_holder.active input::placeholder{color:#dadada!important}.pickers_holder{position:absolute;top:3px!important;width:auto!important;padding:0;background-color:#dadada;box-shadow:0 0 4px #00000026;z-index:999;border-radius:3px;overflow:hidden}.pickers_holder .time_picker{width:167px}.pickers_holder .date_picker{display:flex}.pickers_holder .date_picker .month-years-size{position:relative;width:48px;background-color:#f9f9f9}.pickers_holder .date_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:24px;transform:translateY(-50%);background-color:#dadada}.pickers_holder .date_picker .month-years-size .month-year-item{display:flex;align-items:center;justify-content:center;height:24px;font-size:14px;color:#919191;font-weight:400;text-align:center;text-transform:uppercase}.pickers_holder .date_picker .month-years-size .month-year-item .left-year-show{color:#919191;font-size:14px;font-weight:700}.pickers_holder .date_picker .month-years-size .month-year-item:hover{color:#6c6c6c;cursor:pointer;background-color:#f1f1f1;border-radius:2px}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 2px 0}.pickers_holder .date_picker .full-calendars-list{flex:1;max-height:290px;min-width:264px;overflow:hidden}.pickers_holder .date_picker .full-calendars-list .full_list{height:100%}.pickers_holder .date_picker .full-calendars-list .full_list .selfScroll{width:100%;height:100%}.pickers_holder .time_picker .time_picker_head{height:36px;display:flex;padding:0 12px;align-items:center;justify-content:space-between}.pickers_holder .time_picker .time_picker_head .selected_time{font-size:14px;font-weight:800;color:#6c6c6c}.pickers_holder .time_picker .time_picker_head .sel_now{color:#536bc2;font-size:14px;font-weight:700}.pickers_holder .time_picker .time_picker_head .sel_now:hover{cursor:pointer;color:#5673aa}.pickers_holder .time_picker .time_picker_body .picker_body_head{height:22px;display:flex;align-items:center;background-color:#f7f7f7;margin:0 4px 2px;border-radius:2px}.pickers_holder .time_picker .time_picker_body .picker_body_head div{flex:0 0 33%;text-align:center;font-size:10px;font-weight:700;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body_head div.active{color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body{position:relative;height:155px;display:flex;justify-content:center}.pickers_holder .time_picker .time_picker_body .picker_body:after{content:\"\";position:absolute;width:100%;height:31px;top:-1px;left:0;pointer-events:none;background:linear-gradient(to bottom,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body:before{content:\"\";position:absolute;pointer-events:none;width:100%;height:31px;bottom:-1px;left:0;background:linear-gradient(to top,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line{position:absolute;width:calc(100% - 8px);height:22px;top:50%;left:4px;border-radius:2px;transform:translateY(-50%);background-color:#9191911a}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line span{position:absolute;left:30%;font-size:14px;font-weight:400;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers{position:relative;height:22px;flex:0 0 33.3%;height:100%;padding:67px 0;margin:0 7px;overflow:auto;text-align:center;-ms-overflow-style:none;scrollbar-width:none;z-index:10}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:first-child{flex:0 0 28px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(2){flex:0 0 36px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(3){flex:0 0 38px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers::-webkit-scrollbar{display:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{height:22px;display:flex;align-items:center;justify-content:center;font-size:14px;color:#919191;font-weight:400;-webkit-user-select:none;user-select:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item:hover{color:#5673aa;cursor:pointer}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:hover{box-shadow:inset 0 0 4px #00000026}.pickers_holder .time_picker .picker_buttons{display:flex;padding:6px;justify-content:space-between}.pickers_holder .time_picker .picker_buttons .pick_button{display:flex;align-items:center;justify-content:center;height:32px;padding:0 12px;text-align:center;border-radius:2px;font-size:12px;font-weight:700;color:#919191b3}.pickers_holder .time_picker .picker_buttons .pick_button:hover{background-color:#f3f3f3;color:#919191;cursor:pointer}.pickers_holder .time_picker .picker_buttons .pick_button.set_button{width:57px;text-align:center;background-color:#6d82c7;color:#dadada}.pickers_holder .time_picker .picker_buttons .pick_button.set_button:hover{background-color:#536bc2}.pickers_holder.dark_picker{background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size{width:40px;background-color:#424242}.pickers_holder.dark_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:26px;transform:translateY(-50%);background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .month-year-item{height:22px;color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item .left-year-show{color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year{color:#dadada}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year .left-year-show{color:#dadada;font-weight:700}.pickers_holder.dark_picker .month-years-size .month-year-item:hover{color:#dadada;background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 4px 0}.pickers_holder.dark_picker .date_picker{margin:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list{min-width:184px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view{width:182px;padding-top:6px;background-color:#2f2f2f}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head{padding:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name{padding:0 4px;color:#dadada;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name .year_hold{margin-right:0;color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today{padding:0 4px;color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today:hover{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator{margin:12px 10px;color:#919191;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.current_year{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.full_calendar{margin-bottom:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px 4px;padding:0}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days .cal_day{width:22px;height:22px;margin:0;font-size:9px;color:#aaa;text-align:center}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;row-gap:12px;justify-content:unset;margin:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item{margin:0;height:22px;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item:hover:not(.current_month){background-color:#424242;color:#dadada;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item.current_month{color:#dadada;background-color:#3b73ed66;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list.current_year .month_list_item{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px;padding:0;height:auto}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day{width:22px;height:22px;margin:0;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#dadada;background-color:#3b73ed66;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#3b73ed66;color:#dadada;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.day_in_current_month{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.weekend_day_in_current_month{color:#ccc}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#424242;border-radius:2px;cursor:pointer;color:#dadada}.pickers_holder.dark_picker .time_picker{width:156px;margin:4px}.pickers_holder.dark_picker .time_picker .time_picker_head{height:18px;padding:0 4px;margin-bottom:4px}.pickers_holder.dark_picker .time_picker .time_picker_head .selected_time{color:#dadada;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_head .sel_now{color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;margin:0 0 4px;padding:2px;background:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head div{color:#aaa;font-size:9px;text-align:center;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body{height:176px;display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;padding:0 2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:before{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:after{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line{left:0;width:100%;background-color:#3b73ed33}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line{left:33.3%;width:1px;height:12px;margin-top:5px;background-color:#92b1f5;opacity:.4;border-radius:2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line.line_2{left:66.6%}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers{margin:0;padding:77px 0}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{color:#aaa;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item.active_item{color:#dadada}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons{display:grid;grid-template-columns:repeat(2,1fr);column-gap:4px;margin-top:6px;padding:4px 0 0;border-top:1px solid #424242}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button{height:18px;background-color:#424242;color:#dadada;font-size:11px;text-transform:uppercase;border-radius:1px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button.set_button{width:auto;background-color:#3b73ed}.calendar_view{width:260px;padding-top:12px;background-color:#dadada}.calendar_view .calendar_view_head{display:flex;justify-content:space-between;margin-bottom:12px;padding:0 12px}.calendar_view .calendar_view_head .month_name{font-size:12px;font-weight:700;color:#6c6c6c}.calendar_view .calendar_view_head .month_name .year_hold{margin-right:5px;text-transform:uppercase;color:#6c6c6c;cursor:pointer}.calendar_view .calendar_view_head .month_name .year_hold:hover{color:#919191}.calendar_view .calendar_view_head .today{font-size:12px;font-weight:700;color:#5673aab3;cursor:pointer}.calendar_view .calendar_view_head .today:hover{color:#3551b7}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport{height:230px;min-height:230px}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view .calendar_indicator{margin:12px;height:18px;font-size:12px;color:#6c6c6c66;font-weight:700}.calendar_view .calendars_list_view .calendar_month_days{padding:0 3px}.calendar_view .calendars_list_view .calendar_month_days.hideVisibility{visibility:hidden}.calendar_view .calendars_list_view .calendar_month_days .cal_day{width:24px;margin:0 6px;font-size:12px;font-weight:700;color:#b7b7b7}.calendar_view .calendars_list_view .calendar_days{height:140px;display:flex;flex-wrap:wrap;padding:0 3px}.calendar_view .calendars_list_view .calendar_days .calendar_day{display:flex;align-items:center;justify-content:center;flex:0 0 24px;width:24px;height:24px;margin:0 6px;font-size:14px;font-weight:400;color:#6c6c6c}.calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#dadada;background-color:#919191;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#919191;color:#dadada;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#f7f7f7;border-radius:2px;cursor:pointer;color:#3c3c3c}.calendar_view .month_list{display:flex;flex-wrap:wrap;justify-content:space-around;height:140px}.calendar_view .month_list .month_list_item{flex:0 0 50px;height:24px;margin:0 10px;display:flex;align-items:center;justify-content:center;border-radius:3px;font-size:12px;color:#6c6c6c;font-weight:400}.calendar_view .month_list .month_list_item:hover:not(.current_month){background-color:#f7f7f7;color:#3c3c3c;border-radius:2px;cursor:pointer}.calendar_view .month_list .month_list_item.current_month{color:#3c3c3c;background-color:#f7f7f7;border-radius:2px;cursor:pointer}.dropdown{z-index:999!important}input[type=date]::-webkit-inner-spin-button,input[type=date]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}.wrapper{width:320px;font-family:Montserrat,sans-serif;padding-left:12px;padding-right:12px;padding-bottom:2px}.wrapper .container{gap:4px;padding:0 6px}.wrapper .container .text-value{padding-right:5px;width:auto;height:26px;gap:4px}.wrapper .container .text-value .payment-count{gap:4px;color:#424242}.wrapper .container .text-value .payment-count .text{height:26px;width:auto}.wrapper .container .text-value .payment-count .round{width:18px;height:18px;border-radius:20px;background-color:#6c6c6c;color:#dadada;font-size:11px}.wrapper .container .text-value .value{height:26px;width:auto}.wrapper .container .text-value .value .icon:hover svg{border-radius:2px;background-color:#e9effd}.wrapper .container .text-value .value .icon:hover svg path{fill:#0b49d1}.wrapper .container .text-value .value .total-money-closed{height:26px;width:auto}.wrapper .component-data-container .information{width:308px;gap:4px;padding:2px 18px 2px 6px}.wrapper .component-data-container .information:hover{background-color:#eee;border-radius:2px;opacity:.6;transition:.3s}.wrapper .component-data-container .information.clicked{background-color:#eee}.wrapper .component-data-container .information.clicked:hover{background-color:#eee;opacity:1}.wrapper .component-data-container .information .number{border-radius:2px;width:26px;height:26px;gap:2px;color:#919191}.wrapper .component-data-container .information .number:hover{background-color:#91919133}.wrapper .component-data-container .information .number .icon-holder{position:relative;height:26px;width:26px;border-radius:2px;opacity:1}.wrapper .component-data-container .information .number .dropdown-menu{background-color:red}.wrapper .component-data-container .information .number .icon-holder:hover,.wrapper .component-data-container .information .number .svg-icon:hover{border-radius:2px}.wrapper .component-data-container .information .number .icon-holder:hover svg path,.wrapper .component-data-container .information .number .svg-icon:hover svg path{fill:#424242}.wrapper .component-data-container .information .date-location{width:199px}.wrapper .component-data-container .information .date-location .location,.wrapper .component-data-container .information .date-location .date{font-size:11px;height:14px}.wrapper .component-data-container .information .recurring{height:26px}.wrapper .component-data-container .information .money{height:26px;width:83px}.wrapper .component-data-container .total-money-title{padding-left:6px;padding-right:8px;height:26px;width:auto}.wrapper .component-data-container .total-money-title .total-money{width:auto;margin-right:4px;padding-right:6px}.wrapper .component-data-container .total-money-title .icon-total .dolar-icon{height:26px;width:26px;padding:2px}.wrapper .component-data-container .total-money-title .icon-total .dolar-icon svg path{fill:currentColor}.container-empty{height:34px;gap:4px;padding:0 6px;color:#aaa;width:308px}.container-empty .text-value{width:auto;height:26px;gap:4px}.container-empty .text-value .payment-count{gap:4px}.container-empty .text-value .payment-count .text{height:26px;width:auto}.container-empty .text-value .payment-count .round{width:18px;height:18px;border-radius:20px;background-color:#6c6c6c;color:#dadada;font-size:11px}.container-empty .text-value .value{height:26px;width:auto}.container-empty .text-value .value .icon:hover svg{background-color:#e9effd}.container-empty .text-value .value .icon:hover svg path{fill:#0b49d1}.container-empty .text-value .value .total-money-closed{height:26px;width:auto}.cdk-drag{transition:transform .25s cubic-bezier(.25,.1,.25,1);cursor:grab}.cdk-drag-preview{background-color:#424242;color:#dadada;font-size:12px;box-shadow:0 2px 10px #0003;font-family:Montserrat,sans-serif;width:308px}.cdk-drag-preview .location{color:#fff}.cdk-drag-preview .date{color:#919191}.cdk-drag-preview .money{color:#fff}.cdk-drop-list.cdk-drop-list-dragging{cursor:grabbing}.disabled-drag{pointer-events:none}.drag-disabled{cursor:not-allowed}\n"], dependencies: [{ kind: "ngmodule", type:
134
135
  //Modules
135
- CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "ngmodule", type: AngularSvgIconModule }, { kind: "component", type: i2.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "ngmodule", type: NgbTooltipModule }, { kind: "directive", type: i3.NgbTooltip, selector: "[ngbTooltip]", inputs: ["animation", "autoClose", "placement", "popperOptions", "triggers", "positionTarget", "container", "disableTooltip", "tooltipClass", "tooltipContext", "openDelay", "closeDelay", "ngbTooltip"], outputs: ["shown", "hidden"], exportAs: ["ngbTooltip"] }, { kind: "ngmodule", type: DragDropModule }, { kind: "directive", type: i4.CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: i4.CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: i4.CdkDragPreview, selector: "ng-template[cdkDragPreview]", inputs: ["data", "matchSize"] }, { kind: "component", type:
136
+ CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "pipe", type: i1.CurrencyPipe, name: "currency" }, { kind: "ngmodule", type: AngularSvgIconModule }, { kind: "component", type: i2.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "ngmodule", type: NgbTooltipModule }, { kind: "directive", type: i3.NgbTooltip, selector: "[ngbTooltip]", inputs: ["animation", "autoClose", "placement", "popperOptions", "triggers", "positionTarget", "container", "disableTooltip", "tooltipClass", "tooltipContext", "openDelay", "closeDelay", "ngbTooltip"], outputs: ["shown", "hidden"], exportAs: ["ngbTooltip"] }, { kind: "ngmodule", type: DragDropModule }, { kind: "directive", type: i4.CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: i4.CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: i4.CdkDragPreview, selector: "ng-template[cdkDragPreview]", inputs: ["data", "matchSize"] }, { kind: "component", type:
136
137
  //Components
137
138
  CaAppTooltipV2Component, selector: "mainTooltip, [mainTooltip]", inputs: ["mainTooltip", "position", "openTooltipDelay", "tooltipBackground", "tooltipColor", "tooltipTextAlign", "tooltipMarginTop"] }, { kind: "component", type: CaDropdownComponent, selector: "app-ca-dropdown", inputs: ["icon", "itemList", "isPopupShown"], outputs: ["onClick"] }, { kind: "pipe", type:
138
139
  //pipes
139
- FormatCurrencyPipe, name: "formatCurrency" }] }); }
140
+ FormatCurrencyPipe, name: "formatCurrency" }, { kind: "pipe", type: DateFromStringPipe, name: "dateFromStringPipe" }] }); }
140
141
  }
141
142
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CaPeriodContentPaymentComponent, decorators: [{
142
143
  type: Component,
@@ -151,7 +152,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
151
152
  CaDropdownComponent,
152
153
  //pipes
153
154
  FormatCurrencyPipe,
154
- ], template: "<ng-container *ngIf=\"componentData?.length; else emptyComponentData\"\n ><div\n class=\"wrapper d-flex flex-column align-items-center justify-content-start\"\n >\n <div class=\"container d-flex flex-column\">\n <ng-container *ngIf=\"title !== 'Credit' && title !== 'Payment'\">\n <div class=\"divider d-flex justify-content-center\"></div>\n </ng-container>\n <div class=\"text-value d-flex justify-content-between\">\n <div\n class=\"payment-count d-flex align-items-center justify-content-start\"\n >\n <span class=\"text ca-font-extra-bold\">{{ title }}</span>\n <span\n class=\"round ca-font-bold d-flex align-items-center justify-content-center\"\n >\n {{ componentData?.length }}\n </span>\n </div>\n <span class=\"value d-flex align-items-center\">\n <ng-container *ngIf=\"isOpen; else notOpen\">\n <svg-icon\n class=\"d-flex icon\"\n [src]=\"getSvgPath('plus')\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n </ng-container>\n <ng-template #notOpen>\n <span\n class=\"total-money-closed ca-font-semi-bold\"\n [ngStyle]=\"{ color: getColor(title) }\"\n >{{ sum | formatCurrency }}</span\n >\n </ng-template>\n </span>\n </div>\n </div>\n\n <div\n [ngClass]=\"{ 'disabled-drag': title === 'Bonus' }\"\n cdkDropList\n class=\"component-data-container d-flex justify-content-center flex-column\"\n (cdkDropListDropped)=\"onDrop($event)\"\n >\n <ng-container\n *ngFor=\"let data of componentData; let i = index; trackBy: identity\"\n >\n <div\n cdkDrag\n cdkDragLockAxis=\"y\"\n cdkDragBoundary=\".component-data-container\"\n class=\"d-flex justify-content-between align-items-center information\"\n [ngClass]=\"{\n clicked: clickedStates[i],\n 'drag-disabled': title === 'Bonus',\n }\"\n (mouseenter)=\"onMouseEnter(i)\"\n (mouseleave)=\"onMouseLeave(i)\"\n >\n <ng-template cdkDragPreview>\n <div class=\"d-flex justify-content-between align-items-center\">\n <div class=\"d-flex align-items-center\">\n <div class=\"icon-holder mx-2\">\n <svg-icon\n [src]=\"getSvgPath('dragging')\"\n alt=\"Dragging Image\"\n ></svg-icon>\n </div>\n <div class=\"date-location d-flex flex-column\">\n <span class=\"ca-font-semi-bold location\">{{\n data.description\n }}</span>\n <span class=\"date ca-font-medium\">{{ data.date }}</span>\n </div>\n </div>\n <span\n class=\"money d-flex justify-content-end ca-font-regular mx-2\"\n >{{ data.amount ? data.amount : (0 | formatCurrency) }}\n </span>\n </div>\n </ng-template>\n <span\n class=\"number d-flex justify-content-center align-items-center ca-font-medium\"\n >\n <ng-container\n *ngIf=\"!hoverStates[i] && !clickedStates[i]; else hoveredState\"\n >{{ data!.id }}\n </ng-container>\n <ng-template #hoveredState>\n <div\n class=\"icon-holder d-flex align-items-center justify-content-center\"\n ngbTooltip\n [mainTooltip]=\"'More'\"\n tooltipBackground=\"#424242\"\n position=\"bottom\"\n [ngStyle]=\"{\n backgroundColor: clickedStates[i] ? '#424242' : 'transparent',\n color: hoverStates[i] ? 'desiredColor' : 'initialColor',\n }\"\n >\n <app-ca-dropdown\n [itemList]=\"dropdownOptions\"\n [icon]=\"currentIcons[i]\"\n (onClick)=\"dropDownClickEvent(i)\"\n [isPopupShown]=\"isDropdownEnabled(i)\"\n ></app-ca-dropdown>\n </div>\n </ng-template>\n </span>\n <div class=\"date-location d-flex flex-column\">\n <span class=\"ca-font-semi-bold location\">{{\n data.description\n }}</span>\n <span class=\"date ca-font-medium\">{{ data.date }}</span>\n </div>\n <span class=\"money d-flex justify-content-end ca-font-regular\"\n >{{ data.amount ? data.amount : (0 | formatCurrency) }}\n </span>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"isOpen\">\n <div\n class=\"total-money-title d-flex justify-content-between align-items-center\"\n >\n <div class=\"icon-total d-flex align-items-center\">\n <span\n class=\"dolar-icon d-flex align-items-center\"\n [ngStyle]=\"{ color: getColor(title) }\"\n >\n <svg-icon\n class=\"d-flex align-items-center\"\n [src]=\"getSvgPath('dolarSign')\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n </span>\n <span class=\"total-title ca-font-bold\">Total</span>\n </div>\n <span\n class=\"total-money d-flex justify-content-end align-items-center ca-font-semi-bold\"\n [ngStyle]=\"{ color: getColor(title) }\"\n >{{ sum | formatCurrency }}</span\n >\n </div>\n </ng-container>\n </div>\n </div>\n</ng-container>\n\n<ng-template #emptyComponentData>\n <div class=\"container-empty d-flex flex-column\">\n <div class=\"divider d-flex justify-content-center\"></div>\n <div class=\"text-value d-flex justify-content-between\">\n <div\n class=\"payment-count d-flex align-items-center justify-content-start\"\n >\n <span\n class=\"text ca-font-extra-bold\"\n [ngStyle]=\"{ color: isOpen ? '#424242' : '#aaaaaa' }\"\n >{{ title }}</span\n >\n </div>\n <span class=\"value d-flex align-items-center\">\n <ng-container *ngIf=\"isOpen; else notOpen\">\n <svg-icon\n class=\"d-flex icon\"\n [src]=\"getSvgPath('plus')\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n </ng-container>\n <ng-template #notOpen>\n <span class=\"total-money-closed ca-font-semi-bold\">$0.00</span>\n </ng-template>\n </span>\n </div>\n </div>\n</ng-template>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.ta-input-dropdown .arrow{display:none!important}.ta-input-dropdown .popover-body{margin-top:-2px!important}.ta-input-dropdown .popover-body .dropdown-options-divider{content:\"\";height:1px;border-radius:1px;background-color:#424242;position:absolute;z-index:99999;top:0;left:0}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-1{width:-7px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-2{width:-6px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-3{width:-5px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-4{width:-4px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-5{width:-3px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-6{width:-2px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-7{width:-1px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-8{width:0px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-9{width:1px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-10{width:2px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-11{width:3px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-12{width:4px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-13{width:5px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-14{width:6px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-15{width:7px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-16{width:8px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-17{width:9px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-18{width:10px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-19{width:11px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-20{width:12px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-21{width:13px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-22{width:14px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-23{width:15px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-24{width:16px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-25{width:17px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-26{width:18px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-27{width:19px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-28{width:20px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-29{width:21px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-30{width:22px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-31{width:23px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-32{width:24px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-33{width:25px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-34{width:26px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-35{width:27px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-36{width:28px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-37{width:29px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-38{width:30px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-39{width:31px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-40{width:32px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-41{width:33px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-42{width:34px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-43{width:35px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-44{width:36px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-45{width:37px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-46{width:38px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-47{width:39px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-48{width:40px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-49{width:41px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-50{width:42px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-51{width:43px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-52{width:44px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-53{width:45px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-54{width:46px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-55{width:47px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-56{width:48px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-57{width:49px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-58{width:50px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-59{width:51px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-60{width:52px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-61{width:53px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-62{width:54px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-63{width:55px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-64{width:56px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-65{width:57px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-66{width:58px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-67{width:59px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-68{width:60px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-69{width:61px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-70{width:62px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-71{width:63px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-72{width:64px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-73{width:65px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-74{width:66px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-75{width:67px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-76{width:68px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-77{width:69px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-78{width:70px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-79{width:71px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-80{width:72px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-81{width:73px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-82{width:74px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-83{width:75px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-84{width:76px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-85{width:77px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-86{width:78px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-87{width:79px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-88{width:80px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-89{width:81px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-90{width:82px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-91{width:83px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-92{width:84px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-93{width:85px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-94{width:86px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-95{width:87px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-96{width:88px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-97{width:89px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-98{width:90px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-99{width:91px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-100{width:92px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-101{width:93px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-102{width:94px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-103{width:95px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-104{width:96px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-105{width:97px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-106{width:98px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-107{width:99px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-108{width:100px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-109{width:101px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-110{width:102px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-111{width:103px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-112{width:104px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-113{width:105px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-114{width:106px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-115{width:107px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-116{width:108px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-117{width:109px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-118{width:110px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-119{width:111px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-120{width:112px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-121{width:113px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-122{width:114px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-123{width:115px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-124{width:116px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-125{width:117px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-126{width:118px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-127{width:119px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-128{width:120px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-129{width:121px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-130{width:122px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-131{width:123px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-132{width:124px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-133{width:125px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-134{width:126px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-135{width:127px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-136{width:128px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-137{width:129px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-138{width:130px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-139{width:131px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-140{width:132px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-141{width:133px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-142{width:134px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-143{width:135px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-144{width:136px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-145{width:137px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-146{width:138px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-147{width:139px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-148{width:140px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-149{width:141px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-150{width:142px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-151{width:143px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-152{width:144px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-153{width:145px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-154{width:146px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-155{width:147px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-156{width:148px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-157{width:149px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-158{width:150px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-159{width:151px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-160{width:152px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-161{width:153px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-162{width:154px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-163{width:155px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-164{width:156px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-165{width:157px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-166{width:158px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-167{width:159px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-168{width:160px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-169{width:161px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-170{width:162px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-171{width:163px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-172{width:164px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-173{width:165px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-174{width:166px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-175{width:167px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-176{width:168px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-177{width:169px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-178{width:170px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-179{width:171px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-180{width:172px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-181{width:173px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-182{width:174px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-183{width:175px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-184{width:176px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-185{width:177px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-186{width:178px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-187{width:179px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-188{width:180px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-189{width:181px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-190{width:182px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-191{width:183px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-192{width:184px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-193{width:185px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-194{width:186px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-195{width:187px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-196{width:188px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-197{width:189px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-198{width:190px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-199{width:191px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-200{width:192px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-201{width:193px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-202{width:194px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-203{width:195px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-204{width:196px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-205{width:197px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-206{width:198px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-207{width:199px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-208{width:200px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-209{width:201px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-210{width:202px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-211{width:203px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-212{width:204px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-213{width:205px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-214{width:206px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-215{width:207px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-216{width:208px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-217{width:209px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-218{width:210px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-219{width:211px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-220{width:212px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-221{width:213px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-222{width:214px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-223{width:215px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-224{width:216px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-225{width:217px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-226{width:218px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-227{width:219px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-228{width:220px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-229{width:221px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-230{width:222px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-231{width:223px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-232{width:224px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-233{width:225px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-234{width:226px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-235{width:227px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-236{width:228px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-237{width:229px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-238{width:230px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-239{width:231px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-240{width:232px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-241{width:233px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-242{width:234px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-243{width:235px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-244{width:236px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-245{width:237px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-246{width:238px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-247{width:239px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-248{width:240px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-249{width:241px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-250{width:242px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-251{width:243px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-252{width:244px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-253{width:245px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-254{width:246px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-255{width:247px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-256{width:248px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-257{width:249px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-258{width:250px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-259{width:251px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-260{width:252px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-261{width:253px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-262{width:254px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-263{width:255px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-264{width:256px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-265{width:257px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-266{width:258px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-267{width:259px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-268{width:260px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-269{width:261px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-270{width:262px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-271{width:263px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-272{width:264px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-273{width:265px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-274{width:266px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-275{width:267px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-276{width:268px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-277{width:269px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-278{width:270px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-279{width:271px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-280{width:272px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-281{width:273px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-282{width:274px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-283{width:275px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-284{width:276px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-285{width:277px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-286{width:278px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-287{width:279px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-288{width:280px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-289{width:281px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-290{width:282px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-291{width:283px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-292{width:284px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-293{width:285px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-294{width:286px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-295{width:287px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-296{width:288px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-297{width:289px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-298{width:290px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-299{width:291px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-300{width:292px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-301{width:293px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-302{width:294px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-303{width:295px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-304{width:296px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-305{width:297px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-306{width:298px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-307{width:299px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-308{width:300px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-309{width:301px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-310{width:302px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-311{width:303px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-312{width:304px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-313{width:305px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-314{width:306px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-315{width:307px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-316{width:308px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-317{width:309px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-318{width:310px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-319{width:311px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-320{width:312px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-321{width:313px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-322{width:314px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-323{width:315px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-324{width:316px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-325{width:317px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-326{width:318px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-327{width:319px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-328{width:320px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-329{width:321px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-330{width:322px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-331{width:323px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-332{width:324px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-333{width:325px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-334{width:326px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-335{width:327px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-336{width:328px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-337{width:329px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-338{width:330px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-339{width:331px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-340{width:332px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-341{width:333px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-342{width:334px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-343{width:335px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-344{width:336px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-345{width:337px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-346{width:338px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-347{width:339px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-348{width:340px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-349{width:341px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-350{width:342px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-351{width:343px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-352{width:344px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-353{width:345px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-354{width:346px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-355{width:347px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-356{width:348px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-357{width:349px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-358{width:350px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-359{width:351px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-360{width:352px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-361{width:353px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-362{width:354px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-363{width:355px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-364{width:356px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-365{width:357px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-366{width:358px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-367{width:359px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-368{width:360px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-369{width:361px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-370{width:362px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-371{width:363px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-372{width:364px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-373{width:365px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-374{width:366px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-375{width:367px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-376{width:368px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-377{width:369px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-378{width:370px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-379{width:371px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-380{width:372px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-381{width:373px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-382{width:374px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-383{width:375px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-384{width:376px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-385{width:377px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-386{width:378px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-387{width:379px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-388{width:380px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-389{width:381px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-390{width:382px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-391{width:383px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-392{width:384px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-393{width:385px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-394{width:386px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-395{width:387px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-396{width:388px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-397{width:389px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-398{width:390px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-399{width:391px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-400{width:392px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-401{width:393px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-402{width:394px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-403{width:395px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-404{width:396px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-405{width:397px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-406{width:398px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-407{width:399px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-408{width:400px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-409{width:401px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-410{width:402px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-411{width:403px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-412{width:404px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-413{width:405px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-414{width:406px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-415{width:407px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-416{width:408px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-417{width:409px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-418{width:410px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-419{width:411px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-420{width:412px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-421{width:413px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-422{width:414px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-423{width:415px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-424{width:416px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-425{width:417px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-426{width:418px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-427{width:419px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-428{width:420px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-429{width:421px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-430{width:422px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-431{width:423px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-432{width:424px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-433{width:425px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-434{width:426px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-435{width:427px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-436{width:428px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-437{width:429px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-438{width:430px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-439{width:431px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-440{width:432px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-441{width:433px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-442{width:434px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-443{width:435px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-444{width:436px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-445{width:437px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-446{width:438px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-447{width:439px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-448{width:440px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-449{width:441px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-450{width:442px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-451{width:443px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-452{width:444px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-453{width:445px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-454{width:446px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-455{width:447px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-456{width:448px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-457{width:449px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-458{width:450px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-459{width:451px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-460{width:452px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-461{width:453px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-462{width:454px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-463{width:455px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-464{width:456px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-465{width:457px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-466{width:458px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-467{width:459px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-468{width:460px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-469{width:461px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-470{width:462px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-471{width:463px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-472{width:464px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-473{width:465px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-474{width:466px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-475{width:467px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-476{width:468px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-477{width:469px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-478{width:470px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-479{width:471px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-480{width:472px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-481{width:473px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-482{width:474px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-483{width:475px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-484{width:476px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-485{width:477px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-486{width:478px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-487{width:479px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-488{width:480px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-489{width:481px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-490{width:482px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-491{width:483px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-492{width:484px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-493{width:485px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-494{width:486px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-495{width:487px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-496{width:488px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-497{width:489px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-498{width:490px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-499{width:491px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-500{width:492px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-501{width:493px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-502{width:494px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-503{width:495px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-504{width:496px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-505{width:497px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-506{width:498px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-507{width:499px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-508{width:500px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-509{width:501px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-510{width:502px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-511{width:503px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-512{width:504px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-513{width:505px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-514{width:506px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-515{width:507px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-516{width:508px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-517{width:509px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-518{width:510px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-519{width:511px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-520{width:512px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-521{width:513px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-522{width:514px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-523{width:515px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-524{width:516px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-525{width:517px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-526{width:518px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-527{width:519px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-528{width:520px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-529{width:521px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-530{width:522px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-531{width:523px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-532{width:524px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-533{width:525px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-534{width:526px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-535{width:527px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-536{width:528px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-537{width:529px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-538{width:530px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-539{width:531px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-540{width:532px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-541{width:533px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-542{width:534px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-543{width:535px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-544{width:536px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-545{width:537px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-546{width:538px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-547{width:539px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-548{width:540px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-549{width:541px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-550{width:542px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-551{width:543px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-552{width:544px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-553{width:545px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-554{width:546px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-555{width:547px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-556{width:548px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-557{width:549px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-558{width:550px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-559{width:551px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-560{width:552px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-561{width:553px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-562{width:554px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-563{width:555px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-564{width:556px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-565{width:557px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-566{width:558px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-567{width:559px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-568{width:560px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-569{width:561px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-570{width:562px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-571{width:563px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-572{width:564px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-573{width:565px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-574{width:566px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-575{width:567px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-576{width:568px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-577{width:569px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-578{width:570px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-579{width:571px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-580{width:572px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-581{width:573px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-582{width:574px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-583{width:575px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-584{width:576px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-585{width:577px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-586{width:578px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-587{width:579px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-588{width:580px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-589{width:581px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-590{width:582px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-591{width:583px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-592{width:584px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-593{width:585px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-594{width:586px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-595{width:587px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-596{width:588px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-597{width:589px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-598{width:590px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-599{width:591px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-600{width:592px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-601{width:593px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-602{width:594px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-603{width:595px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-604{width:596px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-605{width:597px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-606{width:598px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-607{width:599px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-608{width:600px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-609{width:601px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-610{width:602px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-611{width:603px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-612{width:604px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-613{width:605px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-614{width:606px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-615{width:607px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-616{width:608px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-617{width:609px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-618{width:610px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-619{width:611px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-620{width:612px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-621{width:613px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-622{width:614px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-623{width:615px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-624{width:616px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-625{width:617px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-626{width:618px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-627{width:619px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-628{width:620px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-629{width:621px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-630{width:622px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-631{width:623px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-632{width:624px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-633{width:625px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-634{width:626px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-635{width:627px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-636{width:628px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-637{width:629px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-638{width:630px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-639{width:631px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-640{width:632px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-641{width:633px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-642{width:634px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-643{width:635px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-644{width:636px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-645{width:637px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-646{width:638px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-647{width:639px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-648{width:640px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-649{width:641px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-650{width:642px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-651{width:643px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-652{width:644px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-653{width:645px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-654{width:646px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-655{width:647px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-656{width:648px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-657{width:649px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-658{width:650px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-659{width:651px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-660{width:652px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-661{width:653px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-662{width:654px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-663{width:655px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-664{width:656px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-665{width:657px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-666{width:658px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-667{width:659px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-668{width:660px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-669{width:661px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-670{width:662px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-671{width:663px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-672{width:664px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-673{width:665px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-674{width:666px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-675{width:667px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-676{width:668px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-677{width:669px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-678{width:670px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-679{width:671px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-680{width:672px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-681{width:673px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-682{width:674px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-683{width:675px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-684{width:676px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-685{width:677px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-686{width:678px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-687{width:679px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-688{width:680px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-689{width:681px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-690{width:682px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-691{width:683px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-692{width:684px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-693{width:685px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-694{width:686px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-695{width:687px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-696{width:688px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-697{width:689px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-698{width:690px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-699{width:691px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-700{width:692px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-701{width:693px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-702{width:694px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-703{width:695px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-704{width:696px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-705{width:697px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-706{width:698px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-707{width:699px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-708{width:700px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-709{width:701px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-710{width:702px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-711{width:703px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-712{width:704px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-713{width:705px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-714{width:706px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-715{width:707px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-716{width:708px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-717{width:709px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-718{width:710px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-719{width:711px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-720{width:712px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-721{width:713px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-722{width:714px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-723{width:715px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-724{width:716px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-725{width:717px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-726{width:718px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-727{width:719px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-728{width:720px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-729{width:721px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-730{width:722px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-731{width:723px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-732{width:724px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-733{width:725px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-734{width:726px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-735{width:727px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-736{width:728px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-737{width:729px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-738{width:730px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-739{width:731px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-740{width:732px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-741{width:733px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-742{width:734px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-743{width:735px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-744{width:736px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-745{width:737px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-746{width:738px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-747{width:739px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-748{width:740px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-749{width:741px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-750{width:742px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-751{width:743px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-752{width:744px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-753{width:745px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-754{width:746px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-755{width:747px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-756{width:748px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-757{width:749px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-758{width:750px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-759{width:751px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-760{width:752px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-761{width:753px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-762{width:754px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-763{width:755px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-764{width:756px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-765{width:757px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-766{width:758px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-767{width:759px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-768{width:760px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-769{width:761px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-770{width:762px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-771{width:763px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-772{width:764px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-773{width:765px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-774{width:766px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-775{width:767px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-776{width:768px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-777{width:769px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-778{width:770px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-779{width:771px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-780{width:772px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-781{width:773px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-782{width:774px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-783{width:775px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-784{width:776px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-785{width:777px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-786{width:778px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-787{width:779px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-788{width:780px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-789{width:781px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-790{width:782px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-791{width:783px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-792{width:784px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-793{width:785px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-794{width:786px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-795{width:787px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-796{width:788px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-797{width:789px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-798{width:790px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-799{width:791px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-800{width:792px}.ta-input-dropdown .popover-body .dropdown-options-divider.dispatch_dropdown{top:-4px}.ta-input-dropdown .popover-body .dropdown-options{position:relative;top:0;left:0;z-index:1000;max-height:190px;width:100%;background-color:#2f2f2f;border-radius:3px;padding:4px;overflow:hidden}.ta-input-dropdown .popover-body .dropdown-options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important;padding-right:0}.ta-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar{width:3px}.ta-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-input-dropdown .popover-body .dropdown-options-fuel-franchise{padding:4px;max-height:300px}.ta-input-dropdown .popover-body .dropdown-options.no-result-container{padding:6px 10px!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9856,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9857,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9858,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option{padding:3px 4px;height:26px;font-size:14px;font-weight:400;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#dadada;font-size:14px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#dadada;font-size:14px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#dadada;border-radius:2px;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:hover{background:#424242;color:#dadada;border-radius:2px;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.disabled{color:#6c6c6c;pointer-events:none;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result{line-height:14px;font-size:11px;font-weight:700;color:#919191;height:auto!important;-webkit-user-select:none;user-select:none;pointer-events:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result:hover{background-color:transparent!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result div{padding-top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new{padding:4.5px 6px 4.5px 4px;font-size:11px;font-weight:700;color:#92b1f5;position:relative;transition:background .2s ease-in-out,color .2s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new:hover{color:#dadada;background:#3b73ed66}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .details-template-text,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .svgtext-template-text{color:#919191;font-size:11px;font-weight:700;line-height:14px;pointer-events:none;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .labels-template-counter,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632:hover,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active:after,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{display:inline-block;position:absolute;right:6px;top:28%;transform:translateY(-50%);width:14px;height:10px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{right:35px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active{position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template{display:flex;align-items:center}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous svg{margin-right:5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo{position:absolute;right:25px;text-align:right;display:none;margin-right:0}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text{position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text{top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1{flex:1}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text{font-size:11px;font-weight:400;line-height:14px;color:#919191;text-align:right}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .colors{height:18px;width:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-vertical-divider{width:1px;height:15px;background-color:#aaa3;content:\"\";margin:0 6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text{margin-right:28px;font-size:14px;font-weight:400;line-height:18px;color:#fff}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.lable-text-wrap{text-overflow:ellipsis;overflow:hidden;width:80px;white-space:nowrap}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.add-new{font-size:11px;font-weight:700;color:#6f9ee0;transition:all .3s ease-in-out;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result{line-height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;height:12px;-webkit-user-select:none;user-select:none;pointer-events:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter{width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;text-align:center;font-size:11px;font-weight:500;padding:0 4.5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result{height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;-webkit-user-select:none;user-select:none;pointer-events:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container p{font-size:11px;line-height:18px;color:#919191;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header{display:flex;align-items:center;justify-content:space-between;padding:0 2px;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow{width:18px;height:18px;line-height:15px;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg{transform:rotate(0);transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow.rotate svg{transform:rotate(180deg);transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store{height:26px;border-radius:2px;display:flex;align-items:center;justify-content:space-between;padding:3px 26px 4px 4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-name{font-size:14px;font-weight:400;height:19px;-webkit-user-select:none;user-select:none;color:#fff}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-address{font-size:11px;font-weight:500;line-height:14px;-webkit-user-select:none;user-select:none;color:#ccc}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-address{color:#fff!important;font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .helper-hover-container{content:\"\";width:105%;height:26px;background-color:#1d1d1d;position:absolute;top:0;left:0;border-radius:2px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.ta-input-dropdown .popover-body .dropdown-options .load-dispatcher-template{display:flex;align-items:center;gap:6px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-trailer{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:116px;max-width:-moz-fit-content;max-width:fit-content;line-height:18px;font-size:14px;font-weight:400}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container.trailerContainer{width:max-content!important;padding:0!important;margin:0!important}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate{width:130px;text-align:right;font-size:11px;font-weight:400;color:#919191;padding-bottom:1px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;column-gap:29px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status{height:14px;display:flex;align-items:center;justify-content:flex-end;grid-gap:4px;gap:4px;text-align:center}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter{max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template{display:grid;grid-template-columns:405px 166px;align-items:center;padding-right:25px}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2),.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(3){text-align:right}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter{max-width:max-content;height:18px;border-radius:30px;text-align:right;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;justify-self:flex-end}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ta-input-dropdown .popover-body .dropdown-options.w-col-1{width:1px}.ta-input-dropdown .popover-body .dropdown-options.w-col-2{width:2px}.ta-input-dropdown .popover-body .dropdown-options.w-col-3{width:3px}.ta-input-dropdown .popover-body .dropdown-options.w-col-4{width:4px}.ta-input-dropdown .popover-body .dropdown-options.w-col-5{width:5px}.ta-input-dropdown .popover-body .dropdown-options.w-col-6{width:6px}.ta-input-dropdown .popover-body .dropdown-options.w-col-7{width:7px}.ta-input-dropdown .popover-body .dropdown-options.w-col-8{width:8px}.ta-input-dropdown .popover-body .dropdown-options.w-col-9{width:9px}.ta-input-dropdown .popover-body .dropdown-options.w-col-10{width:10px}.ta-input-dropdown .popover-body .dropdown-options.w-col-11{width:11px}.ta-input-dropdown .popover-body .dropdown-options.w-col-12{width:12px}.ta-input-dropdown .popover-body .dropdown-options.w-col-13{width:13px}.ta-input-dropdown .popover-body .dropdown-options.w-col-14{width:14px}.ta-input-dropdown .popover-body .dropdown-options.w-col-15{width:15px}.ta-input-dropdown .popover-body .dropdown-options.w-col-16{width:16px}.ta-input-dropdown .popover-body .dropdown-options.w-col-17{width:17px}.ta-input-dropdown .popover-body .dropdown-options.w-col-18{width:18px}.ta-input-dropdown .popover-body .dropdown-options.w-col-19{width:19px}.ta-input-dropdown .popover-body .dropdown-options.w-col-20{width:20px}.ta-input-dropdown .popover-body .dropdown-options.w-col-21{width:21px}.ta-input-dropdown .popover-body .dropdown-options.w-col-22{width:22px}.ta-input-dropdown .popover-body .dropdown-options.w-col-23{width:23px}.ta-input-dropdown .popover-body .dropdown-options.w-col-24{width:24px}.ta-input-dropdown .popover-body .dropdown-options.w-col-25{width:25px}.ta-input-dropdown .popover-body .dropdown-options.w-col-26{width:26px}.ta-input-dropdown .popover-body .dropdown-options.w-col-27{width:27px}.ta-input-dropdown .popover-body .dropdown-options.w-col-28{width:28px}.ta-input-dropdown .popover-body .dropdown-options.w-col-29{width:29px}.ta-input-dropdown .popover-body .dropdown-options.w-col-30{width:30px}.ta-input-dropdown .popover-body .dropdown-options.w-col-31{width:31px}.ta-input-dropdown .popover-body .dropdown-options.w-col-32{width:32px}.ta-input-dropdown .popover-body .dropdown-options.w-col-33{width:33px}.ta-input-dropdown .popover-body .dropdown-options.w-col-34{width:34px}.ta-input-dropdown .popover-body .dropdown-options.w-col-35{width:35px}.ta-input-dropdown .popover-body .dropdown-options.w-col-36{width:36px}.ta-input-dropdown .popover-body .dropdown-options.w-col-37{width:37px}.ta-input-dropdown .popover-body .dropdown-options.w-col-38{width:38px}.ta-input-dropdown .popover-body .dropdown-options.w-col-39{width:39px}.ta-input-dropdown .popover-body .dropdown-options.w-col-40{width:40px}.ta-input-dropdown .popover-body .dropdown-options.w-col-41{width:41px}.ta-input-dropdown .popover-body .dropdown-options.w-col-42{width:42px}.ta-input-dropdown .popover-body .dropdown-options.w-col-43{width:43px}.ta-input-dropdown .popover-body .dropdown-options.w-col-44{width:44px}.ta-input-dropdown .popover-body .dropdown-options.w-col-45{width:45px}.ta-input-dropdown .popover-body .dropdown-options.w-col-46{width:46px}.ta-input-dropdown .popover-body .dropdown-options.w-col-47{width:47px}.ta-input-dropdown .popover-body .dropdown-options.w-col-48{width:48px}.ta-input-dropdown .popover-body .dropdown-options.w-col-49{width:49px}.ta-input-dropdown .popover-body .dropdown-options.w-col-50{width:50px}.ta-input-dropdown .popover-body .dropdown-options.w-col-51{width:51px}.ta-input-dropdown .popover-body .dropdown-options.w-col-52{width:52px}.ta-input-dropdown .popover-body .dropdown-options.w-col-53{width:53px}.ta-input-dropdown .popover-body .dropdown-options.w-col-54{width:54px}.ta-input-dropdown .popover-body .dropdown-options.w-col-55{width:55px}.ta-input-dropdown .popover-body .dropdown-options.w-col-56{width:56px}.ta-input-dropdown .popover-body .dropdown-options.w-col-57{width:57px}.ta-input-dropdown .popover-body .dropdown-options.w-col-58{width:58px}.ta-input-dropdown .popover-body .dropdown-options.w-col-59{width:59px}.ta-input-dropdown .popover-body .dropdown-options.w-col-60{width:60px}.ta-input-dropdown .popover-body .dropdown-options.w-col-61{width:61px}.ta-input-dropdown .popover-body .dropdown-options.w-col-62{width:62px}.ta-input-dropdown .popover-body .dropdown-options.w-col-63{width:63px}.ta-input-dropdown .popover-body .dropdown-options.w-col-64{width:64px}.ta-input-dropdown .popover-body .dropdown-options.w-col-65{width:65px}.ta-input-dropdown .popover-body .dropdown-options.w-col-66{width:66px}.ta-input-dropdown .popover-body .dropdown-options.w-col-67{width:67px}.ta-input-dropdown .popover-body .dropdown-options.w-col-68{width:68px}.ta-input-dropdown .popover-body .dropdown-options.w-col-69{width:69px}.ta-input-dropdown .popover-body .dropdown-options.w-col-70{width:70px}.ta-input-dropdown .popover-body .dropdown-options.w-col-71{width:71px}.ta-input-dropdown .popover-body .dropdown-options.w-col-72{width:72px}.ta-input-dropdown .popover-body .dropdown-options.w-col-73{width:73px}.ta-input-dropdown .popover-body .dropdown-options.w-col-74{width:74px}.ta-input-dropdown .popover-body .dropdown-options.w-col-75{width:75px}.ta-input-dropdown .popover-body .dropdown-options.w-col-76{width:76px}.ta-input-dropdown .popover-body .dropdown-options.w-col-77{width:77px}.ta-input-dropdown .popover-body .dropdown-options.w-col-78{width:78px}.ta-input-dropdown .popover-body .dropdown-options.w-col-79{width:79px}.ta-input-dropdown .popover-body .dropdown-options.w-col-80{width:80px}.ta-input-dropdown .popover-body .dropdown-options.w-col-81{width:81px}.ta-input-dropdown .popover-body .dropdown-options.w-col-82{width:82px}.ta-input-dropdown .popover-body .dropdown-options.w-col-83{width:83px}.ta-input-dropdown .popover-body .dropdown-options.w-col-84{width:84px}.ta-input-dropdown .popover-body .dropdown-options.w-col-85{width:85px}.ta-input-dropdown .popover-body .dropdown-options.w-col-86{width:86px}.ta-input-dropdown .popover-body .dropdown-options.w-col-87{width:87px}.ta-input-dropdown .popover-body .dropdown-options.w-col-88{width:88px}.ta-input-dropdown .popover-body .dropdown-options.w-col-89{width:89px}.ta-input-dropdown .popover-body .dropdown-options.w-col-90{width:90px}.ta-input-dropdown .popover-body .dropdown-options.w-col-91{width:91px}.ta-input-dropdown .popover-body .dropdown-options.w-col-92{width:92px}.ta-input-dropdown .popover-body .dropdown-options.w-col-93{width:93px}.ta-input-dropdown .popover-body .dropdown-options.w-col-94{width:94px}.ta-input-dropdown .popover-body .dropdown-options.w-col-95{width:95px}.ta-input-dropdown .popover-body .dropdown-options.w-col-96{width:96px}.ta-input-dropdown .popover-body .dropdown-options.w-col-97{width:97px}.ta-input-dropdown .popover-body .dropdown-options.w-col-98{width:98px}.ta-input-dropdown .popover-body .dropdown-options.w-col-99{width:99px}.ta-input-dropdown .popover-body .dropdown-options.w-col-100{width:100px}.ta-input-dropdown .popover-body .dropdown-options.w-col-101{width:101px}.ta-input-dropdown .popover-body .dropdown-options.w-col-102{width:102px}.ta-input-dropdown .popover-body .dropdown-options.w-col-103{width:103px}.ta-input-dropdown .popover-body .dropdown-options.w-col-104{width:104px}.ta-input-dropdown .popover-body .dropdown-options.w-col-105{width:105px}.ta-input-dropdown .popover-body .dropdown-options.w-col-106{width:106px}.ta-input-dropdown .popover-body .dropdown-options.w-col-107{width:107px}.ta-input-dropdown .popover-body .dropdown-options.w-col-108{width:108px}.ta-input-dropdown .popover-body .dropdown-options.w-col-109{width:109px}.ta-input-dropdown .popover-body .dropdown-options.w-col-110{width:110px}.ta-input-dropdown .popover-body .dropdown-options.w-col-111{width:111px}.ta-input-dropdown .popover-body .dropdown-options.w-col-112{width:112px}.ta-input-dropdown .popover-body .dropdown-options.w-col-113{width:113px}.ta-input-dropdown .popover-body .dropdown-options.w-col-114{width:114px}.ta-input-dropdown .popover-body .dropdown-options.w-col-115{width:115px}.ta-input-dropdown .popover-body .dropdown-options.w-col-116{width:116px}.ta-input-dropdown .popover-body .dropdown-options.w-col-117{width:117px}.ta-input-dropdown .popover-body .dropdown-options.w-col-118{width:118px}.ta-input-dropdown .popover-body .dropdown-options.w-col-119{width:119px}.ta-input-dropdown .popover-body .dropdown-options.w-col-120{width:120px}.ta-input-dropdown .popover-body .dropdown-options.w-col-121{width:121px}.ta-input-dropdown .popover-body .dropdown-options.w-col-122{width:122px}.ta-input-dropdown .popover-body .dropdown-options.w-col-123{width:123px}.ta-input-dropdown .popover-body .dropdown-options.w-col-124{width:124px}.ta-input-dropdown .popover-body .dropdown-options.w-col-125{width:125px}.ta-input-dropdown .popover-body .dropdown-options.w-col-126{width:126px}.ta-input-dropdown .popover-body .dropdown-options.w-col-127{width:127px}.ta-input-dropdown .popover-body .dropdown-options.w-col-128{width:128px}.ta-input-dropdown .popover-body .dropdown-options.w-col-129{width:129px}.ta-input-dropdown .popover-body .dropdown-options.w-col-130{width:130px}.ta-input-dropdown .popover-body .dropdown-options.w-col-131{width:131px}.ta-input-dropdown .popover-body .dropdown-options.w-col-132{width:132px}.ta-input-dropdown .popover-body .dropdown-options.w-col-133{width:133px}.ta-input-dropdown .popover-body .dropdown-options.w-col-134{width:134px}.ta-input-dropdown .popover-body .dropdown-options.w-col-135{width:135px}.ta-input-dropdown .popover-body .dropdown-options.w-col-136{width:136px}.ta-input-dropdown .popover-body .dropdown-options.w-col-137{width:137px}.ta-input-dropdown .popover-body .dropdown-options.w-col-138{width:138px}.ta-input-dropdown .popover-body .dropdown-options.w-col-139{width:139px}.ta-input-dropdown .popover-body .dropdown-options.w-col-140{width:140px}.ta-input-dropdown .popover-body .dropdown-options.w-col-141{width:141px}.ta-input-dropdown .popover-body .dropdown-options.w-col-142{width:142px}.ta-input-dropdown .popover-body .dropdown-options.w-col-143{width:143px}.ta-input-dropdown .popover-body .dropdown-options.w-col-144{width:144px}.ta-input-dropdown .popover-body .dropdown-options.w-col-145{width:145px}.ta-input-dropdown .popover-body .dropdown-options.w-col-146{width:146px}.ta-input-dropdown .popover-body .dropdown-options.w-col-147{width:147px}.ta-input-dropdown .popover-body .dropdown-options.w-col-148{width:148px}.ta-input-dropdown .popover-body .dropdown-options.w-col-149{width:149px}.ta-input-dropdown .popover-body .dropdown-options.w-col-150{width:150px}.ta-input-dropdown .popover-body .dropdown-options.w-col-151{width:151px}.ta-input-dropdown .popover-body .dropdown-options.w-col-152{width:152px}.ta-input-dropdown .popover-body .dropdown-options.w-col-153{width:153px}.ta-input-dropdown .popover-body .dropdown-options.w-col-154{width:154px}.ta-input-dropdown .popover-body .dropdown-options.w-col-155{width:155px}.ta-input-dropdown .popover-body .dropdown-options.w-col-156{width:156px}.ta-input-dropdown .popover-body .dropdown-options.w-col-157{width:157px}.ta-input-dropdown .popover-body .dropdown-options.w-col-158{width:158px}.ta-input-dropdown .popover-body .dropdown-options.w-col-159{width:159px}.ta-input-dropdown .popover-body .dropdown-options.w-col-160{width:160px}.ta-input-dropdown .popover-body .dropdown-options.w-col-161{width:161px}.ta-input-dropdown .popover-body .dropdown-options.w-col-162{width:162px}.ta-input-dropdown .popover-body .dropdown-options.w-col-163{width:163px}.ta-input-dropdown .popover-body .dropdown-options.w-col-164{width:164px}.ta-input-dropdown .popover-body .dropdown-options.w-col-165{width:165px}.ta-input-dropdown .popover-body .dropdown-options.w-col-166{width:166px}.ta-input-dropdown .popover-body .dropdown-options.w-col-167{width:167px}.ta-input-dropdown .popover-body .dropdown-options.w-col-168{width:168px}.ta-input-dropdown .popover-body .dropdown-options.w-col-169{width:169px}.ta-input-dropdown .popover-body .dropdown-options.w-col-170{width:170px}.ta-input-dropdown .popover-body .dropdown-options.w-col-171{width:171px}.ta-input-dropdown .popover-body .dropdown-options.w-col-172{width:172px}.ta-input-dropdown .popover-body .dropdown-options.w-col-173{width:173px}.ta-input-dropdown .popover-body .dropdown-options.w-col-174{width:174px}.ta-input-dropdown .popover-body .dropdown-options.w-col-175{width:175px}.ta-input-dropdown .popover-body .dropdown-options.w-col-176{width:176px}.ta-input-dropdown .popover-body .dropdown-options.w-col-177{width:177px}.ta-input-dropdown .popover-body .dropdown-options.w-col-178{width:178px}.ta-input-dropdown .popover-body .dropdown-options.w-col-179{width:179px}.ta-input-dropdown .popover-body .dropdown-options.w-col-180{width:180px}.ta-input-dropdown .popover-body .dropdown-options.w-col-181{width:181px}.ta-input-dropdown .popover-body .dropdown-options.w-col-182{width:182px}.ta-input-dropdown .popover-body .dropdown-options.w-col-183{width:183px}.ta-input-dropdown .popover-body .dropdown-options.w-col-184{width:184px}.ta-input-dropdown .popover-body .dropdown-options.w-col-185{width:185px}.ta-input-dropdown .popover-body .dropdown-options.w-col-186{width:186px}.ta-input-dropdown .popover-body .dropdown-options.w-col-187{width:187px}.ta-input-dropdown .popover-body .dropdown-options.w-col-188{width:188px}.ta-input-dropdown .popover-body .dropdown-options.w-col-189{width:189px}.ta-input-dropdown .popover-body .dropdown-options.w-col-190{width:190px}.ta-input-dropdown .popover-body .dropdown-options.w-col-191{width:191px}.ta-input-dropdown .popover-body .dropdown-options.w-col-192{width:192px}.ta-input-dropdown .popover-body .dropdown-options.w-col-193{width:193px}.ta-input-dropdown .popover-body .dropdown-options.w-col-194{width:194px}.ta-input-dropdown .popover-body .dropdown-options.w-col-195{width:195px}.ta-input-dropdown .popover-body .dropdown-options.w-col-196{width:196px}.ta-input-dropdown .popover-body .dropdown-options.w-col-197{width:197px}.ta-input-dropdown .popover-body .dropdown-options.w-col-198{width:198px}.ta-input-dropdown .popover-body .dropdown-options.w-col-199{width:199px}.ta-input-dropdown .popover-body .dropdown-options.w-col-200{width:200px}.ta-input-dropdown .popover-body .dropdown-options.w-col-201{width:201px}.ta-input-dropdown .popover-body .dropdown-options.w-col-202{width:202px}.ta-input-dropdown .popover-body .dropdown-options.w-col-203{width:203px}.ta-input-dropdown .popover-body .dropdown-options.w-col-204{width:204px}.ta-input-dropdown .popover-body .dropdown-options.w-col-205{width:205px}.ta-input-dropdown .popover-body .dropdown-options.w-col-206{width:206px}.ta-input-dropdown .popover-body .dropdown-options.w-col-207{width:207px}.ta-input-dropdown .popover-body .dropdown-options.w-col-208{width:208px}.ta-input-dropdown .popover-body .dropdown-options.w-col-209{width:209px}.ta-input-dropdown .popover-body .dropdown-options.w-col-210{width:210px}.ta-input-dropdown .popover-body .dropdown-options.w-col-211{width:211px}.ta-input-dropdown .popover-body .dropdown-options.w-col-212{width:212px}.ta-input-dropdown .popover-body .dropdown-options.w-col-213{width:213px}.ta-input-dropdown .popover-body .dropdown-options.w-col-214{width:214px}.ta-input-dropdown .popover-body .dropdown-options.w-col-215{width:215px}.ta-input-dropdown .popover-body .dropdown-options.w-col-216{width:216px}.ta-input-dropdown .popover-body .dropdown-options.w-col-217{width:217px}.ta-input-dropdown .popover-body .dropdown-options.w-col-218{width:218px}.ta-input-dropdown .popover-body .dropdown-options.w-col-219{width:219px}.ta-input-dropdown .popover-body .dropdown-options.w-col-220{width:220px}.ta-input-dropdown .popover-body .dropdown-options.w-col-221{width:221px}.ta-input-dropdown .popover-body .dropdown-options.w-col-222{width:222px}.ta-input-dropdown .popover-body .dropdown-options.w-col-223{width:223px}.ta-input-dropdown .popover-body .dropdown-options.w-col-224{width:224px}.ta-input-dropdown .popover-body .dropdown-options.w-col-225{width:225px}.ta-input-dropdown .popover-body .dropdown-options.w-col-226{width:226px}.ta-input-dropdown .popover-body .dropdown-options.w-col-227{width:227px}.ta-input-dropdown .popover-body .dropdown-options.w-col-228{width:228px}.ta-input-dropdown .popover-body .dropdown-options.w-col-229{width:229px}.ta-input-dropdown .popover-body .dropdown-options.w-col-230{width:230px}.ta-input-dropdown .popover-body .dropdown-options.w-col-231{width:231px}.ta-input-dropdown .popover-body .dropdown-options.w-col-232{width:232px}.ta-input-dropdown .popover-body .dropdown-options.w-col-233{width:233px}.ta-input-dropdown .popover-body .dropdown-options.w-col-234{width:234px}.ta-input-dropdown .popover-body .dropdown-options.w-col-235{width:235px}.ta-input-dropdown .popover-body .dropdown-options.w-col-236{width:236px}.ta-input-dropdown .popover-body .dropdown-options.w-col-237{width:237px}.ta-input-dropdown .popover-body .dropdown-options.w-col-238{width:238px}.ta-input-dropdown .popover-body .dropdown-options.w-col-239{width:239px}.ta-input-dropdown .popover-body .dropdown-options.w-col-240{width:240px}.ta-input-dropdown .popover-body .dropdown-options.w-col-241{width:241px}.ta-input-dropdown .popover-body .dropdown-options.w-col-242{width:242px}.ta-input-dropdown .popover-body .dropdown-options.w-col-243{width:243px}.ta-input-dropdown .popover-body .dropdown-options.w-col-244{width:244px}.ta-input-dropdown .popover-body .dropdown-options.w-col-245{width:245px}.ta-input-dropdown .popover-body .dropdown-options.w-col-246{width:246px}.ta-input-dropdown .popover-body .dropdown-options.w-col-247{width:247px}.ta-input-dropdown .popover-body .dropdown-options.w-col-248{width:248px}.ta-input-dropdown .popover-body .dropdown-options.w-col-249{width:249px}.ta-input-dropdown .popover-body .dropdown-options.w-col-250{width:250px}.ta-input-dropdown .popover-body .dropdown-options.w-col-251{width:251px}.ta-input-dropdown .popover-body .dropdown-options.w-col-252{width:252px}.ta-input-dropdown .popover-body .dropdown-options.w-col-253{width:253px}.ta-input-dropdown .popover-body .dropdown-options.w-col-254{width:254px}.ta-input-dropdown .popover-body .dropdown-options.w-col-255{width:255px}.ta-input-dropdown .popover-body .dropdown-options.w-col-256{width:256px}.ta-input-dropdown .popover-body .dropdown-options.w-col-257{width:257px}.ta-input-dropdown .popover-body .dropdown-options.w-col-258{width:258px}.ta-input-dropdown .popover-body .dropdown-options.w-col-259{width:259px}.ta-input-dropdown .popover-body .dropdown-options.w-col-260{width:260px}.ta-input-dropdown .popover-body .dropdown-options.w-col-261{width:261px}.ta-input-dropdown .popover-body .dropdown-options.w-col-262{width:262px}.ta-input-dropdown .popover-body .dropdown-options.w-col-263{width:263px}.ta-input-dropdown .popover-body .dropdown-options.w-col-264{width:264px}.ta-input-dropdown .popover-body .dropdown-options.w-col-265{width:265px}.ta-input-dropdown .popover-body .dropdown-options.w-col-266{width:266px}.ta-input-dropdown .popover-body .dropdown-options.w-col-267{width:267px}.ta-input-dropdown .popover-body .dropdown-options.w-col-268{width:268px}.ta-input-dropdown .popover-body .dropdown-options.w-col-269{width:269px}.ta-input-dropdown .popover-body .dropdown-options.w-col-270{width:270px}.ta-input-dropdown .popover-body .dropdown-options.w-col-271{width:271px}.ta-input-dropdown .popover-body .dropdown-options.w-col-272{width:272px}.ta-input-dropdown .popover-body .dropdown-options.w-col-273{width:273px}.ta-input-dropdown .popover-body .dropdown-options.w-col-274{width:274px}.ta-input-dropdown .popover-body .dropdown-options.w-col-275{width:275px}.ta-input-dropdown .popover-body .dropdown-options.w-col-276{width:276px}.ta-input-dropdown .popover-body .dropdown-options.w-col-277{width:277px}.ta-input-dropdown .popover-body .dropdown-options.w-col-278{width:278px}.ta-input-dropdown .popover-body .dropdown-options.w-col-279{width:279px}.ta-input-dropdown .popover-body .dropdown-options.w-col-280{width:280px}.ta-input-dropdown .popover-body .dropdown-options.w-col-281{width:281px}.ta-input-dropdown .popover-body .dropdown-options.w-col-282{width:282px}.ta-input-dropdown .popover-body .dropdown-options.w-col-283{width:283px}.ta-input-dropdown .popover-body .dropdown-options.w-col-284{width:284px}.ta-input-dropdown .popover-body .dropdown-options.w-col-285{width:285px}.ta-input-dropdown .popover-body .dropdown-options.w-col-286{width:286px}.ta-input-dropdown .popover-body .dropdown-options.w-col-287{width:287px}.ta-input-dropdown .popover-body .dropdown-options.w-col-288{width:288px}.ta-input-dropdown .popover-body .dropdown-options.w-col-289{width:289px}.ta-input-dropdown .popover-body .dropdown-options.w-col-290{width:290px}.ta-input-dropdown .popover-body .dropdown-options.w-col-291{width:291px}.ta-input-dropdown .popover-body .dropdown-options.w-col-292{width:292px}.ta-input-dropdown .popover-body .dropdown-options.w-col-293{width:293px}.ta-input-dropdown .popover-body .dropdown-options.w-col-294{width:294px}.ta-input-dropdown .popover-body .dropdown-options.w-col-295{width:295px}.ta-input-dropdown .popover-body .dropdown-options.w-col-296{width:296px}.ta-input-dropdown .popover-body .dropdown-options.w-col-297{width:297px}.ta-input-dropdown .popover-body .dropdown-options.w-col-298{width:298px}.ta-input-dropdown .popover-body .dropdown-options.w-col-299{width:299px}.ta-input-dropdown .popover-body .dropdown-options.w-col-300{width:300px}.ta-input-dropdown .popover-body .dropdown-options.w-col-301{width:301px}.ta-input-dropdown .popover-body .dropdown-options.w-col-302{width:302px}.ta-input-dropdown .popover-body .dropdown-options.w-col-303{width:303px}.ta-input-dropdown .popover-body .dropdown-options.w-col-304{width:304px}.ta-input-dropdown .popover-body .dropdown-options.w-col-305{width:305px}.ta-input-dropdown .popover-body .dropdown-options.w-col-306{width:306px}.ta-input-dropdown .popover-body .dropdown-options.w-col-307{width:307px}.ta-input-dropdown .popover-body .dropdown-options.w-col-308{width:308px}.ta-input-dropdown .popover-body .dropdown-options.w-col-309{width:309px}.ta-input-dropdown .popover-body .dropdown-options.w-col-310{width:310px}.ta-input-dropdown .popover-body .dropdown-options.w-col-311{width:311px}.ta-input-dropdown .popover-body .dropdown-options.w-col-312{width:312px}.ta-input-dropdown .popover-body .dropdown-options.w-col-313{width:313px}.ta-input-dropdown .popover-body .dropdown-options.w-col-314{width:314px}.ta-input-dropdown .popover-body .dropdown-options.w-col-315{width:315px}.ta-input-dropdown .popover-body .dropdown-options.w-col-316{width:316px}.ta-input-dropdown .popover-body .dropdown-options.w-col-317{width:317px}.ta-input-dropdown .popover-body .dropdown-options.w-col-318{width:318px}.ta-input-dropdown .popover-body .dropdown-options.w-col-319{width:319px}.ta-input-dropdown .popover-body .dropdown-options.w-col-320{width:320px}.ta-input-dropdown .popover-body .dropdown-options.w-col-321{width:321px}.ta-input-dropdown .popover-body .dropdown-options.w-col-322{width:322px}.ta-input-dropdown .popover-body .dropdown-options.w-col-323{width:323px}.ta-input-dropdown .popover-body .dropdown-options.w-col-324{width:324px}.ta-input-dropdown .popover-body .dropdown-options.w-col-325{width:325px}.ta-input-dropdown .popover-body .dropdown-options.w-col-326{width:326px}.ta-input-dropdown .popover-body .dropdown-options.w-col-327{width:327px}.ta-input-dropdown .popover-body .dropdown-options.w-col-328{width:328px}.ta-input-dropdown .popover-body .dropdown-options.w-col-329{width:329px}.ta-input-dropdown .popover-body .dropdown-options.w-col-330{width:330px}.ta-input-dropdown .popover-body .dropdown-options.w-col-331{width:331px}.ta-input-dropdown .popover-body .dropdown-options.w-col-332{width:332px}.ta-input-dropdown .popover-body .dropdown-options.w-col-333{width:333px}.ta-input-dropdown .popover-body .dropdown-options.w-col-334{width:334px}.ta-input-dropdown .popover-body .dropdown-options.w-col-335{width:335px}.ta-input-dropdown .popover-body .dropdown-options.w-col-336{width:336px}.ta-input-dropdown .popover-body .dropdown-options.w-col-337{width:337px}.ta-input-dropdown .popover-body .dropdown-options.w-col-338{width:338px}.ta-input-dropdown .popover-body .dropdown-options.w-col-339{width:339px}.ta-input-dropdown .popover-body .dropdown-options.w-col-340{width:340px}.ta-input-dropdown .popover-body .dropdown-options.w-col-341{width:341px}.ta-input-dropdown .popover-body .dropdown-options.w-col-342{width:342px}.ta-input-dropdown .popover-body .dropdown-options.w-col-343{width:343px}.ta-input-dropdown .popover-body .dropdown-options.w-col-344{width:344px}.ta-input-dropdown .popover-body .dropdown-options.w-col-345{width:345px}.ta-input-dropdown .popover-body .dropdown-options.w-col-346{width:346px}.ta-input-dropdown .popover-body .dropdown-options.w-col-347{width:347px}.ta-input-dropdown .popover-body .dropdown-options.w-col-348{width:348px}.ta-input-dropdown .popover-body .dropdown-options.w-col-349{width:349px}.ta-input-dropdown .popover-body .dropdown-options.w-col-350{width:350px}.ta-input-dropdown .popover-body .dropdown-options.w-col-351{width:351px}.ta-input-dropdown .popover-body .dropdown-options.w-col-352{width:352px}.ta-input-dropdown .popover-body .dropdown-options.w-col-353{width:353px}.ta-input-dropdown .popover-body .dropdown-options.w-col-354{width:354px}.ta-input-dropdown .popover-body .dropdown-options.w-col-355{width:355px}.ta-input-dropdown .popover-body .dropdown-options.w-col-356{width:356px}.ta-input-dropdown .popover-body .dropdown-options.w-col-357{width:357px}.ta-input-dropdown .popover-body .dropdown-options.w-col-358{width:358px}.ta-input-dropdown .popover-body .dropdown-options.w-col-359{width:359px}.ta-input-dropdown .popover-body .dropdown-options.w-col-360{width:360px}.ta-input-dropdown .popover-body .dropdown-options.w-col-361{width:361px}.ta-input-dropdown .popover-body .dropdown-options.w-col-362{width:362px}.ta-input-dropdown .popover-body .dropdown-options.w-col-363{width:363px}.ta-input-dropdown .popover-body .dropdown-options.w-col-364{width:364px}.ta-input-dropdown .popover-body .dropdown-options.w-col-365{width:365px}.ta-input-dropdown .popover-body .dropdown-options.w-col-366{width:366px}.ta-input-dropdown .popover-body .dropdown-options.w-col-367{width:367px}.ta-input-dropdown .popover-body .dropdown-options.w-col-368{width:368px}.ta-input-dropdown .popover-body .dropdown-options.w-col-369{width:369px}.ta-input-dropdown .popover-body .dropdown-options.w-col-370{width:370px}.ta-input-dropdown .popover-body .dropdown-options.w-col-371{width:371px}.ta-input-dropdown .popover-body .dropdown-options.w-col-372{width:372px}.ta-input-dropdown .popover-body .dropdown-options.w-col-373{width:373px}.ta-input-dropdown .popover-body .dropdown-options.w-col-374{width:374px}.ta-input-dropdown .popover-body .dropdown-options.w-col-375{width:375px}.ta-input-dropdown .popover-body .dropdown-options.w-col-376{width:376px}.ta-input-dropdown .popover-body .dropdown-options.w-col-377{width:377px}.ta-input-dropdown .popover-body .dropdown-options.w-col-378{width:378px}.ta-input-dropdown .popover-body .dropdown-options.w-col-379{width:379px}.ta-input-dropdown .popover-body .dropdown-options.w-col-380{width:380px}.ta-input-dropdown .popover-body .dropdown-options.w-col-381{width:381px}.ta-input-dropdown .popover-body .dropdown-options.w-col-382{width:382px}.ta-input-dropdown .popover-body .dropdown-options.w-col-383{width:383px}.ta-input-dropdown .popover-body .dropdown-options.w-col-384{width:384px}.ta-input-dropdown .popover-body .dropdown-options.w-col-385{width:385px}.ta-input-dropdown .popover-body .dropdown-options.w-col-386{width:386px}.ta-input-dropdown .popover-body .dropdown-options.w-col-387{width:387px}.ta-input-dropdown .popover-body .dropdown-options.w-col-388{width:388px}.ta-input-dropdown .popover-body .dropdown-options.w-col-389{width:389px}.ta-input-dropdown .popover-body .dropdown-options.w-col-390{width:390px}.ta-input-dropdown .popover-body .dropdown-options.w-col-391{width:391px}.ta-input-dropdown .popover-body .dropdown-options.w-col-392{width:392px}.ta-input-dropdown .popover-body .dropdown-options.w-col-393{width:393px}.ta-input-dropdown .popover-body .dropdown-options.w-col-394{width:394px}.ta-input-dropdown .popover-body .dropdown-options.w-col-395{width:395px}.ta-input-dropdown .popover-body .dropdown-options.w-col-396{width:396px}.ta-input-dropdown .popover-body .dropdown-options.w-col-397{width:397px}.ta-input-dropdown .popover-body .dropdown-options.w-col-398{width:398px}.ta-input-dropdown .popover-body .dropdown-options.w-col-399{width:399px}.ta-input-dropdown .popover-body .dropdown-options.w-col-400{width:400px}.ta-input-dropdown .popover-body .dropdown-options.w-col-401{width:401px}.ta-input-dropdown .popover-body .dropdown-options.w-col-402{width:402px}.ta-input-dropdown .popover-body .dropdown-options.w-col-403{width:403px}.ta-input-dropdown .popover-body .dropdown-options.w-col-404{width:404px}.ta-input-dropdown .popover-body .dropdown-options.w-col-405{width:405px}.ta-input-dropdown .popover-body .dropdown-options.w-col-406{width:406px}.ta-input-dropdown .popover-body .dropdown-options.w-col-407{width:407px}.ta-input-dropdown .popover-body .dropdown-options.w-col-408{width:408px}.ta-input-dropdown .popover-body .dropdown-options.w-col-409{width:409px}.ta-input-dropdown .popover-body .dropdown-options.w-col-410{width:410px}.ta-input-dropdown .popover-body .dropdown-options.w-col-411{width:411px}.ta-input-dropdown .popover-body .dropdown-options.w-col-412{width:412px}.ta-input-dropdown .popover-body .dropdown-options.w-col-413{width:413px}.ta-input-dropdown .popover-body .dropdown-options.w-col-414{width:414px}.ta-input-dropdown .popover-body .dropdown-options.w-col-415{width:415px}.ta-input-dropdown .popover-body .dropdown-options.w-col-416{width:416px}.ta-input-dropdown .popover-body .dropdown-options.w-col-417{width:417px}.ta-input-dropdown .popover-body .dropdown-options.w-col-418{width:418px}.ta-input-dropdown .popover-body .dropdown-options.w-col-419{width:419px}.ta-input-dropdown .popover-body .dropdown-options.w-col-420{width:420px}.ta-input-dropdown .popover-body .dropdown-options.w-col-421{width:421px}.ta-input-dropdown .popover-body .dropdown-options.w-col-422{width:422px}.ta-input-dropdown .popover-body .dropdown-options.w-col-423{width:423px}.ta-input-dropdown .popover-body .dropdown-options.w-col-424{width:424px}.ta-input-dropdown .popover-body .dropdown-options.w-col-425{width:425px}.ta-input-dropdown .popover-body .dropdown-options.w-col-426{width:426px}.ta-input-dropdown .popover-body .dropdown-options.w-col-427{width:427px}.ta-input-dropdown .popover-body .dropdown-options.w-col-428{width:428px}.ta-input-dropdown .popover-body .dropdown-options.w-col-429{width:429px}.ta-input-dropdown .popover-body .dropdown-options.w-col-430{width:430px}.ta-input-dropdown .popover-body .dropdown-options.w-col-431{width:431px}.ta-input-dropdown .popover-body .dropdown-options.w-col-432{width:432px}.ta-input-dropdown .popover-body .dropdown-options.w-col-433{width:433px}.ta-input-dropdown .popover-body .dropdown-options.w-col-434{width:434px}.ta-input-dropdown .popover-body .dropdown-options.w-col-435{width:435px}.ta-input-dropdown .popover-body .dropdown-options.w-col-436{width:436px}.ta-input-dropdown .popover-body .dropdown-options.w-col-437{width:437px}.ta-input-dropdown .popover-body .dropdown-options.w-col-438{width:438px}.ta-input-dropdown .popover-body .dropdown-options.w-col-439{width:439px}.ta-input-dropdown .popover-body .dropdown-options.w-col-440{width:440px}.ta-input-dropdown .popover-body .dropdown-options.w-col-441{width:441px}.ta-input-dropdown .popover-body .dropdown-options.w-col-442{width:442px}.ta-input-dropdown .popover-body .dropdown-options.w-col-443{width:443px}.ta-input-dropdown .popover-body .dropdown-options.w-col-444{width:444px}.ta-input-dropdown .popover-body .dropdown-options.w-col-445{width:445px}.ta-input-dropdown .popover-body .dropdown-options.w-col-446{width:446px}.ta-input-dropdown .popover-body .dropdown-options.w-col-447{width:447px}.ta-input-dropdown .popover-body .dropdown-options.w-col-448{width:448px}.ta-input-dropdown .popover-body .dropdown-options.w-col-449{width:449px}.ta-input-dropdown .popover-body .dropdown-options.w-col-450{width:450px}.ta-input-dropdown .popover-body .dropdown-options.w-col-451{width:451px}.ta-input-dropdown .popover-body .dropdown-options.w-col-452{width:452px}.ta-input-dropdown .popover-body .dropdown-options.w-col-453{width:453px}.ta-input-dropdown .popover-body .dropdown-options.w-col-454{width:454px}.ta-input-dropdown .popover-body .dropdown-options.w-col-455{width:455px}.ta-input-dropdown .popover-body .dropdown-options.w-col-456{width:456px}.ta-input-dropdown .popover-body .dropdown-options.w-col-457{width:457px}.ta-input-dropdown .popover-body .dropdown-options.w-col-458{width:458px}.ta-input-dropdown .popover-body .dropdown-options.w-col-459{width:459px}.ta-input-dropdown .popover-body .dropdown-options.w-col-460{width:460px}.ta-input-dropdown .popover-body .dropdown-options.w-col-461{width:461px}.ta-input-dropdown .popover-body .dropdown-options.w-col-462{width:462px}.ta-input-dropdown .popover-body .dropdown-options.w-col-463{width:463px}.ta-input-dropdown .popover-body .dropdown-options.w-col-464{width:464px}.ta-input-dropdown .popover-body .dropdown-options.w-col-465{width:465px}.ta-input-dropdown .popover-body .dropdown-options.w-col-466{width:466px}.ta-input-dropdown .popover-body .dropdown-options.w-col-467{width:467px}.ta-input-dropdown .popover-body .dropdown-options.w-col-468{width:468px}.ta-input-dropdown .popover-body .dropdown-options.w-col-469{width:469px}.ta-input-dropdown .popover-body .dropdown-options.w-col-470{width:470px}.ta-input-dropdown .popover-body .dropdown-options.w-col-471{width:471px}.ta-input-dropdown .popover-body .dropdown-options.w-col-472{width:472px}.ta-input-dropdown .popover-body .dropdown-options.w-col-473{width:473px}.ta-input-dropdown .popover-body .dropdown-options.w-col-474{width:474px}.ta-input-dropdown .popover-body .dropdown-options.w-col-475{width:475px}.ta-input-dropdown .popover-body .dropdown-options.w-col-476{width:476px}.ta-input-dropdown .popover-body .dropdown-options.w-col-477{width:477px}.ta-input-dropdown .popover-body .dropdown-options.w-col-478{width:478px}.ta-input-dropdown .popover-body .dropdown-options.w-col-479{width:479px}.ta-input-dropdown .popover-body .dropdown-options.w-col-480{width:480px}.ta-input-dropdown .popover-body .dropdown-options.w-col-481{width:481px}.ta-input-dropdown .popover-body .dropdown-options.w-col-482{width:482px}.ta-input-dropdown .popover-body .dropdown-options.w-col-483{width:483px}.ta-input-dropdown .popover-body .dropdown-options.w-col-484{width:484px}.ta-input-dropdown .popover-body .dropdown-options.w-col-485{width:485px}.ta-input-dropdown .popover-body .dropdown-options.w-col-486{width:486px}.ta-input-dropdown .popover-body .dropdown-options.w-col-487{width:487px}.ta-input-dropdown .popover-body .dropdown-options.w-col-488{width:488px}.ta-input-dropdown .popover-body .dropdown-options.w-col-489{width:489px}.ta-input-dropdown .popover-body .dropdown-options.w-col-490{width:490px}.ta-input-dropdown .popover-body .dropdown-options.w-col-491{width:491px}.ta-input-dropdown .popover-body .dropdown-options.w-col-492{width:492px}.ta-input-dropdown .popover-body .dropdown-options.w-col-493{width:493px}.ta-input-dropdown .popover-body .dropdown-options.w-col-494{width:494px}.ta-input-dropdown .popover-body .dropdown-options.w-col-495{width:495px}.ta-input-dropdown .popover-body .dropdown-options.w-col-496{width:496px}.ta-input-dropdown .popover-body .dropdown-options.w-col-497{width:497px}.ta-input-dropdown .popover-body .dropdown-options.w-col-498{width:498px}.ta-input-dropdown .popover-body .dropdown-options.w-col-499{width:499px}.ta-input-dropdown .popover-body .dropdown-options.w-col-500{width:500px}.ta-input-dropdown .popover-body .dropdown-options.w-col-501{width:501px}.ta-input-dropdown .popover-body .dropdown-options.w-col-502{width:502px}.ta-input-dropdown .popover-body .dropdown-options.w-col-503{width:503px}.ta-input-dropdown .popover-body .dropdown-options.w-col-504{width:504px}.ta-input-dropdown .popover-body .dropdown-options.w-col-505{width:505px}.ta-input-dropdown .popover-body .dropdown-options.w-col-506{width:506px}.ta-input-dropdown .popover-body .dropdown-options.w-col-507{width:507px}.ta-input-dropdown .popover-body .dropdown-options.w-col-508{width:508px}.ta-input-dropdown .popover-body .dropdown-options.w-col-509{width:509px}.ta-input-dropdown .popover-body .dropdown-options.w-col-510{width:510px}.ta-input-dropdown .popover-body .dropdown-options.w-col-511{width:511px}.ta-input-dropdown .popover-body .dropdown-options.w-col-512{width:512px}.ta-input-dropdown .popover-body .dropdown-options.w-col-513{width:513px}.ta-input-dropdown .popover-body .dropdown-options.w-col-514{width:514px}.ta-input-dropdown .popover-body .dropdown-options.w-col-515{width:515px}.ta-input-dropdown .popover-body .dropdown-options.w-col-516{width:516px}.ta-input-dropdown .popover-body .dropdown-options.w-col-517{width:517px}.ta-input-dropdown .popover-body .dropdown-options.w-col-518{width:518px}.ta-input-dropdown .popover-body .dropdown-options.w-col-519{width:519px}.ta-input-dropdown .popover-body .dropdown-options.w-col-520{width:520px}.ta-input-dropdown .popover-body .dropdown-options.w-col-521{width:521px}.ta-input-dropdown .popover-body .dropdown-options.w-col-522{width:522px}.ta-input-dropdown .popover-body .dropdown-options.w-col-523{width:523px}.ta-input-dropdown .popover-body .dropdown-options.w-col-524{width:524px}.ta-input-dropdown .popover-body .dropdown-options.w-col-525{width:525px}.ta-input-dropdown .popover-body .dropdown-options.w-col-526{width:526px}.ta-input-dropdown .popover-body .dropdown-options.w-col-527{width:527px}.ta-input-dropdown .popover-body .dropdown-options.w-col-528{width:528px}.ta-input-dropdown .popover-body .dropdown-options.w-col-529{width:529px}.ta-input-dropdown .popover-body .dropdown-options.w-col-530{width:530px}.ta-input-dropdown .popover-body .dropdown-options.w-col-531{width:531px}.ta-input-dropdown .popover-body .dropdown-options.w-col-532{width:532px}.ta-input-dropdown .popover-body .dropdown-options.w-col-533{width:533px}.ta-input-dropdown .popover-body .dropdown-options.w-col-534{width:534px}.ta-input-dropdown .popover-body .dropdown-options.w-col-535{width:535px}.ta-input-dropdown .popover-body .dropdown-options.w-col-536{width:536px}.ta-input-dropdown .popover-body .dropdown-options.w-col-537{width:537px}.ta-input-dropdown .popover-body .dropdown-options.w-col-538{width:538px}.ta-input-dropdown .popover-body .dropdown-options.w-col-539{width:539px}.ta-input-dropdown .popover-body .dropdown-options.w-col-540{width:540px}.ta-input-dropdown .popover-body .dropdown-options.w-col-541{width:541px}.ta-input-dropdown .popover-body .dropdown-options.w-col-542{width:542px}.ta-input-dropdown .popover-body .dropdown-options.w-col-543{width:543px}.ta-input-dropdown .popover-body .dropdown-options.w-col-544{width:544px}.ta-input-dropdown .popover-body .dropdown-options.w-col-545{width:545px}.ta-input-dropdown .popover-body .dropdown-options.w-col-546{width:546px}.ta-input-dropdown .popover-body .dropdown-options.w-col-547{width:547px}.ta-input-dropdown .popover-body .dropdown-options.w-col-548{width:548px}.ta-input-dropdown .popover-body .dropdown-options.w-col-549{width:549px}.ta-input-dropdown .popover-body .dropdown-options.w-col-550{width:550px}.ta-input-dropdown .popover-body .dropdown-options.w-col-551{width:551px}.ta-input-dropdown .popover-body .dropdown-options.w-col-552{width:552px}.ta-input-dropdown .popover-body .dropdown-options.w-col-553{width:553px}.ta-input-dropdown .popover-body .dropdown-options.w-col-554{width:554px}.ta-input-dropdown .popover-body .dropdown-options.w-col-555{width:555px}.ta-input-dropdown .popover-body .dropdown-options.w-col-556{width:556px}.ta-input-dropdown .popover-body .dropdown-options.w-col-557{width:557px}.ta-input-dropdown .popover-body .dropdown-options.w-col-558{width:558px}.ta-input-dropdown .popover-body .dropdown-options.w-col-559{width:559px}.ta-input-dropdown .popover-body .dropdown-options.w-col-560{width:560px}.ta-input-dropdown .popover-body .dropdown-options.w-col-561{width:561px}.ta-input-dropdown .popover-body .dropdown-options.w-col-562{width:562px}.ta-input-dropdown .popover-body .dropdown-options.w-col-563{width:563px}.ta-input-dropdown .popover-body .dropdown-options.w-col-564{width:564px}.ta-input-dropdown .popover-body .dropdown-options.w-col-565{width:565px}.ta-input-dropdown .popover-body .dropdown-options.w-col-566{width:566px}.ta-input-dropdown .popover-body .dropdown-options.w-col-567{width:567px}.ta-input-dropdown .popover-body .dropdown-options.w-col-568{width:568px}.ta-input-dropdown .popover-body .dropdown-options.w-col-569{width:569px}.ta-input-dropdown .popover-body .dropdown-options.w-col-570{width:570px}.ta-input-dropdown .popover-body .dropdown-options.w-col-571{width:571px}.ta-input-dropdown .popover-body .dropdown-options.w-col-572{width:572px}.ta-input-dropdown .popover-body .dropdown-options.w-col-573{width:573px}.ta-input-dropdown .popover-body .dropdown-options.w-col-574{width:574px}.ta-input-dropdown .popover-body .dropdown-options.w-col-575{width:575px}.ta-input-dropdown .popover-body .dropdown-options.w-col-576{width:576px}.ta-input-dropdown .popover-body .dropdown-options.w-col-577{width:577px}.ta-input-dropdown .popover-body .dropdown-options.w-col-578{width:578px}.ta-input-dropdown .popover-body .dropdown-options.w-col-579{width:579px}.ta-input-dropdown .popover-body .dropdown-options.w-col-580{width:580px}.ta-input-dropdown .popover-body .dropdown-options.w-col-581{width:581px}.ta-input-dropdown .popover-body .dropdown-options.w-col-582{width:582px}.ta-input-dropdown .popover-body .dropdown-options.w-col-583{width:583px}.ta-input-dropdown .popover-body .dropdown-options.w-col-584{width:584px}.ta-input-dropdown .popover-body .dropdown-options.w-col-585{width:585px}.ta-input-dropdown .popover-body .dropdown-options.w-col-586{width:586px}.ta-input-dropdown .popover-body .dropdown-options.w-col-587{width:587px}.ta-input-dropdown .popover-body .dropdown-options.w-col-588{width:588px}.ta-input-dropdown .popover-body .dropdown-options.w-col-589{width:589px}.ta-input-dropdown .popover-body .dropdown-options.w-col-590{width:590px}.ta-input-dropdown .popover-body .dropdown-options.w-col-591{width:591px}.ta-input-dropdown .popover-body .dropdown-options.w-col-592{width:592px}.ta-input-dropdown .popover-body .dropdown-options.w-col-593{width:593px}.ta-input-dropdown .popover-body .dropdown-options.w-col-594{width:594px}.ta-input-dropdown .popover-body .dropdown-options.w-col-595{width:595px}.ta-input-dropdown .popover-body .dropdown-options.w-col-596{width:596px}.ta-input-dropdown .popover-body .dropdown-options.w-col-597{width:597px}.ta-input-dropdown .popover-body .dropdown-options.w-col-598{width:598px}.ta-input-dropdown .popover-body .dropdown-options.w-col-599{width:599px}.ta-input-dropdown .popover-body .dropdown-options.w-col-600{width:600px}.ta-input-dropdown .popover-body .dropdown-options.w-col-601{width:601px}.ta-input-dropdown .popover-body .dropdown-options.w-col-602{width:602px}.ta-input-dropdown .popover-body .dropdown-options.w-col-603{width:603px}.ta-input-dropdown .popover-body .dropdown-options.w-col-604{width:604px}.ta-input-dropdown .popover-body .dropdown-options.w-col-605{width:605px}.ta-input-dropdown .popover-body .dropdown-options.w-col-606{width:606px}.ta-input-dropdown .popover-body .dropdown-options.w-col-607{width:607px}.ta-input-dropdown .popover-body .dropdown-options.w-col-608{width:608px}.ta-input-dropdown .popover-body .dropdown-options.w-col-609{width:609px}.ta-input-dropdown .popover-body .dropdown-options.w-col-610{width:610px}.ta-input-dropdown .popover-body .dropdown-options.w-col-611{width:611px}.ta-input-dropdown .popover-body .dropdown-options.w-col-612{width:612px}.ta-input-dropdown .popover-body .dropdown-options.w-col-613{width:613px}.ta-input-dropdown .popover-body .dropdown-options.w-col-614{width:614px}.ta-input-dropdown .popover-body .dropdown-options.w-col-615{width:615px}.ta-input-dropdown .popover-body .dropdown-options.w-col-616{width:616px}.ta-input-dropdown .popover-body .dropdown-options.w-col-617{width:617px}.ta-input-dropdown .popover-body .dropdown-options.w-col-618{width:618px}.ta-input-dropdown .popover-body .dropdown-options.w-col-619{width:619px}.ta-input-dropdown .popover-body .dropdown-options.w-col-620{width:620px}.ta-input-dropdown .popover-body .dropdown-options.w-col-621{width:621px}.ta-input-dropdown .popover-body .dropdown-options.w-col-622{width:622px}.ta-input-dropdown .popover-body .dropdown-options.w-col-623{width:623px}.ta-input-dropdown .popover-body .dropdown-options.w-col-624{width:624px}.ta-input-dropdown .popover-body .dropdown-options.w-col-625{width:625px}.ta-input-dropdown .popover-body .dropdown-options.w-col-626{width:626px}.ta-input-dropdown .popover-body .dropdown-options.w-col-627{width:627px}.ta-input-dropdown .popover-body .dropdown-options.w-col-628{width:628px}.ta-input-dropdown .popover-body .dropdown-options.w-col-629{width:629px}.ta-input-dropdown .popover-body .dropdown-options.w-col-630{width:630px}.ta-input-dropdown .popover-body .dropdown-options.w-col-631{width:631px}.ta-input-dropdown .popover-body .dropdown-options.w-col-632{width:632px}.ta-input-dropdown .popover-body .dropdown-options.w-col-633{width:633px}.ta-input-dropdown .popover-body .dropdown-options.w-col-634{width:634px}.ta-input-dropdown .popover-body .dropdown-options.w-col-635{width:635px}.ta-input-dropdown .popover-body .dropdown-options.w-col-636{width:636px}.ta-input-dropdown .popover-body .dropdown-options.w-col-637{width:637px}.ta-input-dropdown .popover-body .dropdown-options.w-col-638{width:638px}.ta-input-dropdown .popover-body .dropdown-options.w-col-639{width:639px}.ta-input-dropdown .popover-body .dropdown-options.w-col-640{width:640px}.ta-input-dropdown .popover-body .dropdown-options.w-col-641{width:641px}.ta-input-dropdown .popover-body .dropdown-options.w-col-642{width:642px}.ta-input-dropdown .popover-body .dropdown-options.w-col-643{width:643px}.ta-input-dropdown .popover-body .dropdown-options.w-col-644{width:644px}.ta-input-dropdown .popover-body .dropdown-options.w-col-645{width:645px}.ta-input-dropdown .popover-body .dropdown-options.w-col-646{width:646px}.ta-input-dropdown .popover-body .dropdown-options.w-col-647{width:647px}.ta-input-dropdown .popover-body .dropdown-options.w-col-648{width:648px}.ta-input-dropdown .popover-body .dropdown-options.w-col-649{width:649px}.ta-input-dropdown .popover-body .dropdown-options.w-col-650{width:650px}.ta-input-dropdown .popover-body .dropdown-options.w-col-651{width:651px}.ta-input-dropdown .popover-body .dropdown-options.w-col-652{width:652px}.ta-input-dropdown .popover-body .dropdown-options.w-col-653{width:653px}.ta-input-dropdown .popover-body .dropdown-options.w-col-654{width:654px}.ta-input-dropdown .popover-body .dropdown-options.w-col-655{width:655px}.ta-input-dropdown .popover-body .dropdown-options.w-col-656{width:656px}.ta-input-dropdown .popover-body .dropdown-options.w-col-657{width:657px}.ta-input-dropdown .popover-body .dropdown-options.w-col-658{width:658px}.ta-input-dropdown .popover-body .dropdown-options.w-col-659{width:659px}.ta-input-dropdown .popover-body .dropdown-options.w-col-660{width:660px}.ta-input-dropdown .popover-body .dropdown-options.w-col-661{width:661px}.ta-input-dropdown .popover-body .dropdown-options.w-col-662{width:662px}.ta-input-dropdown .popover-body .dropdown-options.w-col-663{width:663px}.ta-input-dropdown .popover-body .dropdown-options.w-col-664{width:664px}.ta-input-dropdown .popover-body .dropdown-options.w-col-665{width:665px}.ta-input-dropdown .popover-body .dropdown-options.w-col-666{width:666px}.ta-input-dropdown .popover-body .dropdown-options.w-col-667{width:667px}.ta-input-dropdown .popover-body .dropdown-options.w-col-668{width:668px}.ta-input-dropdown .popover-body .dropdown-options.w-col-669{width:669px}.ta-input-dropdown .popover-body .dropdown-options.w-col-670{width:670px}.ta-input-dropdown .popover-body .dropdown-options.w-col-671{width:671px}.ta-input-dropdown .popover-body .dropdown-options.w-col-672{width:672px}.ta-input-dropdown .popover-body .dropdown-options.w-col-673{width:673px}.ta-input-dropdown .popover-body .dropdown-options.w-col-674{width:674px}.ta-input-dropdown .popover-body .dropdown-options.w-col-675{width:675px}.ta-input-dropdown .popover-body .dropdown-options.w-col-676{width:676px}.ta-input-dropdown .popover-body .dropdown-options.w-col-677{width:677px}.ta-input-dropdown .popover-body .dropdown-options.w-col-678{width:678px}.ta-input-dropdown .popover-body .dropdown-options.w-col-679{width:679px}.ta-input-dropdown .popover-body .dropdown-options.w-col-680{width:680px}.ta-input-dropdown .popover-body .dropdown-options.w-col-681{width:681px}.ta-input-dropdown .popover-body .dropdown-options.w-col-682{width:682px}.ta-input-dropdown .popover-body .dropdown-options.w-col-683{width:683px}.ta-input-dropdown .popover-body .dropdown-options.w-col-684{width:684px}.ta-input-dropdown .popover-body .dropdown-options.w-col-685{width:685px}.ta-input-dropdown .popover-body .dropdown-options.w-col-686{width:686px}.ta-input-dropdown .popover-body .dropdown-options.w-col-687{width:687px}.ta-input-dropdown .popover-body .dropdown-options.w-col-688{width:688px}.ta-input-dropdown .popover-body .dropdown-options.w-col-689{width:689px}.ta-input-dropdown .popover-body .dropdown-options.w-col-690{width:690px}.ta-input-dropdown .popover-body .dropdown-options.w-col-691{width:691px}.ta-input-dropdown .popover-body .dropdown-options.w-col-692{width:692px}.ta-input-dropdown .popover-body .dropdown-options.w-col-693{width:693px}.ta-input-dropdown .popover-body .dropdown-options.w-col-694{width:694px}.ta-input-dropdown .popover-body .dropdown-options.w-col-695{width:695px}.ta-input-dropdown .popover-body .dropdown-options.w-col-696{width:696px}.ta-input-dropdown .popover-body .dropdown-options.w-col-697{width:697px}.ta-input-dropdown .popover-body .dropdown-options.w-col-698{width:698px}.ta-input-dropdown .popover-body .dropdown-options.w-col-699{width:699px}.ta-input-dropdown .popover-body .dropdown-options.w-col-700{width:700px}.ta-input-dropdown .popover-body .dropdown-options.w-col-701{width:701px}.ta-input-dropdown .popover-body .dropdown-options.w-col-702{width:702px}.ta-input-dropdown .popover-body .dropdown-options.w-col-703{width:703px}.ta-input-dropdown .popover-body .dropdown-options.w-col-704{width:704px}.ta-input-dropdown .popover-body .dropdown-options.w-col-705{width:705px}.ta-input-dropdown .popover-body .dropdown-options.w-col-706{width:706px}.ta-input-dropdown .popover-body .dropdown-options.w-col-707{width:707px}.ta-input-dropdown .popover-body .dropdown-options.w-col-708{width:708px}.ta-input-dropdown .popover-body .dropdown-options.w-col-709{width:709px}.ta-input-dropdown .popover-body .dropdown-options.w-col-710{width:710px}.ta-input-dropdown .popover-body .dropdown-options.w-col-711{width:711px}.ta-input-dropdown .popover-body .dropdown-options.w-col-712{width:712px}.ta-input-dropdown .popover-body .dropdown-options.w-col-713{width:713px}.ta-input-dropdown .popover-body .dropdown-options.w-col-714{width:714px}.ta-input-dropdown .popover-body .dropdown-options.w-col-715{width:715px}.ta-input-dropdown .popover-body .dropdown-options.w-col-716{width:716px}.ta-input-dropdown .popover-body .dropdown-options.w-col-717{width:717px}.ta-input-dropdown .popover-body .dropdown-options.w-col-718{width:718px}.ta-input-dropdown .popover-body .dropdown-options.w-col-719{width:719px}.ta-input-dropdown .popover-body .dropdown-options.w-col-720{width:720px}.ta-input-dropdown .popover-body .dropdown-options.w-col-721{width:721px}.ta-input-dropdown .popover-body .dropdown-options.w-col-722{width:722px}.ta-input-dropdown .popover-body .dropdown-options.w-col-723{width:723px}.ta-input-dropdown .popover-body .dropdown-options.w-col-724{width:724px}.ta-input-dropdown .popover-body .dropdown-options.w-col-725{width:725px}.ta-input-dropdown .popover-body .dropdown-options.w-col-726{width:726px}.ta-input-dropdown .popover-body .dropdown-options.w-col-727{width:727px}.ta-input-dropdown .popover-body .dropdown-options.w-col-728{width:728px}.ta-input-dropdown .popover-body .dropdown-options.w-col-729{width:729px}.ta-input-dropdown .popover-body .dropdown-options.w-col-730{width:730px}.ta-input-dropdown .popover-body .dropdown-options.w-col-731{width:731px}.ta-input-dropdown .popover-body .dropdown-options.w-col-732{width:732px}.ta-input-dropdown .popover-body .dropdown-options.w-col-733{width:733px}.ta-input-dropdown .popover-body .dropdown-options.w-col-734{width:734px}.ta-input-dropdown .popover-body .dropdown-options.w-col-735{width:735px}.ta-input-dropdown .popover-body .dropdown-options.w-col-736{width:736px}.ta-input-dropdown .popover-body .dropdown-options.w-col-737{width:737px}.ta-input-dropdown .popover-body .dropdown-options.w-col-738{width:738px}.ta-input-dropdown .popover-body .dropdown-options.w-col-739{width:739px}.ta-input-dropdown .popover-body .dropdown-options.w-col-740{width:740px}.ta-input-dropdown .popover-body .dropdown-options.w-col-741{width:741px}.ta-input-dropdown .popover-body .dropdown-options.w-col-742{width:742px}.ta-input-dropdown .popover-body .dropdown-options.w-col-743{width:743px}.ta-input-dropdown .popover-body .dropdown-options.w-col-744{width:744px}.ta-input-dropdown .popover-body .dropdown-options.w-col-745{width:745px}.ta-input-dropdown .popover-body .dropdown-options.w-col-746{width:746px}.ta-input-dropdown .popover-body .dropdown-options.w-col-747{width:747px}.ta-input-dropdown .popover-body .dropdown-options.w-col-748{width:748px}.ta-input-dropdown .popover-body .dropdown-options.w-col-749{width:749px}.ta-input-dropdown .popover-body .dropdown-options.w-col-750{width:750px}.ta-input-dropdown .popover-body .dropdown-options.w-col-751{width:751px}.ta-input-dropdown .popover-body .dropdown-options.w-col-752{width:752px}.ta-input-dropdown .popover-body .dropdown-options.w-col-753{width:753px}.ta-input-dropdown .popover-body .dropdown-options.w-col-754{width:754px}.ta-input-dropdown .popover-body .dropdown-options.w-col-755{width:755px}.ta-input-dropdown .popover-body .dropdown-options.w-col-756{width:756px}.ta-input-dropdown .popover-body .dropdown-options.w-col-757{width:757px}.ta-input-dropdown .popover-body .dropdown-options.w-col-758{width:758px}.ta-input-dropdown .popover-body .dropdown-options.w-col-759{width:759px}.ta-input-dropdown .popover-body .dropdown-options.w-col-760{width:760px}.ta-input-dropdown .popover-body .dropdown-options.w-col-761{width:761px}.ta-input-dropdown .popover-body .dropdown-options.w-col-762{width:762px}.ta-input-dropdown .popover-body .dropdown-options.w-col-763{width:763px}.ta-input-dropdown .popover-body .dropdown-options.w-col-764{width:764px}.ta-input-dropdown .popover-body .dropdown-options.w-col-765{width:765px}.ta-input-dropdown .popover-body .dropdown-options.w-col-766{width:766px}.ta-input-dropdown .popover-body .dropdown-options.w-col-767{width:767px}.ta-input-dropdown .popover-body .dropdown-options.w-col-768{width:768px}.ta-input-dropdown .popover-body .dropdown-options.w-col-769{width:769px}.ta-input-dropdown .popover-body .dropdown-options.w-col-770{width:770px}.ta-input-dropdown .popover-body .dropdown-options.w-col-771{width:771px}.ta-input-dropdown .popover-body .dropdown-options.w-col-772{width:772px}.ta-input-dropdown .popover-body .dropdown-options.w-col-773{width:773px}.ta-input-dropdown .popover-body .dropdown-options.w-col-774{width:774px}.ta-input-dropdown .popover-body .dropdown-options.w-col-775{width:775px}.ta-input-dropdown .popover-body .dropdown-options.w-col-776{width:776px}.ta-input-dropdown .popover-body .dropdown-options.w-col-777{width:777px}.ta-input-dropdown .popover-body .dropdown-options.w-col-778{width:778px}.ta-input-dropdown .popover-body .dropdown-options.w-col-779{width:779px}.ta-input-dropdown .popover-body .dropdown-options.w-col-780{width:780px}.ta-input-dropdown .popover-body .dropdown-options.w-col-781{width:781px}.ta-input-dropdown .popover-body .dropdown-options.w-col-782{width:782px}.ta-input-dropdown .popover-body .dropdown-options.w-col-783{width:783px}.ta-input-dropdown .popover-body .dropdown-options.w-col-784{width:784px}.ta-input-dropdown .popover-body .dropdown-options.w-col-785{width:785px}.ta-input-dropdown .popover-body .dropdown-options.w-col-786{width:786px}.ta-input-dropdown .popover-body .dropdown-options.w-col-787{width:787px}.ta-input-dropdown .popover-body .dropdown-options.w-col-788{width:788px}.ta-input-dropdown .popover-body .dropdown-options.w-col-789{width:789px}.ta-input-dropdown .popover-body .dropdown-options.w-col-790{width:790px}.ta-input-dropdown .popover-body .dropdown-options.w-col-791{width:791px}.ta-input-dropdown .popover-body .dropdown-options.w-col-792{width:792px}.ta-input-dropdown .popover-body .dropdown-options.w-col-793{width:793px}.ta-input-dropdown .popover-body .dropdown-options.w-col-794{width:794px}.ta-input-dropdown .popover-body .dropdown-options.w-col-795{width:795px}.ta-input-dropdown .popover-body .dropdown-options.w-col-796{width:796px}.ta-input-dropdown .popover-body .dropdown-options.w-col-797{width:797px}.ta-input-dropdown .popover-body .dropdown-options.w-col-798{width:798px}.ta-input-dropdown .popover-body .dropdown-options.w-col-799{width:799px}.ta-input-dropdown .popover-body .dropdown-options.w-col-800{width:800px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header{font-size:11px;color:#ccc;font-weight:700;text-transform:uppercase;line-height:14px;padding:8px 6px 0;margin-bottom:8px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#ccc;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:11px;width:14px;height:10px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header{margin:0 0 4px;padding:8px 0 0 4px;color:#ccc;font-size:11px;text-transform:capitalize}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new{font-size:11px;line-height:14px;font-weight:700;color:#6f9ee0;padding:4px;margin:0;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options{display:grid;grid-template-columns:141px 135px;grid-column-gap:10px;column-gap:10px;align-items:center;padding:3px 4px;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#fff;display:block;width:100%}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:-26px;width:14px;height:10px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text{color:#919191;font-size:11px;font-weight:400;position:relative;text-align:right}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400;color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{font-weight:500;color:#6f9ee0!important}.ta-input-dropdown .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:0!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template{top:-6px}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ta-dropdown-popover{z-index:999999}.ta-dropdown-popover .arrow{display:none!important}.ta-dropdown-popover .popover-body{z-index:99999999}.ta-dropdown-popover .popover-body .options{position:relative;top:3px;z-index:1000;max-height:198px;width:100%;background-color:#2f2f2f;border-radius:2px;padding:2px;overflow:hidden}.ta-dropdown-popover .popover-body .options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar{width:3px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-dropdown-popover .popover-body .options .option{position:relative;padding:3px;height:26px;font-size:14px;line-height:18px;font-weight:400;border-radius:2px;white-space:nowrap;text-overflow:ellipsis;color:#fff;display:flex;gap:4px}.ta-dropdown-popover .popover-body .options .option::-moz-selection{color:#fff;background-color:#fff3}.ta-dropdown-popover .popover-body .options .option:nth-last-child(1){margin-bottom:0}.ta-dropdown-popover .popover-body .options .option:hover{background-color:#1d1d1d;border-radius:2px;cursor:pointer}.ta-dropdown-popover .popover-body .options .option.add-option{color:#6f9ee0;font-weight:600}.ta-dropdown-popover .popover-body .options .option.add-option:after{content:\"\";height:2px;width:100%;background-color:#aaa3;border-radius:1px;position:absolute;bottom:0;left:0}.selected-item-container{height:52px;padding:6px;background:#e9effd;position:relative;border-radius:2px;transition:background .3s ease-in-out}.selected-item-container:hover{background:#bed0f9}.selected-item-container:hover .selected-item-additional .selected-item-info svg-icon svg path{fill:#3b73ed}.selected-item-container:hover .clear-selected-item{display:flex;align-items:center}.selected-item-container .selected-item-label{position:absolute;top:-16px;font-size:11px;font-weight:600;color:#424242;-webkit-user-select:none;user-select:none}.selected-item-container .selected-item-label span{color:#df3c3c}.selected-item-container .selected-item-name{font-size:14px;line-height:18px;color:#424242}.selected-item-container .selected-item-name::selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name .selected-item-star{position:relative;bottom:2px}.selected-item-container .selected-item-name .selected-item-star svg{margin-left:6px}.selected-item-container .selected-item-name .selected-item-star svg path{fill:#6692f1}.selected-item-container .selected-item-additional{gap:22px}.selected-item-container .selected-item-additional .selected-item-info svg-icon{width:14px}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg{width:100%;height:100%}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg path{fill:#6692f1;transition:fill .3s ease-in-out}.selected-item-container .selected-item-additional .selected-item-info .hide-svg-on-copy{display:none}.selected-item-container .clear-selected-item{position:absolute;right:4px;top:0;display:none;gap:6px}.selected-item-container .clear-selected-item .clear-x{cursor:pointer;transition:transform .3s ease-in-out}.selected-item-container .clear-selected-item .clear-x:hover{transform:scale(1.2)}.selected-item-container .clear-selected-item .clear-x svg path{fill:#bed0f9}.selected-item-container .clear-selected-item .clear-x svg rect{fill:#6692f1}.selected-item-container .clear-selected-item .clear-x:hover svg rect{fill:#0b49d1}.selected-item-container.non-editable{background-color:#f7f7f7}.selected-item-container.non-editable .selected-item-label,.selected-item-container.non-editable .selected-item-name{color:#919191}.selected-item-container.non-editable .selected-item-additional .selected-item-info svg-icon svg path{fill:#ccc}.selected-item-container.non-editable .selected-item-additional .selected-item-info p{color:#919191}.dropdown-trailer-hover:hover .ic_truck_semi-truck svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_truck_semi-wSleeper svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_truck_box-truck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_truck_cargo-van svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_truck_tow-truck svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_truck_car-hauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_truck_spotter svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_reefer svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_trailer_dryvan svg path{fill:#8785e8}.dropdown-trailer-hover:hover .ic_trailer_side-kit svg path{fill:#ff906d}.dropdown-trailer-hover:hover .ic_trailer_conestoga svg path{fill:#daad4f}.dropdown-trailer-hover:hover .ic_trailer_dumper svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_trailer_container svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_trailer_tanker svg path{fill:#77bf56}.dropdown-trailer-hover:hover .ic_trailer_carhauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_trailer_flatbed svg path{fill:#ed9292}.dropdown-trailer-hover:hover .ic_trailer_low-boy svg path{fill:#df3c3c}.dropdown-trailer-hover:hover .ic_trailer_chassis svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_step-deck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_trailer_tanker_pneumatic svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_carhauler_stinger svg path{fill:#df3d85}.hide-after-arrow .dropdown-option.active:after{display:none!important}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-main-tooltip{pointer-events:none}.app-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.tooltip-arrow{display:none!important}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}p{margin-bottom:0!important}.desc::selection{color:#6c6c6c;background:#6c6c6c33}.details-container-items{display:grid;grid-template-columns:440px repeat(4,335px);column-gap:12px;row-gap:12px;padding-bottom:12px}.details-component{display:grid;grid-auto-flow:column;column-gap:12px;row-gap:12px}.details-component .truck-wrapper{background-color:#dadada;border-radius:3px;margin-bottom:8px;width:440px;height:226px}.details-component .truck-wrapper p{margin:0}.details-component .truck-wrapper .truck-card-top{display:flex;align-items:center;justify-content:space-between}.details-component .truck-wrapper .truck-card-top .truck-card-name{color:#6c6c6c;font-size:18px;font-weight:500;position:relative;top:1px}.details-component .truck-wrapper .truck-card-top .truck-card-name::selection{color:#6c6c6c;background:#b7b7b733}.details-component .truck-wrapper .details-page-row-5{margin-top:8px}.details-component .truck-wrapper .details-page-row-7{height:236px;width:100%;margin:22px 0}.details-component .truck-wrapper .show-details{font-size:12px;font-weight:700;color:#778fbb;text-decoration:none;-webkit-user-select:none;user-select:none}.details-component .truck-wrapper .show-details:hover{transition:all .3s ease-in-out;cursor:pointer;text-decoration:underline;color:#5673aa}.details-component .details-cards{border-radius:3px;overflow:hidden;width:440px;background-color:#dadada;padding:1px 8px 0}.details-component .details-cards.trailer-details-card{padding:0 8px}.assign-to{position:relative;left:-3px;display:grid;grid-template-columns:204px 204px;column-gap:12px;padding:0}.assign-to .assign-to-vehicle svg{width:55px;height:20px;display:flex;align-items:center}.assign-to .assign-to-vehicle svg:hover path{fill:#6c6c6c!important}.assign-to .assign-to-vehicle svg path{fill:#aaa}.assign-to .first .assign-to-vehicle svg{display:flex;align-items:center}.assign-to .first:hover .open-modal-icon{display:block;position:relative;bottom:4px;height:18px;width:18px}.assign-to .first:hover .open-modal-icon svg{cursor:pointer}.assign-to .first:hover .open-modal-icon svg:hover path{fill:#6c6c6c}.assign-to .second .icon-text-wrapper-cmp{position:relative;top:1px}.assign-to .second .assign-to-vehicle svg{display:flex}.assign-to .second:hover .open-modal-icon2{display:block;height:18px;width:18px;position:relative;bottom:4px}.assign-to .second:hover .open-modal-icon2 svg{cursor:pointer}.assign-to .second:hover .open-modal-icon2 svg:hover path{fill:#6c6c6c}.assign-to .assign-to-item{background-color:#f7f7f7;border-radius:2px;display:flex;align-items:center}.assign-to .assign-to-item .icon-text-wrapper-cmp{display:flex;align-items:center;padding-left:6px;margin:7px 0}.assign-to .assign-to-item .semi-tooltip{width:40px;height:20px}.assign-to .assign-to-item .semi-tooltip.typeDetails{width:auto}.assign-to .assign-to-item svg{fill:#aaa;object-fit:fill;height:20px;width:55px}.assign-to .assign-to-item .open-modal-icon,.assign-to .assign-to-item .open-modal-icon2{display:none}.assign-to .assign-to-item .assign-to-vehicle{margin-right:6px;position:relative;bottom:0}.assign-to .assign-to-item .assign-to-vehicle.backImage{margin-right:0}.assign-to .assign-to-item .assign-to-value{font-size:14px;font-weight:500;color:#424242;line-height:18px;padding:4px 6px}.assign-to .assign-to-item .assign-to-value::selection{color:#424242;background:#42424233}.assign-to .assign-to-item .assign-to-value.inactive-assignTo-value{color:#aaa;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.assign-to .assign-to-item p{margin:0!important}.card-container .card-body-cdl{display:grid;padding:0 4px}.card-container .card-body-cdl .card-item-name{font-size:11px;color:#2f2f2f;font-weight:700;height:15px;margin-bottom:2px}.card-container .card-body-cdl .card-item-name::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap;height:18px}.card-container .card-body-cdl .card-item-value::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value:hover{color:#2f2f2f}.card-container .card-body-cdl .card-row-issued{display:grid;grid-template-columns:32px 32px 32px;column-gap:49px;margin-top:12px}.card-container .card-body-cdl .card-row-endor{display:grid;grid-template-columns:repeat(auto-fit,minmax(20%,1fr));gap:6px;margin-bottom:4px}.card-container .card-body-cdl .card-row-progress{margin-top:8px}.card-container .card-body-cdl .endorsement{margin-top:12px}.perfomance{display:flex!important;flex-direction:column}.perfomance .common-template-item-name{font-size:14px!important;font-weight:600!important}.perfomance .common-template-item-value{font-size:18px!important;font-weight:600!important}.card-pdf{padding:0 5px;margin-bottom:12px}.card-pdf.extended{margin-bottom:30px}.card-pdf.disabled{height:0!important;margin:0!important;padding:0!important}.status-container{padding-top:12px;display:flex;flex-direction:column;margin-bottom:-12px!important}.status-container .status-header{display:flex;justify-content:space-between;align-items:center}.status-container .status-header .status-item{height:18px}.status-container .status-header .status-item .p-status{font-size:14px;font-weight:700;color:#2f2f2f}.status-container .status-header .status-item .p-status::selection{color:#2f2f2f;background:#91919133}.status-container .status-header .status-item .p-status .note-textarea{color:#6c6c6c!important;font-weight:500!important}.status-container .status-header .status-item .p-status .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea span::selection,.status-container .status-header .status-item .p-status .note-textarea div::selection,.status-container .status-header .status-item .p-status .note-textarea b::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#dadada\"]::selection{color:#dadada!important;background:#dadada33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\" $ta-blue-13\"]::selection{color:#6692f1!important;background:#6692f133!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#56b4ac\"]::selection{color:#56b4ac!important;background:#56b4ac33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#e66767\"]::selection{color:#e66767!important;background:#e6676733!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#fab15c\"]::selection{color:#fab15c!important;background:#fab15c33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#b370f0\"]::selection{color:#b370f0!important;background:#b370f033!important}.status-container .status-items .item-wrapper{display:grid;grid-template-columns:119px 137px 78px;grid-column-gap:45px;align-content:center;justify-content:center}.status-container .status-items .item-wrapper .svg-text{display:flex;align-items:center}.status-container .status-items .item-wrapper .svg-text .employment{margin-left:6px;position:relative;bottom:-2px}.status-container .status-items .item-wrapper .duration{text-align:right}.status-container .status-items .item-wrapper p{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap}.status-container .status-items .item-wrapper p::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p span::selection{color:#6c6c6c;background:#6c6c6c33}.charts-template{display:grid;grid-template-columns:215px 1fr;grid-row-gap:12px;row-gap:12px;margin-bottom:12px}.charts-template .charts-template-item{display:flex;flex-direction:column}.charts-template .charts-template-item .icon-name-item{display:flex;align-items:baseline;height:18px}.charts-template .charts-template-item .icon-name-item .charts-template-item-name{margin-right:4px}.charts-template .charts-template-item .charts-template-item-name{font-size:11px;color:#424242;font-weight:700;line-height:14px}.charts-template .charts-template-item .charts-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value{font-size:18px;font-weight:500;color:#424242;width:220px}.charts-template .charts-template-item .charts-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.second-progress{margin-bottom:16px}.truck-details-wrapper{padding:0 12px}.truck-details-wrapper .truck svg{width:132px;height:48px}.truck-details-wrapper .details-header-avatar{display:flex;align-items:center;height:48px;margin-top:14px}.truck-details-wrapper .details-header-avatar .model-name{flex-direction:column;margin-left:12px;margin-top:12px}.truck-details-wrapper .details-header-avatar .model-name p{font-size:18px;font-weight:500;color:#2f2f2f}.truck-details-wrapper .details-header-avatar .model-name p::selection{color:#6c6c6c;background:#6c6c6c33}.truck-details-wrapper .details-header-avatar .model-name .svg-wrapper{height:14px;display:flex;align-items:flex-end;margin-bottom:2px}.truck-details-wrapper .details-header-avatar .model-name svg path{fill:#424242;object-fit:fill}.truck-details-wrapper .details-header-avatar .model-name svg rect{fill:#aaa}.truck-details-wrapper .details-header-data{margin-top:14px}.truck-details-wrapper .details-header-data .details-header-data-item{display:flex;height:18px;align-items:center}.truck-details-wrapper .details-header-data .details-header-data-item p{font-size:18px;color:#2f2f2f;font-weight:400}.truck-details-wrapper .details-header-data .details-header-data-item .header-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .details-header-data .second{margin-top:14px;margin-bottom:14px}.truck-details-wrapper .details-header-data .second p{font-size:14px!important;color:#2f2f2f;font-weight:400;position:relative;bottom:-1px}.truck-details-wrapper .details-header-data .second .date{margin-left:8px!important;position:relative}.truck-details-wrapper .color-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .vin-text{margin-left:6px!important;margin-right:37px;position:relative;bottom:-1px!important}.common-template{display:grid;grid-template-columns:202px 1fr;row-gap:12px}.common-template .common-item-wrapper{display:flex;align-items:center;height:40px}.common-template .common-template-item{display:flex;flex-direction:column}.common-template .common-template-item::selection{color:#6c6c6c;background:#6c6c6c33}.common-template .common-template-item .icon-name-item{display:flex;align-items:center;height:18px}.common-template .common-template-item .icon-name-item .common-template-item-name{margin-left:6px}.common-template .common-template-item .common-template-item-name{font-size:11px;font-weight:600;color:#424242}.common-template .common-template-item .common-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value{font-size:14px;font-weight:500;color:#424242;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.common-template .common-template-item .common-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.divider{margin:0;height:2px;width:100%;border-radius:1px;background-color:#f3f3f3}.card_files_holder.active{min-height:448px}.note-cards .note-body{padding-left:0!important;padding-right:2px!important}.note-cards .note-body .note-textarea{color:#6c6c6c!important;font-weight:400!important;padding-bottom:12px!important}.note-cards .note-body .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.vin-text::selection{color:#6c6c6c;background:#6c6c6c33}.no-data-driver-details{font-size:14px;font-weight:400;color:#919191}.no-data-driver-details::selection{color:#919191;background:#b7b7b733}.owner-items{display:flex;align-items:center;height:18px}.owner-items .card-icon{display:none;cursor:pointer;margin-left:6px}.owner-items .information-value{font-size:14px;font-weight:400;color:#6c6c6c;margin-left:6px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.owner-items .information-value::selection{color:#6c6c6c;background:#6c6c6c33}.owner-items:hover .card-icon{display:flex}.copied .vin-text,.copied .information-value{animation-duration:1.5s;animation-name:change}.copied .card-icon svg path{animation-duration:1.5s;animation-name:changeSVG}.copied .card-icon svg path:hover{animation-duration:1.5s;animation-name:changeSVG}.hide-show{font-size:14px;color:#6d82c7;font-weight:600;margin-left:6px;cursor:pointer}.hide-show::selection{color:#6d82c7;background:#536bc233}.hide-show:hover{color:#536bc2}.bind-height{max-height:-moz-fit-content!important;max-height:fit-content!important}.card-width{width:335px}.icons-details{margin-right:6px}.date-details-svg{margin-left:29px}.note-details-holder{padding-right:6px;padding-left:3px}.note-details-holder .note-container .note-header.active .note-label{color:#6c6c6c!important}.note-details-holder .note-container .note-header .note_upper_hold svg path{fill:#919191}.note-details-holder .note-container .note-header .note_upper_hold .rotate svg path{fill:#aaa}.boldSanVin{font-weight:800}@media (max-width: 1910px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,320px)}.card-width{width:320px}.repair-details-container,.repair-details-cmp{grid-template-columns:440px 712px 320px 260px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 145px!important}.repair-container{width:712px!important}.repaired-vehicle-container{width:320px!important}.likes-count-container{width:260px}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 50px 46px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 79px 52px 66px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 325px!important}.counter-text{padding:0 0 0 8px!important}.reason-span{display:none}app-shipper-details .load,app-broker-details .load{width:712px!important}app-shipper-details .contact,app-broker-details .contact{width:320px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:320px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:260px!important}app-shipper-details .review-container,app-broker-details .review-container{width:260px!important}}@media (max-width: 1870px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,300px)}.card-width{width:300px}}@media (max-width: 1850px){.repair-details-container,.repair-details-cmp{grid-template-columns:430px 702px 310px 250px!important}.repair-general-holder{width:430px}.repair-container{width:702px!important}.repaired-vehicle-container{width:310px!important}.likes-count-container{width:250px}.repair-component{height:max-content}.repair-component .repair-cards{width:430px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 37px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 40px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:430px!important}app-shipper-details .load,app-broker-details .load{width:702px!important}app-shipper-details .contact,app-broker-details .contact{width:310px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:310px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:250px!important}app-shipper-details .review-container,app-broker-details .review-container{width:250px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:407px!important}}@media (max-width: 1820px){.repair-details-container,.repair-details-cmp{grid-template-columns:420px 692px 300px 240px!important}.repair-general-holder{width:420px}.repair-container{width:692px!important}.repaired-vehicle-container{width:300px!important}.likes-count-container{width:240px}.repair-component .repair-cards{width:420px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 100px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 99px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 27px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 29px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:420px!important}app-shipper-details .load,app-broker-details .load{width:692px!important}app-shipper-details .contact,app-broker-details .contact{width:300px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:300px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:240px!important}app-shipper-details .review-container,app-broker-details .review-container{width:240px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:396px!important}}@media (max-width: 1780px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,280px)}.card-width{width:280px}.request-header-container{width:26px!important;height:26px!important}.request-header-container p{display:none}.request-header-container svg-icon{display:flex!important;transition:background .2s ease-in}.request-header-container svg-icon:hover{background:#e9effd!important}.request-header-container svg-icon:hover svg path{fill:#0b49d1}.repair-details-container{grid-template-columns:475px 760px 410px 0px!important}.repair-general-holder{width:475px}.repair-container{width:760px!important}.repaired-vehicle-container{width:410px!important;max-width:410px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:475px!important}.repair-component .repair-cards{width:475px!important}.repair-details-cmp{grid-template-columns:475px 760px 410px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:-moz-fit-content;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:410px!important;max-width:410px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:410px!important;max-width:410px!important}.purchase-template{display:grid;grid-template-columns:repeat(2,50%)!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:475px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:475px!important;max-width:475px!important}app-shipper-details .load,app-broker-details .load{width:760px!important}app-shipper-details .contact,app-broker-details .contact{width:410px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:410px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:410px!important}app-shipper-details .review-container,app-broker-details .review-container{width:410px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:450px!important}}@media (max-width: 1760px){.repair-details-container{grid-template-columns:455px 740px 390px 0px!important}.repair-general-holder{width:455px}.repair-container{width:740px!important}.repaired-vehicle-container{width:390px!important;max-width:390px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:455px!important}.repair-component .repair-cards{width:455px!important}.repair-details-cmp{grid-template-columns:455px 740px 390px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:-moz-fit-content;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:390px!important;max-width:390px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:390px!important;max-width:390px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:455px!important;max-width:455px!important}app-shipper-details .load,app-broker-details .load{width:740px!important}app-shipper-details .contact,app-broker-details .contact{width:390px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:390px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:390px!important}app-shipper-details .review-container,app-broker-details .review-container{width:390px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:430px!important}}@media (max-width: 1700px){.details-container-items{display:grid;grid-template-columns:420px repeat(4,270px)}.card-width{width:270px}.cards-item-wrapper-1,.details-component .details-cards{width:420px}.repair-details-container{grid-template-columns:400px 740px 390px 0px!important}.repair-general-holder{width:400px}.details-header-wrapper-reapirShop{max-width:400px!important}.repair-component .repair-cards{width:400px!important}.repair-details-cmp{grid-template-columns:400px 740px 390px 0px!important}.longText{display:none!important}.shortText{display:block!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 105px 92px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:400px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:377px!important}.details-container-items{display:grid;grid-template-columns:400px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:400px}.assign-to{grid-template-columns:185px 185px}}@media (max-width: 1640px){.repair-details-container{grid-template-columns:400px 720px 370px 0px!important}.repair-container{width:720px!important}.repaired-vehicle-container{width:370px!important;max-width:370px!important}.repair-details-cmp{grid-template-columns:400px 720px 370px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:370px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:370px!important;max-width:370px!important}app-shipper-details .load,app-broker-details .load{width:720px!important}app-shipper-details .contact,app-broker-details .contact{width:370px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:370px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:370px!important}app-shipper-details .review-container,app-broker-details .review-container{width:370px!important}}@media (max-width: 1610px){.details-container-items{display:grid;grid-template-columns:380px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:380px}.assign-to{grid-template-columns:175px 175px}.repair-details-container{grid-template-columns:380px 710px 350px 0px!important}.repair-container{width:710px!important}.repaired-vehicle-container{width:350px!important;max-width:350px!important}.repair-details-cmp{grid-template-columns:380px 710px 350px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:350px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:350px!important;max-width:350px!important}.repair-component .repair-cards{width:380px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 86px 92px!important}app-shipper-details-card .hours-template{grid-template-columns:150px 150px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:380px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:356px!important}}@media (max-width: 1590px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,260px)}.details-component .details-cards,.cards-item-wrapper-1{width:360px}.card-width{width:260px}.reason-span{display:none}.assign-to{grid-template-columns:162px 162px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 710px 350px 0px!important}.repair-component .repair-cards{width:360px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 91px 70px!important}app-shipper-details-card .hours-template{grid-template-columns:140px 140px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:336px!important}}@media (max-width: 1440px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,250px)}.card-width{width:250px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-container{width:700px!important}.repaired-vehicle-container{width:272!important;max-width:272px!important}.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{width:272px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:272px!important;max-width:272px!important}.repair-component .repair-cards{width:360px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:35px 40px 25px 35px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:45px 68px 27px 66px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:700px!important}app-shipper-details .contact,app-broker-details .contact{width:272px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:272px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:272px!important}app-shipper-details .review-container,app-broker-details .review-container{width:272px!important}}@media (max-width: 1500px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,237px)}.card-width{width:237px}}.datetime-dropdown-holder{position:relative;top:16px}.picker_input_holder{display:flex;min-width:146px;max-width:260px;border-radius:3px;background-color:#f9f9f9}.picker_input_holder input{width:100%;padding-left:6px;border:none;outline:none;background-color:transparent;caret-color:transparent;-webkit-appearance:none}.picker_input_holder input:focus{outline:none;border:none}.picker_input_holder input::placeholder{color:#919191!important}.picker_input_holder .toggle_picker{display:flex;justify-content:center;align-items:center;width:26px;height:26px;min-width:26px;background-color:#eee;border-radius:3px;cursor:pointer}.picker_input_holder .toggle_picker:after{display:none}.picker_input_holder .toggle_picker svg-icon{display:flex}.picker_input_holder .toggle_picker svg-icon svg{width:12px;height:10px}.picker_input_holder .toggle_picker svg-icon svg path{fill:#919191}.picker_input_holder:hover{opacity:1}.picker_input_holder.active{background-color:#6c6c6c;border-left:3px solid #6c6c6c}.picker_input_holder.active .toggle_picker{background-color:#919191}.picker_input_holder.active .toggle_picker svg-icon{display:flex}.picker_input_holder.active .toggle_picker svg-icon svg{transform:rotate(180deg)}.picker_input_holder.active .toggle_picker svg-icon svg path{fill:#dadada}.picker_input_holder.active input::placeholder{color:#dadada!important}.pickers_holder{position:absolute;top:3px!important;width:auto!important;padding:0;background-color:#dadada;box-shadow:0 0 4px #00000026;z-index:999;border-radius:3px;overflow:hidden}.pickers_holder .time_picker{width:167px}.pickers_holder .date_picker{display:flex}.pickers_holder .date_picker .month-years-size{position:relative;width:48px;background-color:#f9f9f9}.pickers_holder .date_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:24px;transform:translateY(-50%);background-color:#dadada}.pickers_holder .date_picker .month-years-size .month-year-item{display:flex;align-items:center;justify-content:center;height:24px;font-size:14px;color:#919191;font-weight:400;text-align:center;text-transform:uppercase}.pickers_holder .date_picker .month-years-size .month-year-item .left-year-show{color:#919191;font-size:14px;font-weight:700}.pickers_holder .date_picker .month-years-size .month-year-item:hover{color:#6c6c6c;cursor:pointer;background-color:#f1f1f1;border-radius:2px}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 2px 0}.pickers_holder .date_picker .full-calendars-list{flex:1;max-height:290px;min-width:264px;overflow:hidden}.pickers_holder .date_picker .full-calendars-list .full_list{height:100%}.pickers_holder .date_picker .full-calendars-list .full_list .selfScroll{width:100%;height:100%}.pickers_holder .time_picker .time_picker_head{height:36px;display:flex;padding:0 12px;align-items:center;justify-content:space-between}.pickers_holder .time_picker .time_picker_head .selected_time{font-size:14px;font-weight:800;color:#6c6c6c}.pickers_holder .time_picker .time_picker_head .sel_now{color:#536bc2;font-size:14px;font-weight:700}.pickers_holder .time_picker .time_picker_head .sel_now:hover{cursor:pointer;color:#5673aa}.pickers_holder .time_picker .time_picker_body .picker_body_head{height:22px;display:flex;align-items:center;background-color:#f7f7f7;margin:0 4px 2px;border-radius:2px}.pickers_holder .time_picker .time_picker_body .picker_body_head div{flex:0 0 33%;text-align:center;font-size:10px;font-weight:700;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body_head div.active{color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body{position:relative;height:155px;display:flex;justify-content:center}.pickers_holder .time_picker .time_picker_body .picker_body:after{content:\"\";position:absolute;width:100%;height:31px;top:-1px;left:0;pointer-events:none;background:linear-gradient(to bottom,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body:before{content:\"\";position:absolute;pointer-events:none;width:100%;height:31px;bottom:-1px;left:0;background:linear-gradient(to top,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line{position:absolute;width:calc(100% - 8px);height:22px;top:50%;left:4px;border-radius:2px;transform:translateY(-50%);background-color:#9191911a}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line span{position:absolute;left:30%;font-size:14px;font-weight:400;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers{position:relative;height:22px;flex:0 0 33.3%;height:100%;padding:67px 0;margin:0 7px;overflow:auto;text-align:center;-ms-overflow-style:none;scrollbar-width:none;z-index:10}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:first-child{flex:0 0 28px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(2){flex:0 0 36px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(3){flex:0 0 38px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers::-webkit-scrollbar{display:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{height:22px;display:flex;align-items:center;justify-content:center;font-size:14px;color:#919191;font-weight:400;-webkit-user-select:none;user-select:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item:hover{color:#5673aa;cursor:pointer}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:hover{box-shadow:inset 0 0 4px #00000026}.pickers_holder .time_picker .picker_buttons{display:flex;padding:6px;justify-content:space-between}.pickers_holder .time_picker .picker_buttons .pick_button{display:flex;align-items:center;justify-content:center;height:32px;padding:0 12px;text-align:center;border-radius:2px;font-size:12px;font-weight:700;color:#919191b3}.pickers_holder .time_picker .picker_buttons .pick_button:hover{background-color:#f3f3f3;color:#919191;cursor:pointer}.pickers_holder .time_picker .picker_buttons .pick_button.set_button{width:57px;text-align:center;background-color:#6d82c7;color:#dadada}.pickers_holder .time_picker .picker_buttons .pick_button.set_button:hover{background-color:#536bc2}.pickers_holder.dark_picker{background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size{width:40px;background-color:#424242}.pickers_holder.dark_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:26px;transform:translateY(-50%);background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .month-year-item{height:22px;color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item .left-year-show{color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year{color:#dadada}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year .left-year-show{color:#dadada;font-weight:700}.pickers_holder.dark_picker .month-years-size .month-year-item:hover{color:#dadada;background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 4px 0}.pickers_holder.dark_picker .date_picker{margin:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list{min-width:184px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view{width:182px;padding-top:6px;background-color:#2f2f2f}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head{padding:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name{padding:0 4px;color:#dadada;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name .year_hold{margin-right:0;color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today{padding:0 4px;color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today:hover{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator{margin:12px 10px;color:#919191;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.current_year{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.full_calendar{margin-bottom:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px 4px;padding:0}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days .cal_day{width:22px;height:22px;margin:0;font-size:9px;color:#aaa;text-align:center}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;row-gap:12px;justify-content:unset;margin:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item{margin:0;height:22px;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item:hover:not(.current_month){background-color:#424242;color:#dadada;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item.current_month{color:#dadada;background-color:#3b73ed66;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list.current_year .month_list_item{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px;padding:0;height:auto}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day{width:22px;height:22px;margin:0;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#dadada;background-color:#3b73ed66;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#3b73ed66;color:#dadada;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.day_in_current_month{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.weekend_day_in_current_month{color:#ccc}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#424242;border-radius:2px;cursor:pointer;color:#dadada}.pickers_holder.dark_picker .time_picker{width:156px;margin:4px}.pickers_holder.dark_picker .time_picker .time_picker_head{height:18px;padding:0 4px;margin-bottom:4px}.pickers_holder.dark_picker .time_picker .time_picker_head .selected_time{color:#dadada;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_head .sel_now{color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;margin:0 0 4px;padding:2px;background:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head div{color:#aaa;font-size:9px;text-align:center;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body{height:176px;display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;padding:0 2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:before{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:after{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line{left:0;width:100%;background-color:#3b73ed33}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line{left:33.3%;width:1px;height:12px;margin-top:5px;background-color:#92b1f5;opacity:.4;border-radius:2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line.line_2{left:66.6%}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers{margin:0;padding:77px 0}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{color:#aaa;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item.active_item{color:#dadada}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons{display:grid;grid-template-columns:repeat(2,1fr);column-gap:4px;margin-top:6px;padding:4px 0 0;border-top:1px solid #424242}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button{height:18px;background-color:#424242;color:#dadada;font-size:11px;text-transform:uppercase;border-radius:1px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button.set_button{width:auto;background-color:#3b73ed}.calendar_view{width:260px;padding-top:12px;background-color:#dadada}.calendar_view .calendar_view_head{display:flex;justify-content:space-between;margin-bottom:12px;padding:0 12px}.calendar_view .calendar_view_head .month_name{font-size:12px;font-weight:700;color:#6c6c6c}.calendar_view .calendar_view_head .month_name .year_hold{margin-right:5px;text-transform:uppercase;color:#6c6c6c;cursor:pointer}.calendar_view .calendar_view_head .month_name .year_hold:hover{color:#919191}.calendar_view .calendar_view_head .today{font-size:12px;font-weight:700;color:#5673aab3;cursor:pointer}.calendar_view .calendar_view_head .today:hover{color:#3551b7}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport{height:230px;min-height:230px}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view .calendar_indicator{margin:12px;height:18px;font-size:12px;color:#6c6c6c66;font-weight:700}.calendar_view .calendars_list_view .calendar_month_days{padding:0 3px}.calendar_view .calendars_list_view .calendar_month_days.hideVisibility{visibility:hidden}.calendar_view .calendars_list_view .calendar_month_days .cal_day{width:24px;margin:0 6px;font-size:12px;font-weight:700;color:#b7b7b7}.calendar_view .calendars_list_view .calendar_days{height:140px;display:flex;flex-wrap:wrap;padding:0 3px}.calendar_view .calendars_list_view .calendar_days .calendar_day{display:flex;align-items:center;justify-content:center;flex:0 0 24px;width:24px;height:24px;margin:0 6px;font-size:14px;font-weight:400;color:#6c6c6c}.calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#dadada;background-color:#919191;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#919191;color:#dadada;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#f7f7f7;border-radius:2px;cursor:pointer;color:#3c3c3c}.calendar_view .month_list{display:flex;flex-wrap:wrap;justify-content:space-around;height:140px}.calendar_view .month_list .month_list_item{flex:0 0 50px;height:24px;margin:0 10px;display:flex;align-items:center;justify-content:center;border-radius:3px;font-size:12px;color:#6c6c6c;font-weight:400}.calendar_view .month_list .month_list_item:hover:not(.current_month){background-color:#f7f7f7;color:#3c3c3c;border-radius:2px;cursor:pointer}.calendar_view .month_list .month_list_item.current_month{color:#3c3c3c;background-color:#f7f7f7;border-radius:2px;cursor:pointer}.dropdown{z-index:999!important}input[type=date]::-webkit-inner-spin-button,input[type=date]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}.wrapper{width:320px;font-family:Montserrat,sans-serif;padding-left:6px;padding-right:6px}.wrapper .container{height:34px;gap:4px;padding:0 6px}.wrapper .container .divider{width:auto;height:8px;border-top:solid 2px #dadada}.wrapper .container .text-value{width:auto;height:26px;gap:4px}.wrapper .container .text-value .payment-count{gap:4px;color:#424242}.wrapper .container .text-value .payment-count .text{height:26px;width:auto}.wrapper .container .text-value .payment-count .round{width:18px;height:18px;border-radius:20px;background-color:#6c6c6c;color:#dadada;font-size:11px}.wrapper .container .text-value .value{height:26px;width:auto}.wrapper .container .text-value .value .icon:hover svg{border-radius:2px;background-color:#e9effd}.wrapper .container .text-value .value .icon:hover svg path{fill:#0b49d1}.wrapper .container .text-value .value .total-money-closed{height:26px;width:auto}.wrapper .component-data-container .information{width:308px;gap:4px}.wrapper .component-data-container .information:hover{background-color:#eee;border-radius:2px;opacity:.6;transition:.3s}.wrapper .component-data-container .information.clicked{background-color:#eee}.wrapper .component-data-container .information.clicked:hover{background-color:#eee;opacity:1}.wrapper .component-data-container .information .number{border-radius:2px;width:26px;height:26px;gap:2px;color:#919191}.wrapper .component-data-container .information .number:hover{background-color:#91919133}.wrapper .component-data-container .information .number .icon-holder{position:relative;height:26px;width:26px;border-radius:2px;opacity:1}.wrapper .component-data-container .information .number .dropdown-menu{background-color:red}.wrapper .component-data-container .information .number .icon-holder:hover,.wrapper .component-data-container .information .number .svg-icon:hover{border-radius:2px}.wrapper .component-data-container .information .number .icon-holder:hover svg path,.wrapper .component-data-container .information .number .svg-icon:hover svg path{fill:#424242}.wrapper .component-data-container .information .date-location{width:199px;padding-bottom:2px}.wrapper .component-data-container .information .date-location .location,.wrapper .component-data-container .information .date-location .date{font-size:11px;height:14px}.wrapper .component-data-container .information .money{height:26px;width:83px;margin-right:6px}.wrapper .component-data-container .total-money-title{height:26px;width:auto;padding-left:2px}.wrapper .component-data-container .total-money-title .total-money{width:83px;margin-right:4px}.wrapper .component-data-container .total-money-title .icon-total .dolar-icon{height:26px;width:26px;padding:2px}.wrapper .component-data-container .total-money-title .icon-total .dolar-icon svg path{fill:currentColor}.container-empty{height:34px;gap:4px;padding:0 6px;color:#aaa;width:308px}.container-empty .divider{width:auto;height:8px;border-top:solid 2px #dadada}.container-empty .text-value{width:auto;height:26px;gap:4px}.container-empty .text-value .payment-count{gap:4px}.container-empty .text-value .payment-count .text{height:26px;width:auto}.container-empty .text-value .payment-count .round{width:18px;height:18px;border-radius:20px;background-color:#6c6c6c;color:#dadada;font-size:11px}.container-empty .text-value .value{height:26px;width:auto}.container-empty .text-value .value .icon:hover svg{background-color:#e9effd}.container-empty .text-value .value .icon:hover svg path{fill:#0b49d1}.container-empty .text-value .value .total-money-closed{height:26px;width:auto}.cdk-drag{transition:transform .25s cubic-bezier(.25,.1,.25,1);cursor:grab}.cdk-drag-preview{background-color:#424242;color:#dadada;font-size:12px;box-shadow:0 2px 10px #0003;font-family:Montserrat,sans-serif;width:308px}.cdk-drag-preview .location{color:#fff}.cdk-drag-preview .date{color:#919191}.cdk-drag-preview .money{color:#fff}.cdk-drop-list.cdk-drop-list-dragging{cursor:grabbing}.disabled-drag{pointer-events:none}.drag-disabled{cursor:not-allowed}\n"] }]
155
+ DateFromStringPipe,
156
+ ], template: "<ng-container *ngIf=\"componentData?.length; else emptyComponentData\"\n ><div\n class=\"wrapper d-flex flex-column align-items-center justify-content-start\"\n >\n <ng-container *ngIf=\"title !== 'Credit' && title !== 'Payment'\">\n <div class=\"divider-custom d-flex justify-content-center\"></div>\n </ng-container>\n <div class=\"container d-flex flex-column justify-content-center\">\n <div class=\"text-value d-flex justify-content-between\">\n <div\n class=\"payment-count d-flex align-items-center justify-content-start\"\n >\n <span class=\"text ca-font-extra-bold\">{{ title }}</span>\n <span\n class=\"round ca-font-bold d-flex align-items-center justify-content-center\"\n >\n {{ componentData?.length }}\n </span>\n </div>\n <span class=\"value d-flex align-items-center\">\n <ng-container *ngIf=\"isOpen; else notOpen\">\n <svg-icon\n class=\"d-flex icon\"\n [src]=\"getSvgPath('plus')\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n </ng-container>\n <ng-template #notOpen>\n <span\n class=\"total-money-closed ca-font-semi-bold\"\n [ngStyle]=\"{ color: getColor(title) }\"\n >{{ sum | formatCurrency }}</span\n >\n </ng-template>\n </span>\n </div>\n </div>\n\n <div\n [ngClass]=\"{ 'disabled-drag': title === 'Bonus' }\"\n cdkDropList\n class=\"component-data-container d-flex justify-content-center flex-column\"\n (cdkDropListDropped)=\"onDrop($event)\"\n >\n <ng-container\n *ngFor=\"let data of componentData; let i = index; trackBy: identity\"\n >\n <div\n cdkDrag\n cdkDragLockAxis=\"y\"\n cdkDragBoundary=\".component-data-container\"\n class=\"d-flex justify-content-between align-items-center information\"\n [ngClass]=\"{\n clicked: clickedStates[i],\n 'drag-disabled': title === 'Bonus',\n }\"\n (mouseenter)=\"onMouseEnter(i)\"\n (mouseleave)=\"onMouseLeave(i)\"\n >\n <ng-template cdkDragPreview>\n <div class=\"d-flex justify-content-between align-items-center\">\n <div class=\"d-flex align-items-center\">\n <div class=\"icon-holder mx-2\">\n <svg-icon\n [src]=\"getSvgPath('dragging')\"\n alt=\"Dragging Image\"\n ></svg-icon>\n </div>\n\n <div\n class=\"date-location d-flex flex-column d-flex align-items-center\"\n >\n <span class=\"ca-font-semi-bold location\">{{\n data.description\n }}</span>\n <span class=\"date ca-font-medium d-flex align-items-center\">{{\n data.date | dateFromStringPipe\n }}</span>\n </div>\n </div>\n\n <span\n class=\"money d-flex justify-content-end align-items-center ca-font-regular mx-2\"\n >{{ data.amount ? data.amount : (0 | formatCurrency) }}\n </span>\n </div>\n </ng-template>\n <span\n class=\"number d-flex justify-content-center align-items-center ca-font-medium\"\n >\n <ng-container\n *ngIf=\"!hoverStates[i] && !clickedStates[i]; else hoveredState\"\n >{{ data!.id }}\n </ng-container>\n <ng-template #hoveredState>\n <div\n class=\"icon-holder d-flex align-items-center justify-content-center\"\n ngbTooltip\n [mainTooltip]=\"'More'\"\n tooltipBackground=\"#424242\"\n position=\"bottom\"\n [ngStyle]=\"{\n backgroundColor: clickedStates[i] ? '#424242' : 'transparent',\n color: hoverStates[i] ? 'desiredColor' : 'initialColor',\n }\"\n >\n <app-ca-dropdown\n [itemList]=\"dropdownOptions\"\n [icon]=\"currentIcons[i]\"\n (onClick)=\"dropDownClickEvent(i)\"\n [isPopupShown]=\"isDropdownEnabled(i)\"\n ></app-ca-dropdown>\n </div>\n </ng-template>\n </span>\n <div class=\"date-location d-flex flex-column\">\n <span\n class=\"ca-font-semi-bold location d-flex align-items-center\"\n >{{ data.description }}</span\n >\n\n <span class=\"date ca-font-medium d-flex align-items-center\">{{\n data.date | dateFromStringPipe\n }}</span>\n </div>\n\n <ng-container *ngIf=\"title === 'Deduction'\">\n <span\n class=\"recurring d-flex align-items-center justify-content-center\"\n >\n <svg-icon\n class=\"d-flex align-items-center\"\n [src]=\"getSvgPath('infinityIcon')\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n </span>\n </ng-container>\n <span\n class=\"money d-flex justify-content-end align-items-center ca-font-regular\"\n >{{ data.amount ? (data.amount | currency) : '$0.00' }}\n </span>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"isOpen\">\n <div\n class=\"total-money-title d-flex justify-content-between align-items-center\"\n >\n <div class=\"icon-total d-flex align-items-center\">\n <span\n class=\"dolar-icon d-flex align-items-center\"\n [ngStyle]=\"{ color: getColor(title) }\"\n >\n <svg-icon\n class=\"d-flex align-items-center\"\n [src]=\"getSvgPath('dolarSign')\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n </span>\n <span class=\"total-title ca-font-bold\">Total</span>\n </div>\n <span\n class=\"total-money d-flex justify-content-end align-items-center ca-font-semi-bold\"\n [ngStyle]=\"{ color: getColor(title) }\"\n >{{ sum | formatCurrency }}</span\n >\n </div>\n </ng-container>\n </div>\n </div>\n</ng-container>\n\n<ng-template #emptyComponentData>\n <div class=\"container-empty d-flex flex-column\">\n <div class=\"divider-custom d-flex justify-content-center\"></div>\n <div class=\"text-value d-flex justify-content-between\">\n <div\n class=\"payment-count d-flex align-items-center justify-content-start\"\n >\n <span\n class=\"text ca-font-extra-bold\"\n [ngStyle]=\"{ color: isOpen ? '#424242' : '#aaaaaa' }\"\n >{{ title }}</span\n >\n </div>\n <span class=\"value d-flex align-items-center\">\n <ng-container *ngIf=\"isOpen; else notOpen\">\n <svg-icon\n class=\"d-flex icon\"\n [src]=\"getSvgPath('plus')\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n </ng-container>\n <ng-template #notOpen>\n <span class=\"total-money-closed ca-font-semi-bold\">$0.00</span>\n </ng-template>\n </span>\n </div>\n </div>\n</ng-template>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.ta-input-dropdown .arrow{display:none!important}.ta-input-dropdown .popover-body{margin-top:-2px!important}.ta-input-dropdown .popover-body .dropdown-options-divider{content:\"\";height:1px;border-radius:1px;background-color:#424242;position:absolute;z-index:99999;top:0;left:0}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-1{width:-7px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-2{width:-6px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-3{width:-5px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-4{width:-4px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-5{width:-3px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-6{width:-2px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-7{width:-1px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-8{width:0px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-9{width:1px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-10{width:2px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-11{width:3px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-12{width:4px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-13{width:5px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-14{width:6px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-15{width:7px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-16{width:8px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-17{width:9px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-18{width:10px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-19{width:11px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-20{width:12px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-21{width:13px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-22{width:14px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-23{width:15px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-24{width:16px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-25{width:17px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-26{width:18px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-27{width:19px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-28{width:20px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-29{width:21px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-30{width:22px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-31{width:23px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-32{width:24px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-33{width:25px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-34{width:26px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-35{width:27px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-36{width:28px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-37{width:29px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-38{width:30px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-39{width:31px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-40{width:32px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-41{width:33px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-42{width:34px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-43{width:35px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-44{width:36px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-45{width:37px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-46{width:38px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-47{width:39px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-48{width:40px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-49{width:41px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-50{width:42px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-51{width:43px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-52{width:44px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-53{width:45px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-54{width:46px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-55{width:47px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-56{width:48px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-57{width:49px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-58{width:50px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-59{width:51px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-60{width:52px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-61{width:53px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-62{width:54px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-63{width:55px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-64{width:56px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-65{width:57px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-66{width:58px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-67{width:59px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-68{width:60px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-69{width:61px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-70{width:62px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-71{width:63px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-72{width:64px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-73{width:65px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-74{width:66px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-75{width:67px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-76{width:68px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-77{width:69px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-78{width:70px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-79{width:71px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-80{width:72px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-81{width:73px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-82{width:74px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-83{width:75px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-84{width:76px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-85{width:77px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-86{width:78px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-87{width:79px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-88{width:80px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-89{width:81px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-90{width:82px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-91{width:83px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-92{width:84px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-93{width:85px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-94{width:86px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-95{width:87px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-96{width:88px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-97{width:89px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-98{width:90px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-99{width:91px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-100{width:92px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-101{width:93px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-102{width:94px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-103{width:95px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-104{width:96px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-105{width:97px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-106{width:98px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-107{width:99px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-108{width:100px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-109{width:101px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-110{width:102px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-111{width:103px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-112{width:104px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-113{width:105px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-114{width:106px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-115{width:107px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-116{width:108px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-117{width:109px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-118{width:110px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-119{width:111px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-120{width:112px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-121{width:113px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-122{width:114px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-123{width:115px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-124{width:116px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-125{width:117px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-126{width:118px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-127{width:119px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-128{width:120px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-129{width:121px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-130{width:122px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-131{width:123px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-132{width:124px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-133{width:125px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-134{width:126px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-135{width:127px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-136{width:128px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-137{width:129px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-138{width:130px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-139{width:131px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-140{width:132px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-141{width:133px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-142{width:134px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-143{width:135px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-144{width:136px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-145{width:137px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-146{width:138px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-147{width:139px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-148{width:140px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-149{width:141px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-150{width:142px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-151{width:143px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-152{width:144px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-153{width:145px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-154{width:146px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-155{width:147px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-156{width:148px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-157{width:149px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-158{width:150px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-159{width:151px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-160{width:152px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-161{width:153px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-162{width:154px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-163{width:155px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-164{width:156px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-165{width:157px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-166{width:158px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-167{width:159px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-168{width:160px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-169{width:161px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-170{width:162px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-171{width:163px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-172{width:164px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-173{width:165px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-174{width:166px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-175{width:167px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-176{width:168px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-177{width:169px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-178{width:170px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-179{width:171px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-180{width:172px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-181{width:173px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-182{width:174px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-183{width:175px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-184{width:176px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-185{width:177px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-186{width:178px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-187{width:179px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-188{width:180px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-189{width:181px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-190{width:182px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-191{width:183px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-192{width:184px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-193{width:185px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-194{width:186px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-195{width:187px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-196{width:188px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-197{width:189px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-198{width:190px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-199{width:191px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-200{width:192px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-201{width:193px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-202{width:194px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-203{width:195px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-204{width:196px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-205{width:197px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-206{width:198px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-207{width:199px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-208{width:200px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-209{width:201px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-210{width:202px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-211{width:203px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-212{width:204px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-213{width:205px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-214{width:206px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-215{width:207px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-216{width:208px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-217{width:209px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-218{width:210px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-219{width:211px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-220{width:212px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-221{width:213px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-222{width:214px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-223{width:215px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-224{width:216px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-225{width:217px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-226{width:218px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-227{width:219px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-228{width:220px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-229{width:221px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-230{width:222px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-231{width:223px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-232{width:224px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-233{width:225px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-234{width:226px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-235{width:227px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-236{width:228px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-237{width:229px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-238{width:230px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-239{width:231px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-240{width:232px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-241{width:233px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-242{width:234px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-243{width:235px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-244{width:236px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-245{width:237px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-246{width:238px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-247{width:239px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-248{width:240px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-249{width:241px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-250{width:242px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-251{width:243px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-252{width:244px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-253{width:245px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-254{width:246px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-255{width:247px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-256{width:248px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-257{width:249px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-258{width:250px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-259{width:251px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-260{width:252px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-261{width:253px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-262{width:254px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-263{width:255px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-264{width:256px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-265{width:257px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-266{width:258px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-267{width:259px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-268{width:260px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-269{width:261px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-270{width:262px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-271{width:263px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-272{width:264px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-273{width:265px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-274{width:266px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-275{width:267px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-276{width:268px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-277{width:269px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-278{width:270px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-279{width:271px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-280{width:272px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-281{width:273px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-282{width:274px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-283{width:275px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-284{width:276px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-285{width:277px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-286{width:278px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-287{width:279px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-288{width:280px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-289{width:281px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-290{width:282px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-291{width:283px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-292{width:284px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-293{width:285px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-294{width:286px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-295{width:287px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-296{width:288px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-297{width:289px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-298{width:290px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-299{width:291px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-300{width:292px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-301{width:293px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-302{width:294px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-303{width:295px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-304{width:296px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-305{width:297px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-306{width:298px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-307{width:299px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-308{width:300px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-309{width:301px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-310{width:302px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-311{width:303px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-312{width:304px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-313{width:305px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-314{width:306px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-315{width:307px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-316{width:308px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-317{width:309px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-318{width:310px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-319{width:311px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-320{width:312px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-321{width:313px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-322{width:314px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-323{width:315px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-324{width:316px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-325{width:317px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-326{width:318px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-327{width:319px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-328{width:320px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-329{width:321px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-330{width:322px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-331{width:323px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-332{width:324px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-333{width:325px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-334{width:326px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-335{width:327px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-336{width:328px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-337{width:329px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-338{width:330px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-339{width:331px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-340{width:332px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-341{width:333px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-342{width:334px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-343{width:335px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-344{width:336px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-345{width:337px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-346{width:338px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-347{width:339px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-348{width:340px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-349{width:341px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-350{width:342px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-351{width:343px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-352{width:344px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-353{width:345px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-354{width:346px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-355{width:347px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-356{width:348px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-357{width:349px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-358{width:350px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-359{width:351px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-360{width:352px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-361{width:353px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-362{width:354px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-363{width:355px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-364{width:356px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-365{width:357px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-366{width:358px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-367{width:359px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-368{width:360px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-369{width:361px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-370{width:362px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-371{width:363px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-372{width:364px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-373{width:365px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-374{width:366px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-375{width:367px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-376{width:368px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-377{width:369px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-378{width:370px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-379{width:371px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-380{width:372px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-381{width:373px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-382{width:374px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-383{width:375px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-384{width:376px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-385{width:377px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-386{width:378px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-387{width:379px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-388{width:380px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-389{width:381px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-390{width:382px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-391{width:383px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-392{width:384px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-393{width:385px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-394{width:386px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-395{width:387px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-396{width:388px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-397{width:389px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-398{width:390px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-399{width:391px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-400{width:392px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-401{width:393px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-402{width:394px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-403{width:395px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-404{width:396px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-405{width:397px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-406{width:398px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-407{width:399px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-408{width:400px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-409{width:401px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-410{width:402px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-411{width:403px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-412{width:404px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-413{width:405px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-414{width:406px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-415{width:407px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-416{width:408px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-417{width:409px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-418{width:410px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-419{width:411px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-420{width:412px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-421{width:413px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-422{width:414px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-423{width:415px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-424{width:416px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-425{width:417px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-426{width:418px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-427{width:419px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-428{width:420px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-429{width:421px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-430{width:422px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-431{width:423px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-432{width:424px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-433{width:425px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-434{width:426px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-435{width:427px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-436{width:428px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-437{width:429px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-438{width:430px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-439{width:431px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-440{width:432px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-441{width:433px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-442{width:434px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-443{width:435px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-444{width:436px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-445{width:437px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-446{width:438px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-447{width:439px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-448{width:440px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-449{width:441px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-450{width:442px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-451{width:443px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-452{width:444px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-453{width:445px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-454{width:446px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-455{width:447px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-456{width:448px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-457{width:449px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-458{width:450px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-459{width:451px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-460{width:452px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-461{width:453px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-462{width:454px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-463{width:455px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-464{width:456px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-465{width:457px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-466{width:458px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-467{width:459px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-468{width:460px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-469{width:461px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-470{width:462px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-471{width:463px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-472{width:464px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-473{width:465px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-474{width:466px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-475{width:467px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-476{width:468px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-477{width:469px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-478{width:470px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-479{width:471px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-480{width:472px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-481{width:473px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-482{width:474px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-483{width:475px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-484{width:476px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-485{width:477px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-486{width:478px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-487{width:479px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-488{width:480px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-489{width:481px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-490{width:482px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-491{width:483px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-492{width:484px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-493{width:485px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-494{width:486px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-495{width:487px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-496{width:488px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-497{width:489px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-498{width:490px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-499{width:491px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-500{width:492px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-501{width:493px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-502{width:494px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-503{width:495px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-504{width:496px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-505{width:497px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-506{width:498px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-507{width:499px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-508{width:500px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-509{width:501px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-510{width:502px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-511{width:503px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-512{width:504px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-513{width:505px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-514{width:506px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-515{width:507px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-516{width:508px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-517{width:509px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-518{width:510px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-519{width:511px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-520{width:512px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-521{width:513px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-522{width:514px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-523{width:515px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-524{width:516px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-525{width:517px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-526{width:518px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-527{width:519px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-528{width:520px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-529{width:521px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-530{width:522px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-531{width:523px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-532{width:524px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-533{width:525px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-534{width:526px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-535{width:527px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-536{width:528px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-537{width:529px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-538{width:530px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-539{width:531px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-540{width:532px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-541{width:533px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-542{width:534px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-543{width:535px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-544{width:536px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-545{width:537px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-546{width:538px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-547{width:539px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-548{width:540px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-549{width:541px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-550{width:542px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-551{width:543px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-552{width:544px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-553{width:545px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-554{width:546px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-555{width:547px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-556{width:548px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-557{width:549px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-558{width:550px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-559{width:551px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-560{width:552px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-561{width:553px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-562{width:554px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-563{width:555px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-564{width:556px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-565{width:557px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-566{width:558px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-567{width:559px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-568{width:560px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-569{width:561px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-570{width:562px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-571{width:563px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-572{width:564px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-573{width:565px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-574{width:566px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-575{width:567px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-576{width:568px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-577{width:569px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-578{width:570px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-579{width:571px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-580{width:572px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-581{width:573px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-582{width:574px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-583{width:575px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-584{width:576px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-585{width:577px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-586{width:578px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-587{width:579px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-588{width:580px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-589{width:581px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-590{width:582px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-591{width:583px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-592{width:584px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-593{width:585px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-594{width:586px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-595{width:587px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-596{width:588px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-597{width:589px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-598{width:590px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-599{width:591px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-600{width:592px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-601{width:593px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-602{width:594px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-603{width:595px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-604{width:596px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-605{width:597px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-606{width:598px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-607{width:599px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-608{width:600px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-609{width:601px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-610{width:602px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-611{width:603px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-612{width:604px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-613{width:605px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-614{width:606px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-615{width:607px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-616{width:608px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-617{width:609px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-618{width:610px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-619{width:611px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-620{width:612px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-621{width:613px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-622{width:614px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-623{width:615px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-624{width:616px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-625{width:617px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-626{width:618px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-627{width:619px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-628{width:620px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-629{width:621px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-630{width:622px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-631{width:623px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-632{width:624px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-633{width:625px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-634{width:626px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-635{width:627px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-636{width:628px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-637{width:629px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-638{width:630px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-639{width:631px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-640{width:632px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-641{width:633px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-642{width:634px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-643{width:635px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-644{width:636px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-645{width:637px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-646{width:638px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-647{width:639px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-648{width:640px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-649{width:641px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-650{width:642px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-651{width:643px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-652{width:644px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-653{width:645px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-654{width:646px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-655{width:647px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-656{width:648px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-657{width:649px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-658{width:650px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-659{width:651px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-660{width:652px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-661{width:653px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-662{width:654px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-663{width:655px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-664{width:656px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-665{width:657px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-666{width:658px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-667{width:659px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-668{width:660px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-669{width:661px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-670{width:662px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-671{width:663px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-672{width:664px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-673{width:665px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-674{width:666px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-675{width:667px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-676{width:668px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-677{width:669px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-678{width:670px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-679{width:671px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-680{width:672px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-681{width:673px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-682{width:674px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-683{width:675px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-684{width:676px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-685{width:677px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-686{width:678px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-687{width:679px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-688{width:680px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-689{width:681px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-690{width:682px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-691{width:683px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-692{width:684px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-693{width:685px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-694{width:686px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-695{width:687px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-696{width:688px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-697{width:689px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-698{width:690px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-699{width:691px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-700{width:692px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-701{width:693px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-702{width:694px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-703{width:695px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-704{width:696px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-705{width:697px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-706{width:698px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-707{width:699px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-708{width:700px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-709{width:701px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-710{width:702px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-711{width:703px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-712{width:704px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-713{width:705px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-714{width:706px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-715{width:707px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-716{width:708px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-717{width:709px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-718{width:710px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-719{width:711px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-720{width:712px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-721{width:713px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-722{width:714px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-723{width:715px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-724{width:716px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-725{width:717px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-726{width:718px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-727{width:719px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-728{width:720px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-729{width:721px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-730{width:722px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-731{width:723px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-732{width:724px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-733{width:725px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-734{width:726px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-735{width:727px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-736{width:728px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-737{width:729px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-738{width:730px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-739{width:731px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-740{width:732px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-741{width:733px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-742{width:734px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-743{width:735px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-744{width:736px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-745{width:737px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-746{width:738px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-747{width:739px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-748{width:740px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-749{width:741px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-750{width:742px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-751{width:743px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-752{width:744px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-753{width:745px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-754{width:746px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-755{width:747px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-756{width:748px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-757{width:749px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-758{width:750px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-759{width:751px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-760{width:752px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-761{width:753px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-762{width:754px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-763{width:755px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-764{width:756px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-765{width:757px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-766{width:758px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-767{width:759px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-768{width:760px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-769{width:761px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-770{width:762px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-771{width:763px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-772{width:764px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-773{width:765px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-774{width:766px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-775{width:767px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-776{width:768px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-777{width:769px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-778{width:770px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-779{width:771px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-780{width:772px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-781{width:773px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-782{width:774px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-783{width:775px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-784{width:776px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-785{width:777px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-786{width:778px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-787{width:779px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-788{width:780px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-789{width:781px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-790{width:782px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-791{width:783px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-792{width:784px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-793{width:785px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-794{width:786px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-795{width:787px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-796{width:788px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-797{width:789px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-798{width:790px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-799{width:791px}.ta-input-dropdown .popover-body .dropdown-options-divider.w-col-800{width:792px}.ta-input-dropdown .popover-body .dropdown-options-divider.dispatch_dropdown{top:-4px}.ta-input-dropdown .popover-body .dropdown-options{position:relative;top:0;left:0;z-index:1000;max-height:190px;width:100%;background-color:#2f2f2f;border-radius:3px;padding:4px;overflow:hidden}.ta-input-dropdown .popover-body .dropdown-options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important;padding-right:0}.ta-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar{width:3px}.ta-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-input-dropdown .popover-body .dropdown-options-fuel-franchise{padding:4px;max-height:300px}.ta-input-dropdown .popover-body .dropdown-options.no-result-container{padding:6px 10px!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9856,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9857,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9858,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option{padding:3px 4px;height:26px;font-size:14px;font-weight:400;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#dadada;font-size:14px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#dadada;font-size:14px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#dadada;border-radius:2px;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:hover{background:#424242;color:#dadada;border-radius:2px;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.disabled{color:#6c6c6c;pointer-events:none;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result{line-height:14px;font-size:11px;font-weight:700;color:#919191;height:auto!important;-webkit-user-select:none;user-select:none;pointer-events:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result:hover{background-color:transparent!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result div{padding-top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new{padding:4.5px 6px 4.5px 4px;font-size:11px;font-weight:700;color:#92b1f5;position:relative;transition:background .2s ease-in-out,color .2s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new:hover{color:#dadada;background:#3b73ed66}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .details-template-text,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .svgtext-template-text{color:#919191;font-size:11px;font-weight:700;line-height:14px;pointer-events:none;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .labels-template-counter,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632:hover,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active:after,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{display:inline-block;position:absolute;right:6px;top:28%;transform:translateY(-50%);width:14px;height:10px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{right:35px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active{position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template{display:flex;align-items:center}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous svg{margin-right:5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo{position:absolute;right:25px;text-align:right;display:none;margin-right:0}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text{position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text{top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1{flex:1}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text{font-size:11px;font-weight:400;line-height:14px;color:#919191;text-align:right}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .colors{height:18px;width:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-vertical-divider{width:1px;height:15px;background-color:#aaa3;content:\"\";margin:0 6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text{margin-right:28px;font-size:14px;font-weight:400;line-height:18px;color:#fff}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.lable-text-wrap{text-overflow:ellipsis;overflow:hidden;width:80px;white-space:nowrap}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.add-new{font-size:11px;font-weight:700;color:#6f9ee0;transition:all .3s ease-in-out;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result{line-height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;height:12px;-webkit-user-select:none;user-select:none;pointer-events:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter{width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;text-align:center;font-size:11px;font-weight:500;padding:0 4.5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result{height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;-webkit-user-select:none;user-select:none;pointer-events:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container p{font-size:11px;line-height:18px;color:#919191;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header{display:flex;align-items:center;justify-content:space-between;padding:0 2px;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px;-webkit-user-select:none;user-select:none}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow{width:18px;height:18px;line-height:15px;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg{transform:rotate(0);transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow.rotate svg{transform:rotate(180deg);transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store{height:26px;border-radius:2px;display:flex;align-items:center;justify-content:space-between;padding:3px 26px 4px 4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-name{font-size:14px;font-weight:400;height:19px;-webkit-user-select:none;user-select:none;color:#fff}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-address{font-size:11px;font-weight:500;line-height:14px;-webkit-user-select:none;user-select:none;color:#ccc}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-address{color:#fff!important;font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .helper-hover-container{content:\"\";width:105%;height:26px;background-color:#1d1d1d;position:absolute;top:0;left:0;border-radius:2px}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#dadada}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.ta-input-dropdown .popover-body .dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.ta-input-dropdown .popover-body .dropdown-options .load-dispatcher-template{display:flex;align-items:center;gap:6px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-trailer{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:116px;max-width:-moz-fit-content;max-width:fit-content;line-height:18px;font-size:14px;font-weight:400}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container.trailerContainer{width:max-content!important;padding:0!important;margin:0!important}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate{width:130px;text-align:right;font-size:11px;font-weight:400;color:#919191;padding-bottom:1px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.ta-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;column-gap:29px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status{height:14px;display:flex;align-items:center;justify-content:flex-end;grid-gap:4px;gap:4px;text-align:center}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter{max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ta-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template{display:grid;grid-template-columns:405px 166px;align-items:center;padding-right:25px}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2),.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(3){text-align:right}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter{max-width:max-content;height:18px;border-radius:30px;text-align:right;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;justify-self:flex-end}.ta-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ta-input-dropdown .popover-body .dropdown-options.w-col-1{width:1px}.ta-input-dropdown .popover-body .dropdown-options.w-col-2{width:2px}.ta-input-dropdown .popover-body .dropdown-options.w-col-3{width:3px}.ta-input-dropdown .popover-body .dropdown-options.w-col-4{width:4px}.ta-input-dropdown .popover-body .dropdown-options.w-col-5{width:5px}.ta-input-dropdown .popover-body .dropdown-options.w-col-6{width:6px}.ta-input-dropdown .popover-body .dropdown-options.w-col-7{width:7px}.ta-input-dropdown .popover-body .dropdown-options.w-col-8{width:8px}.ta-input-dropdown .popover-body .dropdown-options.w-col-9{width:9px}.ta-input-dropdown .popover-body .dropdown-options.w-col-10{width:10px}.ta-input-dropdown .popover-body .dropdown-options.w-col-11{width:11px}.ta-input-dropdown .popover-body .dropdown-options.w-col-12{width:12px}.ta-input-dropdown .popover-body .dropdown-options.w-col-13{width:13px}.ta-input-dropdown .popover-body .dropdown-options.w-col-14{width:14px}.ta-input-dropdown .popover-body .dropdown-options.w-col-15{width:15px}.ta-input-dropdown .popover-body .dropdown-options.w-col-16{width:16px}.ta-input-dropdown .popover-body .dropdown-options.w-col-17{width:17px}.ta-input-dropdown .popover-body .dropdown-options.w-col-18{width:18px}.ta-input-dropdown .popover-body .dropdown-options.w-col-19{width:19px}.ta-input-dropdown .popover-body .dropdown-options.w-col-20{width:20px}.ta-input-dropdown .popover-body .dropdown-options.w-col-21{width:21px}.ta-input-dropdown .popover-body .dropdown-options.w-col-22{width:22px}.ta-input-dropdown .popover-body .dropdown-options.w-col-23{width:23px}.ta-input-dropdown .popover-body .dropdown-options.w-col-24{width:24px}.ta-input-dropdown .popover-body .dropdown-options.w-col-25{width:25px}.ta-input-dropdown .popover-body .dropdown-options.w-col-26{width:26px}.ta-input-dropdown .popover-body .dropdown-options.w-col-27{width:27px}.ta-input-dropdown .popover-body .dropdown-options.w-col-28{width:28px}.ta-input-dropdown .popover-body .dropdown-options.w-col-29{width:29px}.ta-input-dropdown .popover-body .dropdown-options.w-col-30{width:30px}.ta-input-dropdown .popover-body .dropdown-options.w-col-31{width:31px}.ta-input-dropdown .popover-body .dropdown-options.w-col-32{width:32px}.ta-input-dropdown .popover-body .dropdown-options.w-col-33{width:33px}.ta-input-dropdown .popover-body .dropdown-options.w-col-34{width:34px}.ta-input-dropdown .popover-body .dropdown-options.w-col-35{width:35px}.ta-input-dropdown .popover-body .dropdown-options.w-col-36{width:36px}.ta-input-dropdown .popover-body .dropdown-options.w-col-37{width:37px}.ta-input-dropdown .popover-body .dropdown-options.w-col-38{width:38px}.ta-input-dropdown .popover-body .dropdown-options.w-col-39{width:39px}.ta-input-dropdown .popover-body .dropdown-options.w-col-40{width:40px}.ta-input-dropdown .popover-body .dropdown-options.w-col-41{width:41px}.ta-input-dropdown .popover-body .dropdown-options.w-col-42{width:42px}.ta-input-dropdown .popover-body .dropdown-options.w-col-43{width:43px}.ta-input-dropdown .popover-body .dropdown-options.w-col-44{width:44px}.ta-input-dropdown .popover-body .dropdown-options.w-col-45{width:45px}.ta-input-dropdown .popover-body .dropdown-options.w-col-46{width:46px}.ta-input-dropdown .popover-body .dropdown-options.w-col-47{width:47px}.ta-input-dropdown .popover-body .dropdown-options.w-col-48{width:48px}.ta-input-dropdown .popover-body .dropdown-options.w-col-49{width:49px}.ta-input-dropdown .popover-body .dropdown-options.w-col-50{width:50px}.ta-input-dropdown .popover-body .dropdown-options.w-col-51{width:51px}.ta-input-dropdown .popover-body .dropdown-options.w-col-52{width:52px}.ta-input-dropdown .popover-body .dropdown-options.w-col-53{width:53px}.ta-input-dropdown .popover-body .dropdown-options.w-col-54{width:54px}.ta-input-dropdown .popover-body .dropdown-options.w-col-55{width:55px}.ta-input-dropdown .popover-body .dropdown-options.w-col-56{width:56px}.ta-input-dropdown .popover-body .dropdown-options.w-col-57{width:57px}.ta-input-dropdown .popover-body .dropdown-options.w-col-58{width:58px}.ta-input-dropdown .popover-body .dropdown-options.w-col-59{width:59px}.ta-input-dropdown .popover-body .dropdown-options.w-col-60{width:60px}.ta-input-dropdown .popover-body .dropdown-options.w-col-61{width:61px}.ta-input-dropdown .popover-body .dropdown-options.w-col-62{width:62px}.ta-input-dropdown .popover-body .dropdown-options.w-col-63{width:63px}.ta-input-dropdown .popover-body .dropdown-options.w-col-64{width:64px}.ta-input-dropdown .popover-body .dropdown-options.w-col-65{width:65px}.ta-input-dropdown .popover-body .dropdown-options.w-col-66{width:66px}.ta-input-dropdown .popover-body .dropdown-options.w-col-67{width:67px}.ta-input-dropdown .popover-body .dropdown-options.w-col-68{width:68px}.ta-input-dropdown .popover-body .dropdown-options.w-col-69{width:69px}.ta-input-dropdown .popover-body .dropdown-options.w-col-70{width:70px}.ta-input-dropdown .popover-body .dropdown-options.w-col-71{width:71px}.ta-input-dropdown .popover-body .dropdown-options.w-col-72{width:72px}.ta-input-dropdown .popover-body .dropdown-options.w-col-73{width:73px}.ta-input-dropdown .popover-body .dropdown-options.w-col-74{width:74px}.ta-input-dropdown .popover-body .dropdown-options.w-col-75{width:75px}.ta-input-dropdown .popover-body .dropdown-options.w-col-76{width:76px}.ta-input-dropdown .popover-body .dropdown-options.w-col-77{width:77px}.ta-input-dropdown .popover-body .dropdown-options.w-col-78{width:78px}.ta-input-dropdown .popover-body .dropdown-options.w-col-79{width:79px}.ta-input-dropdown .popover-body .dropdown-options.w-col-80{width:80px}.ta-input-dropdown .popover-body .dropdown-options.w-col-81{width:81px}.ta-input-dropdown .popover-body .dropdown-options.w-col-82{width:82px}.ta-input-dropdown .popover-body .dropdown-options.w-col-83{width:83px}.ta-input-dropdown .popover-body .dropdown-options.w-col-84{width:84px}.ta-input-dropdown .popover-body .dropdown-options.w-col-85{width:85px}.ta-input-dropdown .popover-body .dropdown-options.w-col-86{width:86px}.ta-input-dropdown .popover-body .dropdown-options.w-col-87{width:87px}.ta-input-dropdown .popover-body .dropdown-options.w-col-88{width:88px}.ta-input-dropdown .popover-body .dropdown-options.w-col-89{width:89px}.ta-input-dropdown .popover-body .dropdown-options.w-col-90{width:90px}.ta-input-dropdown .popover-body .dropdown-options.w-col-91{width:91px}.ta-input-dropdown .popover-body .dropdown-options.w-col-92{width:92px}.ta-input-dropdown .popover-body .dropdown-options.w-col-93{width:93px}.ta-input-dropdown .popover-body .dropdown-options.w-col-94{width:94px}.ta-input-dropdown .popover-body .dropdown-options.w-col-95{width:95px}.ta-input-dropdown .popover-body .dropdown-options.w-col-96{width:96px}.ta-input-dropdown .popover-body .dropdown-options.w-col-97{width:97px}.ta-input-dropdown .popover-body .dropdown-options.w-col-98{width:98px}.ta-input-dropdown .popover-body .dropdown-options.w-col-99{width:99px}.ta-input-dropdown .popover-body .dropdown-options.w-col-100{width:100px}.ta-input-dropdown .popover-body .dropdown-options.w-col-101{width:101px}.ta-input-dropdown .popover-body .dropdown-options.w-col-102{width:102px}.ta-input-dropdown .popover-body .dropdown-options.w-col-103{width:103px}.ta-input-dropdown .popover-body .dropdown-options.w-col-104{width:104px}.ta-input-dropdown .popover-body .dropdown-options.w-col-105{width:105px}.ta-input-dropdown .popover-body .dropdown-options.w-col-106{width:106px}.ta-input-dropdown .popover-body .dropdown-options.w-col-107{width:107px}.ta-input-dropdown .popover-body .dropdown-options.w-col-108{width:108px}.ta-input-dropdown .popover-body .dropdown-options.w-col-109{width:109px}.ta-input-dropdown .popover-body .dropdown-options.w-col-110{width:110px}.ta-input-dropdown .popover-body .dropdown-options.w-col-111{width:111px}.ta-input-dropdown .popover-body .dropdown-options.w-col-112{width:112px}.ta-input-dropdown .popover-body .dropdown-options.w-col-113{width:113px}.ta-input-dropdown .popover-body .dropdown-options.w-col-114{width:114px}.ta-input-dropdown .popover-body .dropdown-options.w-col-115{width:115px}.ta-input-dropdown .popover-body .dropdown-options.w-col-116{width:116px}.ta-input-dropdown .popover-body .dropdown-options.w-col-117{width:117px}.ta-input-dropdown .popover-body .dropdown-options.w-col-118{width:118px}.ta-input-dropdown .popover-body .dropdown-options.w-col-119{width:119px}.ta-input-dropdown .popover-body .dropdown-options.w-col-120{width:120px}.ta-input-dropdown .popover-body .dropdown-options.w-col-121{width:121px}.ta-input-dropdown .popover-body .dropdown-options.w-col-122{width:122px}.ta-input-dropdown .popover-body .dropdown-options.w-col-123{width:123px}.ta-input-dropdown .popover-body .dropdown-options.w-col-124{width:124px}.ta-input-dropdown .popover-body .dropdown-options.w-col-125{width:125px}.ta-input-dropdown .popover-body .dropdown-options.w-col-126{width:126px}.ta-input-dropdown .popover-body .dropdown-options.w-col-127{width:127px}.ta-input-dropdown .popover-body .dropdown-options.w-col-128{width:128px}.ta-input-dropdown .popover-body .dropdown-options.w-col-129{width:129px}.ta-input-dropdown .popover-body .dropdown-options.w-col-130{width:130px}.ta-input-dropdown .popover-body .dropdown-options.w-col-131{width:131px}.ta-input-dropdown .popover-body .dropdown-options.w-col-132{width:132px}.ta-input-dropdown .popover-body .dropdown-options.w-col-133{width:133px}.ta-input-dropdown .popover-body .dropdown-options.w-col-134{width:134px}.ta-input-dropdown .popover-body .dropdown-options.w-col-135{width:135px}.ta-input-dropdown .popover-body .dropdown-options.w-col-136{width:136px}.ta-input-dropdown .popover-body .dropdown-options.w-col-137{width:137px}.ta-input-dropdown .popover-body .dropdown-options.w-col-138{width:138px}.ta-input-dropdown .popover-body .dropdown-options.w-col-139{width:139px}.ta-input-dropdown .popover-body .dropdown-options.w-col-140{width:140px}.ta-input-dropdown .popover-body .dropdown-options.w-col-141{width:141px}.ta-input-dropdown .popover-body .dropdown-options.w-col-142{width:142px}.ta-input-dropdown .popover-body .dropdown-options.w-col-143{width:143px}.ta-input-dropdown .popover-body .dropdown-options.w-col-144{width:144px}.ta-input-dropdown .popover-body .dropdown-options.w-col-145{width:145px}.ta-input-dropdown .popover-body .dropdown-options.w-col-146{width:146px}.ta-input-dropdown .popover-body .dropdown-options.w-col-147{width:147px}.ta-input-dropdown .popover-body .dropdown-options.w-col-148{width:148px}.ta-input-dropdown .popover-body .dropdown-options.w-col-149{width:149px}.ta-input-dropdown .popover-body .dropdown-options.w-col-150{width:150px}.ta-input-dropdown .popover-body .dropdown-options.w-col-151{width:151px}.ta-input-dropdown .popover-body .dropdown-options.w-col-152{width:152px}.ta-input-dropdown .popover-body .dropdown-options.w-col-153{width:153px}.ta-input-dropdown .popover-body .dropdown-options.w-col-154{width:154px}.ta-input-dropdown .popover-body .dropdown-options.w-col-155{width:155px}.ta-input-dropdown .popover-body .dropdown-options.w-col-156{width:156px}.ta-input-dropdown .popover-body .dropdown-options.w-col-157{width:157px}.ta-input-dropdown .popover-body .dropdown-options.w-col-158{width:158px}.ta-input-dropdown .popover-body .dropdown-options.w-col-159{width:159px}.ta-input-dropdown .popover-body .dropdown-options.w-col-160{width:160px}.ta-input-dropdown .popover-body .dropdown-options.w-col-161{width:161px}.ta-input-dropdown .popover-body .dropdown-options.w-col-162{width:162px}.ta-input-dropdown .popover-body .dropdown-options.w-col-163{width:163px}.ta-input-dropdown .popover-body .dropdown-options.w-col-164{width:164px}.ta-input-dropdown .popover-body .dropdown-options.w-col-165{width:165px}.ta-input-dropdown .popover-body .dropdown-options.w-col-166{width:166px}.ta-input-dropdown .popover-body .dropdown-options.w-col-167{width:167px}.ta-input-dropdown .popover-body .dropdown-options.w-col-168{width:168px}.ta-input-dropdown .popover-body .dropdown-options.w-col-169{width:169px}.ta-input-dropdown .popover-body .dropdown-options.w-col-170{width:170px}.ta-input-dropdown .popover-body .dropdown-options.w-col-171{width:171px}.ta-input-dropdown .popover-body .dropdown-options.w-col-172{width:172px}.ta-input-dropdown .popover-body .dropdown-options.w-col-173{width:173px}.ta-input-dropdown .popover-body .dropdown-options.w-col-174{width:174px}.ta-input-dropdown .popover-body .dropdown-options.w-col-175{width:175px}.ta-input-dropdown .popover-body .dropdown-options.w-col-176{width:176px}.ta-input-dropdown .popover-body .dropdown-options.w-col-177{width:177px}.ta-input-dropdown .popover-body .dropdown-options.w-col-178{width:178px}.ta-input-dropdown .popover-body .dropdown-options.w-col-179{width:179px}.ta-input-dropdown .popover-body .dropdown-options.w-col-180{width:180px}.ta-input-dropdown .popover-body .dropdown-options.w-col-181{width:181px}.ta-input-dropdown .popover-body .dropdown-options.w-col-182{width:182px}.ta-input-dropdown .popover-body .dropdown-options.w-col-183{width:183px}.ta-input-dropdown .popover-body .dropdown-options.w-col-184{width:184px}.ta-input-dropdown .popover-body .dropdown-options.w-col-185{width:185px}.ta-input-dropdown .popover-body .dropdown-options.w-col-186{width:186px}.ta-input-dropdown .popover-body .dropdown-options.w-col-187{width:187px}.ta-input-dropdown .popover-body .dropdown-options.w-col-188{width:188px}.ta-input-dropdown .popover-body .dropdown-options.w-col-189{width:189px}.ta-input-dropdown .popover-body .dropdown-options.w-col-190{width:190px}.ta-input-dropdown .popover-body .dropdown-options.w-col-191{width:191px}.ta-input-dropdown .popover-body .dropdown-options.w-col-192{width:192px}.ta-input-dropdown .popover-body .dropdown-options.w-col-193{width:193px}.ta-input-dropdown .popover-body .dropdown-options.w-col-194{width:194px}.ta-input-dropdown .popover-body .dropdown-options.w-col-195{width:195px}.ta-input-dropdown .popover-body .dropdown-options.w-col-196{width:196px}.ta-input-dropdown .popover-body .dropdown-options.w-col-197{width:197px}.ta-input-dropdown .popover-body .dropdown-options.w-col-198{width:198px}.ta-input-dropdown .popover-body .dropdown-options.w-col-199{width:199px}.ta-input-dropdown .popover-body .dropdown-options.w-col-200{width:200px}.ta-input-dropdown .popover-body .dropdown-options.w-col-201{width:201px}.ta-input-dropdown .popover-body .dropdown-options.w-col-202{width:202px}.ta-input-dropdown .popover-body .dropdown-options.w-col-203{width:203px}.ta-input-dropdown .popover-body .dropdown-options.w-col-204{width:204px}.ta-input-dropdown .popover-body .dropdown-options.w-col-205{width:205px}.ta-input-dropdown .popover-body .dropdown-options.w-col-206{width:206px}.ta-input-dropdown .popover-body .dropdown-options.w-col-207{width:207px}.ta-input-dropdown .popover-body .dropdown-options.w-col-208{width:208px}.ta-input-dropdown .popover-body .dropdown-options.w-col-209{width:209px}.ta-input-dropdown .popover-body .dropdown-options.w-col-210{width:210px}.ta-input-dropdown .popover-body .dropdown-options.w-col-211{width:211px}.ta-input-dropdown .popover-body .dropdown-options.w-col-212{width:212px}.ta-input-dropdown .popover-body .dropdown-options.w-col-213{width:213px}.ta-input-dropdown .popover-body .dropdown-options.w-col-214{width:214px}.ta-input-dropdown .popover-body .dropdown-options.w-col-215{width:215px}.ta-input-dropdown .popover-body .dropdown-options.w-col-216{width:216px}.ta-input-dropdown .popover-body .dropdown-options.w-col-217{width:217px}.ta-input-dropdown .popover-body .dropdown-options.w-col-218{width:218px}.ta-input-dropdown .popover-body .dropdown-options.w-col-219{width:219px}.ta-input-dropdown .popover-body .dropdown-options.w-col-220{width:220px}.ta-input-dropdown .popover-body .dropdown-options.w-col-221{width:221px}.ta-input-dropdown .popover-body .dropdown-options.w-col-222{width:222px}.ta-input-dropdown .popover-body .dropdown-options.w-col-223{width:223px}.ta-input-dropdown .popover-body .dropdown-options.w-col-224{width:224px}.ta-input-dropdown .popover-body .dropdown-options.w-col-225{width:225px}.ta-input-dropdown .popover-body .dropdown-options.w-col-226{width:226px}.ta-input-dropdown .popover-body .dropdown-options.w-col-227{width:227px}.ta-input-dropdown .popover-body .dropdown-options.w-col-228{width:228px}.ta-input-dropdown .popover-body .dropdown-options.w-col-229{width:229px}.ta-input-dropdown .popover-body .dropdown-options.w-col-230{width:230px}.ta-input-dropdown .popover-body .dropdown-options.w-col-231{width:231px}.ta-input-dropdown .popover-body .dropdown-options.w-col-232{width:232px}.ta-input-dropdown .popover-body .dropdown-options.w-col-233{width:233px}.ta-input-dropdown .popover-body .dropdown-options.w-col-234{width:234px}.ta-input-dropdown .popover-body .dropdown-options.w-col-235{width:235px}.ta-input-dropdown .popover-body .dropdown-options.w-col-236{width:236px}.ta-input-dropdown .popover-body .dropdown-options.w-col-237{width:237px}.ta-input-dropdown .popover-body .dropdown-options.w-col-238{width:238px}.ta-input-dropdown .popover-body .dropdown-options.w-col-239{width:239px}.ta-input-dropdown .popover-body .dropdown-options.w-col-240{width:240px}.ta-input-dropdown .popover-body .dropdown-options.w-col-241{width:241px}.ta-input-dropdown .popover-body .dropdown-options.w-col-242{width:242px}.ta-input-dropdown .popover-body .dropdown-options.w-col-243{width:243px}.ta-input-dropdown .popover-body .dropdown-options.w-col-244{width:244px}.ta-input-dropdown .popover-body .dropdown-options.w-col-245{width:245px}.ta-input-dropdown .popover-body .dropdown-options.w-col-246{width:246px}.ta-input-dropdown .popover-body .dropdown-options.w-col-247{width:247px}.ta-input-dropdown .popover-body .dropdown-options.w-col-248{width:248px}.ta-input-dropdown .popover-body .dropdown-options.w-col-249{width:249px}.ta-input-dropdown .popover-body .dropdown-options.w-col-250{width:250px}.ta-input-dropdown .popover-body .dropdown-options.w-col-251{width:251px}.ta-input-dropdown .popover-body .dropdown-options.w-col-252{width:252px}.ta-input-dropdown .popover-body .dropdown-options.w-col-253{width:253px}.ta-input-dropdown .popover-body .dropdown-options.w-col-254{width:254px}.ta-input-dropdown .popover-body .dropdown-options.w-col-255{width:255px}.ta-input-dropdown .popover-body .dropdown-options.w-col-256{width:256px}.ta-input-dropdown .popover-body .dropdown-options.w-col-257{width:257px}.ta-input-dropdown .popover-body .dropdown-options.w-col-258{width:258px}.ta-input-dropdown .popover-body .dropdown-options.w-col-259{width:259px}.ta-input-dropdown .popover-body .dropdown-options.w-col-260{width:260px}.ta-input-dropdown .popover-body .dropdown-options.w-col-261{width:261px}.ta-input-dropdown .popover-body .dropdown-options.w-col-262{width:262px}.ta-input-dropdown .popover-body .dropdown-options.w-col-263{width:263px}.ta-input-dropdown .popover-body .dropdown-options.w-col-264{width:264px}.ta-input-dropdown .popover-body .dropdown-options.w-col-265{width:265px}.ta-input-dropdown .popover-body .dropdown-options.w-col-266{width:266px}.ta-input-dropdown .popover-body .dropdown-options.w-col-267{width:267px}.ta-input-dropdown .popover-body .dropdown-options.w-col-268{width:268px}.ta-input-dropdown .popover-body .dropdown-options.w-col-269{width:269px}.ta-input-dropdown .popover-body .dropdown-options.w-col-270{width:270px}.ta-input-dropdown .popover-body .dropdown-options.w-col-271{width:271px}.ta-input-dropdown .popover-body .dropdown-options.w-col-272{width:272px}.ta-input-dropdown .popover-body .dropdown-options.w-col-273{width:273px}.ta-input-dropdown .popover-body .dropdown-options.w-col-274{width:274px}.ta-input-dropdown .popover-body .dropdown-options.w-col-275{width:275px}.ta-input-dropdown .popover-body .dropdown-options.w-col-276{width:276px}.ta-input-dropdown .popover-body .dropdown-options.w-col-277{width:277px}.ta-input-dropdown .popover-body .dropdown-options.w-col-278{width:278px}.ta-input-dropdown .popover-body .dropdown-options.w-col-279{width:279px}.ta-input-dropdown .popover-body .dropdown-options.w-col-280{width:280px}.ta-input-dropdown .popover-body .dropdown-options.w-col-281{width:281px}.ta-input-dropdown .popover-body .dropdown-options.w-col-282{width:282px}.ta-input-dropdown .popover-body .dropdown-options.w-col-283{width:283px}.ta-input-dropdown .popover-body .dropdown-options.w-col-284{width:284px}.ta-input-dropdown .popover-body .dropdown-options.w-col-285{width:285px}.ta-input-dropdown .popover-body .dropdown-options.w-col-286{width:286px}.ta-input-dropdown .popover-body .dropdown-options.w-col-287{width:287px}.ta-input-dropdown .popover-body .dropdown-options.w-col-288{width:288px}.ta-input-dropdown .popover-body .dropdown-options.w-col-289{width:289px}.ta-input-dropdown .popover-body .dropdown-options.w-col-290{width:290px}.ta-input-dropdown .popover-body .dropdown-options.w-col-291{width:291px}.ta-input-dropdown .popover-body .dropdown-options.w-col-292{width:292px}.ta-input-dropdown .popover-body .dropdown-options.w-col-293{width:293px}.ta-input-dropdown .popover-body .dropdown-options.w-col-294{width:294px}.ta-input-dropdown .popover-body .dropdown-options.w-col-295{width:295px}.ta-input-dropdown .popover-body .dropdown-options.w-col-296{width:296px}.ta-input-dropdown .popover-body .dropdown-options.w-col-297{width:297px}.ta-input-dropdown .popover-body .dropdown-options.w-col-298{width:298px}.ta-input-dropdown .popover-body .dropdown-options.w-col-299{width:299px}.ta-input-dropdown .popover-body .dropdown-options.w-col-300{width:300px}.ta-input-dropdown .popover-body .dropdown-options.w-col-301{width:301px}.ta-input-dropdown .popover-body .dropdown-options.w-col-302{width:302px}.ta-input-dropdown .popover-body .dropdown-options.w-col-303{width:303px}.ta-input-dropdown .popover-body .dropdown-options.w-col-304{width:304px}.ta-input-dropdown .popover-body .dropdown-options.w-col-305{width:305px}.ta-input-dropdown .popover-body .dropdown-options.w-col-306{width:306px}.ta-input-dropdown .popover-body .dropdown-options.w-col-307{width:307px}.ta-input-dropdown .popover-body .dropdown-options.w-col-308{width:308px}.ta-input-dropdown .popover-body .dropdown-options.w-col-309{width:309px}.ta-input-dropdown .popover-body .dropdown-options.w-col-310{width:310px}.ta-input-dropdown .popover-body .dropdown-options.w-col-311{width:311px}.ta-input-dropdown .popover-body .dropdown-options.w-col-312{width:312px}.ta-input-dropdown .popover-body .dropdown-options.w-col-313{width:313px}.ta-input-dropdown .popover-body .dropdown-options.w-col-314{width:314px}.ta-input-dropdown .popover-body .dropdown-options.w-col-315{width:315px}.ta-input-dropdown .popover-body .dropdown-options.w-col-316{width:316px}.ta-input-dropdown .popover-body .dropdown-options.w-col-317{width:317px}.ta-input-dropdown .popover-body .dropdown-options.w-col-318{width:318px}.ta-input-dropdown .popover-body .dropdown-options.w-col-319{width:319px}.ta-input-dropdown .popover-body .dropdown-options.w-col-320{width:320px}.ta-input-dropdown .popover-body .dropdown-options.w-col-321{width:321px}.ta-input-dropdown .popover-body .dropdown-options.w-col-322{width:322px}.ta-input-dropdown .popover-body .dropdown-options.w-col-323{width:323px}.ta-input-dropdown .popover-body .dropdown-options.w-col-324{width:324px}.ta-input-dropdown .popover-body .dropdown-options.w-col-325{width:325px}.ta-input-dropdown .popover-body .dropdown-options.w-col-326{width:326px}.ta-input-dropdown .popover-body .dropdown-options.w-col-327{width:327px}.ta-input-dropdown .popover-body .dropdown-options.w-col-328{width:328px}.ta-input-dropdown .popover-body .dropdown-options.w-col-329{width:329px}.ta-input-dropdown .popover-body .dropdown-options.w-col-330{width:330px}.ta-input-dropdown .popover-body .dropdown-options.w-col-331{width:331px}.ta-input-dropdown .popover-body .dropdown-options.w-col-332{width:332px}.ta-input-dropdown .popover-body .dropdown-options.w-col-333{width:333px}.ta-input-dropdown .popover-body .dropdown-options.w-col-334{width:334px}.ta-input-dropdown .popover-body .dropdown-options.w-col-335{width:335px}.ta-input-dropdown .popover-body .dropdown-options.w-col-336{width:336px}.ta-input-dropdown .popover-body .dropdown-options.w-col-337{width:337px}.ta-input-dropdown .popover-body .dropdown-options.w-col-338{width:338px}.ta-input-dropdown .popover-body .dropdown-options.w-col-339{width:339px}.ta-input-dropdown .popover-body .dropdown-options.w-col-340{width:340px}.ta-input-dropdown .popover-body .dropdown-options.w-col-341{width:341px}.ta-input-dropdown .popover-body .dropdown-options.w-col-342{width:342px}.ta-input-dropdown .popover-body .dropdown-options.w-col-343{width:343px}.ta-input-dropdown .popover-body .dropdown-options.w-col-344{width:344px}.ta-input-dropdown .popover-body .dropdown-options.w-col-345{width:345px}.ta-input-dropdown .popover-body .dropdown-options.w-col-346{width:346px}.ta-input-dropdown .popover-body .dropdown-options.w-col-347{width:347px}.ta-input-dropdown .popover-body .dropdown-options.w-col-348{width:348px}.ta-input-dropdown .popover-body .dropdown-options.w-col-349{width:349px}.ta-input-dropdown .popover-body .dropdown-options.w-col-350{width:350px}.ta-input-dropdown .popover-body .dropdown-options.w-col-351{width:351px}.ta-input-dropdown .popover-body .dropdown-options.w-col-352{width:352px}.ta-input-dropdown .popover-body .dropdown-options.w-col-353{width:353px}.ta-input-dropdown .popover-body .dropdown-options.w-col-354{width:354px}.ta-input-dropdown .popover-body .dropdown-options.w-col-355{width:355px}.ta-input-dropdown .popover-body .dropdown-options.w-col-356{width:356px}.ta-input-dropdown .popover-body .dropdown-options.w-col-357{width:357px}.ta-input-dropdown .popover-body .dropdown-options.w-col-358{width:358px}.ta-input-dropdown .popover-body .dropdown-options.w-col-359{width:359px}.ta-input-dropdown .popover-body .dropdown-options.w-col-360{width:360px}.ta-input-dropdown .popover-body .dropdown-options.w-col-361{width:361px}.ta-input-dropdown .popover-body .dropdown-options.w-col-362{width:362px}.ta-input-dropdown .popover-body .dropdown-options.w-col-363{width:363px}.ta-input-dropdown .popover-body .dropdown-options.w-col-364{width:364px}.ta-input-dropdown .popover-body .dropdown-options.w-col-365{width:365px}.ta-input-dropdown .popover-body .dropdown-options.w-col-366{width:366px}.ta-input-dropdown .popover-body .dropdown-options.w-col-367{width:367px}.ta-input-dropdown .popover-body .dropdown-options.w-col-368{width:368px}.ta-input-dropdown .popover-body .dropdown-options.w-col-369{width:369px}.ta-input-dropdown .popover-body .dropdown-options.w-col-370{width:370px}.ta-input-dropdown .popover-body .dropdown-options.w-col-371{width:371px}.ta-input-dropdown .popover-body .dropdown-options.w-col-372{width:372px}.ta-input-dropdown .popover-body .dropdown-options.w-col-373{width:373px}.ta-input-dropdown .popover-body .dropdown-options.w-col-374{width:374px}.ta-input-dropdown .popover-body .dropdown-options.w-col-375{width:375px}.ta-input-dropdown .popover-body .dropdown-options.w-col-376{width:376px}.ta-input-dropdown .popover-body .dropdown-options.w-col-377{width:377px}.ta-input-dropdown .popover-body .dropdown-options.w-col-378{width:378px}.ta-input-dropdown .popover-body .dropdown-options.w-col-379{width:379px}.ta-input-dropdown .popover-body .dropdown-options.w-col-380{width:380px}.ta-input-dropdown .popover-body .dropdown-options.w-col-381{width:381px}.ta-input-dropdown .popover-body .dropdown-options.w-col-382{width:382px}.ta-input-dropdown .popover-body .dropdown-options.w-col-383{width:383px}.ta-input-dropdown .popover-body .dropdown-options.w-col-384{width:384px}.ta-input-dropdown .popover-body .dropdown-options.w-col-385{width:385px}.ta-input-dropdown .popover-body .dropdown-options.w-col-386{width:386px}.ta-input-dropdown .popover-body .dropdown-options.w-col-387{width:387px}.ta-input-dropdown .popover-body .dropdown-options.w-col-388{width:388px}.ta-input-dropdown .popover-body .dropdown-options.w-col-389{width:389px}.ta-input-dropdown .popover-body .dropdown-options.w-col-390{width:390px}.ta-input-dropdown .popover-body .dropdown-options.w-col-391{width:391px}.ta-input-dropdown .popover-body .dropdown-options.w-col-392{width:392px}.ta-input-dropdown .popover-body .dropdown-options.w-col-393{width:393px}.ta-input-dropdown .popover-body .dropdown-options.w-col-394{width:394px}.ta-input-dropdown .popover-body .dropdown-options.w-col-395{width:395px}.ta-input-dropdown .popover-body .dropdown-options.w-col-396{width:396px}.ta-input-dropdown .popover-body .dropdown-options.w-col-397{width:397px}.ta-input-dropdown .popover-body .dropdown-options.w-col-398{width:398px}.ta-input-dropdown .popover-body .dropdown-options.w-col-399{width:399px}.ta-input-dropdown .popover-body .dropdown-options.w-col-400{width:400px}.ta-input-dropdown .popover-body .dropdown-options.w-col-401{width:401px}.ta-input-dropdown .popover-body .dropdown-options.w-col-402{width:402px}.ta-input-dropdown .popover-body .dropdown-options.w-col-403{width:403px}.ta-input-dropdown .popover-body .dropdown-options.w-col-404{width:404px}.ta-input-dropdown .popover-body .dropdown-options.w-col-405{width:405px}.ta-input-dropdown .popover-body .dropdown-options.w-col-406{width:406px}.ta-input-dropdown .popover-body .dropdown-options.w-col-407{width:407px}.ta-input-dropdown .popover-body .dropdown-options.w-col-408{width:408px}.ta-input-dropdown .popover-body .dropdown-options.w-col-409{width:409px}.ta-input-dropdown .popover-body .dropdown-options.w-col-410{width:410px}.ta-input-dropdown .popover-body .dropdown-options.w-col-411{width:411px}.ta-input-dropdown .popover-body .dropdown-options.w-col-412{width:412px}.ta-input-dropdown .popover-body .dropdown-options.w-col-413{width:413px}.ta-input-dropdown .popover-body .dropdown-options.w-col-414{width:414px}.ta-input-dropdown .popover-body .dropdown-options.w-col-415{width:415px}.ta-input-dropdown .popover-body .dropdown-options.w-col-416{width:416px}.ta-input-dropdown .popover-body .dropdown-options.w-col-417{width:417px}.ta-input-dropdown .popover-body .dropdown-options.w-col-418{width:418px}.ta-input-dropdown .popover-body .dropdown-options.w-col-419{width:419px}.ta-input-dropdown .popover-body .dropdown-options.w-col-420{width:420px}.ta-input-dropdown .popover-body .dropdown-options.w-col-421{width:421px}.ta-input-dropdown .popover-body .dropdown-options.w-col-422{width:422px}.ta-input-dropdown .popover-body .dropdown-options.w-col-423{width:423px}.ta-input-dropdown .popover-body .dropdown-options.w-col-424{width:424px}.ta-input-dropdown .popover-body .dropdown-options.w-col-425{width:425px}.ta-input-dropdown .popover-body .dropdown-options.w-col-426{width:426px}.ta-input-dropdown .popover-body .dropdown-options.w-col-427{width:427px}.ta-input-dropdown .popover-body .dropdown-options.w-col-428{width:428px}.ta-input-dropdown .popover-body .dropdown-options.w-col-429{width:429px}.ta-input-dropdown .popover-body .dropdown-options.w-col-430{width:430px}.ta-input-dropdown .popover-body .dropdown-options.w-col-431{width:431px}.ta-input-dropdown .popover-body .dropdown-options.w-col-432{width:432px}.ta-input-dropdown .popover-body .dropdown-options.w-col-433{width:433px}.ta-input-dropdown .popover-body .dropdown-options.w-col-434{width:434px}.ta-input-dropdown .popover-body .dropdown-options.w-col-435{width:435px}.ta-input-dropdown .popover-body .dropdown-options.w-col-436{width:436px}.ta-input-dropdown .popover-body .dropdown-options.w-col-437{width:437px}.ta-input-dropdown .popover-body .dropdown-options.w-col-438{width:438px}.ta-input-dropdown .popover-body .dropdown-options.w-col-439{width:439px}.ta-input-dropdown .popover-body .dropdown-options.w-col-440{width:440px}.ta-input-dropdown .popover-body .dropdown-options.w-col-441{width:441px}.ta-input-dropdown .popover-body .dropdown-options.w-col-442{width:442px}.ta-input-dropdown .popover-body .dropdown-options.w-col-443{width:443px}.ta-input-dropdown .popover-body .dropdown-options.w-col-444{width:444px}.ta-input-dropdown .popover-body .dropdown-options.w-col-445{width:445px}.ta-input-dropdown .popover-body .dropdown-options.w-col-446{width:446px}.ta-input-dropdown .popover-body .dropdown-options.w-col-447{width:447px}.ta-input-dropdown .popover-body .dropdown-options.w-col-448{width:448px}.ta-input-dropdown .popover-body .dropdown-options.w-col-449{width:449px}.ta-input-dropdown .popover-body .dropdown-options.w-col-450{width:450px}.ta-input-dropdown .popover-body .dropdown-options.w-col-451{width:451px}.ta-input-dropdown .popover-body .dropdown-options.w-col-452{width:452px}.ta-input-dropdown .popover-body .dropdown-options.w-col-453{width:453px}.ta-input-dropdown .popover-body .dropdown-options.w-col-454{width:454px}.ta-input-dropdown .popover-body .dropdown-options.w-col-455{width:455px}.ta-input-dropdown .popover-body .dropdown-options.w-col-456{width:456px}.ta-input-dropdown .popover-body .dropdown-options.w-col-457{width:457px}.ta-input-dropdown .popover-body .dropdown-options.w-col-458{width:458px}.ta-input-dropdown .popover-body .dropdown-options.w-col-459{width:459px}.ta-input-dropdown .popover-body .dropdown-options.w-col-460{width:460px}.ta-input-dropdown .popover-body .dropdown-options.w-col-461{width:461px}.ta-input-dropdown .popover-body .dropdown-options.w-col-462{width:462px}.ta-input-dropdown .popover-body .dropdown-options.w-col-463{width:463px}.ta-input-dropdown .popover-body .dropdown-options.w-col-464{width:464px}.ta-input-dropdown .popover-body .dropdown-options.w-col-465{width:465px}.ta-input-dropdown .popover-body .dropdown-options.w-col-466{width:466px}.ta-input-dropdown .popover-body .dropdown-options.w-col-467{width:467px}.ta-input-dropdown .popover-body .dropdown-options.w-col-468{width:468px}.ta-input-dropdown .popover-body .dropdown-options.w-col-469{width:469px}.ta-input-dropdown .popover-body .dropdown-options.w-col-470{width:470px}.ta-input-dropdown .popover-body .dropdown-options.w-col-471{width:471px}.ta-input-dropdown .popover-body .dropdown-options.w-col-472{width:472px}.ta-input-dropdown .popover-body .dropdown-options.w-col-473{width:473px}.ta-input-dropdown .popover-body .dropdown-options.w-col-474{width:474px}.ta-input-dropdown .popover-body .dropdown-options.w-col-475{width:475px}.ta-input-dropdown .popover-body .dropdown-options.w-col-476{width:476px}.ta-input-dropdown .popover-body .dropdown-options.w-col-477{width:477px}.ta-input-dropdown .popover-body .dropdown-options.w-col-478{width:478px}.ta-input-dropdown .popover-body .dropdown-options.w-col-479{width:479px}.ta-input-dropdown .popover-body .dropdown-options.w-col-480{width:480px}.ta-input-dropdown .popover-body .dropdown-options.w-col-481{width:481px}.ta-input-dropdown .popover-body .dropdown-options.w-col-482{width:482px}.ta-input-dropdown .popover-body .dropdown-options.w-col-483{width:483px}.ta-input-dropdown .popover-body .dropdown-options.w-col-484{width:484px}.ta-input-dropdown .popover-body .dropdown-options.w-col-485{width:485px}.ta-input-dropdown .popover-body .dropdown-options.w-col-486{width:486px}.ta-input-dropdown .popover-body .dropdown-options.w-col-487{width:487px}.ta-input-dropdown .popover-body .dropdown-options.w-col-488{width:488px}.ta-input-dropdown .popover-body .dropdown-options.w-col-489{width:489px}.ta-input-dropdown .popover-body .dropdown-options.w-col-490{width:490px}.ta-input-dropdown .popover-body .dropdown-options.w-col-491{width:491px}.ta-input-dropdown .popover-body .dropdown-options.w-col-492{width:492px}.ta-input-dropdown .popover-body .dropdown-options.w-col-493{width:493px}.ta-input-dropdown .popover-body .dropdown-options.w-col-494{width:494px}.ta-input-dropdown .popover-body .dropdown-options.w-col-495{width:495px}.ta-input-dropdown .popover-body .dropdown-options.w-col-496{width:496px}.ta-input-dropdown .popover-body .dropdown-options.w-col-497{width:497px}.ta-input-dropdown .popover-body .dropdown-options.w-col-498{width:498px}.ta-input-dropdown .popover-body .dropdown-options.w-col-499{width:499px}.ta-input-dropdown .popover-body .dropdown-options.w-col-500{width:500px}.ta-input-dropdown .popover-body .dropdown-options.w-col-501{width:501px}.ta-input-dropdown .popover-body .dropdown-options.w-col-502{width:502px}.ta-input-dropdown .popover-body .dropdown-options.w-col-503{width:503px}.ta-input-dropdown .popover-body .dropdown-options.w-col-504{width:504px}.ta-input-dropdown .popover-body .dropdown-options.w-col-505{width:505px}.ta-input-dropdown .popover-body .dropdown-options.w-col-506{width:506px}.ta-input-dropdown .popover-body .dropdown-options.w-col-507{width:507px}.ta-input-dropdown .popover-body .dropdown-options.w-col-508{width:508px}.ta-input-dropdown .popover-body .dropdown-options.w-col-509{width:509px}.ta-input-dropdown .popover-body .dropdown-options.w-col-510{width:510px}.ta-input-dropdown .popover-body .dropdown-options.w-col-511{width:511px}.ta-input-dropdown .popover-body .dropdown-options.w-col-512{width:512px}.ta-input-dropdown .popover-body .dropdown-options.w-col-513{width:513px}.ta-input-dropdown .popover-body .dropdown-options.w-col-514{width:514px}.ta-input-dropdown .popover-body .dropdown-options.w-col-515{width:515px}.ta-input-dropdown .popover-body .dropdown-options.w-col-516{width:516px}.ta-input-dropdown .popover-body .dropdown-options.w-col-517{width:517px}.ta-input-dropdown .popover-body .dropdown-options.w-col-518{width:518px}.ta-input-dropdown .popover-body .dropdown-options.w-col-519{width:519px}.ta-input-dropdown .popover-body .dropdown-options.w-col-520{width:520px}.ta-input-dropdown .popover-body .dropdown-options.w-col-521{width:521px}.ta-input-dropdown .popover-body .dropdown-options.w-col-522{width:522px}.ta-input-dropdown .popover-body .dropdown-options.w-col-523{width:523px}.ta-input-dropdown .popover-body .dropdown-options.w-col-524{width:524px}.ta-input-dropdown .popover-body .dropdown-options.w-col-525{width:525px}.ta-input-dropdown .popover-body .dropdown-options.w-col-526{width:526px}.ta-input-dropdown .popover-body .dropdown-options.w-col-527{width:527px}.ta-input-dropdown .popover-body .dropdown-options.w-col-528{width:528px}.ta-input-dropdown .popover-body .dropdown-options.w-col-529{width:529px}.ta-input-dropdown .popover-body .dropdown-options.w-col-530{width:530px}.ta-input-dropdown .popover-body .dropdown-options.w-col-531{width:531px}.ta-input-dropdown .popover-body .dropdown-options.w-col-532{width:532px}.ta-input-dropdown .popover-body .dropdown-options.w-col-533{width:533px}.ta-input-dropdown .popover-body .dropdown-options.w-col-534{width:534px}.ta-input-dropdown .popover-body .dropdown-options.w-col-535{width:535px}.ta-input-dropdown .popover-body .dropdown-options.w-col-536{width:536px}.ta-input-dropdown .popover-body .dropdown-options.w-col-537{width:537px}.ta-input-dropdown .popover-body .dropdown-options.w-col-538{width:538px}.ta-input-dropdown .popover-body .dropdown-options.w-col-539{width:539px}.ta-input-dropdown .popover-body .dropdown-options.w-col-540{width:540px}.ta-input-dropdown .popover-body .dropdown-options.w-col-541{width:541px}.ta-input-dropdown .popover-body .dropdown-options.w-col-542{width:542px}.ta-input-dropdown .popover-body .dropdown-options.w-col-543{width:543px}.ta-input-dropdown .popover-body .dropdown-options.w-col-544{width:544px}.ta-input-dropdown .popover-body .dropdown-options.w-col-545{width:545px}.ta-input-dropdown .popover-body .dropdown-options.w-col-546{width:546px}.ta-input-dropdown .popover-body .dropdown-options.w-col-547{width:547px}.ta-input-dropdown .popover-body .dropdown-options.w-col-548{width:548px}.ta-input-dropdown .popover-body .dropdown-options.w-col-549{width:549px}.ta-input-dropdown .popover-body .dropdown-options.w-col-550{width:550px}.ta-input-dropdown .popover-body .dropdown-options.w-col-551{width:551px}.ta-input-dropdown .popover-body .dropdown-options.w-col-552{width:552px}.ta-input-dropdown .popover-body .dropdown-options.w-col-553{width:553px}.ta-input-dropdown .popover-body .dropdown-options.w-col-554{width:554px}.ta-input-dropdown .popover-body .dropdown-options.w-col-555{width:555px}.ta-input-dropdown .popover-body .dropdown-options.w-col-556{width:556px}.ta-input-dropdown .popover-body .dropdown-options.w-col-557{width:557px}.ta-input-dropdown .popover-body .dropdown-options.w-col-558{width:558px}.ta-input-dropdown .popover-body .dropdown-options.w-col-559{width:559px}.ta-input-dropdown .popover-body .dropdown-options.w-col-560{width:560px}.ta-input-dropdown .popover-body .dropdown-options.w-col-561{width:561px}.ta-input-dropdown .popover-body .dropdown-options.w-col-562{width:562px}.ta-input-dropdown .popover-body .dropdown-options.w-col-563{width:563px}.ta-input-dropdown .popover-body .dropdown-options.w-col-564{width:564px}.ta-input-dropdown .popover-body .dropdown-options.w-col-565{width:565px}.ta-input-dropdown .popover-body .dropdown-options.w-col-566{width:566px}.ta-input-dropdown .popover-body .dropdown-options.w-col-567{width:567px}.ta-input-dropdown .popover-body .dropdown-options.w-col-568{width:568px}.ta-input-dropdown .popover-body .dropdown-options.w-col-569{width:569px}.ta-input-dropdown .popover-body .dropdown-options.w-col-570{width:570px}.ta-input-dropdown .popover-body .dropdown-options.w-col-571{width:571px}.ta-input-dropdown .popover-body .dropdown-options.w-col-572{width:572px}.ta-input-dropdown .popover-body .dropdown-options.w-col-573{width:573px}.ta-input-dropdown .popover-body .dropdown-options.w-col-574{width:574px}.ta-input-dropdown .popover-body .dropdown-options.w-col-575{width:575px}.ta-input-dropdown .popover-body .dropdown-options.w-col-576{width:576px}.ta-input-dropdown .popover-body .dropdown-options.w-col-577{width:577px}.ta-input-dropdown .popover-body .dropdown-options.w-col-578{width:578px}.ta-input-dropdown .popover-body .dropdown-options.w-col-579{width:579px}.ta-input-dropdown .popover-body .dropdown-options.w-col-580{width:580px}.ta-input-dropdown .popover-body .dropdown-options.w-col-581{width:581px}.ta-input-dropdown .popover-body .dropdown-options.w-col-582{width:582px}.ta-input-dropdown .popover-body .dropdown-options.w-col-583{width:583px}.ta-input-dropdown .popover-body .dropdown-options.w-col-584{width:584px}.ta-input-dropdown .popover-body .dropdown-options.w-col-585{width:585px}.ta-input-dropdown .popover-body .dropdown-options.w-col-586{width:586px}.ta-input-dropdown .popover-body .dropdown-options.w-col-587{width:587px}.ta-input-dropdown .popover-body .dropdown-options.w-col-588{width:588px}.ta-input-dropdown .popover-body .dropdown-options.w-col-589{width:589px}.ta-input-dropdown .popover-body .dropdown-options.w-col-590{width:590px}.ta-input-dropdown .popover-body .dropdown-options.w-col-591{width:591px}.ta-input-dropdown .popover-body .dropdown-options.w-col-592{width:592px}.ta-input-dropdown .popover-body .dropdown-options.w-col-593{width:593px}.ta-input-dropdown .popover-body .dropdown-options.w-col-594{width:594px}.ta-input-dropdown .popover-body .dropdown-options.w-col-595{width:595px}.ta-input-dropdown .popover-body .dropdown-options.w-col-596{width:596px}.ta-input-dropdown .popover-body .dropdown-options.w-col-597{width:597px}.ta-input-dropdown .popover-body .dropdown-options.w-col-598{width:598px}.ta-input-dropdown .popover-body .dropdown-options.w-col-599{width:599px}.ta-input-dropdown .popover-body .dropdown-options.w-col-600{width:600px}.ta-input-dropdown .popover-body .dropdown-options.w-col-601{width:601px}.ta-input-dropdown .popover-body .dropdown-options.w-col-602{width:602px}.ta-input-dropdown .popover-body .dropdown-options.w-col-603{width:603px}.ta-input-dropdown .popover-body .dropdown-options.w-col-604{width:604px}.ta-input-dropdown .popover-body .dropdown-options.w-col-605{width:605px}.ta-input-dropdown .popover-body .dropdown-options.w-col-606{width:606px}.ta-input-dropdown .popover-body .dropdown-options.w-col-607{width:607px}.ta-input-dropdown .popover-body .dropdown-options.w-col-608{width:608px}.ta-input-dropdown .popover-body .dropdown-options.w-col-609{width:609px}.ta-input-dropdown .popover-body .dropdown-options.w-col-610{width:610px}.ta-input-dropdown .popover-body .dropdown-options.w-col-611{width:611px}.ta-input-dropdown .popover-body .dropdown-options.w-col-612{width:612px}.ta-input-dropdown .popover-body .dropdown-options.w-col-613{width:613px}.ta-input-dropdown .popover-body .dropdown-options.w-col-614{width:614px}.ta-input-dropdown .popover-body .dropdown-options.w-col-615{width:615px}.ta-input-dropdown .popover-body .dropdown-options.w-col-616{width:616px}.ta-input-dropdown .popover-body .dropdown-options.w-col-617{width:617px}.ta-input-dropdown .popover-body .dropdown-options.w-col-618{width:618px}.ta-input-dropdown .popover-body .dropdown-options.w-col-619{width:619px}.ta-input-dropdown .popover-body .dropdown-options.w-col-620{width:620px}.ta-input-dropdown .popover-body .dropdown-options.w-col-621{width:621px}.ta-input-dropdown .popover-body .dropdown-options.w-col-622{width:622px}.ta-input-dropdown .popover-body .dropdown-options.w-col-623{width:623px}.ta-input-dropdown .popover-body .dropdown-options.w-col-624{width:624px}.ta-input-dropdown .popover-body .dropdown-options.w-col-625{width:625px}.ta-input-dropdown .popover-body .dropdown-options.w-col-626{width:626px}.ta-input-dropdown .popover-body .dropdown-options.w-col-627{width:627px}.ta-input-dropdown .popover-body .dropdown-options.w-col-628{width:628px}.ta-input-dropdown .popover-body .dropdown-options.w-col-629{width:629px}.ta-input-dropdown .popover-body .dropdown-options.w-col-630{width:630px}.ta-input-dropdown .popover-body .dropdown-options.w-col-631{width:631px}.ta-input-dropdown .popover-body .dropdown-options.w-col-632{width:632px}.ta-input-dropdown .popover-body .dropdown-options.w-col-633{width:633px}.ta-input-dropdown .popover-body .dropdown-options.w-col-634{width:634px}.ta-input-dropdown .popover-body .dropdown-options.w-col-635{width:635px}.ta-input-dropdown .popover-body .dropdown-options.w-col-636{width:636px}.ta-input-dropdown .popover-body .dropdown-options.w-col-637{width:637px}.ta-input-dropdown .popover-body .dropdown-options.w-col-638{width:638px}.ta-input-dropdown .popover-body .dropdown-options.w-col-639{width:639px}.ta-input-dropdown .popover-body .dropdown-options.w-col-640{width:640px}.ta-input-dropdown .popover-body .dropdown-options.w-col-641{width:641px}.ta-input-dropdown .popover-body .dropdown-options.w-col-642{width:642px}.ta-input-dropdown .popover-body .dropdown-options.w-col-643{width:643px}.ta-input-dropdown .popover-body .dropdown-options.w-col-644{width:644px}.ta-input-dropdown .popover-body .dropdown-options.w-col-645{width:645px}.ta-input-dropdown .popover-body .dropdown-options.w-col-646{width:646px}.ta-input-dropdown .popover-body .dropdown-options.w-col-647{width:647px}.ta-input-dropdown .popover-body .dropdown-options.w-col-648{width:648px}.ta-input-dropdown .popover-body .dropdown-options.w-col-649{width:649px}.ta-input-dropdown .popover-body .dropdown-options.w-col-650{width:650px}.ta-input-dropdown .popover-body .dropdown-options.w-col-651{width:651px}.ta-input-dropdown .popover-body .dropdown-options.w-col-652{width:652px}.ta-input-dropdown .popover-body .dropdown-options.w-col-653{width:653px}.ta-input-dropdown .popover-body .dropdown-options.w-col-654{width:654px}.ta-input-dropdown .popover-body .dropdown-options.w-col-655{width:655px}.ta-input-dropdown .popover-body .dropdown-options.w-col-656{width:656px}.ta-input-dropdown .popover-body .dropdown-options.w-col-657{width:657px}.ta-input-dropdown .popover-body .dropdown-options.w-col-658{width:658px}.ta-input-dropdown .popover-body .dropdown-options.w-col-659{width:659px}.ta-input-dropdown .popover-body .dropdown-options.w-col-660{width:660px}.ta-input-dropdown .popover-body .dropdown-options.w-col-661{width:661px}.ta-input-dropdown .popover-body .dropdown-options.w-col-662{width:662px}.ta-input-dropdown .popover-body .dropdown-options.w-col-663{width:663px}.ta-input-dropdown .popover-body .dropdown-options.w-col-664{width:664px}.ta-input-dropdown .popover-body .dropdown-options.w-col-665{width:665px}.ta-input-dropdown .popover-body .dropdown-options.w-col-666{width:666px}.ta-input-dropdown .popover-body .dropdown-options.w-col-667{width:667px}.ta-input-dropdown .popover-body .dropdown-options.w-col-668{width:668px}.ta-input-dropdown .popover-body .dropdown-options.w-col-669{width:669px}.ta-input-dropdown .popover-body .dropdown-options.w-col-670{width:670px}.ta-input-dropdown .popover-body .dropdown-options.w-col-671{width:671px}.ta-input-dropdown .popover-body .dropdown-options.w-col-672{width:672px}.ta-input-dropdown .popover-body .dropdown-options.w-col-673{width:673px}.ta-input-dropdown .popover-body .dropdown-options.w-col-674{width:674px}.ta-input-dropdown .popover-body .dropdown-options.w-col-675{width:675px}.ta-input-dropdown .popover-body .dropdown-options.w-col-676{width:676px}.ta-input-dropdown .popover-body .dropdown-options.w-col-677{width:677px}.ta-input-dropdown .popover-body .dropdown-options.w-col-678{width:678px}.ta-input-dropdown .popover-body .dropdown-options.w-col-679{width:679px}.ta-input-dropdown .popover-body .dropdown-options.w-col-680{width:680px}.ta-input-dropdown .popover-body .dropdown-options.w-col-681{width:681px}.ta-input-dropdown .popover-body .dropdown-options.w-col-682{width:682px}.ta-input-dropdown .popover-body .dropdown-options.w-col-683{width:683px}.ta-input-dropdown .popover-body .dropdown-options.w-col-684{width:684px}.ta-input-dropdown .popover-body .dropdown-options.w-col-685{width:685px}.ta-input-dropdown .popover-body .dropdown-options.w-col-686{width:686px}.ta-input-dropdown .popover-body .dropdown-options.w-col-687{width:687px}.ta-input-dropdown .popover-body .dropdown-options.w-col-688{width:688px}.ta-input-dropdown .popover-body .dropdown-options.w-col-689{width:689px}.ta-input-dropdown .popover-body .dropdown-options.w-col-690{width:690px}.ta-input-dropdown .popover-body .dropdown-options.w-col-691{width:691px}.ta-input-dropdown .popover-body .dropdown-options.w-col-692{width:692px}.ta-input-dropdown .popover-body .dropdown-options.w-col-693{width:693px}.ta-input-dropdown .popover-body .dropdown-options.w-col-694{width:694px}.ta-input-dropdown .popover-body .dropdown-options.w-col-695{width:695px}.ta-input-dropdown .popover-body .dropdown-options.w-col-696{width:696px}.ta-input-dropdown .popover-body .dropdown-options.w-col-697{width:697px}.ta-input-dropdown .popover-body .dropdown-options.w-col-698{width:698px}.ta-input-dropdown .popover-body .dropdown-options.w-col-699{width:699px}.ta-input-dropdown .popover-body .dropdown-options.w-col-700{width:700px}.ta-input-dropdown .popover-body .dropdown-options.w-col-701{width:701px}.ta-input-dropdown .popover-body .dropdown-options.w-col-702{width:702px}.ta-input-dropdown .popover-body .dropdown-options.w-col-703{width:703px}.ta-input-dropdown .popover-body .dropdown-options.w-col-704{width:704px}.ta-input-dropdown .popover-body .dropdown-options.w-col-705{width:705px}.ta-input-dropdown .popover-body .dropdown-options.w-col-706{width:706px}.ta-input-dropdown .popover-body .dropdown-options.w-col-707{width:707px}.ta-input-dropdown .popover-body .dropdown-options.w-col-708{width:708px}.ta-input-dropdown .popover-body .dropdown-options.w-col-709{width:709px}.ta-input-dropdown .popover-body .dropdown-options.w-col-710{width:710px}.ta-input-dropdown .popover-body .dropdown-options.w-col-711{width:711px}.ta-input-dropdown .popover-body .dropdown-options.w-col-712{width:712px}.ta-input-dropdown .popover-body .dropdown-options.w-col-713{width:713px}.ta-input-dropdown .popover-body .dropdown-options.w-col-714{width:714px}.ta-input-dropdown .popover-body .dropdown-options.w-col-715{width:715px}.ta-input-dropdown .popover-body .dropdown-options.w-col-716{width:716px}.ta-input-dropdown .popover-body .dropdown-options.w-col-717{width:717px}.ta-input-dropdown .popover-body .dropdown-options.w-col-718{width:718px}.ta-input-dropdown .popover-body .dropdown-options.w-col-719{width:719px}.ta-input-dropdown .popover-body .dropdown-options.w-col-720{width:720px}.ta-input-dropdown .popover-body .dropdown-options.w-col-721{width:721px}.ta-input-dropdown .popover-body .dropdown-options.w-col-722{width:722px}.ta-input-dropdown .popover-body .dropdown-options.w-col-723{width:723px}.ta-input-dropdown .popover-body .dropdown-options.w-col-724{width:724px}.ta-input-dropdown .popover-body .dropdown-options.w-col-725{width:725px}.ta-input-dropdown .popover-body .dropdown-options.w-col-726{width:726px}.ta-input-dropdown .popover-body .dropdown-options.w-col-727{width:727px}.ta-input-dropdown .popover-body .dropdown-options.w-col-728{width:728px}.ta-input-dropdown .popover-body .dropdown-options.w-col-729{width:729px}.ta-input-dropdown .popover-body .dropdown-options.w-col-730{width:730px}.ta-input-dropdown .popover-body .dropdown-options.w-col-731{width:731px}.ta-input-dropdown .popover-body .dropdown-options.w-col-732{width:732px}.ta-input-dropdown .popover-body .dropdown-options.w-col-733{width:733px}.ta-input-dropdown .popover-body .dropdown-options.w-col-734{width:734px}.ta-input-dropdown .popover-body .dropdown-options.w-col-735{width:735px}.ta-input-dropdown .popover-body .dropdown-options.w-col-736{width:736px}.ta-input-dropdown .popover-body .dropdown-options.w-col-737{width:737px}.ta-input-dropdown .popover-body .dropdown-options.w-col-738{width:738px}.ta-input-dropdown .popover-body .dropdown-options.w-col-739{width:739px}.ta-input-dropdown .popover-body .dropdown-options.w-col-740{width:740px}.ta-input-dropdown .popover-body .dropdown-options.w-col-741{width:741px}.ta-input-dropdown .popover-body .dropdown-options.w-col-742{width:742px}.ta-input-dropdown .popover-body .dropdown-options.w-col-743{width:743px}.ta-input-dropdown .popover-body .dropdown-options.w-col-744{width:744px}.ta-input-dropdown .popover-body .dropdown-options.w-col-745{width:745px}.ta-input-dropdown .popover-body .dropdown-options.w-col-746{width:746px}.ta-input-dropdown .popover-body .dropdown-options.w-col-747{width:747px}.ta-input-dropdown .popover-body .dropdown-options.w-col-748{width:748px}.ta-input-dropdown .popover-body .dropdown-options.w-col-749{width:749px}.ta-input-dropdown .popover-body .dropdown-options.w-col-750{width:750px}.ta-input-dropdown .popover-body .dropdown-options.w-col-751{width:751px}.ta-input-dropdown .popover-body .dropdown-options.w-col-752{width:752px}.ta-input-dropdown .popover-body .dropdown-options.w-col-753{width:753px}.ta-input-dropdown .popover-body .dropdown-options.w-col-754{width:754px}.ta-input-dropdown .popover-body .dropdown-options.w-col-755{width:755px}.ta-input-dropdown .popover-body .dropdown-options.w-col-756{width:756px}.ta-input-dropdown .popover-body .dropdown-options.w-col-757{width:757px}.ta-input-dropdown .popover-body .dropdown-options.w-col-758{width:758px}.ta-input-dropdown .popover-body .dropdown-options.w-col-759{width:759px}.ta-input-dropdown .popover-body .dropdown-options.w-col-760{width:760px}.ta-input-dropdown .popover-body .dropdown-options.w-col-761{width:761px}.ta-input-dropdown .popover-body .dropdown-options.w-col-762{width:762px}.ta-input-dropdown .popover-body .dropdown-options.w-col-763{width:763px}.ta-input-dropdown .popover-body .dropdown-options.w-col-764{width:764px}.ta-input-dropdown .popover-body .dropdown-options.w-col-765{width:765px}.ta-input-dropdown .popover-body .dropdown-options.w-col-766{width:766px}.ta-input-dropdown .popover-body .dropdown-options.w-col-767{width:767px}.ta-input-dropdown .popover-body .dropdown-options.w-col-768{width:768px}.ta-input-dropdown .popover-body .dropdown-options.w-col-769{width:769px}.ta-input-dropdown .popover-body .dropdown-options.w-col-770{width:770px}.ta-input-dropdown .popover-body .dropdown-options.w-col-771{width:771px}.ta-input-dropdown .popover-body .dropdown-options.w-col-772{width:772px}.ta-input-dropdown .popover-body .dropdown-options.w-col-773{width:773px}.ta-input-dropdown .popover-body .dropdown-options.w-col-774{width:774px}.ta-input-dropdown .popover-body .dropdown-options.w-col-775{width:775px}.ta-input-dropdown .popover-body .dropdown-options.w-col-776{width:776px}.ta-input-dropdown .popover-body .dropdown-options.w-col-777{width:777px}.ta-input-dropdown .popover-body .dropdown-options.w-col-778{width:778px}.ta-input-dropdown .popover-body .dropdown-options.w-col-779{width:779px}.ta-input-dropdown .popover-body .dropdown-options.w-col-780{width:780px}.ta-input-dropdown .popover-body .dropdown-options.w-col-781{width:781px}.ta-input-dropdown .popover-body .dropdown-options.w-col-782{width:782px}.ta-input-dropdown .popover-body .dropdown-options.w-col-783{width:783px}.ta-input-dropdown .popover-body .dropdown-options.w-col-784{width:784px}.ta-input-dropdown .popover-body .dropdown-options.w-col-785{width:785px}.ta-input-dropdown .popover-body .dropdown-options.w-col-786{width:786px}.ta-input-dropdown .popover-body .dropdown-options.w-col-787{width:787px}.ta-input-dropdown .popover-body .dropdown-options.w-col-788{width:788px}.ta-input-dropdown .popover-body .dropdown-options.w-col-789{width:789px}.ta-input-dropdown .popover-body .dropdown-options.w-col-790{width:790px}.ta-input-dropdown .popover-body .dropdown-options.w-col-791{width:791px}.ta-input-dropdown .popover-body .dropdown-options.w-col-792{width:792px}.ta-input-dropdown .popover-body .dropdown-options.w-col-793{width:793px}.ta-input-dropdown .popover-body .dropdown-options.w-col-794{width:794px}.ta-input-dropdown .popover-body .dropdown-options.w-col-795{width:795px}.ta-input-dropdown .popover-body .dropdown-options.w-col-796{width:796px}.ta-input-dropdown .popover-body .dropdown-options.w-col-797{width:797px}.ta-input-dropdown .popover-body .dropdown-options.w-col-798{width:798px}.ta-input-dropdown .popover-body .dropdown-options.w-col-799{width:799px}.ta-input-dropdown .popover-body .dropdown-options.w-col-800{width:800px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header{font-size:11px;color:#ccc;font-weight:700;text-transform:uppercase;line-height:14px;padding:8px 6px 0;margin-bottom:8px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#ccc;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:11px;width:14px;height:10px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header{margin:0 0 4px;padding:8px 0 0 4px;color:#ccc;font-size:11px;text-transform:capitalize}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new{font-size:11px;line-height:14px;font-weight:700;color:#6f9ee0;padding:4px;margin:0;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options{display:grid;grid-template-columns:141px 135px;grid-column-gap:10px;column-gap:10px;align-items:center;padding:3px 4px;cursor:pointer}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#fff;display:block;width:100%}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:-26px;width:14px;height:10px}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text{color:#919191;font-size:11px;font-weight:400;position:relative;text-align:right}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400;color:#6f9ee0}.ta-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{font-weight:500;color:#6f9ee0!important}.ta-input-dropdown .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:0!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template{top:-6px}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ta-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ta-dropdown-popover{z-index:999999}.ta-dropdown-popover .arrow{display:none!important}.ta-dropdown-popover .popover-body{z-index:99999999}.ta-dropdown-popover .popover-body .options{position:relative;top:3px;z-index:1000;max-height:198px;width:100%;background-color:#2f2f2f;border-radius:2px;padding:2px;overflow:hidden}.ta-dropdown-popover .popover-body .options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar{width:3px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-dropdown-popover .popover-body .options .option{position:relative;padding:3px;height:26px;font-size:14px;line-height:18px;font-weight:400;border-radius:2px;white-space:nowrap;text-overflow:ellipsis;color:#fff;display:flex;gap:4px}.ta-dropdown-popover .popover-body .options .option::-moz-selection{color:#fff;background-color:#fff3}.ta-dropdown-popover .popover-body .options .option:nth-last-child(1){margin-bottom:0}.ta-dropdown-popover .popover-body .options .option:hover{background-color:#1d1d1d;border-radius:2px;cursor:pointer}.ta-dropdown-popover .popover-body .options .option.add-option{color:#6f9ee0;font-weight:600}.ta-dropdown-popover .popover-body .options .option.add-option:after{content:\"\";height:2px;width:100%;background-color:#aaa3;border-radius:1px;position:absolute;bottom:0;left:0}.selected-item-container{height:52px;padding:6px;background:#e9effd;position:relative;border-radius:2px;transition:background .3s ease-in-out}.selected-item-container:hover{background:#bed0f9}.selected-item-container:hover .selected-item-additional .selected-item-info svg-icon svg path{fill:#3b73ed}.selected-item-container:hover .clear-selected-item{display:flex;align-items:center}.selected-item-container .selected-item-label{position:absolute;top:-16px;font-size:11px;font-weight:600;color:#424242;-webkit-user-select:none;user-select:none}.selected-item-container .selected-item-label span{color:#df3c3c}.selected-item-container .selected-item-name{font-size:14px;line-height:18px;color:#424242}.selected-item-container .selected-item-name::selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name .selected-item-star{position:relative;bottom:2px}.selected-item-container .selected-item-name .selected-item-star svg{margin-left:6px}.selected-item-container .selected-item-name .selected-item-star svg path{fill:#6692f1}.selected-item-container .selected-item-additional{gap:22px}.selected-item-container .selected-item-additional .selected-item-info svg-icon{width:14px}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg{width:100%;height:100%}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg path{fill:#6692f1;transition:fill .3s ease-in-out}.selected-item-container .selected-item-additional .selected-item-info .hide-svg-on-copy{display:none}.selected-item-container .clear-selected-item{position:absolute;right:4px;top:0;display:none;gap:6px}.selected-item-container .clear-selected-item .clear-x{cursor:pointer;transition:transform .3s ease-in-out}.selected-item-container .clear-selected-item .clear-x:hover{transform:scale(1.2)}.selected-item-container .clear-selected-item .clear-x svg path{fill:#bed0f9}.selected-item-container .clear-selected-item .clear-x svg rect{fill:#6692f1}.selected-item-container .clear-selected-item .clear-x:hover svg rect{fill:#0b49d1}.selected-item-container.non-editable{background-color:#f7f7f7}.selected-item-container.non-editable .selected-item-label,.selected-item-container.non-editable .selected-item-name{color:#919191}.selected-item-container.non-editable .selected-item-additional .selected-item-info svg-icon svg path{fill:#ccc}.selected-item-container.non-editable .selected-item-additional .selected-item-info p{color:#919191}.dropdown-trailer-hover:hover .ic_truck_semi-truck svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_truck_semi-wSleeper svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_truck_box-truck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_truck_cargo-van svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_truck_tow-truck svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_truck_car-hauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_truck_spotter svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_reefer svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_trailer_dryvan svg path{fill:#8785e8}.dropdown-trailer-hover:hover .ic_trailer_side-kit svg path{fill:#ff906d}.dropdown-trailer-hover:hover .ic_trailer_conestoga svg path{fill:#daad4f}.dropdown-trailer-hover:hover .ic_trailer_dumper svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_trailer_container svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_trailer_tanker svg path{fill:#77bf56}.dropdown-trailer-hover:hover .ic_trailer_carhauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_trailer_flatbed svg path{fill:#ed9292}.dropdown-trailer-hover:hover .ic_trailer_low-boy svg path{fill:#df3c3c}.dropdown-trailer-hover:hover .ic_trailer_chassis svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_step-deck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_trailer_tanker_pneumatic svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_carhauler_stinger svg path{fill:#df3d85}.hide-after-arrow .dropdown-option.active:after{display:none!important}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-main-tooltip{pointer-events:none}.app-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.tooltip-arrow{display:none!important}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}p{margin-bottom:0!important}.desc::selection{color:#6c6c6c;background:#6c6c6c33}.details-container-items{display:grid;grid-template-columns:440px repeat(4,335px);column-gap:12px;row-gap:12px;padding-bottom:12px}.details-component{display:grid;grid-auto-flow:column;column-gap:12px;row-gap:12px}.details-component .truck-wrapper{background-color:#dadada;border-radius:3px;margin-bottom:8px;width:440px;height:226px}.details-component .truck-wrapper p{margin:0}.details-component .truck-wrapper .truck-card-top{display:flex;align-items:center;justify-content:space-between}.details-component .truck-wrapper .truck-card-top .truck-card-name{color:#6c6c6c;font-size:18px;font-weight:500;position:relative;top:1px}.details-component .truck-wrapper .truck-card-top .truck-card-name::selection{color:#6c6c6c;background:#b7b7b733}.details-component .truck-wrapper .details-page-row-5{margin-top:8px}.details-component .truck-wrapper .details-page-row-7{height:236px;width:100%;margin:22px 0}.details-component .truck-wrapper .show-details{font-size:12px;font-weight:700;color:#778fbb;text-decoration:none;-webkit-user-select:none;user-select:none}.details-component .truck-wrapper .show-details:hover{transition:all .3s ease-in-out;cursor:pointer;text-decoration:underline;color:#5673aa}.details-component .details-cards{border-radius:3px;overflow:hidden;width:440px;background-color:#dadada;padding:1px 8px 0}.details-component .details-cards.trailer-details-card{padding:0 8px}.assign-to{position:relative;left:-3px;display:grid;grid-template-columns:204px 204px;column-gap:12px;padding:0}.assign-to .assign-to-vehicle svg{width:55px;height:20px;display:flex;align-items:center}.assign-to .assign-to-vehicle svg:hover path{fill:#6c6c6c!important}.assign-to .assign-to-vehicle svg path{fill:#aaa}.assign-to .first .assign-to-vehicle svg{display:flex;align-items:center}.assign-to .first:hover .open-modal-icon{display:block;position:relative;bottom:4px;height:18px;width:18px}.assign-to .first:hover .open-modal-icon svg{cursor:pointer}.assign-to .first:hover .open-modal-icon svg:hover path{fill:#6c6c6c}.assign-to .second .icon-text-wrapper-cmp{position:relative;top:1px}.assign-to .second .assign-to-vehicle svg{display:flex}.assign-to .second:hover .open-modal-icon2{display:block;height:18px;width:18px;position:relative;bottom:4px}.assign-to .second:hover .open-modal-icon2 svg{cursor:pointer}.assign-to .second:hover .open-modal-icon2 svg:hover path{fill:#6c6c6c}.assign-to .assign-to-item{background-color:#f7f7f7;border-radius:2px;display:flex;align-items:center}.assign-to .assign-to-item .icon-text-wrapper-cmp{display:flex;align-items:center;padding-left:6px;margin:7px 0}.assign-to .assign-to-item .semi-tooltip{width:40px;height:20px}.assign-to .assign-to-item .semi-tooltip.typeDetails{width:auto}.assign-to .assign-to-item svg{fill:#aaa;object-fit:fill;height:20px;width:55px}.assign-to .assign-to-item .open-modal-icon,.assign-to .assign-to-item .open-modal-icon2{display:none}.assign-to .assign-to-item .assign-to-vehicle{margin-right:6px;position:relative;bottom:0}.assign-to .assign-to-item .assign-to-vehicle.backImage{margin-right:0}.assign-to .assign-to-item .assign-to-value{font-size:14px;font-weight:500;color:#424242;line-height:18px;padding:4px 6px}.assign-to .assign-to-item .assign-to-value::selection{color:#424242;background:#42424233}.assign-to .assign-to-item .assign-to-value.inactive-assignTo-value{color:#aaa;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.assign-to .assign-to-item p{margin:0!important}.card-container .card-body-cdl{display:grid;padding:0 4px}.card-container .card-body-cdl .card-item-name{font-size:11px;color:#2f2f2f;font-weight:700;height:15px;margin-bottom:2px}.card-container .card-body-cdl .card-item-name::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap;height:18px}.card-container .card-body-cdl .card-item-value::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value:hover{color:#2f2f2f}.card-container .card-body-cdl .card-row-issued{display:grid;grid-template-columns:32px 32px 32px;column-gap:49px;margin-top:12px}.card-container .card-body-cdl .card-row-endor{display:grid;grid-template-columns:repeat(auto-fit,minmax(20%,1fr));gap:6px;margin-bottom:4px}.card-container .card-body-cdl .card-row-progress{margin-top:8px}.card-container .card-body-cdl .endorsement{margin-top:12px}.perfomance{display:flex!important;flex-direction:column}.perfomance .common-template-item-name{font-size:14px!important;font-weight:600!important}.perfomance .common-template-item-value{font-size:18px!important;font-weight:600!important}.card-pdf{padding:0 5px;margin-bottom:12px}.card-pdf.extended{margin-bottom:30px}.card-pdf.disabled{height:0!important;margin:0!important;padding:0!important}.status-container{padding-top:12px;display:flex;flex-direction:column;margin-bottom:-12px!important}.status-container .status-header{display:flex;justify-content:space-between;align-items:center}.status-container .status-header .status-item{height:18px}.status-container .status-header .status-item .p-status{font-size:14px;font-weight:700;color:#2f2f2f}.status-container .status-header .status-item .p-status::selection{color:#2f2f2f;background:#91919133}.status-container .status-header .status-item .p-status .note-textarea{color:#6c6c6c!important;font-weight:500!important}.status-container .status-header .status-item .p-status .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea span::selection,.status-container .status-header .status-item .p-status .note-textarea div::selection,.status-container .status-header .status-item .p-status .note-textarea b::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#dadada\"]::selection{color:#dadada!important;background:#dadada33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\" $ta-blue-13\"]::selection{color:#6692f1!important;background:#6692f133!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#56b4ac\"]::selection{color:#56b4ac!important;background:#56b4ac33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#e66767\"]::selection{color:#e66767!important;background:#e6676733!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#fab15c\"]::selection{color:#fab15c!important;background:#fab15c33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#b370f0\"]::selection{color:#b370f0!important;background:#b370f033!important}.status-container .status-items .item-wrapper{display:grid;grid-template-columns:119px 137px 78px;grid-column-gap:45px;align-content:center;justify-content:center}.status-container .status-items .item-wrapper .svg-text{display:flex;align-items:center}.status-container .status-items .item-wrapper .svg-text .employment{margin-left:6px;position:relative;bottom:-2px}.status-container .status-items .item-wrapper .duration{text-align:right}.status-container .status-items .item-wrapper p{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap}.status-container .status-items .item-wrapper p::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p span::selection{color:#6c6c6c;background:#6c6c6c33}.charts-template{display:grid;grid-template-columns:215px 1fr;grid-row-gap:12px;row-gap:12px;margin-bottom:12px}.charts-template .charts-template-item{display:flex;flex-direction:column}.charts-template .charts-template-item .icon-name-item{display:flex;align-items:baseline;height:18px}.charts-template .charts-template-item .icon-name-item .charts-template-item-name{margin-right:4px}.charts-template .charts-template-item .charts-template-item-name{font-size:11px;color:#424242;font-weight:700;line-height:14px}.charts-template .charts-template-item .charts-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value{font-size:18px;font-weight:500;color:#424242;width:220px}.charts-template .charts-template-item .charts-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.second-progress{margin-bottom:16px}.truck-details-wrapper{padding:0 12px}.truck-details-wrapper .truck svg{width:132px;height:48px}.truck-details-wrapper .details-header-avatar{display:flex;align-items:center;height:48px;margin-top:14px}.truck-details-wrapper .details-header-avatar .model-name{flex-direction:column;margin-left:12px;margin-top:12px}.truck-details-wrapper .details-header-avatar .model-name p{font-size:18px;font-weight:500;color:#2f2f2f}.truck-details-wrapper .details-header-avatar .model-name p::selection{color:#6c6c6c;background:#6c6c6c33}.truck-details-wrapper .details-header-avatar .model-name .svg-wrapper{height:14px;display:flex;align-items:flex-end;margin-bottom:2px}.truck-details-wrapper .details-header-avatar .model-name svg path{fill:#424242;object-fit:fill}.truck-details-wrapper .details-header-avatar .model-name svg rect{fill:#aaa}.truck-details-wrapper .details-header-data{margin-top:14px}.truck-details-wrapper .details-header-data .details-header-data-item{display:flex;height:18px;align-items:center}.truck-details-wrapper .details-header-data .details-header-data-item p{font-size:18px;color:#2f2f2f;font-weight:400}.truck-details-wrapper .details-header-data .details-header-data-item .header-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .details-header-data .second{margin-top:14px;margin-bottom:14px}.truck-details-wrapper .details-header-data .second p{font-size:14px!important;color:#2f2f2f;font-weight:400;position:relative;bottom:-1px}.truck-details-wrapper .details-header-data .second .date{margin-left:8px!important;position:relative}.truck-details-wrapper .color-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .vin-text{margin-left:6px!important;margin-right:37px;position:relative;bottom:-1px!important}.common-template{display:grid;grid-template-columns:202px 1fr;row-gap:12px}.common-template .common-item-wrapper{display:flex;align-items:center;height:40px}.common-template .common-template-item{display:flex;flex-direction:column}.common-template .common-template-item::selection{color:#6c6c6c;background:#6c6c6c33}.common-template .common-template-item .icon-name-item{display:flex;align-items:center;height:18px}.common-template .common-template-item .icon-name-item .common-template-item-name{margin-left:6px}.common-template .common-template-item .common-template-item-name{font-size:11px;font-weight:600;color:#424242}.common-template .common-template-item .common-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value{font-size:14px;font-weight:500;color:#424242;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.common-template .common-template-item .common-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.divider{margin:0;height:2px;width:100%;border-radius:1px;background-color:#f3f3f3}.card_files_holder.active{min-height:448px}.note-cards .note-body{padding-left:0!important;padding-right:2px!important}.note-cards .note-body .note-textarea{color:#6c6c6c!important;font-weight:400!important;padding-bottom:12px!important}.note-cards .note-body .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.vin-text::selection{color:#6c6c6c;background:#6c6c6c33}.no-data-driver-details{font-size:14px;font-weight:400;color:#919191}.no-data-driver-details::selection{color:#919191;background:#b7b7b733}.owner-items{display:flex;align-items:center;height:18px}.owner-items .card-icon{display:none;cursor:pointer;margin-left:6px}.owner-items .information-value{font-size:14px;font-weight:400;color:#6c6c6c;margin-left:6px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.owner-items .information-value::selection{color:#6c6c6c;background:#6c6c6c33}.owner-items:hover .card-icon{display:flex}.copied .vin-text,.copied .information-value{animation-duration:1.5s;animation-name:change}.copied .card-icon svg path{animation-duration:1.5s;animation-name:changeSVG}.copied .card-icon svg path:hover{animation-duration:1.5s;animation-name:changeSVG}.hide-show{font-size:14px;color:#6d82c7;font-weight:600;margin-left:6px;cursor:pointer}.hide-show::selection{color:#6d82c7;background:#536bc233}.hide-show:hover{color:#536bc2}.bind-height{max-height:-moz-fit-content!important;max-height:fit-content!important}.card-width{width:335px}.icons-details{margin-right:6px}.date-details-svg{margin-left:29px}.note-details-holder{padding-right:6px;padding-left:3px}.note-details-holder .note-container .note-header.active .note-label{color:#6c6c6c!important}.note-details-holder .note-container .note-header .note_upper_hold svg path{fill:#919191}.note-details-holder .note-container .note-header .note_upper_hold .rotate svg path{fill:#aaa}.boldSanVin{font-weight:800}@media (max-width: 1910px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,320px)}.card-width{width:320px}.repair-details-container,.repair-details-cmp{grid-template-columns:440px 712px 320px 260px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 145px!important}.repair-container{width:712px!important}.repaired-vehicle-container{width:320px!important}.likes-count-container{width:260px}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 50px 46px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 79px 52px 66px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 325px!important}.counter-text{padding:0 0 0 8px!important}.reason-span{display:none}app-shipper-details .load,app-broker-details .load{width:712px!important}app-shipper-details .contact,app-broker-details .contact{width:320px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:320px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:260px!important}app-shipper-details .review-container,app-broker-details .review-container{width:260px!important}}@media (max-width: 1870px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,300px)}.card-width{width:300px}}@media (max-width: 1850px){.repair-details-container,.repair-details-cmp{grid-template-columns:430px 702px 310px 250px!important}.repair-general-holder{width:430px}.repair-container{width:702px!important}.repaired-vehicle-container{width:310px!important}.likes-count-container{width:250px}.repair-component{height:max-content}.repair-component .repair-cards{width:430px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 37px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 40px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:430px!important}app-shipper-details .load,app-broker-details .load{width:702px!important}app-shipper-details .contact,app-broker-details .contact{width:310px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:310px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:250px!important}app-shipper-details .review-container,app-broker-details .review-container{width:250px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:407px!important}}@media (max-width: 1820px){.repair-details-container,.repair-details-cmp{grid-template-columns:420px 692px 300px 240px!important}.repair-general-holder{width:420px}.repair-container{width:692px!important}.repaired-vehicle-container{width:300px!important}.likes-count-container{width:240px}.repair-component .repair-cards{width:420px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 100px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 99px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 27px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 29px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:420px!important}app-shipper-details .load,app-broker-details .load{width:692px!important}app-shipper-details .contact,app-broker-details .contact{width:300px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:300px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:240px!important}app-shipper-details .review-container,app-broker-details .review-container{width:240px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:396px!important}}@media (max-width: 1780px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,280px)}.card-width{width:280px}.request-header-container{width:26px!important;height:26px!important}.request-header-container p{display:none}.request-header-container svg-icon{display:flex!important;transition:background .2s ease-in}.request-header-container svg-icon:hover{background:#e9effd!important}.request-header-container svg-icon:hover svg path{fill:#0b49d1}.repair-details-container{grid-template-columns:475px 760px 410px 0px!important}.repair-general-holder{width:475px}.repair-container{width:760px!important}.repaired-vehicle-container{width:410px!important;max-width:410px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:475px!important}.repair-component .repair-cards{width:475px!important}.repair-details-cmp{grid-template-columns:475px 760px 410px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:-moz-fit-content;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:410px!important;max-width:410px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:410px!important;max-width:410px!important}.purchase-template{display:grid;grid-template-columns:repeat(2,50%)!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:475px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:475px!important;max-width:475px!important}app-shipper-details .load,app-broker-details .load{width:760px!important}app-shipper-details .contact,app-broker-details .contact{width:410px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:410px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:410px!important}app-shipper-details .review-container,app-broker-details .review-container{width:410px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:450px!important}}@media (max-width: 1760px){.repair-details-container{grid-template-columns:455px 740px 390px 0px!important}.repair-general-holder{width:455px}.repair-container{width:740px!important}.repaired-vehicle-container{width:390px!important;max-width:390px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:455px!important}.repair-component .repair-cards{width:455px!important}.repair-details-cmp{grid-template-columns:455px 740px 390px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:-moz-fit-content;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:390px!important;max-width:390px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:390px!important;max-width:390px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:455px!important;max-width:455px!important}app-shipper-details .load,app-broker-details .load{width:740px!important}app-shipper-details .contact,app-broker-details .contact{width:390px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:390px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:390px!important}app-shipper-details .review-container,app-broker-details .review-container{width:390px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:430px!important}}@media (max-width: 1700px){.details-container-items{display:grid;grid-template-columns:420px repeat(4,270px)}.card-width{width:270px}.cards-item-wrapper-1,.details-component .details-cards{width:420px}.repair-details-container{grid-template-columns:400px 740px 390px 0px!important}.repair-general-holder{width:400px}.details-header-wrapper-reapirShop{max-width:400px!important}.repair-component .repair-cards{width:400px!important}.repair-details-cmp{grid-template-columns:400px 740px 390px 0px!important}.longText{display:none!important}.shortText{display:block!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 105px 92px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:400px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:377px!important}.details-container-items{display:grid;grid-template-columns:400px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:400px}.assign-to{grid-template-columns:185px 185px}}@media (max-width: 1640px){.repair-details-container{grid-template-columns:400px 720px 370px 0px!important}.repair-container{width:720px!important}.repaired-vehicle-container{width:370px!important;max-width:370px!important}.repair-details-cmp{grid-template-columns:400px 720px 370px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:370px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:370px!important;max-width:370px!important}app-shipper-details .load,app-broker-details .load{width:720px!important}app-shipper-details .contact,app-broker-details .contact{width:370px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:370px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:370px!important}app-shipper-details .review-container,app-broker-details .review-container{width:370px!important}}@media (max-width: 1610px){.details-container-items{display:grid;grid-template-columns:380px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:380px}.assign-to{grid-template-columns:175px 175px}.repair-details-container{grid-template-columns:380px 710px 350px 0px!important}.repair-container{width:710px!important}.repaired-vehicle-container{width:350px!important;max-width:350px!important}.repair-details-cmp{grid-template-columns:380px 710px 350px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:350px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:350px!important;max-width:350px!important}.repair-component .repair-cards{width:380px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 86px 92px!important}app-shipper-details-card .hours-template{grid-template-columns:150px 150px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:380px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:356px!important}}@media (max-width: 1590px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,260px)}.details-component .details-cards,.cards-item-wrapper-1{width:360px}.card-width{width:260px}.reason-span{display:none}.assign-to{grid-template-columns:162px 162px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 710px 350px 0px!important}.repair-component .repair-cards{width:360px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 91px 70px!important}app-shipper-details-card .hours-template{grid-template-columns:140px 140px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:336px!important}}@media (max-width: 1440px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,250px)}.card-width{width:250px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-container{width:700px!important}.repaired-vehicle-container{width:272!important;max-width:272px!important}.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{width:272px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:272px!important;max-width:272px!important}.repair-component .repair-cards{width:360px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:35px 40px 25px 35px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:45px 68px 27px 66px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:700px!important}app-shipper-details .contact,app-broker-details .contact{width:272px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:272px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:272px!important}app-shipper-details .review-container,app-broker-details .review-container{width:272px!important}}@media (max-width: 1500px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,237px)}.card-width{width:237px}}.datetime-dropdown-holder{position:relative;top:16px}.picker_input_holder{display:flex;min-width:146px;max-width:260px;border-radius:3px;background-color:#f9f9f9}.picker_input_holder input{width:100%;padding-left:6px;border:none;outline:none;background-color:transparent;caret-color:transparent;-webkit-appearance:none}.picker_input_holder input:focus{outline:none;border:none}.picker_input_holder input::placeholder{color:#919191!important}.picker_input_holder .toggle_picker{display:flex;justify-content:center;align-items:center;width:26px;height:26px;min-width:26px;background-color:#eee;border-radius:3px;cursor:pointer}.picker_input_holder .toggle_picker:after{display:none}.picker_input_holder .toggle_picker svg-icon{display:flex}.picker_input_holder .toggle_picker svg-icon svg{width:12px;height:10px}.picker_input_holder .toggle_picker svg-icon svg path{fill:#919191}.picker_input_holder:hover{opacity:1}.picker_input_holder.active{background-color:#6c6c6c;border-left:3px solid #6c6c6c}.picker_input_holder.active .toggle_picker{background-color:#919191}.picker_input_holder.active .toggle_picker svg-icon{display:flex}.picker_input_holder.active .toggle_picker svg-icon svg{transform:rotate(180deg)}.picker_input_holder.active .toggle_picker svg-icon svg path{fill:#dadada}.picker_input_holder.active input::placeholder{color:#dadada!important}.pickers_holder{position:absolute;top:3px!important;width:auto!important;padding:0;background-color:#dadada;box-shadow:0 0 4px #00000026;z-index:999;border-radius:3px;overflow:hidden}.pickers_holder .time_picker{width:167px}.pickers_holder .date_picker{display:flex}.pickers_holder .date_picker .month-years-size{position:relative;width:48px;background-color:#f9f9f9}.pickers_holder .date_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:24px;transform:translateY(-50%);background-color:#dadada}.pickers_holder .date_picker .month-years-size .month-year-item{display:flex;align-items:center;justify-content:center;height:24px;font-size:14px;color:#919191;font-weight:400;text-align:center;text-transform:uppercase}.pickers_holder .date_picker .month-years-size .month-year-item .left-year-show{color:#919191;font-size:14px;font-weight:700}.pickers_holder .date_picker .month-years-size .month-year-item:hover{color:#6c6c6c;cursor:pointer;background-color:#f1f1f1;border-radius:2px}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 2px 0}.pickers_holder .date_picker .full-calendars-list{flex:1;max-height:290px;min-width:264px;overflow:hidden}.pickers_holder .date_picker .full-calendars-list .full_list{height:100%}.pickers_holder .date_picker .full-calendars-list .full_list .selfScroll{width:100%;height:100%}.pickers_holder .time_picker .time_picker_head{height:36px;display:flex;padding:0 12px;align-items:center;justify-content:space-between}.pickers_holder .time_picker .time_picker_head .selected_time{font-size:14px;font-weight:800;color:#6c6c6c}.pickers_holder .time_picker .time_picker_head .sel_now{color:#536bc2;font-size:14px;font-weight:700}.pickers_holder .time_picker .time_picker_head .sel_now:hover{cursor:pointer;color:#5673aa}.pickers_holder .time_picker .time_picker_body .picker_body_head{height:22px;display:flex;align-items:center;background-color:#f7f7f7;margin:0 4px 2px;border-radius:2px}.pickers_holder .time_picker .time_picker_body .picker_body_head div{flex:0 0 33%;text-align:center;font-size:10px;font-weight:700;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body_head div.active{color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body{position:relative;height:155px;display:flex;justify-content:center}.pickers_holder .time_picker .time_picker_body .picker_body:after{content:\"\";position:absolute;width:100%;height:31px;top:-1px;left:0;pointer-events:none;background:linear-gradient(to bottom,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body:before{content:\"\";position:absolute;pointer-events:none;width:100%;height:31px;bottom:-1px;left:0;background:linear-gradient(to top,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line{position:absolute;width:calc(100% - 8px);height:22px;top:50%;left:4px;border-radius:2px;transform:translateY(-50%);background-color:#9191911a}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line span{position:absolute;left:30%;font-size:14px;font-weight:400;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers{position:relative;height:22px;flex:0 0 33.3%;height:100%;padding:67px 0;margin:0 7px;overflow:auto;text-align:center;-ms-overflow-style:none;scrollbar-width:none;z-index:10}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:first-child{flex:0 0 28px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(2){flex:0 0 36px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(3){flex:0 0 38px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers::-webkit-scrollbar{display:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{height:22px;display:flex;align-items:center;justify-content:center;font-size:14px;color:#919191;font-weight:400;-webkit-user-select:none;user-select:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item:hover{color:#5673aa;cursor:pointer}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:hover{box-shadow:inset 0 0 4px #00000026}.pickers_holder .time_picker .picker_buttons{display:flex;padding:6px;justify-content:space-between}.pickers_holder .time_picker .picker_buttons .pick_button{display:flex;align-items:center;justify-content:center;height:32px;padding:0 12px;text-align:center;border-radius:2px;font-size:12px;font-weight:700;color:#919191b3}.pickers_holder .time_picker .picker_buttons .pick_button:hover{background-color:#f3f3f3;color:#919191;cursor:pointer}.pickers_holder .time_picker .picker_buttons .pick_button.set_button{width:57px;text-align:center;background-color:#6d82c7;color:#dadada}.pickers_holder .time_picker .picker_buttons .pick_button.set_button:hover{background-color:#536bc2}.pickers_holder.dark_picker{background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size{width:40px;background-color:#424242}.pickers_holder.dark_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:26px;transform:translateY(-50%);background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .month-year-item{height:22px;color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item .left-year-show{color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year{color:#dadada}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year .left-year-show{color:#dadada;font-weight:700}.pickers_holder.dark_picker .month-years-size .month-year-item:hover{color:#dadada;background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 4px 0}.pickers_holder.dark_picker .date_picker{margin:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list{min-width:184px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view{width:182px;padding-top:6px;background-color:#2f2f2f}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head{padding:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name{padding:0 4px;color:#dadada;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name .year_hold{margin-right:0;color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today{padding:0 4px;color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today:hover{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator{margin:12px 10px;color:#919191;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.current_year{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.full_calendar{margin-bottom:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px 4px;padding:0}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days .cal_day{width:22px;height:22px;margin:0;font-size:9px;color:#aaa;text-align:center}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;row-gap:12px;justify-content:unset;margin:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item{margin:0;height:22px;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item:hover:not(.current_month){background-color:#424242;color:#dadada;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item.current_month{color:#dadada;background-color:#3b73ed66;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list.current_year .month_list_item{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px;padding:0;height:auto}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day{width:22px;height:22px;margin:0;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#dadada;background-color:#3b73ed66;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#3b73ed66;color:#dadada;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.day_in_current_month{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.weekend_day_in_current_month{color:#ccc}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#424242;border-radius:2px;cursor:pointer;color:#dadada}.pickers_holder.dark_picker .time_picker{width:156px;margin:4px}.pickers_holder.dark_picker .time_picker .time_picker_head{height:18px;padding:0 4px;margin-bottom:4px}.pickers_holder.dark_picker .time_picker .time_picker_head .selected_time{color:#dadada;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_head .sel_now{color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;margin:0 0 4px;padding:2px;background:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head div{color:#aaa;font-size:9px;text-align:center;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body{height:176px;display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;padding:0 2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:before{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:after{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line{left:0;width:100%;background-color:#3b73ed33}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line{left:33.3%;width:1px;height:12px;margin-top:5px;background-color:#92b1f5;opacity:.4;border-radius:2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line.line_2{left:66.6%}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers{margin:0;padding:77px 0}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{color:#aaa;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item.active_item{color:#dadada}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons{display:grid;grid-template-columns:repeat(2,1fr);column-gap:4px;margin-top:6px;padding:4px 0 0;border-top:1px solid #424242}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button{height:18px;background-color:#424242;color:#dadada;font-size:11px;text-transform:uppercase;border-radius:1px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button.set_button{width:auto;background-color:#3b73ed}.calendar_view{width:260px;padding-top:12px;background-color:#dadada}.calendar_view .calendar_view_head{display:flex;justify-content:space-between;margin-bottom:12px;padding:0 12px}.calendar_view .calendar_view_head .month_name{font-size:12px;font-weight:700;color:#6c6c6c}.calendar_view .calendar_view_head .month_name .year_hold{margin-right:5px;text-transform:uppercase;color:#6c6c6c;cursor:pointer}.calendar_view .calendar_view_head .month_name .year_hold:hover{color:#919191}.calendar_view .calendar_view_head .today{font-size:12px;font-weight:700;color:#5673aab3;cursor:pointer}.calendar_view .calendar_view_head .today:hover{color:#3551b7}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport{height:230px;min-height:230px}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view .calendar_indicator{margin:12px;height:18px;font-size:12px;color:#6c6c6c66;font-weight:700}.calendar_view .calendars_list_view .calendar_month_days{padding:0 3px}.calendar_view .calendars_list_view .calendar_month_days.hideVisibility{visibility:hidden}.calendar_view .calendars_list_view .calendar_month_days .cal_day{width:24px;margin:0 6px;font-size:12px;font-weight:700;color:#b7b7b7}.calendar_view .calendars_list_view .calendar_days{height:140px;display:flex;flex-wrap:wrap;padding:0 3px}.calendar_view .calendars_list_view .calendar_days .calendar_day{display:flex;align-items:center;justify-content:center;flex:0 0 24px;width:24px;height:24px;margin:0 6px;font-size:14px;font-weight:400;color:#6c6c6c}.calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#dadada;background-color:#919191;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#919191;color:#dadada;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#f7f7f7;border-radius:2px;cursor:pointer;color:#3c3c3c}.calendar_view .month_list{display:flex;flex-wrap:wrap;justify-content:space-around;height:140px}.calendar_view .month_list .month_list_item{flex:0 0 50px;height:24px;margin:0 10px;display:flex;align-items:center;justify-content:center;border-radius:3px;font-size:12px;color:#6c6c6c;font-weight:400}.calendar_view .month_list .month_list_item:hover:not(.current_month){background-color:#f7f7f7;color:#3c3c3c;border-radius:2px;cursor:pointer}.calendar_view .month_list .month_list_item.current_month{color:#3c3c3c;background-color:#f7f7f7;border-radius:2px;cursor:pointer}.dropdown{z-index:999!important}input[type=date]::-webkit-inner-spin-button,input[type=date]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}.wrapper{width:320px;font-family:Montserrat,sans-serif;padding-left:12px;padding-right:12px;padding-bottom:2px}.wrapper .container{gap:4px;padding:0 6px}.wrapper .container .text-value{padding-right:5px;width:auto;height:26px;gap:4px}.wrapper .container .text-value .payment-count{gap:4px;color:#424242}.wrapper .container .text-value .payment-count .text{height:26px;width:auto}.wrapper .container .text-value .payment-count .round{width:18px;height:18px;border-radius:20px;background-color:#6c6c6c;color:#dadada;font-size:11px}.wrapper .container .text-value .value{height:26px;width:auto}.wrapper .container .text-value .value .icon:hover svg{border-radius:2px;background-color:#e9effd}.wrapper .container .text-value .value .icon:hover svg path{fill:#0b49d1}.wrapper .container .text-value .value .total-money-closed{height:26px;width:auto}.wrapper .component-data-container .information{width:308px;gap:4px;padding:2px 18px 2px 6px}.wrapper .component-data-container .information:hover{background-color:#eee;border-radius:2px;opacity:.6;transition:.3s}.wrapper .component-data-container .information.clicked{background-color:#eee}.wrapper .component-data-container .information.clicked:hover{background-color:#eee;opacity:1}.wrapper .component-data-container .information .number{border-radius:2px;width:26px;height:26px;gap:2px;color:#919191}.wrapper .component-data-container .information .number:hover{background-color:#91919133}.wrapper .component-data-container .information .number .icon-holder{position:relative;height:26px;width:26px;border-radius:2px;opacity:1}.wrapper .component-data-container .information .number .dropdown-menu{background-color:red}.wrapper .component-data-container .information .number .icon-holder:hover,.wrapper .component-data-container .information .number .svg-icon:hover{border-radius:2px}.wrapper .component-data-container .information .number .icon-holder:hover svg path,.wrapper .component-data-container .information .number .svg-icon:hover svg path{fill:#424242}.wrapper .component-data-container .information .date-location{width:199px}.wrapper .component-data-container .information .date-location .location,.wrapper .component-data-container .information .date-location .date{font-size:11px;height:14px}.wrapper .component-data-container .information .recurring{height:26px}.wrapper .component-data-container .information .money{height:26px;width:83px}.wrapper .component-data-container .total-money-title{padding-left:6px;padding-right:8px;height:26px;width:auto}.wrapper .component-data-container .total-money-title .total-money{width:auto;margin-right:4px;padding-right:6px}.wrapper .component-data-container .total-money-title .icon-total .dolar-icon{height:26px;width:26px;padding:2px}.wrapper .component-data-container .total-money-title .icon-total .dolar-icon svg path{fill:currentColor}.container-empty{height:34px;gap:4px;padding:0 6px;color:#aaa;width:308px}.container-empty .text-value{width:auto;height:26px;gap:4px}.container-empty .text-value .payment-count{gap:4px}.container-empty .text-value .payment-count .text{height:26px;width:auto}.container-empty .text-value .payment-count .round{width:18px;height:18px;border-radius:20px;background-color:#6c6c6c;color:#dadada;font-size:11px}.container-empty .text-value .value{height:26px;width:auto}.container-empty .text-value .value .icon:hover svg{background-color:#e9effd}.container-empty .text-value .value .icon:hover svg path{fill:#0b49d1}.container-empty .text-value .value .total-money-closed{height:26px;width:auto}.cdk-drag{transition:transform .25s cubic-bezier(.25,.1,.25,1);cursor:grab}.cdk-drag-preview{background-color:#424242;color:#dadada;font-size:12px;box-shadow:0 2px 10px #0003;font-family:Montserrat,sans-serif;width:308px}.cdk-drag-preview .location{color:#fff}.cdk-drag-preview .date{color:#919191}.cdk-drag-preview .money{color:#fff}.cdk-drop-list.cdk-drop-list-dragging{cursor:grabbing}.disabled-drag{pointer-events:none}.drag-disabled{cursor:not-allowed}\n"] }]
155
157
  }], ctorParameters: function () { return []; }, propDecorators: { isOpen: [{
156
158
  type: Input
157
159
  }], title: [{
@@ -163,4 +165,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
163
165
  }], reorderedDataEmiter: [{
164
166
  type: Output
165
167
  }] } });
166
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtcGVyaW9kLWNvbnRlbnQtcGF5bWVudC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1wZXJpb2QtY29udGVudC9jb21wb25lbnRzL2NhLXBlcmlvZC1jb250ZW50LXBheW1lbnQvY2EtcGVyaW9kLWNvbnRlbnQtcGF5bWVudC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1wZXJpb2QtY29udGVudC9jb21wb25lbnRzL2NhLXBlcmlvZC1jb250ZW50LXBheW1lbnQvY2EtcGVyaW9kLWNvbnRlbnQtcGF5bWVudC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQVUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQy9FLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxhQUFhO0FBQ2IsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0saUZBQWlGLENBQUM7QUFFekgsU0FBUztBQUNULE9BQU8sRUFFTCxjQUFjLEVBQ2QsZUFBZSxHQUNoQixNQUFNLHdCQUF3QixDQUFDO0FBQ2hDLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ3hELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBWTlELFdBQVc7QUFDWCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDaEUsT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0sd0RBQXdELENBQUM7QUFFdkcsWUFBWTtBQUNaLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdEQUF3RCxDQUFDO0FBQ2pHLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLDRDQUE0QyxDQUFDO0FBQ2pGLE9BQU87QUFDUCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx3Q0FBd0MsQ0FBQztBQUM1RSxRQUFRO0FBQ1IsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sbURBQW1ELENBQUM7Ozs7OztBQXNCL0YsTUFBTSxPQUFPLCtCQUErQjtJQXlCMUM7UUF4QlMsV0FBTSxHQUFZLEtBQUssQ0FBQztRQUd2QiwwQkFBcUIsR0FBRyxJQUFJLFlBQVksRUFBYyxDQUFDO1FBQ3ZELHdCQUFtQixHQUFHLElBQUksWUFBWSxFQUF3QixDQUFDO1FBR2xFLDJCQUFzQixHQUE2QixFQUFFLENBQUM7UUFFN0QsV0FBVztRQUNKLGdCQUFXLEdBQWMsRUFBRSxDQUFDO1FBQzVCLGtCQUFhLEdBQWMsRUFBRSxDQUFDO1FBQzdCLG1CQUFjLEdBQStCLEVBQUUsQ0FBQztRQUNoRCxnQkFBVyxHQUFXLENBQUMsQ0FBQyxDQUFDO1FBR2pDLE9BQU87UUFDQSwyQkFBc0IsR0FDM0Isc0JBQXNCLENBQUM7UUFDbEIsaUJBQVksR0FBVyxzQkFBc0IsQ0FBQyxPQUFPLENBQUM7UUFDdEQsa0JBQWEsR0FBVyxzQkFBc0IsQ0FBQyxjQUFjLENBQUM7UUFDOUQsZ0JBQVcsR0FBVyxJQUFJLENBQUMsWUFBWSxDQUFDO1FBQ3hDLGlCQUFZLEdBQWEsRUFBRSxDQUFDO0lBRXBCLENBQUM7SUFFaEIsUUFBUTtRQUNOLElBQUksQ0FBQyxnQkFBZ0IsRUFBRSxDQUFDO1FBRXhCLElBQUksQ0FBQyxrQkFBa0IsRUFBRSxDQUFDO1FBRTFCLElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQztRQUV2QixJQUFJLENBQUMscUJBQXFCLEVBQUUsQ0FBQztRQUU3QixJQUFJLENBQUMsZUFBZSxFQUFFLENBQUM7SUFDekIsQ0FBQztJQUVPLGVBQWU7UUFDckIsSUFBSSxJQUFJLENBQUMsYUFBYSxFQUFFO1lBQ3RCLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxLQUFLLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7WUFDcEUsSUFBSSxDQUFDLGFBQWEsR0FBRyxJQUFJLEtBQUssQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztTQUN2RTtJQUNILENBQUM7SUFFTyxnQkFBZ0I7UUFDdEIsSUFBSSxDQUFDLElBQUksQ0FBQyxhQUFhO1lBQUUsT0FBTztRQUVoQyxJQUFJLENBQUMsc0JBQXNCLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxHQUFHLENBQUMsQ0FBQyxJQUFJLEVBQUUsRUFBRTtZQUM1RCxPQUFPO2dCQUNMLE1BQU0sRUFBRSxJQUFJLENBQUMsTUFBTTtnQkFDbkIsV0FBVyxFQUFFLElBQUksQ0FBQyxXQUFXLElBQUksRUFBRTtnQkFDbkMsSUFBSSxFQUFFLElBQUksQ0FBQyxJQUFJO2dCQUNmLE1BQU0sRUFBRyxJQUFtQyxDQUFDLE1BQU07Z0JBQ25ELEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxJQUFJLElBQUk7YUFDTSxDQUFDO1FBQzlCLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVPLGtCQUFrQjtRQUN4QixJQUFJLElBQUksQ0FBQyxNQUFNLEVBQUU7WUFDZixJQUFJLENBQUMsZUFBZSxHQUFHLDZCQUE2QixDQUFDLGlCQUFpQixDQUFDO1NBQ3hFO2FBQU07WUFDTCxJQUFJLENBQUMsZUFBZSxHQUFHLDZCQUE2QixDQUFDLG1CQUFtQixDQUFDO1NBQzFFO0lBQ0gsQ0FBQztJQUVPLGVBQWU7UUFDckIsSUFBSSxDQUFDLFlBQVksR0FBRyxJQUFJLEtBQUssQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FBQyxDQUFDLElBQUksQ0FDM0QsSUFBSSxDQUFDLFlBQVksQ0FDbEIsQ0FBQztJQUNKLENBQUM7SUFFTSxrQkFBa0IsQ0FBQyxLQUFhO1FBQ3JDLElBQUksSUFBSSxDQUFDLFdBQVcsS0FBSyxDQUFDLENBQUMsSUFBSSxJQUFJLENBQUMsV0FBVyxLQUFLLEtBQUssRUFBRTtZQUN6RCxJQUFJLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsR0FBRyxLQUFLLENBQUM7WUFDOUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLEdBQUcsS0FBSyxDQUFDO1lBQzdDLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxHQUFHLElBQUksQ0FBQyxZQUFZLENBQUM7U0FDekQ7UUFFRCxJQUFJLENBQUMsY0FBYyxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUN6RCxJQUFJLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQyxHQUFHLElBQUksQ0FBQyxjQUFjLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDdkQsSUFBSSxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQztZQUNsRCxDQUFDLENBQUMsSUFBSSxDQUFDLGFBQWE7WUFDcEIsQ0FBQyxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUM7UUFDdEIsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsY0FBYyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO0lBQzdELENBQUM7SUFFTSxpQkFBaUIsQ0FBQyxVQUFrQjtRQUN6QyxPQUFPLENBQUMsQ0FBQyxJQUFJLENBQUMsY0FBYyxDQUFDLFVBQVUsQ0FBQyxDQUFDO0lBQzNDLENBQUM7SUFFTSxZQUFZLENBQUMsS0FBYTtRQUMvQixJQUFJLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQyxHQUFHLElBQUksQ0FBQztJQUNqQyxDQUFDO0lBRU0sWUFBWSxDQUFDLEtBQWE7UUFDL0IsSUFBSSxDQUFDLFdBQVcsQ0FBQyxLQUFLLENBQUMsR0FBRyxLQUFLLENBQUM7SUFDbEMsQ0FBQztJQUVNLFFBQVEsQ0FBQyxLQUFhO1FBQzNCLE9BQU8sYUFBYSxDQUFDLEtBQUssQ0FBQyxXQUFXLEVBQUUsQ0FBQyxJQUFJLFNBQVMsQ0FBQztJQUN6RCxDQUFDO0lBRU0sYUFBYTtRQUNsQixJQUFJLENBQUMsSUFBSSxDQUFDLGFBQWEsRUFBRSxNQUFNLElBQUksQ0FBQyxJQUFJLENBQUMsYUFBYSxFQUFFO1lBQ3RELE9BQU8sU0FBUyxDQUFDO1NBQ2xCO1FBQ0QsT0FBTyxTQUFTLENBQUM7SUFDbkIsQ0FBQztJQUVNLHFCQUFxQjtRQUMxQixNQUFNLEdBQUcsR0FDUCxJQUFJLENBQUMsc0JBQXNCLEVBQUUsTUFBTSxDQUNqQyxDQUFDLEdBQVcsRUFBRSxJQUE0QixFQUFFLEVBQUU7WUFDNUMsT0FBTyxHQUFHLEdBQUcsQ0FBQyxJQUFJLENBQUMsTUFBTSxJQUFJLENBQUMsQ0FBQyxDQUFDO1FBQ2xDLENBQUMsRUFDRCxDQUFDLENBQ0YsSUFBSSxDQUFDLENBQUM7UUFDVCxJQUFJLENBQUMsR0FBRyxHQUFHLEdBQUcsQ0FBQztRQUNmLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxJQUFJLENBQUMsRUFBRSxHQUFHLEVBQUUsSUFBSSxDQUFDLEdBQUcsRUFBRSxJQUFJLEVBQUUsSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUM7SUFDdkUsQ0FBQztJQUVNLE1BQU0sQ0FBQyxLQUFpQztRQUM3QyxlQUFlLENBQ2IsSUFBSSxDQUFDLGFBQWEsRUFDbEIsS0FBSyxDQUFDLGFBQWEsRUFDbkIsS0FBSyxDQUFDLFlBQVksQ0FDbkIsQ0FBQztRQUVGLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxDQUFDO0lBQ3BELENBQUM7SUFFTSxRQUFRLENBQUMsYUFBcUIsRUFBRSxZQUFvQjtRQUN6RCxNQUFNLElBQUksR0FBRyxJQUFJLENBQUMsc0JBQXNCLENBQUMsYUFBYSxDQUFDLENBQUM7UUFDeEQsSUFBSSxDQUFDLHNCQUFzQixDQUFDLE1BQU0sQ0FBQyxhQUFhLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFDckQsSUFBSSxDQUFDLHNCQUFzQixDQUFDLE1BQU0sQ0FBQyxZQUFZLEVBQUUsQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDO0lBQzVELENBQUM7SUFFTSxVQUFVLENBQUMsWUFBaUQ7UUFDakUsT0FBTywwQkFBMEIsQ0FBQyxVQUFVLENBQUMsWUFBWSxDQUFDLENBQUM7SUFDN0QsQ0FBQztJQUVNLFFBQVEsQ0FBQyxLQUFhO1FBQzNCLE9BQU8sS0FBSyxDQUFDO0lBQ2YsQ0FBQzsrR0FsSlUsK0JBQStCO21HQUEvQiwrQkFBK0IsbVFBakIvQixDQUFDLGtCQUFrQixDQUFDLDBCQ3hDakMsNnROQWlMQTtnQkR2SUksU0FBUztnQkFDVCxZQUFZLGtiQUNaLG9CQUFvQixnT0FDcEIsZ0JBQWdCLHNXQUNoQixjQUFjO2dCQUVkLFlBQVk7Z0JBQ1osdUJBQXVCLDZNQUN2QixtQkFBbUI7Z0JBQ25CLE9BQU87Z0JBQ1Asa0JBQWtCOzs0RkFLVCwrQkFBK0I7a0JBcEIzQyxTQUFTOytCQUNFLCtCQUErQixjQUM3QixJQUFJLGFBQ0wsQ0FBQyxrQkFBa0IsQ0FBQyxXQUN0Qjt3QkFDUCxTQUFTO3dCQUNULFlBQVk7d0JBQ1osb0JBQW9CO3dCQUNwQixnQkFBZ0I7d0JBQ2hCLGNBQWM7d0JBRWQsWUFBWTt3QkFDWix1QkFBdUI7d0JBQ3ZCLG1CQUFtQjt3QkFDbkIsT0FBTzt3QkFDUCxrQkFBa0I7cUJBQ25COzBFQUtRLE1BQU07c0JBQWQsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csYUFBYTtzQkFBckIsS0FBSztnQkFDSSxxQkFBcUI7c0JBQTlCLE1BQU07Z0JBQ0csbUJBQW1CO3NCQUE1QixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkluaXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcblxuLy8gU3ZnIHJvdXRlc1xuaW1wb3J0IHsgUGVyaW9kQ29udGVudFN2Z1JvdXRlcyB9IGZyb20gJy4uLy4uLy4uLy4uL2NvbXBvbmVudHMvY2EtcGVyaW9kLWNvbnRlbnQvdXRpbHMvc3ZnLXJvdXRlcy9wZXJpb2QtY29udGVudC5yb3V0ZXMnO1xuXG4vL01vZHVsZXNcbmltcG9ydCB7XG4gIENka0RyYWdEcm9wLFxuICBEcmFnRHJvcE1vZHVsZSxcbiAgbW92ZUl0ZW1JbkFycmF5LFxufSBmcm9tICdAYW5ndWxhci9jZGsvZHJhZy1kcm9wJztcbmltcG9ydCB7IEFuZ3VsYXJTdmdJY29uTW9kdWxlIH0gZnJvbSAnYW5ndWxhci1zdmctaWNvbic7XG5pbXBvcnQgeyBOZ2JUb29sdGlwTW9kdWxlIH0gZnJvbSAnQG5nLWJvb3RzdHJhcC9uZy1ib290c3RyYXAnO1xuXG4vL0ludGVyZmFjZXNcbmltcG9ydCB7IElJdGVtTGlzdCB9IGZyb20gJy4uLy4uLy4uLy4uL21vZGVscy9kcm9wZG93bi5tb2RlbCc7XG5pbXBvcnQgeyBmb3JtYXR0ZWRDb21wb25lbnREYXRhIH0gZnJvbSAnLi4vLi4vbW9kZWxzL2Zvcm1hdHRlZC1jb21wb25lbnQtZGF0YS50eXBlJztcbmltcG9ydCB7XG4gIENvbXBvbmVudERhdGEsXG4gIFBheW1lbnRDb21wb25lbnREYXRhLFxufSBmcm9tICcuLi8uLi9tb2RlbHMvY29tcG9uZW50LWRhdGEudHlwZSc7XG5pbXBvcnQgeyBQYXlyb2xsRnVlbE1pbmltYWxSZXNwb25zZSB9IGZyb20gJy4uLy4uL21vZGVscy9wYXlyb2xsLWZ1ZWwtbWluaW1hbC1yZXNwb25zZSc7XG5pbXBvcnQgeyBQYXltZW50U3VtIH0gZnJvbSAnLi4vLi4vbW9kZWxzL3BheW1lbnQtc3VtLm1vZGVsJztcblxuLy9Db25zdGFudHNcbmltcG9ydCB7IHRpdGxlQ29sb3JNYXAgfSBmcm9tICcuLi8uLi91dGlscy9jb25zdGFudHMvY29sb3ItbWFwJztcbmltcG9ydCB7IFBheXJvbGxQZXJpb2REcm9wZG93bkNvbnN0YW50IH0gZnJvbSAnLi4vLi4vdXRpbHMvY29uc3RhbnRzL3BheXJvbGwtcGVyaW9kLWRyb3Bkb3duLmNvbnN0YW50JztcblxuLy9Db21wb25lbnRzXG5pbXBvcnQgeyBDYUFwcFRvb2x0aXBWMkNvbXBvbmVudCB9IGZyb20gJy4uLy4uLy4uL2NhLWFwcC10b29sdGlwLXYyL2NhLWFwcC10b29sdGlwLXYyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBDYURyb3Bkb3duQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vY2EtZHJvcGRvd24vY2EtZHJvcGRvd24uY29tcG9uZW50Jztcbi8vcGlwZXNcbmltcG9ydCB7IEZvcm1hdEN1cnJlbmN5UGlwZSB9IGZyb20gJy4uLy4uLy4uLy4uL3BpcGVzL2Zvcm1hdC1jdXJyZW5jeS5waXBlJztcbi8vaGVscGVyXG5pbXBvcnQgeyBQYXlyb2xsUGVyaW9kQ29udGVudEhlbHBlciB9IGZyb20gJy4uLy4uL3V0aWxzL2hlbHBlcnMvcGF5cm9sbC1wZXJpb2QtY29udGVudC5oZWxwZXInO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhcHAtY2EtcGVyaW9kLWNvbnRlbnQtcGF5bWVudCcsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIHByb3ZpZGVyczogW0Zvcm1hdEN1cnJlbmN5UGlwZV0sXG4gIGltcG9ydHM6IFtcbiAgICAvL01vZHVsZXNcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgQW5ndWxhclN2Z0ljb25Nb2R1bGUsXG4gICAgTmdiVG9vbHRpcE1vZHVsZSxcbiAgICBEcmFnRHJvcE1vZHVsZSxcblxuICAgIC8vQ29tcG9uZW50c1xuICAgIENhQXBwVG9vbHRpcFYyQ29tcG9uZW50LFxuICAgIENhRHJvcGRvd25Db21wb25lbnQsXG4gICAgLy9waXBlc1xuICAgIEZvcm1hdEN1cnJlbmN5UGlwZSxcbiAgXSxcbiAgdGVtcGxhdGVVcmw6ICcuL2NhLXBlcmlvZC1jb250ZW50LXBheW1lbnQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jYS1wZXJpb2QtY29udGVudC1wYXltZW50LmNvbXBvbmVudC5zY3NzJ10sXG59KVxuZXhwb3J0IGNsYXNzIENhUGVyaW9kQ29udGVudFBheW1lbnRDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICBASW5wdXQoKSBpc09wZW46IGJvb2xlYW4gPSBmYWxzZTtcbiAgQElucHV0KCkgdGl0bGUhOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGNvbXBvbmVudERhdGEhOiBQYXltZW50Q29tcG9uZW50RGF0YTtcbiAgQE91dHB1dCgpIHN1bVBheW1lbnRUeXBlRW1pdHRlciA9IG5ldyBFdmVudEVtaXR0ZXI8UGF5bWVudFN1bT4oKTtcbiAgQE91dHB1dCgpIHJlb3JkZXJlZERhdGFFbWl0ZXIgPSBuZXcgRXZlbnRFbWl0dGVyPFBheW1lbnRDb21wb25lbnREYXRhPigpO1xuXG4gIHB1YmxpYyBzdW0hOiBudW1iZXI7XG4gIHB1YmxpYyBmb3JtYXR0ZWRDb21wb25lbnREYXRhOiBmb3JtYXR0ZWRDb21wb25lbnREYXRhW10gPSBbXTtcblxuICAvLyBEcm9wZG93blxuICBwdWJsaWMgaG92ZXJTdGF0ZXM6IGJvb2xlYW5bXSA9IFtdO1xuICBwdWJsaWMgY2xpY2tlZFN0YXRlczogYm9vbGVhbltdID0gW107XG4gIHByaXZhdGUgZHJvcGRvd25TdGF0ZXM6IHsgW2tleTogc3RyaW5nXTogYm9vbGVhbiB9ID0ge307XG4gIHByaXZhdGUgYWN0aXZlSW5kZXg6IG51bWJlciA9IC0xO1xuICBwdWJsaWMgZHJvcGRvd25PcHRpb25zITogSUl0ZW1MaXN0W107XG5cbiAgLy9JY29uc1xuICBwdWJsaWMgcGVyaW9kQ29udGVudFN2Z1JvdXRlczogUGVyaW9kQ29udGVudFN2Z1JvdXRlcyA9XG4gICAgUGVyaW9kQ29udGVudFN2Z1JvdXRlcztcbiAgcHVibGljIG9yaWdpbmFsSWNvbjogc3RyaW5nID0gUGVyaW9kQ29udGVudFN2Z1JvdXRlcy5vcHRpb25zO1xuICBwdWJsaWMgYWx0ZXJuYXRlSWNvbjogc3RyaW5nID0gUGVyaW9kQ29udGVudFN2Z1JvdXRlcy5vcHRpb25zQ2xpY2tlZDtcbiAgcHVibGljIGN1cnJlbnRJY29uOiBzdHJpbmcgPSB0aGlzLm9yaWdpbmFsSWNvbjtcbiAgcHVibGljIGN1cnJlbnRJY29uczogc3RyaW5nW10gPSBbXTtcblxuICBjb25zdHJ1Y3RvcigpIHt9XG5cbiAgbmdPbkluaXQoKSB7XG4gICAgdGhpcy5wcm9jZXNzSW5wdXREYXRhKCk7XG5cbiAgICB0aGlzLnNldERyb3Bkb3duT3B0aW9ucygpO1xuXG4gICAgdGhpcy5zZXRIb3Zlck9wdGlvbnMoKTtcblxuICAgIHRoaXMuY2FsY3VsYXRlVG90YWxQYXltZW50KCk7XG5cbiAgICB0aGlzLnNldEluaXRpYWxJY29ucygpO1xuICB9XG5cbiAgcHJpdmF0ZSBzZXRIb3Zlck9wdGlvbnMoKTogdm9pZCB7XG4gICAgaWYgKHRoaXMuY29tcG9uZW50RGF0YSkge1xuICAgICAgdGhpcy5ob3ZlclN0YXRlcyA9IG5ldyBBcnJheSh0aGlzLmNvbXBvbmVudERhdGEubGVuZ3RoKS5maWxsKGZhbHNlKTtcbiAgICAgIHRoaXMuY2xpY2tlZFN0YXRlcyA9IG5ldyBBcnJheSh0aGlzLmNvbXBvbmVudERhdGEubGVuZ3RoKS5maWxsKGZhbHNlKTtcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIHByb2Nlc3NJbnB1dERhdGEoKTogdm9pZCB7XG4gICAgaWYgKCF0aGlzLmNvbXBvbmVudERhdGEpIHJldHVybjtcblxuICAgIHRoaXMuZm9ybWF0dGVkQ29tcG9uZW50RGF0YSA9IHRoaXMuY29tcG9uZW50RGF0YS5tYXAoKGl0ZW0pID0+IHtcbiAgICAgIHJldHVybiB7XG4gICAgICAgIGFtb3VudDogaXRlbS5hbW91bnQsXG4gICAgICAgIGRlc2NyaXB0aW9uOiBpdGVtLmRlc2NyaXB0aW9uIHx8ICcnLFxuICAgICAgICBkYXRlOiBpdGVtLmRhdGUsXG4gICAgICAgIGdhbG9uczogKGl0ZW0gYXMgUGF5cm9sbEZ1ZWxNaW5pbWFsUmVzcG9uc2UpLmdhbG9ucyxcbiAgICAgICAgaWQ6IGl0ZW0uaWQgfHwgbnVsbCxcbiAgICAgIH0gYXMgZm9ybWF0dGVkQ29tcG9uZW50RGF0YTtcbiAgICB9KTtcbiAgfVxuXG4gIHByaXZhdGUgc2V0RHJvcGRvd25PcHRpb25zKCk6IHZvaWQge1xuICAgIGlmICh0aGlzLmlzT3Blbikge1xuICAgICAgdGhpcy5kcm9wZG93bk9wdGlvbnMgPSBQYXlyb2xsUGVyaW9kRHJvcGRvd25Db25zdGFudC5wYXlyb2xsUGVyaW9kT3BlbjtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5kcm9wZG93bk9wdGlvbnMgPSBQYXlyb2xsUGVyaW9kRHJvcGRvd25Db25zdGFudC5wYXlyb2xsUGVyaW9kQ2xvc2VkO1xuICAgIH1cbiAgfVxuXG4gIHByaXZhdGUgc2V0SW5pdGlhbEljb25zKCk6IHZvaWQge1xuICAgIHRoaXMuY3VycmVudEljb25zID0gbmV3IEFycmF5KHRoaXMuY29tcG9uZW50RGF0YS5sZW5ndGgpLmZpbGwoXG4gICAgICB0aGlzLm9yaWdpbmFsSWNvblxuICAgICk7XG4gIH1cblxuICBwdWJsaWMgZHJvcERvd25DbGlja0V2ZW50KGluZGV4OiBudW1iZXIpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5hY3RpdmVJbmRleCAhPT0gLTEgJiYgdGhpcy5hY3RpdmVJbmRleCAhPT0gaW5kZXgpIHtcbiAgICAgIHRoaXMuZHJvcGRvd25TdGF0ZXNbdGhpcy5hY3RpdmVJbmRleF0gPSBmYWxzZTtcbiAgICAgIHRoaXMuY2xpY2tlZFN0YXRlc1t0aGlzLmFjdGl2ZUluZGV4XSA9IGZhbHNlO1xuICAgICAgdGhpcy5jdXJyZW50SWNvbnNbdGhpcy5hY3RpdmVJbmRleF0gPSB0aGlzLm9yaWdpbmFsSWNvbjtcbiAgICB9XG5cbiAgICB0aGlzLmRyb3Bkb3duU3RhdGVzW2luZGV4XSA9ICF0aGlzLmRyb3Bkb3duU3RhdGVzW2luZGV4XTtcbiAgICB0aGlzLmNsaWNrZWRTdGF0ZXNbaW5kZXhdID0gdGhpcy5kcm9wZG93blN0YXRlc1tpbmRleF07XG4gICAgdGhpcy5jdXJyZW50SWNvbnNbaW5kZXhdID0gdGhpcy5jbGlja2VkU3RhdGVzW2luZGV4XVxuICAgICAgPyB0aGlzLmFsdGVybmF0ZUljb25cbiAgICAgIDogdGhpcy5vcmlnaW5hbEljb247XG4gICAgdGhpcy5hY3RpdmVJbmRleCA9IHRoaXMuZHJvcGRvd25TdGF0ZXNbaW5kZXhdID8gaW5kZXggOiAtMTtcbiAgfVxuXG4gIHB1YmxpYyBpc0Ryb3Bkb3duRW5hYmxlZChsb2FkTnVtYmVyOiBudW1iZXIpOiBib29sZWFuIHtcbiAgICByZXR1cm4gISF0aGlzLmRyb3Bkb3duU3RhdGVzW2xvYWROdW1iZXJdO1xuICB9XG5cbiAgcHVibGljIG9uTW91c2VFbnRlcihpbmRleDogbnVtYmVyKTogdm9pZCB7XG4gICAgdGhpcy5ob3ZlclN0YXRlc1tpbmRleF0gPSB0cnVlO1xuICB9XG5cbiAgcHVibGljIG9uTW91c2VMZWF2ZShpbmRleDogbnVtYmVyKTogdm9pZCB7XG4gICAgdGhpcy5ob3ZlclN0YXRlc1tpbmRleF0gPSBmYWxzZTtcbiAgfVxuXG4gIHB1YmxpYyBnZXRDb2xvcih0aXRsZTogc3RyaW5nKTogc3RyaW5nIHtcbiAgICByZXR1cm4gdGl0bGVDb2xvck1hcFt0aXRsZS50b0xvd2VyQ2FzZSgpXSB8fCAnIzQyNDI0Mic7XG4gIH1cblxuICBwdWJsaWMgZ2V0VGl0bGVDb2xvcigpOiBzdHJpbmcge1xuICAgIGlmICghdGhpcy5jb21wb25lbnREYXRhPy5sZW5ndGggfHwgIXRoaXMuY29tcG9uZW50RGF0YSkge1xuICAgICAgcmV0dXJuICcjQUFBQUFBJztcbiAgICB9XG4gICAgcmV0dXJuICcjNDI0MjQyJztcbiAgfVxuXG4gIHB1YmxpYyBjYWxjdWxhdGVUb3RhbFBheW1lbnQoKTogdm9pZCB7XG4gICAgY29uc3Qgc3VtID1cbiAgICAgIHRoaXMuZm9ybWF0dGVkQ29tcG9uZW50RGF0YT8ucmVkdWNlKFxuICAgICAgICAoc3VtOiBudW1iZXIsIGl0ZW06IGZvcm1hdHRlZENvbXBvbmVudERhdGEpID0+IHtcbiAgICAgICAgICByZXR1cm4gc3VtICsgKGl0ZW0uYW1vdW50IHx8IDApO1xuICAgICAgICB9LFxuICAgICAgICAwXG4gICAgICApIHx8IDA7XG4gICAgdGhpcy5zdW0gPSBzdW07XG4gICAgdGhpcy5zdW1QYXltZW50VHlwZUVtaXR0ZXIuZW1pdCh7IHN1bTogdGhpcy5zdW0sIHR5cGU6IHRoaXMudGl0bGUgfSk7XG4gIH1cblxuICBwdWJsaWMgb25Ecm9wKGV2ZW50OiBDZGtEcmFnRHJvcDxDb21wb25lbnREYXRhPik6IHZvaWQge1xuICAgIG1vdmVJdGVtSW5BcnJheShcbiAgICAgIHRoaXMuY29tcG9uZW50RGF0YSxcbiAgICAgIGV2ZW50LnByZXZpb3VzSW5kZXgsXG4gICAgICBldmVudC5jdXJyZW50SW5kZXhcbiAgICApO1xuXG4gICAgdGhpcy5yZW9yZGVyZWREYXRhRW1pdGVyLmVtaXQodGhpcy5jb21wb25lbnREYXRhKTtcbiAgfVxuXG4gIHB1YmxpYyBtb3ZlSXRlbShwcmV2aW91c0luZGV4OiBudW1iZXIsIGN1cnJlbnRJbmRleDogbnVtYmVyKTogdm9pZCB7XG4gICAgY29uc3QgaXRlbSA9IHRoaXMuZm9ybWF0dGVkQ29tcG9uZW50RGF0YVtwcmV2aW91c0luZGV4XTtcbiAgICB0aGlzLmZvcm1hdHRlZENvbXBvbmVudERhdGEuc3BsaWNlKHByZXZpb3VzSW5kZXgsIDEpO1xuICAgIHRoaXMuZm9ybWF0dGVkQ29tcG9uZW50RGF0YS5zcGxpY2UoY3VycmVudEluZGV4LCAwLCBpdGVtKTtcbiAgfVxuXG4gIHB1YmxpYyBnZXRTdmdQYXRoKHByb3BlcnR5TmFtZToga2V5b2YgdHlwZW9mIFBlcmlvZENvbnRlbnRTdmdSb3V0ZXMpOiBzdHJpbmcge1xuICAgIHJldHVybiBQYXlyb2xsUGVyaW9kQ29udGVudEhlbHBlci5nZXRTdmdQYXRoKHByb3BlcnR5TmFtZSk7XG4gIH1cblxuICBwdWJsaWMgaWRlbnRpdHkoaW5kZXg6IG51bWJlcik6IG51bWJlciB7XG4gICAgcmV0dXJuIGluZGV4O1xuICB9XG59XG4iLCI8bmctY29udGFpbmVyICpuZ0lmPVwiY29tcG9uZW50RGF0YT8ubGVuZ3RoOyBlbHNlIGVtcHR5Q29tcG9uZW50RGF0YVwiXG4gID48ZGl2XG4gICAgY2xhc3M9XCJ3cmFwcGVyIGQtZmxleCBmbGV4LWNvbHVtbiBhbGlnbi1pdGVtcy1jZW50ZXIganVzdGlmeS1jb250ZW50LXN0YXJ0XCJcbiAgPlxuICAgIDxkaXYgY2xhc3M9XCJjb250YWluZXIgZC1mbGV4IGZsZXgtY29sdW1uXCI+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwidGl0bGUgIT09ICdDcmVkaXQnICYmIHRpdGxlICE9PSAnUGF5bWVudCdcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImRpdmlkZXIgZC1mbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXJcIj48L2Rpdj5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgPGRpdiBjbGFzcz1cInRleHQtdmFsdWUgZC1mbGV4IGp1c3RpZnktY29udGVudC1iZXR3ZWVuXCI+XG4gICAgICAgIDxkaXZcbiAgICAgICAgICBjbGFzcz1cInBheW1lbnQtY291bnQgZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtc3RhcnRcIlxuICAgICAgICA+XG4gICAgICAgICAgPHNwYW4gY2xhc3M9XCJ0ZXh0IGNhLWZvbnQtZXh0cmEtYm9sZFwiPnt7IHRpdGxlIH19PC9zcGFuPlxuICAgICAgICAgIDxzcGFuXG4gICAgICAgICAgICBjbGFzcz1cInJvdW5kIGNhLWZvbnQtYm9sZCBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXJcIlxuICAgICAgICAgID5cbiAgICAgICAgICAgIHt7IGNvbXBvbmVudERhdGE/Lmxlbmd0aCB9fVxuICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgPC9kaXY+XG4gICAgICAgIDxzcGFuIGNsYXNzPVwidmFsdWUgZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlclwiPlxuICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpc09wZW47IGVsc2Ugbm90T3BlblwiPlxuICAgICAgICAgICAgPHN2Zy1pY29uXG4gICAgICAgICAgICAgIGNsYXNzPVwiZC1mbGV4IGljb25cIlxuICAgICAgICAgICAgICBbc3JjXT1cImdldFN2Z1BhdGgoJ3BsdXMnKVwiXG4gICAgICAgICAgICAgIFtzdmdTdHlsZV09XCJ7ICd3aWR0aC5weCc6IDE4LCAnaGVpZ2h0LnB4JzogMTggfVwiXG4gICAgICAgICAgICA+PC9zdmctaWNvbj5cbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICA8bmctdGVtcGxhdGUgI25vdE9wZW4+XG4gICAgICAgICAgICA8c3BhblxuICAgICAgICAgICAgICBjbGFzcz1cInRvdGFsLW1vbmV5LWNsb3NlZCBjYS1mb250LXNlbWktYm9sZFwiXG4gICAgICAgICAgICAgIFtuZ1N0eWxlXT1cInsgY29sb3I6IGdldENvbG9yKHRpdGxlKSB9XCJcbiAgICAgICAgICAgICAgPnt7IHN1bSB8IGZvcm1hdEN1cnJlbmN5IH19PC9zcGFuXG4gICAgICAgICAgICA+XG4gICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgICAgICAgPC9zcGFuPlxuICAgICAgPC9kaXY+XG4gICAgPC9kaXY+XG5cbiAgICA8ZGl2XG4gICAgICBbbmdDbGFzc109XCJ7ICdkaXNhYmxlZC1kcmFnJzogdGl0bGUgPT09ICdCb251cycgfVwiXG4gICAgICBjZGtEcm9wTGlzdFxuICAgICAgY2xhc3M9XCJjb21wb25lbnQtZGF0YS1jb250YWluZXIgZC1mbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXIgZmxleC1jb2x1bW5cIlxuICAgICAgKGNka0Ryb3BMaXN0RHJvcHBlZCk9XCJvbkRyb3AoJGV2ZW50KVwiXG4gICAgPlxuICAgICAgPG5nLWNvbnRhaW5lclxuICAgICAgICAqbmdGb3I9XCJsZXQgZGF0YSBvZiBjb21wb25lbnREYXRhOyBsZXQgaSA9IGluZGV4OyB0cmFja0J5OiBpZGVudGl0eVwiXG4gICAgICA+XG4gICAgICAgIDxkaXZcbiAgICAgICAgICBjZGtEcmFnXG4gICAgICAgICAgY2RrRHJhZ0xvY2tBeGlzPVwieVwiXG4gICAgICAgICAgY2RrRHJhZ0JvdW5kYXJ5PVwiLmNvbXBvbmVudC1kYXRhLWNvbnRhaW5lclwiXG4gICAgICAgICAgY2xhc3M9XCJkLWZsZXgganVzdGlmeS1jb250ZW50LWJldHdlZW4gYWxpZ24taXRlbXMtY2VudGVyIGluZm9ybWF0aW9uXCJcbiAgICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgICBjbGlja2VkOiBjbGlja2VkU3RhdGVzW2ldLFxuICAgICAgICAgICAgJ2RyYWctZGlzYWJsZWQnOiB0aXRsZSA9PT0gJ0JvbnVzJyxcbiAgICAgICAgICB9XCJcbiAgICAgICAgICAobW91c2VlbnRlcik9XCJvbk1vdXNlRW50ZXIoaSlcIlxuICAgICAgICAgIChtb3VzZWxlYXZlKT1cIm9uTW91c2VMZWF2ZShpKVwiXG4gICAgICAgID5cbiAgICAgICAgICA8bmctdGVtcGxhdGUgY2RrRHJhZ1ByZXZpZXc+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiZC1mbGV4IGp1c3RpZnktY29udGVudC1iZXR3ZWVuIGFsaWduLWl0ZW1zLWNlbnRlclwiPlxuICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlclwiPlxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpY29uLWhvbGRlciBteC0yXCI+XG4gICAgICAgICAgICAgICAgICA8c3ZnLWljb25cbiAgICAgICAgICAgICAgICAgICAgW3NyY109XCJnZXRTdmdQYXRoKCdkcmFnZ2luZycpXCJcbiAgICAgICAgICAgICAgICAgICAgYWx0PVwiRHJhZ2dpbmcgSW1hZ2VcIlxuICAgICAgICAgICAgICAgICAgPjwvc3ZnLWljb24+XG4gICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImRhdGUtbG9jYXRpb24gZC1mbGV4IGZsZXgtY29sdW1uXCI+XG4gICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImNhLWZvbnQtc2VtaS1ib2xkIGxvY2F0aW9uXCI+e3tcbiAgICAgICAgICAgICAgICAgICAgZGF0YS5kZXNjcmlwdGlvblxuICAgICAgICAgICAgICAgICAgfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImRhdGUgY2EtZm9udC1tZWRpdW1cIj57eyBkYXRhLmRhdGUgfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICA8c3BhblxuICAgICAgICAgICAgICAgIGNsYXNzPVwibW9uZXkgZC1mbGV4IGp1c3RpZnktY29udGVudC1lbmQgY2EtZm9udC1yZWd1bGFyIG14LTJcIlxuICAgICAgICAgICAgICAgID57eyBkYXRhLmFtb3VudCA/IGRhdGEuYW1vdW50IDogKDAgfCBmb3JtYXRDdXJyZW5jeSkgfX1cbiAgICAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgICAgICAgICA8c3BhblxuICAgICAgICAgICAgY2xhc3M9XCJudW1iZXIgZC1mbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXIgYWxpZ24taXRlbXMtY2VudGVyIGNhLWZvbnQtbWVkaXVtXCJcbiAgICAgICAgICA+XG4gICAgICAgICAgICA8bmctY29udGFpbmVyXG4gICAgICAgICAgICAgICpuZ0lmPVwiIWhvdmVyU3RhdGVzW2ldICYmICFjbGlja2VkU3RhdGVzW2ldOyBlbHNlIGhvdmVyZWRTdGF0ZVwiXG4gICAgICAgICAgICAgID57eyBkYXRhIS5pZCB9fVxuICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICA8bmctdGVtcGxhdGUgI2hvdmVyZWRTdGF0ZT5cbiAgICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgIGNsYXNzPVwiaWNvbi1ob2xkZXIgZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyXCJcbiAgICAgICAgICAgICAgICBuZ2JUb29sdGlwXG4gICAgICAgICAgICAgICAgW21haW5Ub29sdGlwXT1cIidNb3JlJ1wiXG4gICAgICAgICAgICAgICAgdG9vbHRpcEJhY2tncm91bmQ9XCIjNDI0MjQyXCJcbiAgICAgICAgICAgICAgICBwb3NpdGlvbj1cImJvdHRvbVwiXG4gICAgICAgICAgICAgICAgW25nU3R5bGVdPVwie1xuICAgICAgICAgICAgICAgICAgYmFja2dyb3VuZENvbG9yOiBjbGlja2VkU3RhdGVzW2ldID8gJyM0MjQyNDInIDogJ3RyYW5zcGFyZW50JyxcbiAgICAgICAgICAgICAgICAgIGNvbG9yOiBob3ZlclN0YXRlc1tpXSA/ICdkZXNpcmVkQ29sb3InIDogJ2luaXRpYWxDb2xvcicsXG4gICAgICAgICAgICAgICAgfVwiXG4gICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICA8YXBwLWNhLWRyb3Bkb3duXG4gICAgICAgICAgICAgICAgICBbaXRlbUxpc3RdPVwiZHJvcGRvd25PcHRpb25zXCJcbiAgICAgICAgICAgICAgICAgIFtpY29uXT1cImN1cnJlbnRJY29uc1tpXVwiXG4gICAgICAgICAgICAgICAgICAob25DbGljayk9XCJkcm9wRG93bkNsaWNrRXZlbnQoaSlcIlxuICAgICAgICAgICAgICAgICAgW2lzUG9wdXBTaG93bl09XCJpc0Ryb3Bkb3duRW5hYmxlZChpKVwiXG4gICAgICAgICAgICAgICAgPjwvYXBwLWNhLWRyb3Bkb3duPlxuICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJkYXRlLWxvY2F0aW9uIGQtZmxleCBmbGV4LWNvbHVtblwiPlxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJjYS1mb250LXNlbWktYm9sZCBsb2NhdGlvblwiPnt7XG4gICAgICAgICAgICAgIGRhdGEuZGVzY3JpcHRpb25cbiAgICAgICAgICAgIH19PC9zcGFuPlxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJkYXRlIGNhLWZvbnQtbWVkaXVtXCI+e3sgZGF0YS5kYXRlIH19PC9zcGFuPlxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgIDxzcGFuIGNsYXNzPVwibW9uZXkgZC1mbGV4IGp1c3RpZnktY29udGVudC1lbmQgY2EtZm9udC1yZWd1bGFyXCJcbiAgICAgICAgICAgID57eyBkYXRhLmFtb3VudCA/IGRhdGEuYW1vdW50IDogKDAgfCBmb3JtYXRDdXJyZW5jeSkgfX1cbiAgICAgICAgICA8L3NwYW4+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9uZy1jb250YWluZXI+XG5cbiAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpc09wZW5cIj5cbiAgICAgICAgPGRpdlxuICAgICAgICAgIGNsYXNzPVwidG90YWwtbW9uZXktdGl0bGUgZC1mbGV4IGp1c3RpZnktY29udGVudC1iZXR3ZWVuIGFsaWduLWl0ZW1zLWNlbnRlclwiXG4gICAgICAgID5cbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiaWNvbi10b3RhbCBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyXCI+XG4gICAgICAgICAgICA8c3BhblxuICAgICAgICAgICAgICBjbGFzcz1cImRvbGFyLWljb24gZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlclwiXG4gICAgICAgICAgICAgIFtuZ1N0eWxlXT1cInsgY29sb3I6IGdldENvbG9yKHRpdGxlKSB9XCJcbiAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgPHN2Zy1pY29uXG4gICAgICAgICAgICAgICAgY2xhc3M9XCJkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyXCJcbiAgICAgICAgICAgICAgICBbc3JjXT1cImdldFN2Z1BhdGgoJ2RvbGFyU2lnbicpXCJcbiAgICAgICAgICAgICAgICBbc3ZnU3R5bGVdPVwieyAnd2lkdGgucHgnOiAxOCwgJ2hlaWdodC5weCc6IDE4IH1cIlxuICAgICAgICAgICAgICA+PC9zdmctaWNvbj5cbiAgICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidG90YWwtdGl0bGUgY2EtZm9udC1ib2xkXCI+VG90YWw8L3NwYW4+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPHNwYW5cbiAgICAgICAgICAgIGNsYXNzPVwidG90YWwtbW9uZXkgZC1mbGV4IGp1c3RpZnktY29udGVudC1lbmQgYWxpZ24taXRlbXMtY2VudGVyIGNhLWZvbnQtc2VtaS1ib2xkXCJcbiAgICAgICAgICAgIFtuZ1N0eWxlXT1cInsgY29sb3I6IGdldENvbG9yKHRpdGxlKSB9XCJcbiAgICAgICAgICAgID57eyBzdW0gfCBmb3JtYXRDdXJyZW5jeSB9fTwvc3BhblxuICAgICAgICAgID5cbiAgICAgICAgPC9kaXY+XG4gICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8L2Rpdj5cbiAgPC9kaXY+XG48L25nLWNvbnRhaW5lcj5cblxuPG5nLXRlbXBsYXRlICNlbXB0eUNvbXBvbmVudERhdGE+XG4gIDxkaXYgY2xhc3M9XCJjb250YWluZXItZW1wdHkgZC1mbGV4IGZsZXgtY29sdW1uXCI+XG4gICAgPGRpdiBjbGFzcz1cImRpdmlkZXIgZC1mbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXJcIj48L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwidGV4dC12YWx1ZSBkLWZsZXgganVzdGlmeS1jb250ZW50LWJldHdlZW5cIj5cbiAgICAgIDxkaXZcbiAgICAgICAgY2xhc3M9XCJwYXltZW50LWNvdW50IGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXIganVzdGlmeS1jb250ZW50LXN0YXJ0XCJcbiAgICAgID5cbiAgICAgICAgPHNwYW5cbiAgICAgICAgICBjbGFzcz1cInRleHQgY2EtZm9udC1leHRyYS1ib2xkXCJcbiAgICAgICAgICBbbmdTdHlsZV09XCJ7IGNvbG9yOiBpc09wZW4gPyAnIzQyNDI0MicgOiAnI2FhYWFhYScgfVwiXG4gICAgICAgICAgPnt7IHRpdGxlIH19PC9zcGFuXG4gICAgICAgID5cbiAgICAgIDwvZGl2PlxuICAgICAgPHNwYW4gY2xhc3M9XCJ2YWx1ZSBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyXCI+XG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpc09wZW47IGVsc2Ugbm90T3BlblwiPlxuICAgICAgICAgIDxzdmctaWNvblxuICAgICAgICAgICAgY2xhc3M9XCJkLWZsZXggaWNvblwiXG4gICAgICAgICAgICBbc3JjXT1cImdldFN2Z1BhdGgoJ3BsdXMnKVwiXG4gICAgICAgICAgICBbc3ZnU3R5bGVdPVwieyAnd2lkdGgucHgnOiAxOCwgJ2hlaWdodC5weCc6IDE4IH1cIlxuICAgICAgICAgID48L3N2Zy1pY29uPlxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgPG5nLXRlbXBsYXRlICNub3RPcGVuPlxuICAgICAgICAgIDxzcGFuIGNsYXNzPVwidG90YWwtbW9uZXktY2xvc2VkIGNhLWZvbnQtc2VtaS1ib2xkXCI+JDAuMDA8L3NwYW4+XG4gICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICA8L3NwYW4+XG4gICAgPC9kaXY+XG4gIDwvZGl2PlxuPC9uZy10ZW1wbGF0ZT5cbiJdfQ==
168
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtcGVyaW9kLWNvbnRlbnQtcGF5bWVudC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1wZXJpb2QtY29udGVudC9jb21wb25lbnRzL2NhLXBlcmlvZC1jb250ZW50LXBheW1lbnQvY2EtcGVyaW9kLWNvbnRlbnQtcGF5bWVudC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1wZXJpb2QtY29udGVudC9jb21wb25lbnRzL2NhLXBlcmlvZC1jb250ZW50LXBheW1lbnQvY2EtcGVyaW9kLWNvbnRlbnQtcGF5bWVudC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQVUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQy9FLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxhQUFhO0FBQ2IsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0saUZBQWlGLENBQUM7QUFFekgsU0FBUztBQUNULE9BQU8sRUFFTCxjQUFjLEVBQ2QsZUFBZSxHQUNoQixNQUFNLHdCQUF3QixDQUFDO0FBQ2hDLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ3hELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBYTlELFdBQVc7QUFDWCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDaEUsT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0sd0RBQXdELENBQUM7QUFFdkcsWUFBWTtBQUNaLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdEQUF3RCxDQUFDO0FBQ2pHLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLDRDQUE0QyxDQUFDO0FBQ2pGLE9BQU87QUFDUCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx3Q0FBd0MsQ0FBQztBQUM1RSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx5Q0FBeUMsQ0FBQztBQUM3RSxRQUFRO0FBQ1IsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sbURBQW1ELENBQUM7Ozs7OztBQXVCL0YsTUFBTSxPQUFPLCtCQUErQjtJQXlCMUM7UUF4QlMsV0FBTSxHQUFZLEtBQUssQ0FBQztRQUd2QiwwQkFBcUIsR0FBRyxJQUFJLFlBQVksRUFBYyxDQUFDO1FBQ3ZELHdCQUFtQixHQUFHLElBQUksWUFBWSxFQUF3QixDQUFDO1FBR2xFLDJCQUFzQixHQUE2QixFQUFFLENBQUM7UUFFN0QsV0FBVztRQUNKLGdCQUFXLEdBQWMsRUFBRSxDQUFDO1FBQzVCLGtCQUFhLEdBQWMsRUFBRSxDQUFDO1FBQzdCLG1CQUFjLEdBQStCLEVBQUUsQ0FBQztRQUNoRCxnQkFBVyxHQUFXLENBQUMsQ0FBQyxDQUFDO1FBR2pDLE9BQU87UUFDQSwyQkFBc0IsR0FDM0Isc0JBQXNCLENBQUM7UUFDbEIsaUJBQVksR0FBVyxzQkFBc0IsQ0FBQyxPQUFPLENBQUM7UUFDdEQsa0JBQWEsR0FBVyxzQkFBc0IsQ0FBQyxjQUFjLENBQUM7UUFDOUQsZ0JBQVcsR0FBVyxJQUFJLENBQUMsWUFBWSxDQUFDO1FBQ3hDLGlCQUFZLEdBQWEsRUFBRSxDQUFDO0lBRXBCLENBQUM7SUFFaEIsUUFBUTtRQUNOLElBQUksQ0FBQyxnQkFBZ0IsRUFBRSxDQUFDO1FBRXhCLElBQUksQ0FBQyxrQkFBa0IsRUFBRSxDQUFDO1FBRTFCLElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQztRQUV2QixJQUFJLENBQUMscUJBQXFCLEVBQUUsQ0FBQztRQUU3QixJQUFJLENBQUMsZUFBZSxFQUFFLENBQUM7SUFDekIsQ0FBQztJQUVPLGVBQWU7UUFDckIsSUFBSSxJQUFJLENBQUMsYUFBYSxFQUFFO1lBQ3RCLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxLQUFLLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7WUFDcEUsSUFBSSxDQUFDLGFBQWEsR0FBRyxJQUFJLEtBQUssQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztTQUN2RTtJQUNILENBQUM7SUFFTyxnQkFBZ0I7UUFDdEIsSUFBSSxDQUFDLElBQUksQ0FBQyxhQUFhO1lBQUUsT0FBTztRQUVoQyxJQUFJLENBQUMsc0JBQXNCLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxHQUFHLENBQUMsQ0FBQyxJQUFJLEVBQUUsRUFBRTtZQUM1RCxPQUFPO2dCQUNMLE1BQU0sRUFBRSxJQUFJLENBQUMsTUFBTTtnQkFDbkIsV0FBVyxFQUFFLElBQUksQ0FBQyxXQUFXLElBQUksRUFBRTtnQkFDbkMsSUFBSSxFQUFFLElBQUksQ0FBQyxJQUFJO2dCQUNmLE1BQU0sRUFBRyxJQUFtQyxDQUFDLE1BQU07Z0JBQ25ELEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxJQUFJLElBQUk7YUFDTSxDQUFDO1FBQzlCLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVPLGtCQUFrQjtRQUN4QixJQUFJLElBQUksQ0FBQyxNQUFNLEVBQUU7WUFDZixJQUFJLENBQUMsZUFBZSxHQUFHLDZCQUE2QixDQUFDLGlCQUFpQixDQUFDO1NBQ3hFO2FBQU07WUFDTCxJQUFJLENBQUMsZUFBZSxHQUFHLDZCQUE2QixDQUFDLG1CQUFtQixDQUFDO1NBQzFFO0lBQ0gsQ0FBQztJQUVPLGVBQWU7UUFDckIsSUFBSSxDQUFDLFlBQVksR0FBRyxJQUFJLEtBQUssQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FBQyxDQUFDLElBQUksQ0FDM0QsSUFBSSxDQUFDLFlBQVksQ0FDbEIsQ0FBQztJQUNKLENBQUM7SUFFTSxrQkFBa0IsQ0FBQyxLQUFhO1FBQ3JDLElBQUksSUFBSSxDQUFDLFdBQVcsS0FBSyxDQUFDLENBQUMsSUFBSSxJQUFJLENBQUMsV0FBVyxLQUFLLEtBQUssRUFBRTtZQUN6RCxJQUFJLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsR0FBRyxLQUFLLENBQUM7WUFDOUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLEdBQUcsS0FBSyxDQUFDO1lBQzdDLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxHQUFHLElBQUksQ0FBQyxZQUFZLENBQUM7U0FDekQ7UUFFRCxJQUFJLENBQUMsY0FBYyxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUN6RCxJQUFJLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQyxHQUFHLElBQUksQ0FBQyxjQUFjLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDdkQsSUFBSSxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQztZQUNsRCxDQUFDLENBQUMsSUFBSSxDQUFDLGFBQWE7WUFDcEIsQ0FBQyxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUM7UUFDdEIsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsY0FBYyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO0lBQzdELENBQUM7SUFFTSxpQkFBaUIsQ0FBQyxVQUFrQjtRQUN6QyxPQUFPLENBQUMsQ0FBQyxJQUFJLENBQUMsY0FBYyxDQUFDLFVBQVUsQ0FBQyxDQUFDO0lBQzNDLENBQUM7SUFFTSxZQUFZLENBQUMsS0FBYTtRQUMvQixJQUFJLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQyxHQUFHLElBQUksQ0FBQztJQUNqQyxDQUFDO0lBRU0sWUFBWSxDQUFDLEtBQWE7UUFDL0IsSUFBSSxDQUFDLFdBQVcsQ0FBQyxLQUFLLENBQUMsR0FBRyxLQUFLLENBQUM7SUFDbEMsQ0FBQztJQUVNLFFBQVEsQ0FBQyxLQUFhO1FBQzNCLE9BQU8sYUFBYSxDQUFDLEtBQUssQ0FBQyxXQUFXLEVBQUUsQ0FBQyxJQUFJLFNBQVMsQ0FBQztJQUN6RCxDQUFDO0lBRU0sYUFBYTtRQUNsQixJQUFJLENBQUMsSUFBSSxDQUFDLGFBQWEsRUFBRSxNQUFNLElBQUksQ0FBQyxJQUFJLENBQUMsYUFBYSxFQUFFO1lBQ3RELE9BQU8sU0FBUyxDQUFDO1NBQ2xCO1FBQ0QsT0FBTyxTQUFTLENBQUM7SUFDbkIsQ0FBQztJQUVNLHFCQUFxQjtRQUMxQixNQUFNLEdBQUcsR0FDUCxJQUFJLENBQUMsc0JBQXNCLEVBQUUsTUFBTSxDQUNqQyxDQUFDLEdBQVcsRUFBRSxJQUE0QixFQUFFLEVBQUU7WUFDNUMsT0FBTyxHQUFHLEdBQUcsQ0FBQyxJQUFJLENBQUMsTUFBTSxJQUFJLENBQUMsQ0FBQyxDQUFDO1FBQ2xDLENBQUMsRUFDRCxDQUFDLENBQ0YsSUFBSSxDQUFDLENBQUM7UUFDVCxJQUFJLENBQUMsR0FBRyxHQUFHLEdBQUcsQ0FBQztRQUNmLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxJQUFJLENBQUMsRUFBRSxHQUFHLEVBQUUsSUFBSSxDQUFDLEdBQUcsRUFBRSxJQUFJLEVBQUUsSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUM7SUFDdkUsQ0FBQztJQUVNLE1BQU0sQ0FBQyxLQUFpQztRQUM3QyxlQUFlLENBQ2IsSUFBSSxDQUFDLGFBQWEsRUFDbEIsS0FBSyxDQUFDLGFBQWEsRUFDbkIsS0FBSyxDQUFDLFlBQVksQ0FDbkIsQ0FBQztRQUVGLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxDQUFDO0lBQ3BELENBQUM7SUFFTSxRQUFRLENBQUMsYUFBcUIsRUFBRSxZQUFvQjtRQUN6RCxNQUFNLElBQUksR0FBRyxJQUFJLENBQUMsc0JBQXNCLENBQUMsYUFBYSxDQUFDLENBQUM7UUFDeEQsSUFBSSxDQUFDLHNCQUFzQixDQUFDLE1BQU0sQ0FBQyxhQUFhLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFDckQsSUFBSSxDQUFDLHNCQUFzQixDQUFDLE1BQU0sQ0FBQyxZQUFZLEVBQUUsQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDO0lBQzVELENBQUM7SUFFTSxVQUFVLENBQUMsWUFBaUQ7UUFDakUsT0FBTywwQkFBMEIsQ0FBQyxVQUFVLENBQUMsWUFBWSxDQUFDLENBQUM7SUFDN0QsQ0FBQztJQUVNLFFBQVEsQ0FBQyxLQUFhO1FBQzNCLE9BQU8sS0FBSyxDQUFDO0lBQ2YsQ0FBQzsrR0FsSlUsK0JBQStCO21HQUEvQiwrQkFBK0IsbVFBbEIvQixDQUFDLGtCQUFrQixDQUFDLDBCQzFDakMsdWdQQXdNQTtnQkQ1SkksU0FBUztnQkFDVCxZQUFZLDZlQUNaLG9CQUFvQixnT0FDcEIsZ0JBQWdCLHNXQUNoQixjQUFjO2dCQUVkLFlBQVk7Z0JBQ1osdUJBQXVCLDZNQUN2QixtQkFBbUI7Z0JBQ25CLE9BQU87Z0JBQ1Asa0JBQWtCLGtEQUNsQixrQkFBa0I7OzRGQUtULCtCQUErQjtrQkFyQjNDLFNBQVM7K0JBQ0UsK0JBQStCLGNBQzdCLElBQUksYUFDTCxDQUFDLGtCQUFrQixDQUFDLFdBQ3RCO3dCQUNQLFNBQVM7d0JBQ1QsWUFBWTt3QkFDWixvQkFBb0I7d0JBQ3BCLGdCQUFnQjt3QkFDaEIsY0FBYzt3QkFFZCxZQUFZO3dCQUNaLHVCQUF1Qjt3QkFDdkIsbUJBQW1CO3dCQUNuQixPQUFPO3dCQUNQLGtCQUFrQjt3QkFDbEIsa0JBQWtCO3FCQUNuQjswRUFLUSxNQUFNO3NCQUFkLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLGFBQWE7c0JBQXJCLEtBQUs7Z0JBQ0kscUJBQXFCO3NCQUE5QixNQUFNO2dCQUNHLG1CQUFtQjtzQkFBNUIsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT25Jbml0LCBPdXRwdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5cbi8vIFN2ZyByb3V0ZXNcbmltcG9ydCB7IFBlcmlvZENvbnRlbnRTdmdSb3V0ZXMgfSBmcm9tICcuLi8uLi8uLi8uLi9jb21wb25lbnRzL2NhLXBlcmlvZC1jb250ZW50L3V0aWxzL3N2Zy1yb3V0ZXMvcGVyaW9kLWNvbnRlbnQucm91dGVzJztcblxuLy9Nb2R1bGVzXG5pbXBvcnQge1xuICBDZGtEcmFnRHJvcCxcbiAgRHJhZ0Ryb3BNb2R1bGUsXG4gIG1vdmVJdGVtSW5BcnJheSxcbn0gZnJvbSAnQGFuZ3VsYXIvY2RrL2RyYWctZHJvcCc7XG5pbXBvcnQgeyBBbmd1bGFyU3ZnSWNvbk1vZHVsZSB9IGZyb20gJ2FuZ3VsYXItc3ZnLWljb24nO1xuaW1wb3J0IHsgTmdiVG9vbHRpcE1vZHVsZSB9IGZyb20gJ0BuZy1ib290c3RyYXAvbmctYm9vdHN0cmFwJztcblxuLy9JbnRlcmZhY2VzXG5pbXBvcnQgeyBJSXRlbUxpc3QgfSBmcm9tICcuLi8uLi8uLi8uLi9tb2RlbHMvZHJvcGRvd24ubW9kZWwnO1xuaW1wb3J0IHsgZm9ybWF0dGVkQ29tcG9uZW50RGF0YSB9IGZyb20gJy4uLy4uL21vZGVscy9mb3JtYXR0ZWQtY29tcG9uZW50LWRhdGEudHlwZSc7XG5pbXBvcnQge1xuICBDb21wb25lbnREYXRhLFxuICBQYXltZW50Q29tcG9uZW50RGF0YSxcbn0gZnJvbSAnLi4vLi4vbW9kZWxzL2NvbXBvbmVudC1kYXRhLnR5cGUnO1xuaW1wb3J0IHsgUGF5cm9sbEZ1ZWxNaW5pbWFsUmVzcG9uc2UgfSBmcm9tICcuLi8uLi9tb2RlbHMvcGF5cm9sbC1mdWVsLW1pbmltYWwtcmVzcG9uc2UnO1xuaW1wb3J0IHsgUGF5bWVudFN1bSB9IGZyb20gJy4uLy4uL21vZGVscy9wYXltZW50LXN1bS5tb2RlbCc7XG5pbXBvcnQgeyBQYXlyb2xsQm9udXNSZXNwb25zZSB9IGZyb20gJy4uLy4uL21vZGVscy9wYXlyb2xsLWJvbnVzLXJlc3BvbnNlJztcblxuLy9Db25zdGFudHNcbmltcG9ydCB7IHRpdGxlQ29sb3JNYXAgfSBmcm9tICcuLi8uLi91dGlscy9jb25zdGFudHMvY29sb3ItbWFwJztcbmltcG9ydCB7IFBheXJvbGxQZXJpb2REcm9wZG93bkNvbnN0YW50IH0gZnJvbSAnLi4vLi4vdXRpbHMvY29uc3RhbnRzL3BheXJvbGwtcGVyaW9kLWRyb3Bkb3duLmNvbnN0YW50JztcblxuLy9Db21wb25lbnRzXG5pbXBvcnQgeyBDYUFwcFRvb2x0aXBWMkNvbXBvbmVudCB9IGZyb20gJy4uLy4uLy4uL2NhLWFwcC10b29sdGlwLXYyL2NhLWFwcC10b29sdGlwLXYyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBDYURyb3Bkb3duQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vY2EtZHJvcGRvd24vY2EtZHJvcGRvd24uY29tcG9uZW50Jztcbi8vcGlwZXNcbmltcG9ydCB7IEZvcm1hdEN1cnJlbmN5UGlwZSB9IGZyb20gJy4uLy4uLy4uLy4uL3BpcGVzL2Zvcm1hdC1jdXJyZW5jeS5waXBlJztcbmltcG9ydCB7IERhdGVGcm9tU3RyaW5nUGlwZSB9IGZyb20gJy4uLy4uLy4uLy4uL3BpcGVzL2RhdGUtZnJvbS1zdHJpbmcucGlwZSc7XG4vL2hlbHBlclxuaW1wb3J0IHsgUGF5cm9sbFBlcmlvZENvbnRlbnRIZWxwZXIgfSBmcm9tICcuLi8uLi91dGlscy9oZWxwZXJzL3BheXJvbGwtcGVyaW9kLWNvbnRlbnQuaGVscGVyJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLWNhLXBlcmlvZC1jb250ZW50LXBheW1lbnQnLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBwcm92aWRlcnM6IFtGb3JtYXRDdXJyZW5jeVBpcGVdLFxuICBpbXBvcnRzOiBbXG4gICAgLy9Nb2R1bGVzXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIEFuZ3VsYXJTdmdJY29uTW9kdWxlLFxuICAgIE5nYlRvb2x0aXBNb2R1bGUsXG4gICAgRHJhZ0Ryb3BNb2R1bGUsXG5cbiAgICAvL0NvbXBvbmVudHNcbiAgICBDYUFwcFRvb2x0aXBWMkNvbXBvbmVudCxcbiAgICBDYURyb3Bkb3duQ29tcG9uZW50LFxuICAgIC8vcGlwZXNcbiAgICBGb3JtYXRDdXJyZW5jeVBpcGUsXG4gICAgRGF0ZUZyb21TdHJpbmdQaXBlLFxuICBdLFxuICB0ZW1wbGF0ZVVybDogJy4vY2EtcGVyaW9kLWNvbnRlbnQtcGF5bWVudC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2NhLXBlcmlvZC1jb250ZW50LXBheW1lbnQuY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgQ2FQZXJpb2RDb250ZW50UGF5bWVudENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIEBJbnB1dCgpIGlzT3BlbjogYm9vbGVhbiA9IGZhbHNlO1xuICBASW5wdXQoKSB0aXRsZSE6IHN0cmluZztcbiAgQElucHV0KCkgY29tcG9uZW50RGF0YSE6IFBheW1lbnRDb21wb25lbnREYXRhO1xuICBAT3V0cHV0KCkgc3VtUGF5bWVudFR5cGVFbWl0dGVyID0gbmV3IEV2ZW50RW1pdHRlcjxQYXltZW50U3VtPigpO1xuICBAT3V0cHV0KCkgcmVvcmRlcmVkRGF0YUVtaXRlciA9IG5ldyBFdmVudEVtaXR0ZXI8UGF5bWVudENvbXBvbmVudERhdGE+KCk7XG5cbiAgcHVibGljIHN1bSE6IG51bWJlcjtcbiAgcHVibGljIGZvcm1hdHRlZENvbXBvbmVudERhdGE6IGZvcm1hdHRlZENvbXBvbmVudERhdGFbXSA9IFtdO1xuXG4gIC8vIERyb3Bkb3duXG4gIHB1YmxpYyBob3ZlclN0YXRlczogYm9vbGVhbltdID0gW107XG4gIHB1YmxpYyBjbGlja2VkU3RhdGVzOiBib29sZWFuW10gPSBbXTtcbiAgcHJpdmF0ZSBkcm9wZG93blN0YXRlczogeyBba2V5OiBzdHJpbmddOiBib29sZWFuIH0gPSB7fTtcbiAgcHJpdmF0ZSBhY3RpdmVJbmRleDogbnVtYmVyID0gLTE7XG4gIHB1YmxpYyBkcm9wZG93bk9wdGlvbnMhOiBJSXRlbUxpc3RbXTtcblxuICAvL0ljb25zXG4gIHB1YmxpYyBwZXJpb2RDb250ZW50U3ZnUm91dGVzOiBQZXJpb2RDb250ZW50U3ZnUm91dGVzID1cbiAgICBQZXJpb2RDb250ZW50U3ZnUm91dGVzO1xuICBwdWJsaWMgb3JpZ2luYWxJY29uOiBzdHJpbmcgPSBQZXJpb2RDb250ZW50U3ZnUm91dGVzLm9wdGlvbnM7XG4gIHB1YmxpYyBhbHRlcm5hdGVJY29uOiBzdHJpbmcgPSBQZXJpb2RDb250ZW50U3ZnUm91dGVzLm9wdGlvbnNDbGlja2VkO1xuICBwdWJsaWMgY3VycmVudEljb246IHN0cmluZyA9IHRoaXMub3JpZ2luYWxJY29uO1xuICBwdWJsaWMgY3VycmVudEljb25zOiBzdHJpbmdbXSA9IFtdO1xuXG4gIGNvbnN0cnVjdG9yKCkge31cblxuICBuZ09uSW5pdCgpIHtcbiAgICB0aGlzLnByb2Nlc3NJbnB1dERhdGEoKTtcblxuICAgIHRoaXMuc2V0RHJvcGRvd25PcHRpb25zKCk7XG5cbiAgICB0aGlzLnNldEhvdmVyT3B0aW9ucygpO1xuXG4gICAgdGhpcy5jYWxjdWxhdGVUb3RhbFBheW1lbnQoKTtcblxuICAgIHRoaXMuc2V0SW5pdGlhbEljb25zKCk7XG4gIH1cblxuICBwcml2YXRlIHNldEhvdmVyT3B0aW9ucygpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5jb21wb25lbnREYXRhKSB7XG4gICAgICB0aGlzLmhvdmVyU3RhdGVzID0gbmV3IEFycmF5KHRoaXMuY29tcG9uZW50RGF0YS5sZW5ndGgpLmZpbGwoZmFsc2UpO1xuICAgICAgdGhpcy5jbGlja2VkU3RhdGVzID0gbmV3IEFycmF5KHRoaXMuY29tcG9uZW50RGF0YS5sZW5ndGgpLmZpbGwoZmFsc2UpO1xuICAgIH1cbiAgfVxuXG4gIHByaXZhdGUgcHJvY2Vzc0lucHV0RGF0YSgpOiB2b2lkIHtcbiAgICBpZiAoIXRoaXMuY29tcG9uZW50RGF0YSkgcmV0dXJuO1xuXG4gICAgdGhpcy5mb3JtYXR0ZWRDb21wb25lbnREYXRhID0gdGhpcy5jb21wb25lbnREYXRhLm1hcCgoaXRlbSkgPT4ge1xuICAgICAgcmV0dXJuIHtcbiAgICAgICAgYW1vdW50OiBpdGVtLmFtb3VudCxcbiAgICAgICAgZGVzY3JpcHRpb246IGl0ZW0uZGVzY3JpcHRpb24gfHwgJycsXG4gICAgICAgIGRhdGU6IGl0ZW0uZGF0ZSxcbiAgICAgICAgZ2Fsb25zOiAoaXRlbSBhcyBQYXlyb2xsRnVlbE1pbmltYWxSZXNwb25zZSkuZ2Fsb25zLFxuICAgICAgICBpZDogaXRlbS5pZCB8fCBudWxsLFxuICAgICAgfSBhcyBmb3JtYXR0ZWRDb21wb25lbnREYXRhO1xuICAgIH0pO1xuICB9XG5cbiAgcHJpdmF0ZSBzZXREcm9wZG93bk9wdGlvbnMoKTogdm9pZCB7XG4gICAgaWYgKHRoaXMuaXNPcGVuKSB7XG4gICAgICB0aGlzLmRyb3Bkb3duT3B0aW9ucyA9IFBheXJvbGxQZXJpb2REcm9wZG93bkNvbnN0YW50LnBheXJvbGxQZXJpb2RPcGVuO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLmRyb3Bkb3duT3B0aW9ucyA9IFBheXJvbGxQZXJpb2REcm9wZG93bkNvbnN0YW50LnBheXJvbGxQZXJpb2RDbG9zZWQ7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBzZXRJbml0aWFsSWNvbnMoKTogdm9pZCB7XG4gICAgdGhpcy5jdXJyZW50SWNvbnMgPSBuZXcgQXJyYXkodGhpcy5jb21wb25lbnREYXRhLmxlbmd0aCkuZmlsbChcbiAgICAgIHRoaXMub3JpZ2luYWxJY29uXG4gICAgKTtcbiAgfVxuXG4gIHB1YmxpYyBkcm9wRG93bkNsaWNrRXZlbnQoaW5kZXg6IG51bWJlcik6IHZvaWQge1xuICAgIGlmICh0aGlzLmFjdGl2ZUluZGV4ICE9PSAtMSAmJiB0aGlzLmFjdGl2ZUluZGV4ICE9PSBpbmRleCkge1xuICAgICAgdGhpcy5kcm9wZG93blN0YXRlc1t0aGlzLmFjdGl2ZUluZGV4XSA9IGZhbHNlO1xuICAgICAgdGhpcy5jbGlja2VkU3RhdGVzW3RoaXMuYWN0aXZlSW5kZXhdID0gZmFsc2U7XG4gICAgICB0aGlzLmN1cnJlbnRJY29uc1t0aGlzLmFjdGl2ZUluZGV4XSA9IHRoaXMub3JpZ2luYWxJY29uO1xuICAgIH1cblxuICAgIHRoaXMuZHJvcGRvd25TdGF0ZXNbaW5kZXhdID0gIXRoaXMuZHJvcGRvd25TdGF0ZXNbaW5kZXhdO1xuICAgIHRoaXMuY2xpY2tlZFN0YXRlc1tpbmRleF0gPSB0aGlzLmRyb3Bkb3duU3RhdGVzW2luZGV4XTtcbiAgICB0aGlzLmN1cnJlbnRJY29uc1tpbmRleF0gPSB0aGlzLmNsaWNrZWRTdGF0ZXNbaW5kZXhdXG4gICAgICA/IHRoaXMuYWx0ZXJuYXRlSWNvblxuICAgICAgOiB0aGlzLm9yaWdpbmFsSWNvbjtcbiAgICB0aGlzLmFjdGl2ZUluZGV4ID0gdGhpcy5kcm9wZG93blN0YXRlc1tpbmRleF0gPyBpbmRleCA6IC0xO1xuICB9XG5cbiAgcHVibGljIGlzRHJvcGRvd25FbmFibGVkKGxvYWROdW1iZXI6IG51bWJlcik6IGJvb2xlYW4ge1xuICAgIHJldHVybiAhIXRoaXMuZHJvcGRvd25TdGF0ZXNbbG9hZE51bWJlcl07XG4gIH1cblxuICBwdWJsaWMgb25Nb3VzZUVudGVyKGluZGV4OiBudW1iZXIpOiB2b2lkIHtcbiAgICB0aGlzLmhvdmVyU3RhdGVzW2luZGV4XSA9IHRydWU7XG4gIH1cblxuICBwdWJsaWMgb25Nb3VzZUxlYXZlKGluZGV4OiBudW1iZXIpOiB2b2lkIHtcbiAgICB0aGlzLmhvdmVyU3RhdGVzW2luZGV4XSA9IGZhbHNlO1xuICB9XG5cbiAgcHVibGljIGdldENvbG9yKHRpdGxlOiBzdHJpbmcpOiBzdHJpbmcge1xuICAgIHJldHVybiB0aXRsZUNvbG9yTWFwW3RpdGxlLnRvTG93ZXJDYXNlKCldIHx8ICcjNDI0MjQyJztcbiAgfVxuXG4gIHB1YmxpYyBnZXRUaXRsZUNvbG9yKCk6IHN0cmluZyB7XG4gICAgaWYgKCF0aGlzLmNvbXBvbmVudERhdGE/Lmxlbmd0aCB8fCAhdGhpcy5jb21wb25lbnREYXRhKSB7XG4gICAgICByZXR1cm4gJyNBQUFBQUEnO1xuICAgIH1cbiAgICByZXR1cm4gJyM0MjQyNDInO1xuICB9XG5cbiAgcHVibGljIGNhbGN1bGF0ZVRvdGFsUGF5bWVudCgpOiB2b2lkIHtcbiAgICBjb25zdCBzdW0gPVxuICAgICAgdGhpcy5mb3JtYXR0ZWRDb21wb25lbnREYXRhPy5yZWR1Y2UoXG4gICAgICAgIChzdW06IG51bWJlciwgaXRlbTogZm9ybWF0dGVkQ29tcG9uZW50RGF0YSkgPT4ge1xuICAgICAgICAgIHJldHVybiBzdW0gKyAoaXRlbS5hbW91bnQgfHwgMCk7XG4gICAgICAgIH0sXG4gICAgICAgIDBcbiAgICAgICkgfHwgMDtcbiAgICB0aGlzLnN1bSA9IHN1bTtcbiAgICB0aGlzLnN1bVBheW1lbnRUeXBlRW1pdHRlci5lbWl0KHsgc3VtOiB0aGlzLnN1bSwgdHlwZTogdGhpcy50aXRsZSB9KTtcbiAgfVxuXG4gIHB1YmxpYyBvbkRyb3AoZXZlbnQ6IENka0RyYWdEcm9wPENvbXBvbmVudERhdGE+KTogdm9pZCB7XG4gICAgbW92ZUl0ZW1JbkFycmF5KFxuICAgICAgdGhpcy5jb21wb25lbnREYXRhLFxuICAgICAgZXZlbnQucHJldmlvdXNJbmRleCxcbiAgICAgIGV2ZW50LmN1cnJlbnRJbmRleFxuICAgICk7XG5cbiAgICB0aGlzLnJlb3JkZXJlZERhdGFFbWl0ZXIuZW1pdCh0aGlzLmNvbXBvbmVudERhdGEpO1xuICB9XG5cbiAgcHVibGljIG1vdmVJdGVtKHByZXZpb3VzSW5kZXg6IG51bWJlciwgY3VycmVudEluZGV4OiBudW1iZXIpOiB2b2lkIHtcbiAgICBjb25zdCBpdGVtID0gdGhpcy5mb3JtYXR0ZWRDb21wb25lbnREYXRhW3ByZXZpb3VzSW5kZXhdO1xuICAgIHRoaXMuZm9ybWF0dGVkQ29tcG9uZW50RGF0YS5zcGxpY2UocHJldmlvdXNJbmRleCwgMSk7XG4gICAgdGhpcy5mb3JtYXR0ZWRDb21wb25lbnREYXRhLnNwbGljZShjdXJyZW50SW5kZXgsIDAsIGl0ZW0pO1xuICB9XG5cbiAgcHVibGljIGdldFN2Z1BhdGgocHJvcGVydHlOYW1lOiBrZXlvZiB0eXBlb2YgUGVyaW9kQ29udGVudFN2Z1JvdXRlcyk6IHN0cmluZyB7XG4gICAgcmV0dXJuIFBheXJvbGxQZXJpb2RDb250ZW50SGVscGVyLmdldFN2Z1BhdGgocHJvcGVydHlOYW1lKTtcbiAgfVxuXG4gIHB1YmxpYyBpZGVudGl0eShpbmRleDogbnVtYmVyKTogbnVtYmVyIHtcbiAgICByZXR1cm4gaW5kZXg7XG4gIH1cbn1cbiIsIjxuZy1jb250YWluZXIgKm5nSWY9XCJjb21wb25lbnREYXRhPy5sZW5ndGg7IGVsc2UgZW1wdHlDb21wb25lbnREYXRhXCJcbiAgPjxkaXZcbiAgICBjbGFzcz1cIndyYXBwZXIgZC1mbGV4IGZsZXgtY29sdW1uIGFsaWduLWl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtc3RhcnRcIlxuICA+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInRpdGxlICE9PSAnQ3JlZGl0JyAmJiB0aXRsZSAhPT0gJ1BheW1lbnQnXCI+XG4gICAgICA8ZGl2IGNsYXNzPVwiZGl2aWRlci1jdXN0b20gZC1mbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXJcIj48L2Rpdj5cbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8ZGl2IGNsYXNzPVwiY29udGFpbmVyIGQtZmxleCBmbGV4LWNvbHVtbiBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyXCI+XG4gICAgICA8ZGl2IGNsYXNzPVwidGV4dC12YWx1ZSBkLWZsZXgganVzdGlmeS1jb250ZW50LWJldHdlZW5cIj5cbiAgICAgICAgPGRpdlxuICAgICAgICAgIGNsYXNzPVwicGF5bWVudC1jb3VudCBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyIGp1c3RpZnktY29udGVudC1zdGFydFwiXG4gICAgICAgID5cbiAgICAgICAgICA8c3BhbiBjbGFzcz1cInRleHQgY2EtZm9udC1leHRyYS1ib2xkXCI+e3sgdGl0bGUgfX08L3NwYW4+XG4gICAgICAgICAgPHNwYW5cbiAgICAgICAgICAgIGNsYXNzPVwicm91bmQgY2EtZm9udC1ib2xkIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXIganVzdGlmeS1jb250ZW50LWNlbnRlclwiXG4gICAgICAgICAgPlxuICAgICAgICAgICAge3sgY29tcG9uZW50RGF0YT8ubGVuZ3RoIH19XG4gICAgICAgICAgPC9zcGFuPlxuICAgICAgICA8L2Rpdj5cbiAgICAgICAgPHNwYW4gY2xhc3M9XCJ2YWx1ZSBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyXCI+XG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImlzT3BlbjsgZWxzZSBub3RPcGVuXCI+XG4gICAgICAgICAgICA8c3ZnLWljb25cbiAgICAgICAgICAgICAgY2xhc3M9XCJkLWZsZXggaWNvblwiXG4gICAgICAgICAgICAgIFtzcmNdPVwiZ2V0U3ZnUGF0aCgncGx1cycpXCJcbiAgICAgICAgICAgICAgW3N2Z1N0eWxlXT1cInsgJ3dpZHRoLnB4JzogMTgsICdoZWlnaHQucHgnOiAxOCB9XCJcbiAgICAgICAgICAgID48L3N2Zy1pY29uPlxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjbm90T3Blbj5cbiAgICAgICAgICAgIDxzcGFuXG4gICAgICAgICAgICAgIGNsYXNzPVwidG90YWwtbW9uZXktY2xvc2VkIGNhLWZvbnQtc2VtaS1ib2xkXCJcbiAgICAgICAgICAgICAgW25nU3R5bGVdPVwieyBjb2xvcjogZ2V0Q29sb3IodGl0bGUpIH1cIlxuICAgICAgICAgICAgICA+e3sgc3VtIHwgZm9ybWF0Q3VycmVuY3kgfX08L3NwYW5cbiAgICAgICAgICAgID5cbiAgICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgICAgICA8L3NwYW4+XG4gICAgICA8L2Rpdj5cbiAgICA8L2Rpdj5cblxuICAgIDxkaXZcbiAgICAgIFtuZ0NsYXNzXT1cInsgJ2Rpc2FibGVkLWRyYWcnOiB0aXRsZSA9PT0gJ0JvbnVzJyB9XCJcbiAgICAgIGNka0Ryb3BMaXN0XG4gICAgICBjbGFzcz1cImNvbXBvbmVudC1kYXRhLWNvbnRhaW5lciBkLWZsZXgganVzdGlmeS1jb250ZW50LWNlbnRlciBmbGV4LWNvbHVtblwiXG4gICAgICAoY2RrRHJvcExpc3REcm9wcGVkKT1cIm9uRHJvcCgkZXZlbnQpXCJcbiAgICA+XG4gICAgICA8bmctY29udGFpbmVyXG4gICAgICAgICpuZ0Zvcj1cImxldCBkYXRhIG9mIGNvbXBvbmVudERhdGE7IGxldCBpID0gaW5kZXg7IHRyYWNrQnk6IGlkZW50aXR5XCJcbiAgICAgID5cbiAgICAgICAgPGRpdlxuICAgICAgICAgIGNka0RyYWdcbiAgICAgICAgICBjZGtEcmFnTG9ja0F4aXM9XCJ5XCJcbiAgICAgICAgICBjZGtEcmFnQm91bmRhcnk9XCIuY29tcG9uZW50LWRhdGEtY29udGFpbmVyXCJcbiAgICAgICAgICBjbGFzcz1cImQtZmxleCBqdXN0aWZ5LWNvbnRlbnQtYmV0d2VlbiBhbGlnbi1pdGVtcy1jZW50ZXIgaW5mb3JtYXRpb25cIlxuICAgICAgICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICAgICAgIGNsaWNrZWQ6IGNsaWNrZWRTdGF0ZXNbaV0sXG4gICAgICAgICAgICAnZHJhZy1kaXNhYmxlZCc6IHRpdGxlID09PSAnQm9udXMnLFxuICAgICAgICAgIH1cIlxuICAgICAgICAgIChtb3VzZWVudGVyKT1cIm9uTW91c2VFbnRlcihpKVwiXG4gICAgICAgICAgKG1vdXNlbGVhdmUpPVwib25Nb3VzZUxlYXZlKGkpXCJcbiAgICAgICAgPlxuICAgICAgICAgIDxuZy10ZW1wbGF0ZSBjZGtEcmFnUHJldmlldz5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJkLWZsZXgganVzdGlmeS1jb250ZW50LWJldHdlZW4gYWxpZ24taXRlbXMtY2VudGVyXCI+XG4gICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyXCI+XG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImljb24taG9sZGVyIG14LTJcIj5cbiAgICAgICAgICAgICAgICAgIDxzdmctaWNvblxuICAgICAgICAgICAgICAgICAgICBbc3JjXT1cImdldFN2Z1BhdGgoJ2RyYWdnaW5nJylcIlxuICAgICAgICAgICAgICAgICAgICBhbHQ9XCJEcmFnZ2luZyBJbWFnZVwiXG4gICAgICAgICAgICAgICAgICA+PC9zdmctaWNvbj5cbiAgICAgICAgICAgICAgICA8L2Rpdj5cblxuICAgICAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICAgIGNsYXNzPVwiZGF0ZS1sb2NhdGlvbiBkLWZsZXggZmxleC1jb2x1bW4gZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlclwiXG4gICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJjYS1mb250LXNlbWktYm9sZCBsb2NhdGlvblwiPnt7XG4gICAgICAgICAgICAgICAgICAgIGRhdGEuZGVzY3JpcHRpb25cbiAgICAgICAgICAgICAgICAgIH19PC9zcGFuPlxuICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJkYXRlIGNhLWZvbnQtbWVkaXVtIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXJcIj57e1xuICAgICAgICAgICAgICAgICAgICBkYXRhLmRhdGUgfCBkYXRlRnJvbVN0cmluZ1BpcGVcbiAgICAgICAgICAgICAgICAgIH19PC9zcGFuPlxuICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICA8L2Rpdj5cblxuICAgICAgICAgICAgICA8c3BhblxuICAgICAgICAgICAgICAgIGNsYXNzPVwibW9uZXkgZC1mbGV4IGp1c3RpZnktY29udGVudC1lbmQgYWxpZ24taXRlbXMtY2VudGVyIGNhLWZvbnQtcmVndWxhciBteC0yXCJcbiAgICAgICAgICAgICAgICA+e3sgZGF0YS5hbW91bnQgPyBkYXRhLmFtb3VudCA6ICgwIHwgZm9ybWF0Q3VycmVuY3kpIH19XG4gICAgICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICAgICAgPHNwYW5cbiAgICAgICAgICAgIGNsYXNzPVwibnVtYmVyIGQtZmxleCBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyIGFsaWduLWl0ZW1zLWNlbnRlciBjYS1mb250LW1lZGl1bVwiXG4gICAgICAgICAgPlxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lclxuICAgICAgICAgICAgICAqbmdJZj1cIiFob3ZlclN0YXRlc1tpXSAmJiAhY2xpY2tlZFN0YXRlc1tpXTsgZWxzZSBob3ZlcmVkU3RhdGVcIlxuICAgICAgICAgICAgICA+e3sgZGF0YSEuaWQgfX1cbiAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgPG5nLXRlbXBsYXRlICNob3ZlcmVkU3RhdGU+XG4gICAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICBjbGFzcz1cImljb24taG9sZGVyIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXIganVzdGlmeS1jb250ZW50LWNlbnRlclwiXG4gICAgICAgICAgICAgICAgbmdiVG9vbHRpcFxuICAgICAgICAgICAgICAgIFttYWluVG9vbHRpcF09XCInTW9yZSdcIlxuICAgICAgICAgICAgICAgIHRvb2x0aXBCYWNrZ3JvdW5kPVwiIzQyNDI0MlwiXG4gICAgICAgICAgICAgICAgcG9zaXRpb249XCJib3R0b21cIlxuICAgICAgICAgICAgICAgIFtuZ1N0eWxlXT1cIntcbiAgICAgICAgICAgICAgICAgIGJhY2tncm91bmRDb2xvcjogY2xpY2tlZFN0YXRlc1tpXSA/ICcjNDI0MjQyJyA6ICd0cmFuc3BhcmVudCcsXG4gICAgICAgICAgICAgICAgICBjb2xvcjogaG92ZXJTdGF0ZXNbaV0gPyAnZGVzaXJlZENvbG9yJyA6ICdpbml0aWFsQ29sb3InLFxuICAgICAgICAgICAgICAgIH1cIlxuICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgPGFwcC1jYS1kcm9wZG93blxuICAgICAgICAgICAgICAgICAgW2l0ZW1MaXN0XT1cImRyb3Bkb3duT3B0aW9uc1wiXG4gICAgICAgICAgICAgICAgICBbaWNvbl09XCJjdXJyZW50SWNvbnNbaV1cIlxuICAgICAgICAgICAgICAgICAgKG9uQ2xpY2spPVwiZHJvcERvd25DbGlja0V2ZW50KGkpXCJcbiAgICAgICAgICAgICAgICAgIFtpc1BvcHVwU2hvd25dPVwiaXNEcm9wZG93bkVuYWJsZWQoaSlcIlxuICAgICAgICAgICAgICAgID48L2FwcC1jYS1kcm9wZG93bj5cbiAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiZGF0ZS1sb2NhdGlvbiBkLWZsZXggZmxleC1jb2x1bW5cIj5cbiAgICAgICAgICAgIDxzcGFuXG4gICAgICAgICAgICAgIGNsYXNzPVwiY2EtZm9udC1zZW1pLWJvbGQgbG9jYXRpb24gZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlclwiXG4gICAgICAgICAgICAgID57eyBkYXRhLmRlc2NyaXB0aW9uIH19PC9zcGFuXG4gICAgICAgICAgICA+XG5cbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiZGF0ZSBjYS1mb250LW1lZGl1bSBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyXCI+e3tcbiAgICAgICAgICAgICAgZGF0YS5kYXRlIHwgZGF0ZUZyb21TdHJpbmdQaXBlXG4gICAgICAgICAgICB9fTwvc3Bhbj5cbiAgICAgICAgICA8L2Rpdj5cblxuICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJ0aXRsZSA9PT0gJ0RlZHVjdGlvbidcIj5cbiAgICAgICAgICAgIDxzcGFuXG4gICAgICAgICAgICAgIGNsYXNzPVwicmVjdXJyaW5nIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXIganVzdGlmeS1jb250ZW50LWNlbnRlclwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgIDxzdmctaWNvblxuICAgICAgICAgICAgICAgIGNsYXNzPVwiZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlclwiXG4gICAgICAgICAgICAgICAgW3NyY109XCJnZXRTdmdQYXRoKCdpbmZpbml0eUljb24nKVwiXG4gICAgICAgICAgICAgICAgW3N2Z1N0eWxlXT1cInsgJ3dpZHRoLnB4JzogMTgsICdoZWlnaHQucHgnOiAxOCB9XCJcbiAgICAgICAgICAgICAgPjwvc3ZnLWljb24+XG4gICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgPHNwYW5cbiAgICAgICAgICAgIGNsYXNzPVwibW9uZXkgZC1mbGV4IGp1c3RpZnktY29udGVudC1lbmQgYWxpZ24taXRlbXMtY2VudGVyIGNhLWZvbnQtcmVndWxhclwiXG4gICAgICAgICAgICA+e3sgZGF0YS5hbW91bnQgPyAoZGF0YS5hbW91bnQgfCBjdXJyZW5jeSkgOiAnJDAuMDAnIH19XG4gICAgICAgICAgPC9zcGFuPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuXG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXNPcGVuXCI+XG4gICAgICAgIDxkaXZcbiAgICAgICAgICBjbGFzcz1cInRvdGFsLW1vbmV5LXRpdGxlIGQtZmxleCBqdXN0aWZ5LWNvbnRlbnQtYmV0d2VlbiBhbGlnbi1pdGVtcy1jZW50ZXJcIlxuICAgICAgICA+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cImljb24tdG90YWwgZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlclwiPlxuICAgICAgICAgICAgPHNwYW5cbiAgICAgICAgICAgICAgY2xhc3M9XCJkb2xhci1pY29uIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXJcIlxuICAgICAgICAgICAgICBbbmdTdHlsZV09XCJ7IGNvbG9yOiBnZXRDb2xvcih0aXRsZSkgfVwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgIDxzdmctaWNvblxuICAgICAgICAgICAgICAgIGNsYXNzPVwiZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlclwiXG4gICAgICAgICAgICAgICAgW3NyY109XCJnZXRTdmdQYXRoKCdkb2xhclNpZ24nKVwiXG4gICAgICAgICAgICAgICAgW3N2Z1N0eWxlXT1cInsgJ3dpZHRoLnB4JzogMTgsICdoZWlnaHQucHgnOiAxOCB9XCJcbiAgICAgICAgICAgICAgPjwvc3ZnLWljb24+XG4gICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInRvdGFsLXRpdGxlIGNhLWZvbnQtYm9sZFwiPlRvdGFsPC9zcGFuPlxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgIDxzcGFuXG4gICAgICAgICAgICBjbGFzcz1cInRvdGFsLW1vbmV5IGQtZmxleCBqdXN0aWZ5LWNvbnRlbnQtZW5kIGFsaWduLWl0ZW1zLWNlbnRlciBjYS1mb250LXNlbWktYm9sZFwiXG4gICAgICAgICAgICBbbmdTdHlsZV09XCJ7IGNvbG9yOiBnZXRDb2xvcih0aXRsZSkgfVwiXG4gICAgICAgICAgICA+e3sgc3VtIHwgZm9ybWF0Q3VycmVuY3kgfX08L3NwYW5cbiAgICAgICAgICA+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgPC9kaXY+XG4gIDwvZGl2PlxuPC9uZy1jb250YWluZXI+XG5cbjxuZy10ZW1wbGF0ZSAjZW1wdHlDb21wb25lbnREYXRhPlxuICA8ZGl2IGNsYXNzPVwiY29udGFpbmVyLWVtcHR5IGQtZmxleCBmbGV4LWNvbHVtblwiPlxuICAgIDxkaXYgY2xhc3M9XCJkaXZpZGVyLWN1c3RvbSBkLWZsZXgganVzdGlmeS1jb250ZW50LWNlbnRlclwiPjwvZGl2PlxuICAgIDxkaXYgY2xhc3M9XCJ0ZXh0LXZhbHVlIGQtZmxleCBqdXN0aWZ5LWNvbnRlbnQtYmV0d2VlblwiPlxuICAgICAgPGRpdlxuICAgICAgICBjbGFzcz1cInBheW1lbnQtY291bnQgZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtc3RhcnRcIlxuICAgICAgPlxuICAgICAgICA8c3BhblxuICAgICAgICAgIGNsYXNzPVwidGV4dCBjYS1mb250LWV4dHJhLWJvbGRcIlxuICAgICAgICAgIFtuZ1N0eWxlXT1cInsgY29sb3I6IGlzT3BlbiA/ICcjNDI0MjQyJyA6ICcjYWFhYWFhJyB9XCJcbiAgICAgICAgICA+e3sgdGl0bGUgfX08L3NwYW5cbiAgICAgICAgPlxuICAgICAgPC9kaXY+XG4gICAgICA8c3BhbiBjbGFzcz1cInZhbHVlIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXJcIj5cbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImlzT3BlbjsgZWxzZSBub3RPcGVuXCI+XG4gICAgICAgICAgPHN2Zy1pY29uXG4gICAgICAgICAgICBjbGFzcz1cImQtZmxleCBpY29uXCJcbiAgICAgICAgICAgIFtzcmNdPVwiZ2V0U3ZnUGF0aCgncGx1cycpXCJcbiAgICAgICAgICAgIFtzdmdTdHlsZV09XCJ7ICd3aWR0aC5weCc6IDE4LCAnaGVpZ2h0LnB4JzogMTggfVwiXG4gICAgICAgICAgPjwvc3ZnLWljb24+XG4gICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICA8bmctdGVtcGxhdGUgI25vdE9wZW4+XG4gICAgICAgICAgPHNwYW4gY2xhc3M9XCJ0b3RhbC1tb25leS1jbG9zZWQgY2EtZm9udC1zZW1pLWJvbGRcIj4kMC4wMDwvc3Bhbj5cbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgICAgIDwvc3Bhbj5cbiAgICA8L2Rpdj5cbiAgPC9kaXY+XG48L25nLXRlbXBsYXRlPlxuIl19